From 08511441825bccab596820d00e007bbe61595fb7 Mon Sep 17 00:00:00 2001 From: Batrachophreno Date: Fri, 25 Jul 2025 15:16:33 -0400 Subject: [PATCH] Area definitions cleanup (Horizon/Runtime) (#20914) **Goals:** 1. Delete area definitions no longer used in any map or file. 2. Update area definitions such that everything used in mapping the Horizon exists in 'maps\sccv_horizon\areas' with the parent 'area\horizon\'. 3. Reorganize/rename/restructure those Horizon area definitions to make future mapping easier and code that hooks into area properties easier. 4. Present area names and blurbs in the status panel. This PR only handles Horizon and Runtime areas, for digestibility/ease of reviewing. Offsite areas for another PR. Naming convention reference: The /area/ 'name' variable no longer contains either 'Horizon' or the Deck# of the area or its approx location on the ship. All Horizon areas now have several new variables as metadata-- area names now need only be strictly descriptive, and the appropriate constants used in the area definition, and a new function generates the display name with consistent formatting for us. Detailed documentation to follow after any adjustments are made to mappers' preferences. This also adds area blurbs to most areas- if not bespoke, then general department-wide blurbs to parents. I know feature creep always sucks, but while some areas having pre-existing blurbs, the overwhelming majority of areas don't, and while testing it was very distracting to see them randomly appearing and disappearing. Most blurbs are pretty basic but I feel are entirely presentable- more clever individual ones can follow in a separate PR. --- aurorastation.dme | 25 +- code/__DEFINES/ship_locations.dm | 73 + code/__DEFINES/subsystems.dm | 1 + code/__HELPERS/areas.dm | 2 +- code/__HELPERS/game.dm | 42 + code/game/area/areas.dm | 15 +- code/game/gamemodes/cult/hell_universe.dm | 2 +- code/game/gamemodes/events/power_failure.dm | 2 +- code/game/gamemodes/objective.dm | 6 +- .../game/gamemodes/vampire/vampire_helpers.dm | 2 +- code/game/gamemodes/vampire/vampire_powers.dm | 2 +- code/game/machinery/ai_slipper.dm | 3 +- code/game/machinery/alarm.dm | 8 +- code/game/machinery/camera/camera_assembly.dm | 3 +- code/game/machinery/lightswitch.dm | 3 +- code/game/machinery/nuclear_bomb.dm | 2 +- code/game/turfs/simulated.dm | 2 +- code/modules/events/blob.dm | 2 +- code/modules/events/prison_break.dm | 12 +- code/modules/mining/minebot.dm | 2 +- .../mob/living/carbon/brain/posibrain.dm | 4 - code/modules/mob/living/carbon/human/human.dm | 22 +- .../programs/engineering/powermonitor.dm | 1 + code/modules/power/apc.dm | 11 +- code/modules/power/gravitygenerator.dm | 5 +- code/modules/power/sensors/powernet_sensor.dm | 7 +- code/modules/power/singularity/investigate.dm | 4 - code/modules/shuttles/escape_pods.dm | 2 +- code/modules/telesci/gps.dm | 5 +- code/modules/vehicles/droppod.dm | 21 +- code/unit_tests/zas_tests.dm | 4 +- .../Batrachophreno-AreasCleanup.yml | 65 + maps/_common/areas/asteroid_areas.dm | 39 - maps/_common/areas/derelict.dm | 6 + maps/_common/areas/shuttles.dm | 20 - maps/_common/areas/station/civilian.dm | 229 - maps/_common/areas/station/command.dm | 131 - maps/_common/areas/station/engineering.dm | 130 - maps/_common/areas/station/hallways.dm | 89 - maps/_common/areas/station/maintenance.dm | 363 - maps/_common/areas/station/medical.dm | 205 - maps/_common/areas/station/research.dm | 205 - maps/_common/areas/station/security.dm | 226 - maps/_common/areas/station/storage.dm | 59 - maps/_common/areas/telecomms.dm | 35 - maps/runtime/code/runtime.dm | 139 + maps/runtime/code/runtime_unittest.dm | 6 +- maps/runtime/runtime.dmm | 44 +- maps/sccv_horizon/areas/_horizon_areas.dm | 48 + maps/sccv_horizon/areas/horizon_areas_ai.dm | 28 + .../areas/horizon_areas_command.dm | 138 + maps/sccv_horizon/areas/horizon_areas_crew.dm | 256 + .../areas/horizon_areas_engineering.dm | 224 + .../areas/horizon_areas_holodeck.dm | 145 + .../areas/horizon_areas_maintenance.dm | 261 + .../areas/horizon_areas_medical.dm | 118 + .../areas/horizon_areas_operations.dm | 175 + .../areas/horizon_areas_science.dm | 104 + .../areas/horizon_areas_security.dm | 134 + .../areas/horizon_areas_service.dm | 118 + .../areas/horizon_areas_shuttle.dm | 73 + .../code/_sccv_horizon_shuttle_landmarks.dm | 4 +- maps/sccv_horizon/code/sccv_horizon.dm | 2 +- maps/sccv_horizon/code/sccv_horizon_lifts.dm | 16 +- .../code/sccv_horizon_shuttles.dm | 18 +- .../code/sccv_horizon_unittest.dm | 44 +- maps/sccv_horizon/sccv_horizon.dmm | 250713 ++++++++------- maps/templates/orbital/light-mecha.dmm | 2 +- 68 files changed, 127943 insertions(+), 126964 deletions(-) create mode 100644 code/__DEFINES/ship_locations.dm delete mode 100644 code/modules/power/singularity/investigate.dm create mode 100644 html/changelogs/Batrachophreno-AreasCleanup.yml delete mode 100644 maps/_common/areas/station/civilian.dm delete mode 100644 maps/_common/areas/station/command.dm delete mode 100644 maps/_common/areas/station/engineering.dm delete mode 100644 maps/_common/areas/station/hallways.dm delete mode 100644 maps/_common/areas/station/maintenance.dm delete mode 100644 maps/_common/areas/station/medical.dm delete mode 100644 maps/_common/areas/station/research.dm delete mode 100644 maps/_common/areas/station/security.dm delete mode 100644 maps/_common/areas/station/storage.dm create mode 100644 maps/sccv_horizon/areas/_horizon_areas.dm create mode 100644 maps/sccv_horizon/areas/horizon_areas_ai.dm create mode 100644 maps/sccv_horizon/areas/horizon_areas_command.dm create mode 100644 maps/sccv_horizon/areas/horizon_areas_crew.dm create mode 100644 maps/sccv_horizon/areas/horizon_areas_engineering.dm create mode 100644 maps/sccv_horizon/areas/horizon_areas_holodeck.dm create mode 100644 maps/sccv_horizon/areas/horizon_areas_maintenance.dm create mode 100644 maps/sccv_horizon/areas/horizon_areas_medical.dm create mode 100644 maps/sccv_horizon/areas/horizon_areas_operations.dm create mode 100644 maps/sccv_horizon/areas/horizon_areas_science.dm create mode 100644 maps/sccv_horizon/areas/horizon_areas_security.dm create mode 100644 maps/sccv_horizon/areas/horizon_areas_service.dm create mode 100644 maps/sccv_horizon/areas/horizon_areas_shuttle.dm diff --git a/aurorastation.dme b/aurorastation.dme index bcc19fb61ae..464f51edf56 100644 --- a/aurorastation.dme +++ b/aurorastation.dme @@ -130,6 +130,7 @@ #include "code\__DEFINES\rust_g.dm" #include "code\__DEFINES\rust_g_overrides.dm" #include "code\__DEFINES\scenarios.dm" +#include "code\__DEFINES\ship_locations.dm" #include "code\__DEFINES\ship_weapons.dm" #include "code\__DEFINES\shuttle.dm" #include "code\__DEFINES\si.dm" @@ -3262,7 +3263,6 @@ #include "code\modules\power\singularity\emitter.dm" #include "code\modules\power\singularity\field_generator.dm" #include "code\modules\power\singularity\generator.dm" -#include "code\modules\power\singularity\investigate.dm" #include "code\modules\power\singularity\singularity.dm" #include "code\modules\power\singularity\particle_accelerator\particle.dm" #include "code\modules\power\singularity\particle_accelerator\particle_accelerator.dm" @@ -3881,15 +3881,6 @@ #include "maps\_common\areas\shuttles.dm" #include "maps\_common\areas\special.dm" #include "maps\_common\areas\telecomms.dm" -#include "maps\_common\areas\station\civilian.dm" -#include "maps\_common\areas\station\command.dm" -#include "maps\_common\areas\station\engineering.dm" -#include "maps\_common\areas\station\hallways.dm" -#include "maps\_common\areas\station\maintenance.dm" -#include "maps\_common\areas\station\medical.dm" -#include "maps\_common\areas\station\research.dm" -#include "maps\_common\areas\station\security.dm" -#include "maps\_common\areas\station\storage.dm" #include "maps\_common\mapsystem\map.dm" #include "maps\_common\mapsystem\map_unit.dm" #include "maps\away\away_sites.dm" @@ -4344,9 +4335,21 @@ #include "maps\runtime\code\runtime.dm" #include "maps\runtime\code\runtime_lifts.dm" #include "maps\runtime\code\runtime_unittest.dm" +#include "maps\sccv_horizon\areas\_horizon_areas.dm" +#include "maps\sccv_horizon\areas\horizon_areas_ai.dm" +#include "maps\sccv_horizon\areas\horizon_areas_command.dm" +#include "maps\sccv_horizon\areas\horizon_areas_crew.dm" +#include "maps\sccv_horizon\areas\horizon_areas_engineering.dm" +#include "maps\sccv_horizon\areas\horizon_areas_holodeck.dm" +#include "maps\sccv_horizon\areas\horizon_areas_maintenance.dm" +#include "maps\sccv_horizon\areas\horizon_areas_medical.dm" +#include "maps\sccv_horizon\areas\horizon_areas_operations.dm" +#include "maps\sccv_horizon\areas\horizon_areas_science.dm" +#include "maps\sccv_horizon\areas\horizon_areas_security.dm" +#include "maps\sccv_horizon\areas\horizon_areas_service.dm" +#include "maps\sccv_horizon\areas\horizon_areas_shuttle.dm" #include "maps\sccv_horizon\code\_sccv_horizon_shuttle_landmarks.dm" #include "maps\sccv_horizon\code\sccv_horizon.dm" -#include "maps\sccv_horizon\code\sccv_horizon_areas.dm" #include "maps\sccv_horizon\code\sccv_horizon_holodeck.dm" #include "maps\sccv_horizon\code\sccv_horizon_lifts.dm" #include "maps\sccv_horizon\code\sccv_horizon_overmap.dm" diff --git a/code/__DEFINES/ship_locations.dm b/code/__DEFINES/ship_locations.dm new file mode 100644 index 00000000000..bfb6d1ed062 --- /dev/null +++ b/code/__DEFINES/ship_locations.dm @@ -0,0 +1,73 @@ +/// Constants for area management on the Horizon. + +/// Locations +// LOC_AMIDSHIPS should only be assigned to var/location_ew +#define LOC_AMIDSHIPS "Amidships" +// East +#define LOC_PORT "Port" +#define LOC_PORT_FAR "Far to Port" +#define LOC_PORT_NEAR "Port Amidships" +// West +#define LOC_STARBOARD "Starboard" +#define LOC_STARBOARD_FAR "Far to Starboard" +#define LOC_STARBOARD_NEAR "Starboard Amidships" +// North +#define LOC_AFT "Aft" +#define LOC_AFT_FAR "Far to Aft" +#define LOC_AFT_NEAR "Aft Amidships" +// South +#define LOC_FORE "Fore" +#define LOC_FORE_FAR "Far to Fore" +#define LOC_FORE_NEAR "Fore Amidships" + +/// 'Departments' - formal and informal +// If we rename any of these, also change them in subsystems.dm define. +#define LOC_AI "Artificial Intelligence" +#define LOC_COMMAND "Command" +// LOC_PUBLIC and LOC_CREW are effectively the same thing, just separated for flavor. +// LOC_PUBLIC is pretty much going to be hallways/stairs etc. +#define LOC_PUBLIC "Public" +#define LOC_CREW "Crew Areas" +#define LOC_ENGINEERING "Engineering" +#define LOC_HOLODECK "Holodeck" +#define LOC_MAINTENANCE "Maintenance" +#define LOC_MEDICAL "Medical" +#define LOC_OPERATIONS "Operations" +#define LOC_SCIENCE "Science" +#define LOC_SECURITY "Security" +#define LOC_SERVICE "Service" +#define LOC_SHUTTLE "Shuttle" + +/// Global Subdepartments - Used for every department with a Head of Staff +#define SUBLOC_COMMAND "Command" + +/// Command Subdepartments + +/// Crew Subdepartments +#define SUBLOC_HALLS "Corridor" +#define SUBLOC_STAIRS "Stairwell" +#define SUBLOC_CRYO "Cryogenics" +#define SUBLOC_RESDECK "ResDeck" + +/// Engineering Subdepartments +#define SUBLOC_ATMOS "Atmospherics" +#define SUBLOC_TELECOMMS "Telecomms" + +/// Operations Subdepartments +#define SUBLOC_MINING "Mining" +#define SUBLOC_HANGAR "Hangar" +#define SUBLOC_MACHINING "Machining" + +/// Science Subdepartments +#define SUBLOC_XENOBIO "Xenobiology" +#define SUBLOC_XENOBOT "Xenobotany" +#define SUBLOC_XENOARCH "Xenoarchaeology" + +/// Service Subdepartments +#define SUBLOC_BAR "Bar" +#define SUBLOC_CHAPEL "Chapel" +#define SUBLOC_CUSTODIAL "Custodial" +#define SUBLOC_HYDRO "Hydroponics" +#define SUBLOC_KITCHEN "Kitchen" +#define SUBLOC_LIBRARY "Library" + diff --git a/code/__DEFINES/subsystems.dm b/code/__DEFINES/subsystems.dm index b20d6c4e0e2..765fed916ff 100644 --- a/code/__DEFINES/subsystems.dm +++ b/code/__DEFINES/subsystems.dm @@ -149,6 +149,7 @@ // - SSjobs -- // departments +// If we rename any of these, also change them in ship_locations.dm define. #define DEPARTMENT_COMMAND "Command" #define DEPARTMENT_COMMAND_SUPPORT "Command Support" #define DEPARTMENT_SECURITY "Security" diff --git a/code/__HELPERS/areas.dm b/code/__HELPERS/areas.dm index 162abd045f3..8f68821b7cf 100644 --- a/code/__HELPERS/areas.dm +++ b/code/__HELPERS/areas.dm @@ -101,7 +101,7 @@ . = !is_area_with_turf(A) /proc/is_maint_area(var/area/A) - . = istype(A,/area/maintenance) + . = istype(A,/area/horizon/maintenance) /proc/is_not_maint_area(var/area/A) . = !is_maint_area(A) diff --git a/code/__HELPERS/game.dm b/code/__HELPERS/game.dm index f71b172f070..a8a0aa6be4c 100644 --- a/code/__HELPERS/game.dm +++ b/code/__HELPERS/game.dm @@ -21,6 +21,48 @@ if (isarea(A)) return A +/** + * For use only on the Horizon. + * Prepends a given area's name with its department and deck # for presentation. Returns a string. + * Example of a fully configured area name output: + * Engineering (Atmospherics) - Deck 1 - Combustion Turbine - Port Amidships, Aft + */ +/proc/get_area_display_name(var/area/A, var/show_dept = TRUE, var/show_subdept = TRUE, var/show_deck = TRUE, var/show_location = TRUE, var/show_hidden_depts = FALSE) + if(!is_station_area(A)) + return A.name + var/horizon_deck = A.horizon_deck + var/location_ew = A.location_ew + var/location_ns = A.location_ns + var/department = A.department + var/subdepartment = A.subdepartment + var/output = "" + + // All maintenance areas should, by name, be self-identifying as being maints. We usually don't care to see it. + // Likewise public areas are self-evident. + if(horizon_deck && show_deck) + output += "Deck [num2text(horizon_deck)] - " + if(!show_hidden_depts && (department == LOC_MAINTENANCE || department == LOC_PUBLIC)) + department = null + if(department && show_dept) + output += "[department]" + if(subdepartment && show_subdept) + output += " ([subdepartment])" + output += " - " + + output += "[A.name]" + + if((location_ew || location_ns) && show_location) + output += " (" + if(location_ew) + output += "[location_ew]" + if(location_ns) + output += ", " + if(location_ns) + output += "[location_ns]" + output += ")" + + return output + /proc/in_range(source, user) if(get_dist(source, user) <= 1) return 1 diff --git a/code/game/area/areas.dm b/code/game/area/areas.dm index 1493a82f4f0..6098ac7cdeb 100644 --- a/code/game/area/areas.dm +++ b/code/game/area/areas.dm @@ -81,6 +81,13 @@ GLOBAL_LIST_INIT(area_blurb_stated_to, list()) * This includes any non-space area, including maintenance; it doesn't include space or shuttles (as they could be outside the station) */ var/station_area = FALSE + /// Only used for the Horizon, and mostly for mapping checks/naming. All except horizon_deck (integer) use '_DEFINES\ship_locations.dm' constants + var/horizon_deck = null + var/department = null + var/subdepartment = null + // 'amidships' belongs to location_ew + var/location_ew = null + var/location_ns = null var/centcomm_area = FALSE @@ -474,16 +481,14 @@ GLOBAL_LIST_INIT(area_blurb_stated_to, list()) continue if (istype(A, /area/solar) || findtext(A.name, "solar")) continue - if (istype(A, /area/constructionsite) || istype(A, /area/maintenance/interstitial_construction_site)) + if (istype(A, /area/constructionsite)) continue - if (istype(A, /area/rnd/xenobiology)) + if (istype(A, /area/horizon/rnd/xenobiology)) continue - if (istype(A, /area/maintenance/substation)) + if (istype(A, /area/horizon/maintenance/substation)) continue if (istype(A, /area/turbolift)) continue - if (istype(A, /area/security/penal_colony)) - continue if (istype(A, /area/mine)) continue if (istype(A, /area/horizon/exterior)) diff --git a/code/game/gamemodes/cult/hell_universe.dm b/code/game/gamemodes/cult/hell_universe.dm index 6dab6cf64dd..a30f247df44 100644 --- a/code/game/gamemodes/cult/hell_universe.dm +++ b/code/game/gamemodes/cult/hell_universe.dm @@ -38,7 +38,7 @@ In short: /datum/universal_state/hell/OnEnter() SSgarbage.can_fire = FALSE // Yeah, fuck it. No point hard-deleting stuff now. - GLOB.escape_list = get_area_turfs(locate(/area/hallway/secondary/exit)) + GLOB.escape_list = get_area_turfs(locate(/area/horizon/shuttle/escape_pod)) //Separated into separate procs for profiling AreaSet() diff --git a/code/game/gamemodes/events/power_failure.dm b/code/game/gamemodes/events/power_failure.dm index ea6e0f2784b..b74afc9029e 100644 --- a/code/game/gamemodes/events/power_failure.dm +++ b/code/game/gamemodes/events/power_failure.dm @@ -13,7 +13,7 @@ C.energy_fail(rand(40 * severity,150 * severity)) /proc/power_restore(var/announce = 1) - var/list/skipped_areas = list(/area/turret_protected/ai) + var/list/skipped_areas = list(/area/horizon/ai) if(announce) command_announcement.Announce("The ship's power subroutines have been stabilized and restored.", "Power Systems Nominal", new_sound = 'sound/AI/poweron.ogg') diff --git a/code/game/gamemodes/objective.dm b/code/game/gamemodes/objective.dm index 86565bd0d84..790194eccdd 100644 --- a/code/game/gamemodes/objective.dm +++ b/code/game/gamemodes/objective.dm @@ -286,7 +286,7 @@ GLOBAL_LIST_EMPTY(process_objectives) var/turf/T = get_turf(player) if(!T) continue - if(istype(T.loc.type, /area/shuttle/escape) || istype(T.loc.type, /area/shuttle/escape_pod)) + if(istype(T.loc.type, /area/shuttle/escape) || istype(T.loc.type, /area/horizon/shuttle/escape_pod)) return 0 return 1 @@ -311,7 +311,7 @@ GLOBAL_LIST_EMPTY(process_objectives) var/area/check_area = location.loc if(istype(check_area, /area/shuttle/escape)) return 1 - if(istype(check_area, /area/shuttle/escape_pod)) + if(istype(check_area, /area/horizon/shuttle/escape_pod)) return 1 else return 0 @@ -526,7 +526,7 @@ GLOBAL_LIST_EMPTY(process_objectives) var/area/check_area = get_area(ai) if(istype(check_area, /area/shuttle/escape)) return 1 - if(istype(check_area, /area/shuttle/escape_pod)) + if(istype(check_area, /area/horizon/shuttle/escape_pod)) return 1 else diff --git a/code/game/gamemodes/vampire/vampire_helpers.dm b/code/game/gamemodes/vampire/vampire_helpers.dm index 475d3c1bc65..936314f9531 100644 --- a/code/game/gamemodes/vampire/vampire_helpers.dm +++ b/code/game/gamemodes/vampire/vampire_helpers.dm @@ -256,7 +256,7 @@ return // Apply frenzy while in the chapel. - if (istype(get_area(loc), /area/chapel)) + if (istype(get_area(loc), /area/horizon/service/chapel)) vampire.frenzy += 3 if (vampire.blood_usable < 10) diff --git a/code/game/gamemodes/vampire/vampire_powers.dm b/code/game/gamemodes/vampire/vampire_powers.dm index d85c065f563..ea26fc5a8d0 100644 --- a/code/game/gamemodes/vampire/vampire_powers.dm +++ b/code/game/gamemodes/vampire/vampire_powers.dm @@ -484,7 +484,7 @@ ghost_last_move = world.time var/turf/new_loc = get_step(src, direction) - if(new_loc.turf_flags & TURF_FLAG_NOJAUNT || istype(new_loc.loc, /area/chapel)) + if(new_loc.turf_flags & TURF_FLAG_NOJAUNT || istype(new_loc.loc, /area/horizon/service/chapel)) to_chat(usr, SPAN_WARNING("Some strange aura is blocking the way!")) return diff --git a/code/game/machinery/ai_slipper.dm b/code/game/machinery/ai_slipper.dm index 5813afa387a..8cf9e9203ff 100644 --- a/code/game/machinery/ai_slipper.dm +++ b/code/game/machinery/ai_slipper.dm @@ -75,7 +75,8 @@ to_chat(user, "Turret badly positioned - loc.loc is [loc].") return var/area/area = loc - var/t = "AI Liquid Dispenser ([area.name])
" + var/area_display_name = get_area_display_name(area) + var/t = "AI Liquid Dispenser ([area_display_name])
" if(src.locked && (!istype(user, /mob/living/silicon))) t += "(Swipe ID card to unlock control panel.)
" diff --git a/code/game/machinery/alarm.dm b/code/game/machinery/alarm.dm index 9d80a3a3418..3163ccbbefd 100644 --- a/code/game/machinery/alarm.dm +++ b/code/game/machinery/alarm.dm @@ -354,12 +354,13 @@ pixel_x = 10; /obj/machinery/alarm/proc/first_run() alarm_area = get_area(src) + var/area_display_name = get_area_display_name(alarm_area) area_uid = alarm_area.uid if (name == "alarm") if (highpower) - name = "[alarm_area.name] High-Power Air Alarm" + name = "[area_display_name] High-Power Air Alarm" else - name = "[alarm_area.name] Air Alarm" + name = "[area_display_name] Air Alarm" if(!wires) wires = new(src) @@ -630,9 +631,10 @@ pixel_x = 10; return var/datum/signal/alert_signal = new + var/area_display_name = get_area_display_name(alarm_area) alert_signal.source = src alert_signal.transmission_method = TRANSMISSION_RADIO - alert_signal.data["zone"] = alarm_area.name + alert_signal.data["zone"] = area_display_name alert_signal.data["type"] = "Atmospheric" if(alert_level==2) diff --git a/code/game/machinery/camera/camera_assembly.dm b/code/game/machinery/camera/camera_assembly.dm index 1443da1fb03..6349a31de17 100644 --- a/code/game/machinery/camera/camera_assembly.dm +++ b/code/game/machinery/camera/camera_assembly.dm @@ -92,7 +92,8 @@ return TRUE var/area/camera_area = get_area(src) - var/temptag = "[sanitize(camera_area.name)] ([rand(1, 999)])" + var/area_display_name = get_area_display_name(camera_area) + var/temptag = "[sanitize(area_display_name)] ([rand(1, 999)])" input = sanitizeSafe( tgui_input_text(user, "How would you like to name the camera?", "Set Camera Name", (camera_name ? camera_name : temptag), MAX_NAME_LEN), MAX_NAME_LEN ) state = 4 diff --git a/code/game/machinery/lightswitch.dm b/code/game/machinery/lightswitch.dm index d6774dd323a..741ac4a3d5b 100644 --- a/code/game/machinery/lightswitch.dm +++ b/code/game/machinery/lightswitch.dm @@ -23,12 +23,13 @@ /obj/machinery/light_switch/Initialize() . = ..() src.area = get_area(src) + var/area_display_name = get_area_display_name(area) if(otherarea) src.area = locate(text2path("/area/[otherarea]")) if(!name) - name = "light switch ([area.name])" + name = "light switch ([area_display_name])" src.on = src.area.lightswitch addtimer(CALLBACK(src, PROC_REF(sync_lights)), 25) diff --git a/code/game/machinery/nuclear_bomb.dm b/code/game/machinery/nuclear_bomb.dm index 0cd79625117..c7a985c6d1d 100644 --- a/code/game/machinery/nuclear_bomb.dm +++ b/code/game/machinery/nuclear_bomb.dm @@ -402,7 +402,7 @@ GLOBAL_VAR(bomb_set) /obj/item/disk/nuclear/Destroy() GLOB.nuke_disks -= src if(!GLOB.nuke_disks.len) - var/turf/T = pick_area_turf(/area/maintenance, list(/proc/is_station_turf, /proc/not_turf_contains_dense_objects)) + var/turf/T = pick_area_turf(/area/horizon/maintenance, list(/proc/is_station_turf, /proc/not_turf_contains_dense_objects)) if(T) var/obj/D = new /obj/item/disk/nuclear(T) log_and_message_admins("[src], the last authentication disk, has been destroyed. Spawning [D] at ([D.x], [D.y], [D.z]).", location = T) diff --git a/code/game/turfs/simulated.dm b/code/game/turfs/simulated.dm index 18f09f44d3b..1eecde825f3 100644 --- a/code/game/turfs/simulated.dm +++ b/code/game/turfs/simulated.dm @@ -16,7 +16,7 @@ /turf/simulated/Initialize(mapload) if (mapload) - if(istype(loc, /area/chapel)) + if(istype(loc, /area/horizon/service/chapel)) holy = 1 . = ..() diff --git a/code/modules/events/blob.dm b/code/modules/events/blob.dm index f507e85b305..ae0c7cda3cf 100644 --- a/code/modules/events/blob.dm +++ b/code/modules/events/blob.dm @@ -10,7 +10,7 @@ /datum/event/blob/start() ..() - var/turf/T = pick_subarea_turf(/area/maintenance, list(/proc/is_station_turf, /proc/not_turf_contains_dense_objects)) + var/turf/T = pick_subarea_turf(/area/horizon/maintenance, list(/proc/is_station_turf, /proc/not_turf_contains_dense_objects)) if(!T) log_and_message_admins("Blob failed to find a viable turf.") kill(TRUE) diff --git a/code/modules/events/prison_break.dm b/code/modules/events/prison_break.dm index e83b964efd4..00c5cefde32 100644 --- a/code/modules/events/prison_break.dm +++ b/code/modules/events/prison_break.dm @@ -13,21 +13,21 @@ //Names of areas mentioned in AI and Engineering announcements var/list/areaName = list("Security") //Area types to include. - var/list/areaType = list(/area/security) + var/list/areaType = list(/area/horizon/security) //Area types to specifically exclude. - var/list/areaNotType = list(/area/security/armory, /area/security/nuke_storage, /area/security/checkpoint, /area/security/checkpoint2, /area/security/bridge_surface_checkpoint, /area/security/penal_colony) + var/list/areaNotType = list(/area/horizon/security/checkpoint, /area/horizon/security/checkpoint2) /datum/event/prison_break/xenobiology eventDept = "Science" areaName = list("Xenobiology") - areaType = list(/area/rnd/xenobiology) - areaNotType = list(/area/rnd/xenobiology/xenoflora, /area/rnd/xenobiology/xenoflora_storage) + areaType = list(/area/horizon/rnd/xenobiology) + areaNotType = list(/area/horizon/rnd/xenobiology/xenoflora) /datum/event/prison_break/bridge eventDept = "Bridge" areaName = list("Bridge") - areaType = list(/area/bridge, /area/teleporter, /area/crew_quarters/heads/cryo, /area/maintenance/maintcentral) - areaNotType = list(/area/bridge/aibunker, /area/bridge/levela, /area/bridge/selfdestruct) + areaType = list(/area/horizon/command/bridge, /area/horizon/command/teleporter, /area/horizon/maintenance/deck_3/bridge) + areaNotType = list(/area/horizon/command/bridge/aibunker, /area/horizon/command/bridge/selfdestruct) /datum/event/prison_break/setup() announceWhen = rand(75, 105) diff --git a/code/modules/mining/minebot.dm b/code/modules/mining/minebot.dm index e77e2974c2f..d3c86706839 100644 --- a/code/modules/mining/minebot.dm +++ b/code/modules/mining/minebot.dm @@ -15,7 +15,7 @@ hat_x_offset = 1 hat_y_offset = -12 standard_drone = FALSE - var/list/allowed_areas = list(/area/exoplanet, /area/shuttle/mining, /area/shuttle/intrepid) //Needed for the bot to go mining + var/list/allowed_areas = list(/area/exoplanet, /area/horizon/shuttle/mining, /area/horizon/shuttle/intrepid) //Needed for the bot to go mining var/seeking_player = FALSE var/health_upgrade var/ranged_upgrade diff --git a/code/modules/mob/living/carbon/brain/posibrain.dm b/code/modules/mob/living/carbon/brain/posibrain.dm index d25a555bc19..f43345f0af6 100644 --- a/code/modules/mob/living/carbon/brain/posibrain.dm +++ b/code/modules/mob/living/carbon/brain/posibrain.dm @@ -55,10 +55,6 @@ to_chat(brainmob, "As a synthetic intelligence, you answer to all crewmembers, as well as the AI.") to_chat(brainmob, "Remember, the purpose of your existence is to serve the crew and the [station_name(TRUE)]. Above all else, do no harm.") - var/area/A = get_area(src) - if(istype(A, /area/assembly/robotics)) - GLOB.global_announcer.autosay("A positronic brain has completed its boot process in: [A.name].", "Robotics Oversight", "Science") - brainmob.client.init_verbs() return src diff --git a/code/modules/mob/living/carbon/human/human.dm b/code/modules/mob/living/carbon/human/human.dm index acde205e213..0c552337ac7 100644 --- a/code/modules/mob/living/carbon/human/human.dm +++ b/code/modules/mob/living/carbon/human/human.dm @@ -206,6 +206,24 @@ /mob/living/carbon/human/get_status_tab_items() . = ..() + + /// This needs to be updated to use signals. + var/holding_gps = FALSE + if(istype(src.get_active_hand(), /obj/item/device/gps) || istype(src.get_inactive_hand(), /obj/item/device/gps)) + holding_gps = TRUE + + var/area/A = get_area(src) + var/area_name + if(holding_gps) + if(is_station_area(A)) + area_name = get_area_display_name(A) + else + area_name = A.name + . += "[area_name]" + . += "" + if(A.area_blurb) + . += "[A.area_blurb]" + . += "" . += "Intent: [a_intent]" . += "Move Mode: [m_intent]" if(is_diona() && DS) @@ -213,8 +231,8 @@ . += "Energy: [round(DS.stored_energy)] / [round(DS.max_energy)]" if(DS.regen_limb) . += "Regeneration Progress: [round(DS.regen_limb_progress)] / [LIMB_REGROW_REQUIREMENT]" - if (internal) - if (!internal.air_contents) + if(internal) + if(!internal.air_contents) qdel(internal) else . += "Internal Atmosphere Info: [internal.name]" diff --git a/code/modules/modular_computers/file_system/programs/engineering/powermonitor.dm b/code/modules/modular_computers/file_system/programs/engineering/powermonitor.dm index 39528a1bc19..d3d29be9326 100644 --- a/code/modules/modular_computers/file_system/programs/engineering/powermonitor.dm +++ b/code/modules/modular_computers/file_system/programs/engineering/powermonitor.dm @@ -82,6 +82,7 @@ /datum/computer_file/program/power_monitor/process_tick() ..() + refresh_sensors() if(has_alarm()) if(!has_alert) program_icon_state = "power_monitor_warn" diff --git a/code/modules/power/apc.dm b/code/modules/power/apc.dm index e43d99d2ac8..1c86ccc0b6c 100644 --- a/code/modules/power/apc.dm +++ b/code/modules/power/apc.dm @@ -162,10 +162,11 @@ ABSTRACT_TYPE(/obj/machinery/power/apc) init(mapload) else area = get_area(src) + var/area_display_name = get_area_display_name(area) area.apc = src opened = COVER_OPENED operating = FALSE - name = "[area.name] APC" + name = "[area_display_name] APC" stat |= MAINT update_icon() @@ -250,14 +251,15 @@ ABSTRACT_TYPE(/obj/machinery/power/apc) cell.charge = start_charge * cell.maxcharge / 100.0 // (convert percentage to actual value) var/area/A = loc.loc + var/area_display_name = get_area_display_name(A) //if area isn't specified use current if(isarea(A) && areastring == null) area = A - name = "\improper [area.name] APC" + name = "[area_display_name] APC" else area = get_area_name(areastring) - name = "\improper [area.name] APC" + name = "[area_display_name] APC" area.apc = src update_icon() @@ -939,7 +941,8 @@ ABSTRACT_TYPE(/obj/machinery/power/apc) /obj/machinery/power/apc/ui_interact(mob/user, datum/tgui/ui) ui = SStgui.try_update_ui(user, src, ui) if(!ui) - ui = new(user, src, "Apc", "[area.name] - APC", 665, (isobserver(user) && check_rights(R_ADMIN, FALSE, user) || issilicon(user) || isstoryteller(user)) ? 540 : 480) + var/area_display_name = get_area_display_name(area) + ui = new(user, src, "Apc", "[area_display_name] - APC", 665, (isobserver(user) && check_rights(R_ADMIN, FALSE, user) || issilicon(user) || isstoryteller(user)) ? 540 : 480) ui.open() /obj/machinery/power/apc/proc/update() diff --git a/code/modules/power/gravitygenerator.dm b/code/modules/power/gravitygenerator.dm index cfebd4d955e..3bea8335cf3 100644 --- a/code/modules/power/gravitygenerator.dm +++ b/code/modules/power/gravitygenerator.dm @@ -347,20 +347,21 @@ // Sound the alert if gravity was just enabled or disabled. var/alert = 0 var/area/area = get_area(src) + var/areadisplayname = get_area_display_name(area) if(new_state) // If we turned on if(!area.has_gravity()) alert = 1 GLOB.gravity_is_on = 1 soundloop.start(src) investigate_log("was brought online and is now producing gravity for this level.", "gravity") - message_admins("The gravity generator was brought online. ([area.name])") + message_admins("The gravity generator was brought online. ([areadisplayname])") else if(area.has_gravity()) alert = 1 GLOB.gravity_is_on = 0 soundloop.stop(src) investigate_log("was brought offline and there is now no gravity for this level.", "gravity") - message_admins("The gravity generator was brought offline with no backup generator. ([area.name])") + message_admins("The gravity generator was brought offline with no backup generator. ([areadisplayname])") update_icon() update_list(gravity_changed) diff --git a/code/modules/power/sensors/powernet_sensor.dm b/code/modules/power/sensors/powernet_sensor.dm index 1eb1e2da463..28804cb3817 100644 --- a/code/modules/power/sensors/powernet_sensor.dm +++ b/code/modules/power/sensors/powernet_sensor.dm @@ -164,11 +164,8 @@ APC_entry["cell_status"] = A.cell ? chg[A.charging+1] : 0 // Other info APC_entry["total_load"] = reading_to_text(A.lastused_total) - // Hopefully removes those goddamn \improper s which are screwing up the UI - var/N = A.area.name - if(findtext(N, "�")) - N = copytext(N, 3) - APC_entry["name"] = N + var/area_display_name = get_area_display_name(A.area) + APC_entry["name"] = area_display_name // Add data into main list of APC data. APC_data += list(APC_entry) // Add load of this APC to total APC load calculation diff --git a/code/modules/power/singularity/investigate.dm b/code/modules/power/singularity/investigate.dm deleted file mode 100644 index c0c62616ed3..00000000000 --- a/code/modules/power/singularity/investigate.dm +++ /dev/null @@ -1,4 +0,0 @@ -/area/engineering/power_alert(var/alarming) - if (alarming) - investigate_log("has a power alarm!","singulo") - ..() diff --git a/code/modules/shuttles/escape_pods.dm b/code/modules/shuttles/escape_pods.dm index e11bc3fcf2d..c1684f1276f 100644 --- a/code/modules/shuttles/escape_pods.dm +++ b/code/modules/shuttles/escape_pods.dm @@ -179,7 +179,7 @@ GLOBAL_LIST_EMPTY(escape_pods_by_name) #define AURORA_ESCAPE_POD(NUMBER) \ /datum/shuttle/autodock/ferry/escape_pod/pod/escape_pod##NUMBER { \ name = "Escape Pod " + #NUMBER; \ - shuttle_area = /area/shuttle/escape_pod/pod##NUMBER; \ + shuttle_area = /area/horizon/shuttle/escape_pod/pod##NUMBER; \ location = 0; \ dock_target = "escape_pod_" + #NUMBER; \ arming_controller = "escape_pod_"+ #NUMBER +"_berth"; \ diff --git a/code/modules/telesci/gps.dm b/code/modules/telesci/gps.dm index 81e673759b6..a0424d97c12 100644 --- a/code/modules/telesci/gps.dm +++ b/code/modules/telesci/gps.dm @@ -161,7 +161,7 @@ GLOBAL_LIST_EMPTY(gps_list) /obj/item/device/gps/ui_interact(mob/user, var/datum/tgui/ui) ui = SStgui.try_update_ui(user, src, ui) if(!ui) - ui = new(user, src, "GPS", capitalize_first_letters(name), 460, 600) + ui = new(user, src, "GPS", capitalize_first_letters(name), 720, 960) ui.open() /obj/item/device/gps/process() @@ -247,7 +247,8 @@ GLOBAL_LIST_EMPTY(gps_list) update_icon() return var/area/gpsarea = get_area(src) - GLOB.gps_list[gpstag] = list("tag" = gpstag, "pos_x" = T.x, "pos_y" = T.y, "pos_z" = T.z, "area" = "[gpsarea.name]", "emped" = emped, "compass_color" = compass_color) + var/gps_areaname = get_area_display_name(gpsarea, TRUE, FALSE, FALSE, TRUE) + GLOB.gps_list[gpstag] = list("tag" = gpstag, "pos_x" = T.x, "pos_y" = T.y, "pos_z" = T.z, "area" = "[gps_areaname]", "emped" = emped, "compass_color" = compass_color) if(check_held_by && held_by && (held_by.get_active_hand() == src || held_by.get_inactive_hand() == src)) update_compass(TRUE) diff --git a/code/modules/vehicles/droppod.dm b/code/modules/vehicles/droppod.dm index da904e268a8..d3588c86815 100644 --- a/code/modules/vehicles/droppod.dm +++ b/code/modules/vehicles/droppod.dm @@ -189,26 +189,23 @@ switch(target) if("recreational_areas") var/list/recreational_areas_list = list( - /area/horizon/crew_quarters/fitness/hallway = 25, - /area/horizon/crew_quarters/fitness/changing = 25, - /area/horizon/crew_quarters/fitness/pool = 25, - /area/horizon/crew_quarters/fitness/gym = 25 + /area/horizon/crew/fitness/changing = 25, + /area/horizon/crew/fitness/gym = 25 ) A = pickweight(recreational_areas_list) if("operations") var/list/ops_list = list( - /area/operations/break_room = 15, - /area/maintenance/wing/starboard = 20, - /area/maintenance/wing/starboard/deck1 = 20, - /area/operations/office = 10, - /area/operations/storage = 15, - /area/outpost/mining_main/refinery = 20 + /area/horizon/operations/break_room = 15, + /area/horizon/maintenance/deck_1/operations/starboard = 20, + /area/horizon/operations/office = 10, + /area/horizon/operations/warehouse = 15, + /area/horizon/operations/mining_main/refinery = 20 ) A = pickweight(ops_list) if("starboard_wing") var/list/starboard_wing_list = list( - /area/maintenance/wing/starboard = 50, - /area/maintenance/wing/starboard/far = 50 + /area/horizon/maintenance/deck_1/wing/starboard = 50, + /area/horizon/maintenance/deck_1/wing/starboard/far = 50 ) A = pickweight(starboard_wing_list) if(A) diff --git a/code/unit_tests/zas_tests.dm b/code/unit_tests/zas_tests.dm index 03ab0292a1c..0834a2879d9 100644 --- a/code/unit_tests/zas_tests.dm +++ b/code/unit_tests/zas_tests.dm @@ -123,12 +123,12 @@ GLOBAL_LIST_EMPTY(turfs_to_map_type) /datum/unit_test/zas_area_test/ai_chamber name = "ZAS: AI Chamber" - area_path = /area/turret_protected/ai + area_path = /area/horizon/ai/chamber expectation = UT_NORMAL_COOL /datum/unit_test/zas_area_test/xenobio name = "ZAS: Xenobiology" - area_path = /area/rnd/xenobiology + area_path = /area/horizon/rnd/xenobiology /* /datum/unit_test/zas_area_test/mining_area diff --git a/html/changelogs/Batrachophreno-AreasCleanup.yml b/html/changelogs/Batrachophreno-AreasCleanup.yml new file mode 100644 index 00000000000..34d73a65b9e --- /dev/null +++ b/html/changelogs/Batrachophreno-AreasCleanup.yml @@ -0,0 +1,65 @@ +################################ +# Example Changelog File +# +# Note: This file, and files beginning with ".", and files that don't end in ".yml" will not be read. If you change this file, you will look really dumb. +# +# Your changelog will be merged with a master changelog. (New stuff added only, and only on the date entry for the day it was merged.) +# When it is, any changes listed below will disappear. +# +# Valid Prefixes: +# bugfix +# - (fixes bugs) +# wip +# - (work in progress) +# qol +# - (quality of life) +# soundadd +# - (adds a sound) +# sounddel +# - (removes a sound) +# rscadd +# - (adds a feature) +# rscdel +# - (removes a feature) +# imageadd +# - (adds an image or sprite) +# imagedel +# - (removes an image or sprite) +# spellcheck +# - (fixes spelling or grammar) +# experiment +# - (experimental change) +# balance +# - (balance changes) +# code_imp +# - (misc internal code change) +# refactor +# - (refactors code) +# config +# - (makes a change to the config files) +# admin +# - (makes changes to administrator tools) +# server +# - (miscellaneous changes to server) +################################# + +# Your name. +author: Batrachophrenoboocosmomachia + +# Optional: Remove this file after generating master changelog. Useful for PR changelogs that won't get used again. +delete-after: True + +# Any changes you've made. See valid prefix list above. +# INDENT WITH TWO SPACES. NOT TABS. SPACES. +# SCREW THIS UP AND IT WON'T WORK. +# Also, this gets changed to [] after reading. Just remove the brackets when you add new shit. +# Please surround your changes in double quotes ("). It works without them, but if you use certain characters it screws up compiling. The quotes will not show up in the changelog. +changes: + - rscadd: "Area names now populate in the Status tab if your character is holding a GPS unit in their active or inactive hand." + - rscadd: "Area blurbs now poulate in the Status tab under any condition (so long as the area has one)." + - refactor: "Refactored all the scattered Horizon /area/ definitions into unified folder." + - refactor: "Re-mapped and renamed most affected areas for better clarity and easier future updates." + - code_imp: "Added additional metadata variables to Horizon /areas/" + - qol: "Updated some procs to generate consistently descriptive area names for the Horizon." + - qol: "Added directional exit helpers to several access-restricted airlocks (able to leave areas without needing someone to open the doors for you, where appropriate)." + - bugfix: "Assorted minor mapping bugfixes (random outside disconnected vent, non-functional shutters, merge-mangled grates, etc.)" diff --git a/maps/_common/areas/asteroid_areas.dm b/maps/_common/areas/asteroid_areas.dm index fd80034d3aa..cbf8f65a09a 100644 --- a/maps/_common/areas/asteroid_areas.dm +++ b/maps/_common/areas/asteroid_areas.dm @@ -19,39 +19,12 @@ /area/outpost ambience = AMBIENCE_EXPOUTPOST -/area/outpost/mining_north - name = "North Mining" - icon_state = "outpost_mine_north" - -/area/outpost/mining_west - name = "West Mining" - icon_state = "outpost_mine_west" - -/area/outpost/abandoned - name = "Abandoned" - icon_state = "dark" - // Main mining /area/outpost/mining_main icon_state = "outpost_mine_main" station_area = TRUE holomap_color = HOLOMAP_AREACOLOR_OPERATIONS -/area/outpost/mining_main/dorms - name = "Mining Dormitory" - -/area/outpost/mining_main/medbay - name = "Mining Medical" - -/area/outpost/mining_main/maintenance - name = "Mining Maintenance" - -/area/outpost/mining_main/west_hall - name = "Mining West Hallway" - -/area/outpost/mining_main/east_hall - name = "Mining East Hallway" - /area/outpost/mining_main/eva name = "Mining EVA storage" @@ -124,18 +97,6 @@ /area/outpost/research/lab name = "Research - Sublevel Laboratory" -/area/outpost/research/emergency_storage - name = "Research - Sublevel Emergency Storage" - -/area/outpost/research/anomaly_harvest - name = "Research - Exotic Energy Harvesting" - -/area/outpost/research/anomaly_storage - name = "Research - Artifact Storage" - -/area/outpost/research/anomaly_analysis - name = "Research - Anomaly Analysis" - /area/outpost/research/kitchen name = "Research - Kitchen" diff --git a/maps/_common/areas/derelict.dm b/maps/_common/areas/derelict.dm index 1ef5c8bcb23..760ec0639e2 100644 --- a/maps/_common/areas/derelict.dm +++ b/maps/_common/areas/derelict.dm @@ -90,6 +90,12 @@ name = "Abandoned Ship" icon_state = "yellow" +/area/solar + requires_power = 1 + always_unpowered = 1 + ambience = AMBIENCE_SPACE + base_turf = /turf/space + /area/solar/derelict_starboard name = "Derelict Starboard Solar Array" icon_state = "panelsS" diff --git a/maps/_common/areas/shuttles.dm b/maps/_common/areas/shuttles.dm index fbe0064a5fc..9924bdc38ab 100644 --- a/maps/_common/areas/shuttles.dm +++ b/maps/_common/areas/shuttles.dm @@ -34,26 +34,6 @@ base_turf = /turf/unsimulated/floor/plating sound_environment = SOUND_AREA_LARGE_ENCLOSED -/area/shuttle/escape_pod - name = "Escape pod" - base_turf = /turf/simulated/floor/exoplanet/asteroid/ash - -/area/shuttle/escape_pod/pod1 - name = "Escape pod - 1" - -/area/shuttle/escape_pod/pod2 - name = "Escape pod - 2" - -/area/shuttle/escape_pod/pod3 - name = "Escape pod - 3" - -/area/shuttle/escape_pod/pod4 - name = "Escape pod - 4" - -/area/shuttle/mining - name = "Spark" - requires_power = TRUE - /area/shuttle/transport1 icon_state = "shuttle" name = "Transport Shuttle" diff --git a/maps/_common/areas/station/civilian.dm b/maps/_common/areas/station/civilian.dm deleted file mode 100644 index f3fb6c29c30..00000000000 --- a/maps/_common/areas/station/civilian.dm +++ /dev/null @@ -1,229 +0,0 @@ -//Crew -/area/crew_quarters - name = "Dormitories" - icon_state = "Sleep" - area_flags = AREA_FLAG_RAD_SHIELDED - station_area = TRUE - holomap_color = HOLOMAP_AREACOLOR_CIVILIAN - -/area/sconference_room - name = "Surface - Conference Room" - icon_state = "Sleep" - station_area = TRUE - -/area/crew_quarters/toilet - name = "Surface - Washroom" - icon_state = "toilet" - sound_environment = SOUND_AREA_SMALL_ENCLOSED - -/area/crew_quarters/sleep - name = "Dormitories" - icon_state = "Sleep" - allow_nightmode = 1 - -/area/crew_quarters/sleep/bedrooms - name = "Dormitory Bedroom One" - icon_state = "Sleep" - sound_environment = SOUND_AREA_SMALL_SOFTFLOOR - -/area/crew_quarters/sleep/cryo - name = "Cryogenic Storage" - icon_state = "Sleep" - -/area/crew_quarters/sleep/main - name = "Main Level Cryogenic Storage" - icon_state = "Sleep" - -/area/crew_quarters/sleep/engineering - name = "Engineering Dormitories" - icon_state = "Sleep" - holomap_color = HOLOMAP_AREACOLOR_ENGINEERING - -/area/crew_quarters/sleep/security - name = "Security Dormitories" - icon_state = "Sleep" - holomap_color = HOLOMAP_AREACOLOR_SECURITY - -/area/crew_quarters/sleep/research - name = "Research Dormitories" - icon_state = "Sleep" - holomap_color = HOLOMAP_AREACOLOR_SCIENCE - -/area/crew_quarters/sleep/medical - name = "Medical Dormitories" - icon_state = "Sleep" - holomap_color = HOLOMAP_AREACOLOR_MEDICAL - -/area/crew_quarters/locker - name = "Locker Room" - icon_state = "locker" - allow_nightmode = 1 - -/area/crew_quarters/locker/locker_toilet - name = "Main Level Toilets" - icon_state = "toilet" - sound_environment = SOUND_AREA_SMALL_ENCLOSED - -/area/crew_quarters/fitness - name = "Surface - Fitness Center" - icon_state = "fitness" - allow_nightmode = 1 - -/area/crew_quarters/fitness/pool - name = "Surface - Pool" - lightswitch = TRUE - -/area/crew_quarters/fitness/changing - name = "Surface - Changing Room" - sound_environment = SOUND_AREA_SMALL_ENCLOSED - -/area/crew_quarters/fitness/running - name = "Surface - Running Track" - allow_nightmode = 0 - -/area/crew_quarters/cafeteria - name = "Cafeteria" - icon_state = "cafeteria" - -/area/crew_quarters/kitchen - name = "Kitchen" - icon_state = "kitchen" - -/area/crew_quarters/kitchen/freezer - name = "Kitchen Freezer" - sound_environment = SOUND_AREA_SMALL_ENCLOSED - -/area/crew_quarters/bar - name = "Bar" - icon_state = "bar" - sound_environment = SOUND_AREA_LARGE_SOFTFLOOR - lightswitch = TRUE - allow_nightmode = 0 - -/area/crew_quarters/bar/below - name = "Bar - Sublevel" - icon_state = "red" - sound_environment = SOUND_AREA_TUNNEL_ENCLOSED - area_flags = AREA_FLAG_HIDE_FROM_HOLOMAP - -/area/crew_quarters/theatre - name = "Theatre" - icon_state = "Theatre" - sound_environment = SOUND_AREA_LARGE_SOFTFLOOR - -/area/library - name = "Library" - icon_state = "library" - sound_environment = SOUND_AREA_LARGE_SOFTFLOOR - station_area = TRUE - -/area/chapel - station_area = TRUE - holomap_color = HOLOMAP_AREACOLOR_CIVILIAN - -/area/chapel/main - name = "Chapel" - icon_state = "chapel" - sound_environment = SOUND_AREA_LARGE_ENCLOSED - ambience = AMBIENCE_CHAPEL - -/area/chapel/office - name = "Chapel Office" - icon_state = "chapeloffice" - -/area/lawoffice - name = "Diplomatic Reception" - icon_state = "law" - station_area = TRUE - sound_environment = SOUND_AREA_MEDIUM_SOFTFLOOR - holomap_color = HOLOMAP_AREACOLOR_CIVILIAN - -/area/lawoffice/consular - name = "Consular Office A" - icon_state = "law_con" - holomap_color = HOLOMAP_AREACOLOR_CIVILIAN - -/area/lawoffice/consular_two - name = "Consular Office B" - icon_state = "law_con_b" - holomap_color = HOLOMAP_AREACOLOR_CIVILIAN - -/area/lawoffice/representative - name = "Representative Office A" - icon_state = "law_rep" - holomap_color = HOLOMAP_AREACOLOR_CIVILIAN - -/area/lawoffice/representative_two - name = "Representative Office B" - icon_state = "law_rep_b" - holomap_color = HOLOMAP_AREACOLOR_CIVILIAN - -/area/quartermaster - name = "Operations Manager" - icon_state = "quart" - station_area = TRUE - holomap_color = HOLOMAP_AREACOLOR_OPERATIONS - -/area/quartermaster/office - name = "Cargo Office" - icon_state = "quartoffice" - sound_environment = SOUND_AREA_MEDIUM_SOFTFLOOR - -/area/quartermaster/lobby - name = "Cargo Lobby" - icon_state = "green" - -/area/quartermaster/break_room - name = "Cargo Break Room" - icon_state = "blue" - -/area/quartermaster/mail_room - name = "Cargo Mail Room" - icon_state = "red" - -/area/quartermaster/storage - name = "Cargo Warehouse" - icon_state = "quartstorage" - sound_environment = SOUND_AREA_LARGE_ENCLOSED - -/area/quartermaster/loading - name = "Cargo Bay" - icon_state = "quartloading" - -/area/quartermaster/qm - name = "Cargo - Operations Manager's Office" - icon_state = "quart" - sound_environment = SOUND_AREA_SMALL_SOFTFLOOR - -/area/quartermaster/miningdock - name = "Cargo Mining Dock" - icon_state = "mining" - -/area/janitor - name = "Custodial Closet" - icon_state = "janitor" - station_area = TRUE - ambience = AMBIENCE_MAINTENANCE - -/area/janitor/stairs - name = "Stairwell Custodial Closet" - -/area/hydroponics - name = "Hydroponics" - icon_state = "hydro" - no_light_control = TRUE - station_area = TRUE - -/area/hydroponics/garden - name = "Garden" - icon_state = "garden" - -/area/store - name = "Surface - Commissary" - icon_state = "quartstorage" - station_area = TRUE - -/area/journalistoffice - name = "Journalist's Office" - station_area = TRUE - sound_environment = SOUND_AREA_SMALL_SOFTFLOOR diff --git a/maps/_common/areas/station/command.dm b/maps/_common/areas/station/command.dm deleted file mode 100644 index 8c5e821e8d8..00000000000 --- a/maps/_common/areas/station/command.dm +++ /dev/null @@ -1,131 +0,0 @@ -//Command - -/area/bridge - name = "Bridge" - icon_state = "bridge" - no_light_control = 1 - station_area = TRUE - holomap_color = HOLOMAP_AREACOLOR_COMMAND - area_blurb = "The sound here seems to carry more than others, every click of a shoe or clearing of a throat amplified. The smell of ink, written and printed, wafts notably through the air." - area_blurb_category = "command" - -/area/bridge/upperdeck - name = "Command Atrium Upper Deck" - icon_state = "bridge" - -/area/bridge/minibar - name = "Command Break Room" - icon_state = "bridge" - -/area/bridge/ailobby - name = "AI Elevator Access" - icon_state = "ai_foyer" - -/area/bridge/aibunker - name = "Command - Bunker" - icon_state = "ai_foyer" - area_flags = AREA_FLAG_RAD_SHIELDED | AREA_FLAG_HIDE_FROM_HOLOMAP - -/area/bridge/centcom_meetingroom - name = "Level A Meeting Room" - icon_state = "bridge" - -/area/bridge/levela - name = "Surface - Bridge" - icon_state = "bridge" - -/area/bridge/levela/research_dock - name = "Surface - Bridge Expeditionary Dock" - icon_state = "research_dock" - -/area/crew_quarters/heads/cryo - name = "Command - Dormitory" - icon_state = "head_quarters" - -/area/bridge/meeting_room - name = "Command - Conference Room" - icon_state = "bridge" - ambience = list() - sound_environment = SOUND_AREA_MEDIUM_SOFTFLOOR - area_blurb = "A place for behind-closed-doors meetings to get things done, or to argue for hours in..." - area_blurb_category = "command_meeting" - area_flags = AREA_FLAG_RAD_SHIELDED - -/area/bridge/cciaroom - name = "Command - Human Resources Meeting Room" - icon_state = "hr" - sound_environment = SOUND_AREA_MEDIUM_SOFTFLOOR - area_blurb = "You might feel dread when you enter this meeting room." - area_blurb_category = "hr_meeting" - area_flags = AREA_FLAG_RAD_SHIELDED - -/area/bridge/cciaroom/lounge - name = "Command - Human Resources Lounge" - icon_state = "hrlounge" - sound_environment = SOUND_AREA_SMALL_SOFTFLOOR - area_blurb = "A place that may worsen any anxiety surrounding meetings with your bosses' boss." - area_blurb_category = "hr_lounge" - area_flags = AREA_FLAG_RAD_SHIELDED - -/area/bridge/selfdestruct - name = "Command - Station Authentication Terminal Safe" - icon_state = "bridge" - area_flags = AREA_FLAG_HIDE_FROM_HOLOMAP - -/area/bridge/controlroom // Horizon. - name = "Command - Control Room" - area_blurb = "The full expanse of space lies beyond a thick pane of reinforced glass, all that protects you from a cold and painful death. The computers hum, showing various displays and holographic signs. The sight would be overwhelming if you are not used to such an environment. Even at full power, the sensors fail to map even a fraction of the dots of light making up the cosmic filament." - area_blurb_category = "bridge" - area_flags = AREA_FLAG_RAD_SHIELDED - -/area/crew_quarters/captain - name = "Command - Captain's Office" - icon_state = "captain" - sound_environment = SOUND_AREA_MEDIUM_SOFTFLOOR - holomap_color = HOLOMAP_AREACOLOR_COMMAND - -/area/crew_quarters/heads - holomap_color = HOLOMAP_AREACOLOR_COMMAND - -/area/crew_quarters/heads/hop - name = "Command - HoP's Office" - icon_state = "head_quarters" - -/area/crew_quarters/heads/hor - name = "Research - RD's Office" - icon_state = "head_quarters" - -/area/crew_quarters/heads/chief - name = "Engineering - CE's Office" - icon_state = "head_quarters" - -/area/crew_quarters/heads/hos - name = "Security - HoS' Office" - icon_state = "head_quarters" - -/area/crew_quarters/heads/cmo - name = "Medbay - CMO's Office" - icon_state = "head_quarters" - -/area/crew_quarters/courtroom - name = "Courtroom" - icon_state = "courtroom" - -/area/comms - name = "Communications Relay" - icon_state = "tcomsatcham" - no_light_control = 1 - station_area = TRUE - -/area/server - name = "Research Server Room" - icon_state = "server" - station_area = TRUE - holomap_color = HOLOMAP_AREACOLOR_SCIENCE - - -//Teleporter -/area/teleporter - name = "Command - Teleporter" - icon_state = "teleporter" - station_area = TRUE diff --git a/maps/_common/areas/station/engineering.dm b/maps/_common/areas/station/engineering.dm deleted file mode 100644 index 3c771975868..00000000000 --- a/maps/_common/areas/station/engineering.dm +++ /dev/null @@ -1,130 +0,0 @@ - -//Engineering - -/area/engineering - name = "Engineering" - icon_state = "engineering" - ambience = AMBIENCE_ENGINEERING - station_area = TRUE - holomap_color = HOLOMAP_AREACOLOR_ENGINEERING - -/area/engineering/atmos - name = "Engineering - Atmospherics" - icon_state = "atmos" - sound_environment = SOUND_AREA_LARGE_ENCLOSED - no_light_control = 1 - ambience = list(AMBIENCE_ENGINEERING, AMBIENCE_ATMOS) - area_blurb = "Many volume tanks filled with gas reside here, some providing vital gases for the vessel's life support systems." - area_blurb_category = "atmos" - -/area/engineering/atmos/monitoring - name = "Engineering - Atmospherics Monitoring Room" - icon_state = "atmos_monitoring" - sound_environment = SOUND_AREA_STANDARD_STATION - -/area/engineering/atmos/storage - name = "Engineering - Atmospherics Storage" - icon_state = "atmos_storage" - sound_environment = SOUND_AREA_SMALL_ENCLOSED - -/area/engineering/drone_fabrication - name = "Engineering - Drone Fabrication" - icon_state = "drone_fab" - sound_environment = SOUND_AREA_SMALL_ENCLOSED - -/area/engineering/engine_smes - name = "Engineering - Main Lvl. SMES Room" - icon_state = "engine_smes" - sound_environment = SOUND_AREA_SMALL_ENCLOSED - ambience = AMBIENCE_SINGULARITY - -/area/engineering/engine_room - name = "Engineering - Engine Room" - icon_state = "engine" - sound_environment = SOUND_AREA_LARGE_ENCLOSED - no_light_control = 1 - ambience = AMBIENCE_SINGULARITY - -/area/engineering/engine_airlock - name = "Engineering - Engine Room Airlock" - icon_state = "engine" - -/area/engineering/engine_monitoring - name = "Engineering - Monitoring Room" - icon_state = "engine_monitoring" - -/area/engineering/engine_waste - name = "Engineering - Engine Waste Handling" - icon_state = "engine_waste" - no_light_control = 1 - -/area/engineering/engineering_monitoring - name = "Engineering - Monitoring Room" - icon_state = "engine_monitoring" - -/area/engineering/engineering_hallway_main - name = "Engineering - Main Level Hallway" - lightswitch = TRUE - icon_state = "engine_monitoring" - -/area/engineering/foyer - name = "Engineering - Foyer" - icon_state = "engineering_foyer" - allow_nightmode = 1 - -/area/engineering/storage - name = "Engineering - Storage" - icon_state = "engineering_storage" - -/area/engineering/storage_hard - name = "Engineering - Hard Storage" - icon_state = "engineering_storage" - -/area/engineering/storage_eva - name = "Engineering - EVA Storage" - icon_state = "engineering_storage" - -/area/engineering/storage_sublevel - name = "Engineering - Sublevel Storage" - icon_state = "engineering_storage" - -/area/engineering/storage_tesla - name = "Engineering - Tesla Parts Storage" - icon_state = "engineering_storage" - -/area/engineering/break_room - name = "Engineering - Break Room" - icon_state = "engineering_break" - sound_environment = SOUND_AREA_MEDIUM_SOFTFLOOR - area_blurb = "The smell of coffee intermixed with oil linger in the air." - area_blurb_category = "engi_breakroom" - -/area/engineering/engine_eva - name = "Engineering - Engine EVA" - icon_state = "engine_eva" - -/area/engineering/locker_room - name = "Engineering - Locker Room" - icon_state = "engineering_locker" - -/area/engineering/bathroom - name = "Engineering - Bathroom" - icon_state = "engineering_locker" - -/area/engineering/workshop - name = "Engineering - Workshop" - icon_state = "engineering_workshop" - -/area/engineering/cooling - name = "Engineering - Engine Cooling Radiator" - icon_state = "engine_monitoring" - sound_environment = SOUND_AREA_SMALL_ENCLOSED - -/area/engineering/gravity_gen - name = "Engineering - Gravity Generator" - icon_state = "engine" - -/area/engineering/backup_SMES - name = "Engineering - Backup Power Storage" - icon_state = "substation" - sound_environment = SOUND_AREA_SMALL_ENCLOSED diff --git a/maps/_common/areas/station/hallways.dm b/maps/_common/areas/station/hallways.dm deleted file mode 100644 index af1eb12a919..00000000000 --- a/maps/_common/areas/station/hallways.dm +++ /dev/null @@ -1,89 +0,0 @@ -// Hallways -/area/hallway - sound_environment = SOUND_AREA_LARGE_ENCLOSED - allow_nightmode = TRUE - station_area = TRUE - lightswitch = TRUE - holomap_color = HOLOMAP_AREACOLOR_HALLWAYS - emergency_lights = TRUE - -/area/hallway/primary/fore - name = "Fore Primary Hallway" - icon_state = "hallF" - -/area/hallway/primary/starboard - name = "Starboard Primary Hallway" - icon_state = "hallS" - -/area/hallway/primary/aft - name = "Aft Primary Hallway" - icon_state = "hallA" - -/area/hallway/primary/port - name = "Port Primary Hallway" - icon_state = "hallP" - -/area/hallway/primary/central_one - name = "Central Primary Hallway" - icon_state = "hallC1" - -/area/hallway/primary/central_two - name = "Central Primary Hallway" - icon_state = "hallC2" - -/area/hallway/primary/central_three - name = "Central Primary Hallway" - icon_state = "hallC3" - -/area/hallway/secondary/exit - name = "Surface - Red Dock" - icon_state = "escape" - no_light_control = TRUE - holomap_color = HOLOMAP_AREACOLOR_HANGAR - -/area/hallway/secondary/construction - name = "Construction Area" - icon_state = "construction" - allow_nightmode = FALSE - lightswitch = FALSE - -/area/hallway/secondary/entry/fore - name = "Surface Lvl. Hallway Fore" - icon_state = "entry_1" - -/area/hallway/secondary/entry/port - name = "Surface - Yellow Dock" - icon_state = "entry_2" - -/area/hallway/secondary/entry/starboard - name = "Arrival Shuttle Hallway - Starboard" - icon_state = "entry_3" - -/area/hallway/secondary/entry/central - name = "Surface Lvl. Hallway Central" - icon_state = "entry_3" - -/area/hallway/secondary/entry/aft - name = "Surface Lvl. Hallway Aft" - icon_state = "entry_4" - -/area/hallway/secondary/entry/dock - name = "Surface - Blue Dock" - icon_state = "arrivals_dock" - holomap_color = HOLOMAP_AREACOLOR_DOCK - -/area/hallway/secondary/entry/emergency - name = "Emergency Services Dock" - icon_state = "escape" - -/area/hallway/secondary/entry/departure_lounge - name = "Surface - Departures Lounge" - icon_state = "dep_lounge" - -/area/hallway/secondary/entry/locker - name = "Surface - Locker Room" - icon_state = "locker" - -/area/hallway/secondary/entry/stairs - name = "Surface Access Stairwell" - icon_state = "dk_yellow" diff --git a/maps/_common/areas/station/maintenance.dm b/maps/_common/areas/station/maintenance.dm deleted file mode 100644 index 8317d3096b7..00000000000 --- a/maps/_common/areas/station/maintenance.dm +++ /dev/null @@ -1,363 +0,0 @@ -//Maintenance - -/area/maintenance - area_flags = AREA_FLAG_RAD_SHIELDED | AREA_FLAG_HIDE_FROM_HOLOMAP - sound_environment = SOUND_AREA_TUNNEL_ENCLOSED - turf_initializer = new /datum/turf_initializer/maintenance() - ambience = AMBIENCE_MAINTENANCE - station_area = TRUE - area_blurb = "Scarcely lit, cramped, and filled with stale, dusty air. Around you hisses compressed air through the pipes, a buzz of electrical charge through the wires, and muffled rumbles of the hull settling. This place may feel alien compared to the interior of the ship and is a place where one could get lost or badly hurt, but some may find the isolation comforting." - area_blurb_category = "maint" - -/area/maintenance/civ - name = "Civilian Maintenance" - icon_state = "maintcentral" - -/area/maintenance/aft - name = "Aft Maintenance" - icon_state = "amaint" - -/area/maintenance/fore - name = "Fore Maintenance" - icon_state = "fmaint" - -/area/maintenance/starboard - name = "Starboard Maintenance" - icon_state = "smaint" - -/area/maintenance/port - name = "Port Maintenance" - icon_state = "pmaint" - -/area/maintenance/atmos_control - name = "Atmospherics Maintenance" - icon_state = "fpmaint" - -/area/maintenance/fpmaint - name = "Fore Port Maintenance - 1" - icon_state = "fpmaint" - -/area/maintenance/fpmaint2 - name = "Fore Port Maintenance - 2" - icon_state = "fpmaint" - -/area/maintenance/fsmaint - name = "Fore Starboard Maintenance - 1" - icon_state = "fsmaint" - -/area/maintenance/fsmaint2 - name = "Fore Starboard Maintenance - 2" - icon_state = "fsmaint" - -/area/maintenance/asmaint - name = "Aft Starboard Maintenance" - icon_state = "asmaint" - -/area/maintenance/engi_shuttle - name = "Engineering Shuttle Access" - icon_state = "maint_e_shuttle" - -/area/maintenance/engi_engine - name = "Engine Maintenance" - icon_state = "maint_engine" - -/area/maintenance/asmaint2 - name = "Science Maintenance" - icon_state = "asmaint" - -/area/maintenance/apmaint - name = "Cargo Maintenance" - icon_state = "apmaint" - -/area/maintenance/maintcentral - name = "Bridge Maintenance" - icon_state = "maintcentral" - -/area/maintenance/bridge_elevator - name = "Bridge Elevator Maintenance" - icon_state = "maintcentral" - -/area/maintenance/bridge_elevator/surface - name = "Surface - Bridge Elevator Maintenance" - -/area/maintenance/arrivals - name = "Surface Maintenance" - icon_state = "maint_arrivals" - -/area/maintenance/store - name = "Commissary Maintenance" - icon_state = "maint_cargo" - -/area/maintenance/bar - name = "Bar Maintenance" - icon_state = "maint_bar" - -/area/maintenance/bar/above - name = "Bar Interstitial Maintenance" - icon_state = "red" - -/area/maintenance/cargo - name = "Cargo Maintenance" - icon_state = "maint_cargo" - -/area/maintenance/cargo/surface - name = "Cargo Maintenance - Surface" - -/area/maintenance/disposal - name = "Waste Disposal" - icon_state = "disposal" - -/area/maintenance/engineering - name = "Engineering Maintenance" - icon_state = "maint_engineering" - -/area/maintenance/engineering/auxillary - name = "Auxillary Engineering Maintenance" - icon_state = "maint_engineering" - -/area/maintenance/sublevel - name = "Sub-level Maintenance" - icon_state = "maint_engineering" - -/area/maintenance/engsublevel - name = "Engineering Sub-level Maintenance" - icon_state = "maint_engineering" - -/area/maintenance/medsublevel - name = "Medical Sub-level Maintenance" - icon_state = "maint_engineering" - -/area/maintenance/medsublevel_port - name = "Old Quarantine" - icon_state = "maint_medbay" - -/area/maintenance/scisublevel - name = "Research Sub-level Maintenance" - icon_state = "maint_engineering" - -/area/maintenance/evahallway - name = "EVA Maintenance" - icon_state = "maint_eva" - -/area/maintenance/solarmaint - name = "Surface - Solar Maintenance" - icon_state = "maint_eva" - base_turf = /turf/space - -/area/maintenance/dormitory - name = "Dormitory Maintenance" - icon_state = "maint_dormitory" - -/area/maintenance/incinerator - name = "Incinerator" - icon_state = "disposal" - -/area/maintenance/library - name = "Library Maintenance" - icon_state = "maint_library" - -/area/maintenance/locker - name = "Locker Room Maintenance" - icon_state = "maint_locker" - -/area/maintenance/medbay - name = "Medbay Maintenance" - icon_state = "maint_medbay" - -/area/maintenance/medbay_interstitial - name = "Medbay Interstitial Maintenance" - icon_state = "maint_medbay" - -/area/maintenance/medbay_virology - name = "Old Virology Lab" - icon_state = "maint_medbay" - -/area/maintenance/research_port - name = "Research Maintenance - Port" - icon_state = "maint_research_port" - -/area/maintenance/telecoms_ladder - name = "Telecoms Ladder Shaft" - icon_state = "tcomsatentrance" - -/area/maintenance/engineering_ladder - name = "Engineering Ladder Shaft" - icon_state = "maint_engineering" - -/area/maintenance/research_xenobiology - name = "Research Maintenance - Xenobiology" - icon_state = "maint_research_port" - -/area/maintenance/research_starboard - name = "Research Maintenance - Starboard" - icon_state = "maint_research_starboard" - -/area/maintenance/research_shuttle - name = "Research Shuttle Dock Maintenance" - icon_state = "maint_research_shuttle" - -/area/maintenance/security_port - name = "Security Maintenance - Port" - icon_state = "maint_security_port" - -/area/maintenance/security_starboard - name = "Security Maintenance - Starboard" - icon_state = "maint_security_starboard" - -/area/maintenance/security_interstitial - name = "Security Maintenance - Interstitial" - icon_state = "maint_security_starboard" - -/area/maintenance/storage - name = "Atmospherics" - icon_state = "green" - -/area/maintenance/interstitial_main - name = "Construction Level" - icon_state = "maintcentral" - -/area/maintenance/interstitial_cargo - name = "Cargo - Interstitial" - icon_state = "maint_cargo" - -/area/maintenance/interstitial_bridge - name = "Bridge - Interstitial" - icon_state = "maintcentral" - -/area/maintenance/bridge - name = "Bridge Maintenance" - icon_state = "maintcentral" - -/area/maintenance/interstitial_construction_site - name = "Construction Zone" - icon_state = "engineering_workshop" - area_flags = AREA_FLAG_HIDE_FROM_HOLOMAP - -/area/maintenance/interstitial_construction_site/zone_2 - name = "Secondary Construction Zone" - -/area/maintenance/interstitial_construction_site/office - name = "Construction Office" - -/area/maintenance/elevator - name = "Primary Elevator Shaft Maintenance" - sound_environment = SOUND_AREA_SMALL_ENCLOSED - icon_state = "green" - -/area/maintenance/vault - name = "Vault Maintenance" - icon_state = "green" - -// SUBSTATIONS (Subtype of maint, that should let them serve as shielded area during radstorm) - -/area/maintenance/substation - name = "Substation" - icon_state = "substation" - sound_environment = SOUND_AREA_SMALL_ENCLOSED - ambience = AMBIENCE_SUBSTATION - area_blurb = "The hum of the substation's machinery fills the room, holding equipment made to transform voltage and manage power supply to various rooms, and to act as an emergency battery. In comparison to the maintenance tunnels, these stations are far less dusty." - area_blurb_category = "substation" - -/area/maintenance/substation/engineering // Engineering - name = "Engineering Substation" - -/area/maintenance/substation/engineering_sublevel // Engineering - name = "Engineering Sublevel Substation" - -/area/maintenance/substation/medical_science // Medbay and Science. Each has it's own separated machinery, but it originates from the same room. - name = "Medical Research Substation" - -/area/maintenance/substation/medical // Medbay - name = "Main Lvl. Medical Substation" - -/area/maintenance/substation/medical_sublevel // Medbay - name = "Medical Sublevel - Substation" - -/area/maintenance/substation/research // Research - name = "Main Lvl. Research Substation" - -/area/maintenance/substation/research_sublevel - name = "Research Sublevel - Substation" - -/area/maintenance/substation/civilian_east // Bar, kitchen, dorms, ... - name = "Surface Lvl. Civilian Substation" - -/area/maintenance/substation/civilian_west // PTS, locker room, probably arrivals, ...) - name = "Main Lvl. Civilian Substation" - -/area/maintenance/substation/command // AI and central cluster. This one will be between HoP office and meeting room (probably). - name = "Command Substation" - -/area/maintenance/substation/security // Security, Brig, Permabrig, etc. - name = "Security Substation" - -/area/maintenance/substation/interstitial // Construction Level. - name = "Construction Level Substation" - -/area/maintenance/substation/supply // Cargo and Mining. - name = "Main Lvl. Supply Substation" - -//Solars - -/area/solar - requires_power = 1 - always_unpowered = 1 - ambience = AMBIENCE_SPACE - base_turf = /turf/space - station_area = TRUE - -/area/solar/auxport - name = "Roof Solar Array" - icon_state = "panelsA" - base_turf = /turf/space - -/area/solar/auxstarboard - name = "Fore Starboard Solar Array" - icon_state = "panelsA" - -/area/solar/fore - name = "Surface - Fore TComms Solar Array" - icon_state = "yellow" - -/area/solar/aft - name = "Aft Solar Array" - icon_state = "aft" - -/area/solar/starboard - name = "Surface - Aft TComms Solar Array" - icon_state = "panelsS" - -/area/solar/port - name = "Surface - Port TComms Solar Array" - icon_state = "panelsP" - -/area/maintenance/auxsolarport - name = "Solar Maintenance - Fore Port" - icon_state = "SolarcontrolP" - sound_environment = SOUND_AREA_SMALL_ENCLOSED - -/area/maintenance/starboardsolar - name = "Solar Maintenance - Aft" - icon_state = "SolarcontrolS" - sound_environment = SOUND_AREA_SMALL_ENCLOSED - -/area/maintenance/portsolar - name = "Solar Maintenance - Port" - icon_state = "SolarcontrolP" - sound_environment = SOUND_AREA_SMALL_ENCLOSED - -/area/maintenance/auxsolarstarboard - name = "Solar Maintenance - Fore Starboard" - icon_state = "SolarcontrolS" - sound_environment = SOUND_AREA_SMALL_ENCLOSED - -/area/maintenance/foresolar - name = "Solar Maintenance - Fore" - icon_state = "SolarcontrolA" - sound_environment = SOUND_AREA_SMALL_ENCLOSED - -/area/maintenance/workshop - name = "Research Maintenance - Auxiliary" - icon_state = "workshop" - turf_initializer = null - sound_environment = SOUND_AREA_SMALL_ENCLOSED diff --git a/maps/_common/areas/station/medical.dm b/maps/_common/areas/station/medical.dm deleted file mode 100644 index 48041c54f5b..00000000000 --- a/maps/_common/areas/station/medical.dm +++ /dev/null @@ -1,205 +0,0 @@ - -//MedBay - -/area/medical - station_area = TRUE - holomap_color = HOLOMAP_AREACOLOR_MEDICAL - area_blurb = "Various smells waft through the air: disinfectants, various medicines, sterile gloves, and gauze. It's not a pleasant smell, but one you could grow to ignore." - area_blurb_category = "mecical" - -//Medbay is a large area, these additional areas help level out APC load. - -/area/medical/medbay - name = "Medbay Hallway - Port" - lightswitch = TRUE - icon_state = "medbay" - ambience = list('sound/ambience/signal.ogg') - -/area/medical/medbay2 - name = "Medbay Hallway - Starboard" - lightswitch = TRUE - icon_state = "medbay2" - ambience = list('sound/ambience/signal.ogg') - -/area/medical/medbay3 - name = "Medbay Hallway - Fore" - lightswitch = TRUE - icon_state = "medbay3" - ambience = list('sound/ambience/signal.ogg') - -/area/medical/medbay4 - name = "Medbay Hallway - Staff Wing" - lightswitch = TRUE - icon_state = "medbay4" - ambience = list('sound/ambience/signal.ogg') - -/area/medical/paramedic - name = "Medical - Paramedic Equipment Storage" - icon_state = "medbay" - -/area/medical/temp_morgue - name = "Medical - Temporary Morgue" - icon_state = "morgue" - ambience = AMBIENCE_GHOSTLY - -/area/medical/biostorage - name = "Medical - Secondary Storage" - icon_state = "medbay2" - -/area/medical/reception - name = "Medical - Reception" - icon_state = "medbay" - ambience = list('sound/ambience/signal.ogg') - -/area/medical/psych - name = "Medical - Psych Room" - icon_state = "medbay3" - area_blurb = "Featuring wood floors and soft carpets, this room has a warmer feeling compared to the sterility of the rest of the medical department." - area_blurb_category = "psych" - -/area/medical/upperlevel - name = "Medical - Upper-Level Hallway" - lightswitch = TRUE - icon_state = "medbay2" - -/area/crew_quarters/medbreak - name = "Medical - Break Room" - icon_state = "medbay3" - -/area/medical/patients_rooms - name = "Medical - Patient's Rooms" - icon_state = "patients" - -/area/medical/patient_a - name = "Medical - Isolation A" - icon_state = "patients" - -/area/medical/patient_b - name = "Medical - Isolation B" - icon_state = "patients" - -/area/medical/patient_c - name = "Medical - Isolation C" - icon_state = "patients" - -/area/medical/patient_d - name = "Medical - Isolation D" - icon_state = "patients" - -/area/medical/patient_wing - name = "Medical - Patient Wing" - icon_state = "patients" - -/area/medical/patient_wing_hallway - name = "Medical - Patient Wing Hallway" - lightswitch = TRUE - icon_state = "patients" - -/area/medical/patient_wing_gym - name = "Medical - Patient Wing Gym" - icon_state = "patients" - -/area/medical/patient_wing_post1 - name = "Medical - Patient Wing Observation Post One" - icon_state = "patients" - -/area/medical/patient_wing_post2 - name = "Medical - Patient Wing Observation Post Two" - icon_state = "patients" - -/area/medical/patient_wing_library - name = "Medical - Patient Wing Library" - icon_state = "patients" - -/area/medical/patient_wing_picnic - name = "Medical - Patient Wing Picnic Area" - icon_state = "patients" - -/area/medical/cmostore - name = "Secure Storage" - icon_state = "CMO" - -/area/medical/robotics - name = "Robotics" - icon_state = "medresearch" - ambience = AMBIENCE_ENGINEERING - -/area/medical/morgue - name = "Medical - Long-term Morgue" - icon_state = "morgue" - ambience = AMBIENCE_GHOSTLY - area_blurb = "Morgue trays sit within this room, ready to hold the deceased until their postmortem wishes can be attended to." - area_blurb_category = "morgue" - -/area/medical/pharmacy - name = "Medical - Pharmacy" - icon_state = "phar" - -/area/medical/surgery - name = "Medical - Operating Theatre" - icon_state = "surgery" - no_light_control = 1 - -/area/medical/surgeryobs - name = "Medical - Operation Observation Room" - icon_state = "surgery" - -/area/medical/surgeryprep - name = "Medical - Pre-Op Prep Room" - icon_state = "surgery" - -/area/medical/surgerywing - name = "Medical - Surgery Wing" - icon_state = "surgery" - -/area/medical/cryo - name = "Cryogenics" - icon_state = "cryo" - -/area/medical/gen_treatment - name = "Medical - General Treatment" - icon_state = "cryo" - -/area/medical/exam_room - name = "Medical - Exam Room 1" - icon_state = "exam_room" - -/area/medical/exam_room2 - name = "Medical - Exam Room 2" - icon_state = "exam_room" - -/area/medical/genetics - name = "Genetics Lab" - icon_state = "genetics" - holomap_color = HOLOMAP_AREACOLOR_SCIENCE - -/area/medical/custodial_closet - name = "Medical - Custodial Closet" - icon_state = "medcustodial" - -/area/medical/sleeper - name = "Medical - Emergency Treatment Centre" - icon_state = "exam_room" - no_light_control = 1 - -/area/medical/icu - name = "Medical - Intensive Care Unit" - icon_state = "cryo" - area_blurb = "The sounds of pumps and cooling equipment can be heard within the room." - area_blurb_category = "icu" - -/area/medical/triage - name = "Medical - Triage Room" - icon_state = "medbay4" - -/area/medical/em_preop - name = "Medical - Emergency Pre-Op" - icon_state = "medbay4" - -/area/medical/med_office - name = "Medical - Medical Office" - icon_state = "exam_room" - -/area/medical/main_storage - name = "Medical - Main Storage" - icon_state = "exam_room" diff --git a/maps/_common/areas/station/research.dm b/maps/_common/areas/station/research.dm deleted file mode 100644 index d38d5298f80..00000000000 --- a/maps/_common/areas/station/research.dm +++ /dev/null @@ -1,205 +0,0 @@ -/area/assembly - station_area = TRUE - -/area/assembly/chargebay - name = "Mech Bay" - icon_state = "mechbay" - -/area/assembly/robotics - name = "Robotics Lab" - icon_state = "robotics" - -/area/assembly/robotics/workshop - name = "Robotics Workshop" - icon_state = "robotics" - -/area/assembly/robotics_cyborgification - name = "Cyborgification Bay" - icon_state = "robotics" - -/area/assembly/assembly_line //Derelict Assembly Line - name = "Assembly Line" - icon_state = "robotics" - power_equip = 0 - power_light = 0 - power_environ = 0 - - -//rnd (Research and Development -/area/rnd - station_area = TRUE - holomap_color = HOLOMAP_AREACOLOR_SCIENCE - -/area/rnd/hallway - name = "Research - Hallway" - icon_state = "research" - lightswitch = TRUE - -/area/rnd/hallway/secondary - name = "Research - Secondary Hallway" - icon_state = "research" - lightswitch = TRUE - -/area/rnd/research - name = "Research and Development" - icon_state = "research" - -/area/rnd/telesci - name = "Research - Telescience Laboratory" - icon_state = "research" - -/area/rnd/chemistry - name = "Research - Exploratory Chemistry" - icon_state = "chem" - -/area/rnd/docking - name = "Research Dock" - icon_state = "research_dock" - -/area/rnd/lab - name = "Research - R&D Laboratory" - icon_state = "toxlab" - -/area/rnd/rdoffice - name = "Research Director's Office" - icon_state = "head_quarters" - -/area/rnd/supermatter - name = "Research - Supermatter Lab" - icon_state = "toxlab" - -/area/rnd/xenobiology - name = "Research - Xenobiology Lab" - icon_state = "xeno_lab" - -/area/rnd/xenobiology/xenological - name = "Research - Xenological Studies" - icon_state = "xeno_log" - -/area/rnd/xenobiology/hazardous - name = "Research - Xenobiology Hazardous Containment" - icon_state = "xeno_lab" - -/area/rnd/xenobiology/dissection - name = "Research - Xenobiology Dissection" - icon_state = "xeno_lab" - -/area/rnd/xenobiology/foyer - name = "Research - Xenobiology Foyer" - icon_state = "xeno_lab" - -/area/rnd/xenobiology/specimendisposal - name = "Research - Xenobiology Specimen Disposal" - icon_state = "xeno_lab" - -/area/rnd/xenobiology/xenological - name = "Research - Xenological Studies" - icon_state = "xeno_log" - -/area/rnd/xenobiology/xenoflora_storage - name = "Research - Xenoflora Storage" - icon_state = "xeno_f_store" - no_light_control = TRUE - -/area/rnd/xenobiology/xenoflora - name = "Research - Xenoflora Lab" - icon_state = "xeno_f_lab" - no_light_control = TRUE - -/area/rnd/xenobiology/xenoflora_hazard - name = "Research - Xenoflora Hazardous Specimens" - icon_state = "red" - no_light_control = TRUE - -/area/rnd/xenobiology/cells - name = "Research - Xenobiology Cell" - no_light_control = TRUE - area_flags = AREA_FLAG_RAD_SHIELDED | AREA_FLAG_SPAWN_ROOF - -/area/rnd/xenobiology/cells/alpha - name = "Research - Xenobiology Alpha" - icon_state = "red" - -/area/rnd/xenobiology/cells/bravo - name = "Research - Xenobiology Bravo" - icon_state = "green" - -/area/rnd/xenobiology/cells/charlie - name = "Research - Xenobiology Charlie" - icon_state = "red" - -/area/rnd/xenobiology/cells/delta - name = "Research - Xenobiology Delta" - icon_state = "green" - -/area/rnd/xenobiology/cells/echo - name = "Research - Xenobiology Echo" - icon_state = "red" - -/area/rnd/xenobiology/cells/foxtrot - name = "Research - Xenobiology Foxtrot" - icon_state = "green" - -/area/rnd/xenobiology/cells/golf - name = "Research - Xenobiology Golf" - icon_state = "red" - -/area/rnd/xenobiology/cells/hotel - name = "Research - Xenobiology Hotel" - icon_state = "green" - -/area/rnd/storage - name = "Research - Toxins Storage" - icon_state = "toxstorage" - -/area/rnd/strongroom - name = "Research - Research Storage" - icon_state = "toxlab" - -/area/rnd/test_area - name = "Research - Toxins Test Area" - icon_state = "toxtest" - -/area/rnd/mixing - name = "Research - Toxins Mixing Room" - icon_state = "toxmix" - -/area/rnd/misc_lab - name = "Research - Circuitry Lab" - icon_state = "toxmisc" - -/area/rnd/eva - name = "Research - EVA Preparation" - icon_state = "blue" - -/area/rnd/xenoarch_atrium - name = "Research - Xenoarchaeology Atrium" - icon_state = "research" - -/area/rnd/xenoarch_storage - name = "Research - Xenoarchaeology Storage" - icon_state = "purple" - -/area/rnd/isolation_a - name = "Research - Anomaly Isolation A" - icon_state = "blue" - -/area/rnd/isolation_b - name = "Research - Anomaly Isolation B" - icon_state = "red" - -/area/rnd/isolation_c - name = "Research - Anomaly Isolation C" - icon_state = "green" - -/area/rnd/test_range - name = "Research - Weapons Testing Range" - area_flags = AREA_FLAG_FIRING_RANGE - -/area/toxins - station_area = TRUE - -/area/toxins/server - name = "Research - Server Room" - icon_state = "server" - station_area = TRUE diff --git a/maps/_common/areas/station/security.dm b/maps/_common/areas/station/security.dm deleted file mode 100644 index abbf36d206f..00000000000 --- a/maps/_common/areas/station/security.dm +++ /dev/null @@ -1,226 +0,0 @@ - -//Security - -/area/security - no_light_control = 1 - station_area = TRUE - holomap_color = HOLOMAP_AREACOLOR_SECURITY - -/area/security/main - name = "Security - Equipment Room" - icon_state = "security" - -// For mapppers -/area/security/lobby - name = "Security - Lobby" - icon_state = "security" - allow_nightmode = 1 - no_light_control = 0 - -/area/security/brig - name = "Security - Brig" - lightswitch = TRUE - area_flags = AREA_FLAG_PRISON - icon_state = "brig" - -/area/security/brig/prison_break() - for(var/obj/structure/closet/secure_closet/brig/temp_closet in src) - temp_closet.locked = 0 - temp_closet.update_icon() - for(var/obj/machinery/door_timer/temp_timer in src) - temp_timer.releasetime = 1 - ..() - -/area/security/brig/control_room - name = "Security - Brig Control Room" - icon_state = "brig_control" - lightswitch = FALSE - no_light_control = 0 - -/area/security/brig/processing - name = "Security - Brig Processing" - icon_state = "brig_proc" - no_light_control = 0 - -/area/security/brig/processing_secondary - name = "Security - Brig Secondary Processing" - icon_state = "brig_proc_two" - no_light_control = 0 - -/area/security/prison - name = "Security - Prison Wing" - lightswitch = TRUE - area_flags = AREA_FLAG_PRISON - icon_state = "sec_prison" - -/area/security/prison/prison_break() - for(var/obj/structure/closet/secure_closet/brig/temp_closet in src) - temp_closet.locked = 0 - temp_closet.update_icon() - for(var/obj/machinery/door_timer/temp_timer in src) - temp_timer.releasetime = 1 - ..() - -/area/security/warden - name = "Security - Warden's Office" - icon_state = "Warden" - sound_environment = SOUND_AREA_SMALL_SOFTFLOOR - no_light_control = 0 - -/area/security/armory - name = "Security - Armory" - icon_state = "Warden" - ambience = AMBIENCE_HIGHSEC - no_light_control = 0 - -/area/security/investigations - name = "Security - Investigations Division" - icon_state = "investigations" - allow_nightmode = 1 - no_light_control = 0 - -/area/security/investigations_storage - name = "Security - Evidence Storage" - icon_state = "evidence" - no_light_control = 0 - -/area/security/forensics_office - name = "Security - Forensic Office" - icon_state = "investigations_office" - sound_environment = SOUND_AREA_MEDIUM_SOFTFLOOR - no_light_control = 0 - -/area/security/forensics_laboratory - name = "Security - Forensic Laboratory" - icon_state = "investigations_office" - sound_environment = SOUND_AREA_SMALL_ENCLOSED - no_light_control = 0 - -/area/security/forensics_morgue - name = "Security - Autopsy Lab" - icon_state = "morgue" - ambience = AMBIENCE_GHOSTLY - no_light_control = 0 - -/area/security/break_room - name = "Security - Break Room" - icon_state = "security" - sound_environment = SOUND_AREA_SMALL_SOFTFLOOR - no_light_control = 0 - -/area/security/training - name = "Security - Training Wing" - icon_state = "training" - allow_nightmode = 1 - no_light_control = 0 - -/area/security/training_theoretical - name = "Security - Theoretical Training" - icon_state = "training_office" - sound_environment = SOUND_AREA_MEDIUM_SOFTFLOOR - no_light_control = 0 - -/area/security/training_crimescene - name = "Security - Crime Scene Training" - icon_state = "training_office" - sound_environment = SOUND_AREA_SMALL_ENCLOSED - no_light_control = 0 - -/area/security/range - name = "Security - Firing Range" - icon_state = "firingrange" - area_flags = AREA_FLAG_FIRING_RANGE - no_light_control = 0 - -/area/security/tactical - name = "Security - Tactical Equipment" - icon_state = "Tactical" - ambience = AMBIENCE_HIGHSEC - no_light_control = 0 - -/area/security/security_office - name = "Security - Security Office" - icon_state = "security" - no_light_control = 0 - -/* - New() - ..() - - spawn(10) //let objects set up first - for(var/turf/turfToGrayscale in src) - if(turfToGrayscale.icon) - var/icon/newIcon = icon(turfToGrayscale.icon) - newIcon.GrayScale() - turfToGrayscale.icon = newIcon - for(var/obj/objectToGrayscale in turfToGrayscale) //1 level deep, means tables, apcs, locker, etc, but not locker contents - if(objectToGrayscale.icon) - var/icon/newIcon = icon(objectToGrayscale.icon) - newIcon.GrayScale() - objectToGrayscale.icon = newIcon -*/ - -/area/security/nuke_storage - name = "Vault" - icon_state = "nuke_storage" - ambience = AMBIENCE_HIGHSEC - holomap_color = null - area_flags = AREA_FLAG_HIDE_FROM_HOLOMAP - no_light_control = 0 - -/area/security/checkpoint - name = "Security Checkpoint" - icon_state = "checkpoint1" - no_light_control = 0 - -/area/security/checkpoint2 - name = "Security - Arrivals Checkpoint" - icon_state = "security" - ambience = AMBIENCE_ARRIVALS - -/area/security/bridge_surface_checkpoint - name = "Bridge Security Checkpoint" - icon_state = "security" - -/area/security/checkpoint/supply - name = "Security Post - Cargo Bay" - icon_state = "checkpoint1" - -/area/security/checkpoint/engineering - name = "Security Post - Engineering" - icon_state = "checkpoint1" - -/area/security/checkpoint/medical - name = "Security Post - Medbay" - icon_state = "checkpoint1" - -/area/security/checkpoint/science - name = "Security Post - Science" - icon_state = "checkpoint1" - -/area/security/vacantoffice - name = "Vacant Office" - icon_state = "security" - no_light_control = 0 - -/area/security/vacantoffice2 - name = "Security - Meeting Room" - no_light_control = 0 - -/area/security/penal_colony - name = "\improper Security - Penal Mining Colony" - icon_state = "security" - holomap_color = null - area_flags = AREA_FLAG_HIDE_FROM_HOLOMAP | AREA_FLAG_PRISON - sound_environment = SOUND_AREA_LARGE_ENCLOSED - ambience = AMBIENCE_HIGHSEC - -/area/security/penal_colony/warden - name = "\improper Security - Remote Warden's Office" - icon_state = "Warden" - sound_environment = SOUND_AREA_SMALL_ENCLOSED - -/area/security/penal_colony/prison - name = "\improper Security - Remote Prison Wing" - icon_state = "sec_prison" - sound_environment = SOUND_AREA_SMALL_ENCLOSED diff --git a/maps/_common/areas/station/storage.dm b/maps/_common/areas/station/storage.dm deleted file mode 100644 index 6c03d8ca67d..00000000000 --- a/maps/_common/areas/station/storage.dm +++ /dev/null @@ -1,59 +0,0 @@ - -//Storage -/area/storage - station_area = TRUE - -/area/storage/tools - name = "Auxiliary Tool Storage" - icon_state = "storage" - allow_nightmode = 1 - -/area/storage/primary - name = "Primary Tool Storage" - icon_state = "primarystorage" - allow_nightmode = 1 - -/area/storage/autolathe - name = "Autolathe Storage" - icon_state = "storage" - -/area/storage/art - name = "Art Supply Storage" - icon_state = "storage" - -/area/storage/auxillary - name = "Auxillary Storage" - icon_state = "auxstorage" - -/area/storage/eva - name = "EVA Storage" - icon_state = "eva" - -/area/storage/secure - name = "Secure Storage" - icon_state = "storage" - -/area/storage/emergency - name = "Starboard Emergency Storage" - icon_state = "emergencystorage" - -/area/storage/emergency2 - name = "Port Emergency Storage" - icon_state = "emergencystorage" - -/area/storage/emergency3 - name = "Central Emergency Storage" - icon_state = "emergencystorage" - -/area/storage/tech - name = "Technical Storage" - icon_state = "auxstorage" - -/area/storage/testroom - requires_power = 0 - name = "Test Room" - icon_state = "storage" - -/area/storage/shields - name = "Station Shield Control" - icon_state = "eva" diff --git a/maps/_common/areas/telecomms.dm b/maps/_common/areas/telecomms.dm index cf0e1dc894c..ea5765bf379 100644 --- a/maps/_common/areas/telecomms.dm +++ b/maps/_common/areas/telecomms.dm @@ -1,21 +1,6 @@ // Telecommunications Satellite -/area/tcommsat - ambience = AMBIENCE_ENGINEERING - no_light_control = 1 - station_area = TRUE - holomap_color = HOLOMAP_AREACOLOR_ENGINEERING - -/area/tcommsat/entrance - name = "Telecoms Entrance" - icon_state = "tcomsatentrance" - lightswitch = TRUE - -/area/tcommsat/chamber - name = "Telecoms Central Compartment" - icon_state = "tcomsatcham" - area_blurb = "Countless machines sit here, an unfathomably complicated network that runs every radio and computer connection. The air lacks any notable scent, having been filtered of dust and pollutants before being allowed into the room and all the sensitive machinery." /area/turret_protected/tcomsat name = "Telecoms Exterior" @@ -36,23 +21,3 @@ name = "Telecommunications Satellite East Wing" icon_state = "tcomsateast" ambience = AMBIENCE_ENGINEERING - -/area/tcommsat/computer - name = "Telecoms Control Room" - icon_state = "tcomsatcomp" - -/area/tcommsat/lounge - name = "Telecommunications Satellite Lounge" - icon_state = "tcomsatlounge" - base_turf = /turf/space - -/area/tcommsat/powercontrol - name = "Telecommunications Power Control" - icon_state = "tcomsatwest" - -/area/tcommsat/mainlvl_tcomms__relay - name = "First Deck Telecommunications Relay" - icon_state = "tcomsatcham" - -/area/tcommsat/mainlvl_tcomms__relay/second - name = "Second Deck Telecommunications Relay" diff --git a/maps/runtime/code/runtime.dm b/maps/runtime/code/runtime.dm index 4c79a43aab5..2c75778ddc5 100644 --- a/maps/runtime/code/runtime.dm +++ b/maps/runtime/code/runtime.dm @@ -61,6 +61,145 @@ map_shuttles = list(/datum/shuttle/autodock/overmap/runtime) warehouse_basearea = /area/storage/primary +/** + * This file is the only location in which runtime map areas should be defined. + * Each department (or other appropriate grouping) will have its own section that you can jump to with ctrl-f. + * For convenience, these groupings are: + * CREW_AREAS + * COMMAND_AREAS + * ENGINEERING_AREAS + * MAINTENANCE_AREAS + * MEDICAL_AREAS + * OPERATIONS_AREAS + * SCIENCE_AREAS + * SECURITY_AREAS + * SERVICE_AREAS + * TCOMMS_AREAS + * + * GUIDELINES: + * - The Horizon should not have any areas mapped to it which are defined outside this file. + * - Any PR that removes all areas of a given definition should also remove that definition from this file. + * - No area should exist across multiple decks. Ex., an elevator vestibule on all three decks should have three + * child definitions, one for each deck. This is both for organization and for managing area objects like APCs etc. + * - Update the groupings list if anything is added/removed. + */ + +/// CIVILIAN_AREAS +// Hallways +/area/hallway + sound_environment = SOUND_AREA_LARGE_ENCLOSED + allow_nightmode = TRUE + station_area = TRUE + lightswitch = TRUE + holomap_color = HOLOMAP_AREACOLOR_HALLWAYS + emergency_lights = TRUE + +/area/hallway/primary/aft + name = "Aft Primary Hallway" + icon_state = "hallA" + +/area/hallway/primary/central_one + name = "Central Primary Hallway" + icon_state = "hallC1" + +/area/hallway/primary/central_two + name = "Central Primary Hallway" + icon_state = "hallC2" + +/// COMMAND_AREAS +/area/bridge + name = "Bridge" + icon_state = "bridge" + no_light_control = 1 + station_area = TRUE + holomap_color = HOLOMAP_AREACOLOR_COMMAND + area_blurb = "The sound here seems to carry more than others, every click of a shoe or clearing of a throat amplified. The smell of ink, written and printed, wafts notably through the air." + area_blurb_category = "command" + +/// ENGINEERING_AREAS +/area/engineering + name = "Engineering" + icon_state = "engineering" + ambience = AMBIENCE_ENGINEERING + station_area = TRUE + holomap_color = HOLOMAP_AREACOLOR_ENGINEERING + +/area/engineering/atmos + name = "Engineering - Atmospherics" + icon_state = "atmos" + sound_environment = SOUND_AREA_LARGE_ENCLOSED + no_light_control = 1 + ambience = list(AMBIENCE_ENGINEERING, AMBIENCE_ATMOS) + area_blurb = "Many volume tanks filled with gas reside here, some providing vital gases for the vessel's life support systems." + area_blurb_category = "atmos" + +/area/engineering/gravity_gen + name = "Engineering - Gravity Generator" + icon_state = "engine" + +/// MAINTENANCE_AREAS +/area/maintenance + station_area = TRUE + area_flags = AREA_FLAG_RAD_SHIELDED | AREA_FLAG_HIDE_FROM_HOLOMAP + sound_environment = SOUND_AREA_TUNNEL_ENCLOSED + turf_initializer = new /datum/turf_initializer/maintenance() + ambience = AMBIENCE_MAINTENANCE + area_blurb = "Scarcely lit, cramped, and filled with stale, dusty air. Around you hisses compressed air through the pipes, a buzz of electrical charge through the wires, and muffled rumbles of the hull settling. This place may feel alien compared to the interior of the ship and is a place where one could get lost or badly hurt, but some may find the isolation comforting." + area_blurb_category = "maint" + +/area/maintenance/maintcentral + name = "Bridge Maintenance" + icon_state = "maintcentral" + +/// MEDICAL_AREAS +/// OPERATIONS_AREAS + +// Smalls +/area/outpost + ambience = AMBIENCE_EXPOUTPOST + +// Main mining +/area/outpost/mining_main + icon_state = "outpost_mine_main" + station_area = TRUE + holomap_color = HOLOMAP_AREACOLOR_OPERATIONS + +/area/outpost/mining_main/eva + name = "Mining EVA storage" + +/// SCIENCE_AREAS +/// SECURITY_AREAS +/area/security + no_light_control = 1 + station_area = FALSE + holomap_color = HOLOMAP_AREACOLOR_SECURITY + +/// SERVICE_AREAS +/// STORAGE_AREAS +//Storage +/area/storage + station_area = TRUE + +/area/storage/primary + name = "Primary Tool Storage" + icon_state = "primarystorage" + allow_nightmode = 1 + +/// TCOMMS_AREAS +/area/tcommsat + ambience = AMBIENCE_ENGINEERING + no_light_control = 1 + station_area = TRUE + holomap_color = HOLOMAP_AREACOLOR_ENGINEERING + +/area/tcommsat/chamber + name = "Telecoms Central Compartment" + icon_state = "tcomsatcham" + area_blurb = "Countless machines sit here, an unfathomably complicated network that runs every radio and computer connection. The air lacks any notable scent, having been filtered of dust and pollutants before being allowed into the room and all the sensitive machinery." + +/area/tcommsat/computer + name = "Telecoms Control Room" + icon_state = "tcomsatcomp" /area/turbolift/main_station name = "Civilian Lift - Main" diff --git a/maps/runtime/code/runtime_unittest.dm b/maps/runtime/code/runtime_unittest.dm index 7db9cb7af89..4d244fbf9d4 100644 --- a/maps/runtime/code/runtime_unittest.dm +++ b/maps/runtime/code/runtime_unittest.dm @@ -11,10 +11,8 @@ /area/space, /area/turbolift, /area/construction/storage, - /area/turret_protected/ai_upload_foyer, - /area/turret_protected/ai, - /area/tcommsat/chamber, - /area/tcommsat/computer, + /area/turret_protected, + /area/tcommsat, /area/construction/hallway ) excluded_test_types = list( diff --git a/maps/runtime/runtime.dmm b/maps/runtime/runtime.dmm index 868f0923b32..1bb288626d1 100644 --- a/maps/runtime/runtime.dmm +++ b/maps/runtime/runtime.dmm @@ -572,7 +572,7 @@ /area/engineering) "bv" = ( /turf/simulated/wall/r_wall, -/area/hallway/secondary/entry) +/area/hallway/primary/central_two) "bw" = ( /obj/machinery/light{ brightness_range = 16; @@ -719,7 +719,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/hallway/secondary/entry) +/area/hallway/primary/central_two) "bR" = ( /obj/machinery/light{ brightness_range = 16; @@ -734,7 +734,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/hallway/secondary/entry) +/area/hallway/primary/central_two) "bS" = ( /obj/structure/closet/secure_closet/hos, /obj/effect/floor_decal/corner/dark_blue{ @@ -744,7 +744,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/hallway/secondary/entry) +/area/hallway/primary/central_two) "bT" = ( /obj/structure/closet/emcloset, /obj/effect/floor_decal/corner/dark_blue{ @@ -754,7 +754,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/hallway/secondary/entry) +/area/hallway/primary/central_two) "bU" = ( /obj/effect/map_effect/window_spawner/full/reinforced, /turf/simulated/floor/plating, @@ -883,7 +883,7 @@ icon_state = "4-8" }, /turf/simulated/wall/r_wall, -/area/hallway/secondary/entry) +/area/hallway/primary/central_two) "ch" = ( /obj/structure/cable{ d1 = 1; @@ -897,17 +897,17 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/hallway/secondary/entry) +/area/hallway/primary/central_two) "ci" = ( /turf/simulated/floor/tiled, -/area/hallway/secondary/entry) +/area/hallway/primary/central_two) "cj" = ( /obj/machinery/door/airlock/maintenance{ dir = 4 }, /obj/machinery/door/firedoor, /turf/simulated/floor/plating, -/area/hallway/secondary/entry) +/area/hallway/primary/central_two) "ck" = ( /obj/machinery/light{ brightness_range = 16; @@ -982,22 +982,22 @@ }, /obj/machinery/door/firedoor, /turf/simulated/floor/tiled, -/area/hallway/secondary/entry) +/area/hallway/primary/central_two) "cu" = ( /obj/effect/floor_decal/industrial/loading/yellow{ dir = 8 }, /turf/simulated/floor/tiled, -/area/hallway/secondary/entry) +/area/hallway/primary/central_two) "cv" = ( /obj/machinery/door/airlock/external{ dir = 4 }, /turf/simulated/floor/plating, -/area/hallway/secondary/entry) +/area/hallway/primary/central_two) "cw" = ( /turf/simulated/floor/plating, -/area/hallway/secondary/entry) +/area/hallway/primary/central_two) "cx" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -1066,7 +1066,7 @@ dir = 4 }, /turf/simulated/wall/r_wall, -/area/hallway/secondary/entry) +/area/hallway/primary/central_two) "cE" = ( /obj/machinery/atmospherics/unary/vent_pump{ dir = 8 @@ -1078,7 +1078,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/hallway/secondary/entry) +/area/hallway/primary/central_two) "cF" = ( /obj/effect/floor_decal/corner/dark_blue{ dir = 1 @@ -1088,7 +1088,7 @@ }, /obj/structure/table/standard, /turf/simulated/floor/tiled, -/area/hallway/secondary/entry) +/area/hallway/primary/central_two) "cG" = ( /obj/item/storage/box/fancy/donut, /obj/effect/floor_decal/corner/dark_blue{ @@ -1100,7 +1100,7 @@ }, /obj/structure/table/standard, /turf/simulated/floor/tiled, -/area/hallway/secondary/entry) +/area/hallway/primary/central_two) "cH" = ( /obj/item/stack/material/glass{ amount = 50 @@ -1118,7 +1118,7 @@ }, /obj/structure/table/standard, /turf/simulated/floor/tiled, -/area/hallway/secondary/entry) +/area/hallway/primary/central_two) "cI" = ( /obj/item/paper_bin{ pixel_x = -3; @@ -1130,7 +1130,7 @@ }, /obj/structure/table/standard, /turf/simulated/floor/tiled, -/area/hallway/secondary/entry) +/area/hallway/primary/central_two) "cJ" = ( /obj/item/device/healthanalyzer, /obj/effect/floor_decal/corner/dark_blue, @@ -1139,7 +1139,7 @@ }, /obj/structure/table/standard, /turf/simulated/floor/tiled, -/area/hallway/secondary/entry) +/area/hallway/primary/central_two) "cK" = ( /turf/simulated/wall/r_wall, /area/construction) @@ -2464,7 +2464,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/hallway/secondary/entry) +/area/hallway/primary/central_two) "uQ" = ( /obj/structure/sink, /turf/simulated/floor/tiled, @@ -3853,7 +3853,7 @@ }, /obj/machinery/firealarm/west, /turf/simulated/floor/tiled, -/area/hallway/secondary/entry) +/area/hallway/primary/central_two) "Yc" = ( /obj/effect/landmark{ name = "carpspawn" diff --git a/maps/sccv_horizon/areas/_horizon_areas.dm b/maps/sccv_horizon/areas/_horizon_areas.dm new file mode 100644 index 00000000000..98dc8993708 --- /dev/null +++ b/maps/sccv_horizon/areas/_horizon_areas.dm @@ -0,0 +1,48 @@ +/** + * Definitions for every area used on the SCCV Horizon map. + * + * This file is only to contain definitions for the master horizon and horizon exterior areas, and this documentation. + * The other files in this subfolder ('maps/sccv_horizon/code/sccv_horizon_areas') are the remaining SCCV Horizon areas, + * divided broadly by department with the exception of horizon_areas_crew.dm. + * + * While most should be self-explanatory by name, horizon_areas_crew is a catch-all file for all areas that are either 'public' + * (like hallways, washrooms) but also areas which are difficult to slot into a given department, like Head of Staff offices, + * non-dept storage, etc. If we add anything weird that doesn't fit neatly, add it there. + * + * Whenever areas are added or removed from the Horizon, it should be handled within this subfolder. Whenever NBT comes, the + * definition names /area/horizon/. should just be replaced with /area/[whatever]/. + * + * GUIDELINES: + * - The Horizon should not have any areas mapped to it which are defined outside this file. + * - Any PR that removes all areas of a given definition should also remove or comment out that definition from here. + * - No area should exist across multiple decks. Ex., an elevator vestibule on all three decks should have three + * child definitions, one for each deck. This is both for organization and for managing area objects like APCs etc. + * - Update the groupings list if anything is added/removed. + */ + +/// SCCV Horizon master areas +/area/horizon + name = "Horizon (PARENT AREA - DON'T USE)" + icon_state = "unknown" + station_area = TRUE + ambience = AMBIENCE_GENERIC + // Remember to set this for new areas!! + // horizon_deck = 1, 2, or 3 + // Remember to set this for new areas!! + // department = constant in '\_DEFINES\departments.dm' + // Remember to set this for new areas!! + // subdepartment = constant in '\_DEFINES\departments.dm' + area_blurb = "One of the compartments of the SCCV Horizon." + +/area/horizon/exterior + name = "Horizon - Exterior" + icon_state = "exterior" + base_turf = /turf/space + dynamic_lighting = TRUE + requires_power = FALSE + has_gravity = FALSE + no_light_control = TRUE + allow_nightmode = FALSE + ambience = AMBIENCE_SPACE + area_flags = AREA_FLAG_HIDE_FROM_HOLOMAP + area_blurb = "The sheer scale of the SCCV Horizon is never more apparent when crawling across its hull like an ant." diff --git a/maps/sccv_horizon/areas/horizon_areas_ai.dm b/maps/sccv_horizon/areas/horizon_areas_ai.dm new file mode 100644 index 00000000000..f3ab66a1d0b --- /dev/null +++ b/maps/sccv_horizon/areas/horizon_areas_ai.dm @@ -0,0 +1,28 @@ +/* + /// Only used for the Horizon, and mostly for mapping checks. + var/horizon_deck = null + /// Only used for the Horizon, and mostly for mapping checks. + var/department = null + /// Only used for the Horizon, and mostly for mapping checks. + var/subdepartment = null +*/ + +/area/horizon/ai + name = "AI Area (PARENT AREA - DON'T USE)" + icon_state = "ai_chamber" + ambience = AMBIENCE_AI + horizon_deck = 3 + department = LOC_AI + area_blurb = "Ticking, beeping, and buzzing. Great tides of invisible signal traffic across the electromagnetic spectrum, flowing in both directions. Otherwise, the silence and stillness of a tomb." + +/area/horizon/ai/chamber + name = "AI Chamber" + +/area/horizon/ai/upload + name = "AI Upload Chamber" + icon_state = "ai_upload" + +/area/horizon/ai/upload_foyer + name = "AI Upload Access" + icon_state = "ai_foyer" + sound_environment = SOUND_AREA_SMALL_ENCLOSED diff --git a/maps/sccv_horizon/areas/horizon_areas_command.dm b/maps/sccv_horizon/areas/horizon_areas_command.dm new file mode 100644 index 00000000000..25d3222d3f3 --- /dev/null +++ b/maps/sccv_horizon/areas/horizon_areas_command.dm @@ -0,0 +1,138 @@ +/* + var/station_area = FALSE + /// Only used for the Horizon, and mostly for mapping checks. + var/horizon_deck = null + /// Only used for the Horizon, and mostly for mapping checks. + var/department = null + /// Only used for the Horizon, and mostly for mapping checks. + var/subdepartment = null +*/ + +/area/horizon/command + department = LOC_COMMAND + holomap_color = HOLOMAP_AREACOLOR_COMMAND + +/// Head of Staff offices +/area/horizon/command/heads + name = "Head of Staff's Office (PARENT AREA - DON'T USE)" + area_flags = AREA_FLAG_RAD_SHIELDED + sound_environment = SOUND_AREA_SMALL_ENCLOSED + +/area/horizon/command/heads/captain + name = "Command - Captain's Office" + icon_state = "captain" + sound_environment = SOUND_AREA_MEDIUM_SOFTFLOOR + area_blurb = "The most daunting office on the entire ship. Except for CCIA's. Theirs is still a little scarier." + horizon_deck = 3 + +/area/horizon/command/heads/xo + name = "Command - Executive Officer's Office" + area_blurb = "No one really knows what goes on in here, but Ian usually seems pretty happy so it's got that going for it.." + horizon_deck = 3 + +/area/horizon/command/heads/hos + name = "Security - Head of Security's Office" + icon_state = "head_quarters" + area_flags = AREA_FLAG_HIDE_FROM_HOLOMAP + ambience = AMBIENCE_HIGHSEC + area_blurb = "This office is possessed of an austere, vaguely threatening atmosphere. Why does it smell like black powder? None of the guns use black powder?" + horizon_deck = 2 + +/area/horizon/command/heads/rd + name = "Research - RD's Office" + icon_state = "head_quarters" + area_blurb = "There are nagging subtle scents of ink, chemicals, ozone, machine oil, alien blood, and a dozen more in the air here that the scrubbers seem simply incapable of finally purging." + horizon_deck = 2 + +/area/horizon/command/heads/chief + name = "Engineering - CE's Office" + icon_state = "head_quarters" + area_blurb = "This office can't seem to decide if it smells like welding fumes or expensive cologne. Several bulkhead walls are covered in buttons and toggles that exude an air of dangerous importance." + horizon_deck = 2 + +/area/horizon/command/heads/cmo + name = "Medical - CMO's Office" + icon_state = "head_quarters" + area_blurb = "There's a peculiar serenity to this office completely at odds with the often frenetic atmosphere of the rest of Medical. Maybe it's the cat." + horizon_deck = 3 + +/area/horizon/command/heads/om + name = "Operations - OM's Office" + icon_state = "head_quarters" + area_blurb = "Just stepping through the threshold imparts the nagging feeling that there's someone out there that owes you money." + horizon_deck = 2 + +/// Bridge areas +/area/horizon/command/bridge + name = "Bridge" + icon_state = "bridge" + no_light_control = 1 + area_blurb = "The sound here seems to carry more than others, every click of a shoe or clearing of a throat amplified. \ + The smell of ink, written and printed, wafts notably through the air." + area_blurb_category = "command" + horizon_deck = 3 + +/area/horizon/command/bridge/bridge_crew + name = "Bridge Crew Preparation" + icon_state = "bridge_crew" + +/area/horizon/command/bridge/supply + name = "Bridge Supply Closet" + icon_state = "bridge_crew" + +/area/horizon/command/bridge/upperdeck + name = "Bridge Atrium" + icon_state = "bridge" + +/area/horizon/command/bridge/minibar + name = "Bridge Break Room" + icon_state = "bridge" + +/area/horizon/command/bridge/aibunker + name = "Command Bunker" + icon_state = "ai_foyer" + area_flags = AREA_FLAG_RAD_SHIELDED | AREA_FLAG_HIDE_FROM_HOLOMAP + +/area/horizon/command/bridge/meeting_room + name = "Bridge Conference Room" + icon_state = "bridge" + ambience = list() + sound_environment = SOUND_AREA_MEDIUM_SOFTFLOOR + area_blurb = "A place for behind-closed-doors meetings to get things done (or to argue for hours)." + area_blurb_category = "command_meeting" + area_flags = AREA_FLAG_RAD_SHIELDED + +/area/horizon/command/bridge/cciaroom + name = "Human Resources Meeting Room" + icon_state = "hr" + sound_environment = SOUND_AREA_MEDIUM_SOFTFLOOR + area_blurb = "You might feel dread when you enter this meeting room." + area_blurb_category = "hr_meeting" + area_flags = AREA_FLAG_RAD_SHIELDED + +/area/horizon/command/bridge/cciaroom/lounge + name = "Human Resources Lounge" + icon_state = "hrlounge" + sound_environment = SOUND_AREA_SMALL_SOFTFLOOR + area_blurb = "A place that may worsen any anxiety surrounding meetings with your bosses' bosses." + area_blurb_category = "hr_lounge" + area_flags = AREA_FLAG_RAD_SHIELDED + +/area/horizon/command/bridge/selfdestruct + name = "Command - Station Authentication Terminal Safe" + icon_state = "bridge" + area_flags = AREA_FLAG_HIDE_FROM_HOLOMAP + +/area/horizon/command/bridge/controlroom + name = "Bridge Control Room" + area_blurb = "The full expanse of space lies beyond a thick pane of reinforced glass, all that protects you from a cold and painful death. The computers hum, showing various displays and holographic signs. The sight would be overwhelming if you are not used to such an environment. Even at full power, the sensors fail to map even a fraction of the dots of light making up the cosmic filament." + area_blurb_category = "bridge" + area_flags = AREA_FLAG_RAD_SHIELDED + +//Teleporter +/area/horizon/command/teleporter + name = "Teleporter" + icon_state = "teleporter" + horizon_deck = 1 + area_blurb = "The air in here always feels charged with the subdued crackle of electricity, tasting faintly of ozone." + area_blurb_category = "teleporter" diff --git a/maps/sccv_horizon/areas/horizon_areas_crew.dm b/maps/sccv_horizon/areas/horizon_areas_crew.dm new file mode 100644 index 00000000000..e7d687f34a4 --- /dev/null +++ b/maps/sccv_horizon/areas/horizon_areas_crew.dm @@ -0,0 +1,256 @@ +/// CREW_AREAS +/area/horizon/crew + name = "Crew Areas (PARENT AREA - DON'T USE)" + icon_state = "Sleep" + holomap_color = HOLOMAP_AREACOLOR_CIVILIAN + department = LOC_CREW + area_blurb = "One of the Horizon's many crew areas." + +/// Hallway areas +/area/horizon/hallway + name = "Horizon - Hallway (PARENT AREA - DON'T USE)" + sound_environment = SOUND_AREA_LARGE_ENCLOSED + icon_state = "hallC" + allow_nightmode = TRUE + lightswitch = TRUE + holomap_color = HOLOMAP_AREACOLOR_HALLWAYS + emergency_lights = TRUE + department = LOC_PUBLIC + subdepartment = SUBLOC_HALLS + area_blurb = "One of the Horizon's public areas: either bustling with purpose and noise during the primary shifts, or eerily still during the graveyards." + +/area/horizon/hallway/primary/deck_3 + name = "Deck 3 Primary Hallway (PARENT AREA - DON'T USE)" + horizon_deck = 3 + +/area/horizon/hallway/primary/deck_3/central + name = "Primary Hallway" + location_ew = LOC_AMIDSHIPS + +/area/horizon/hallway/primary/deck_3/starboard + name = "Primary Hallway" + icon_state = "hallS" + location_ew = LOC_STARBOARD + +/area/horizon/hallway/primary/deck_3/starboard/docks + name = "Docking Arm" + holomap_color = HOLOMAP_AREACOLOR_DOCK + location_ew = LOC_STARBOARD_FAR + +/area/horizon/hallway/primary/deck_3/port + name = "Primary Hallway" + icon_state = "hallP" + location_ew = LOC_PORT + +/area/horizon/hallway/primary/deck_3/port/docks + name = "Docking Arm" + holomap_color = HOLOMAP_AREACOLOR_DOCK + location_ew = LOC_PORT_FAR + +/area/horizon/hallway/primary/deck_2 + name = "Deck 2 Primary Hallway (PARENT AREA - DON'T USE)" + horizon_deck = 2 + +/area/horizon/hallway/primary/deck_2/central + name = "Central Ring" + icon_state = "hallF" + location_ew = LOC_AMIDSHIPS + +/area/horizon/hallway/primary/deck_2/fore + name = "Primary Hallway" + icon_state = "hallF" + location_ns = LOC_FORE + +/area/horizon/hallway/primary/deck_2/starboard + name = "Primary Hallway" + icon_state = "hallF" + location_ew = LOC_STARBOARD + +/area/horizon/hallway/primary/deck_1 + name = "Deck 1 Primary Hallway (PARENT AREA - DON'T USE)" + horizon_deck = 1 + +/area/horizon/hallway/primary/deck_1/central + name = "Central Ring" + icon_state = "hallF" + location_ew = LOC_AMIDSHIPS + +// Stairwells +/area/horizon/stairwell + name = "Stairwell (PARENT AREA - DON'T USE)" + icon_state = "stairwell" + area_flags = AREA_FLAG_RAD_SHIELDED + holomap_color = HOLOMAP_AREACOLOR_HALLWAYS + sound_environment = SOUND_AREA_SMALL_ENCLOSED + allow_nightmode = TRUE + lightswitch = TRUE + emergency_lights = TRUE + department = LOC_PUBLIC + subdepartment = SUBLOC_STAIRS + area_blurb = "One of the Horizon's public areas: either bustling with purpose and noise during the primary shifts, or eerily still during the graveyards." + +// Starboard Stairwell (Medical/Evac) +/area/horizon/stairwell/starboard + name = "Starboard Stairwell (PARENT AREA - DON'T USE)" + location_ew = LOC_STARBOARD + +/area/horizon/stairwell/starboard/deck_1 + name = "Stairwell" + horizon_deck = 1 + +/area/horizon/stairwell/starboard/deck_2 + name = "Stairwell" + horizon_deck = 2 + +/area/horizon/stairwell/starboard/deck_3 + name = "Stairwell" + horizon_deck = 3 + +// Starboard Stairwell (Security/Cafe) +/area/horizon/stairwell/port + name = "Port Stairwell (PARENT AREA - DON'T USE)" + location_ew = LOC_PORT + +/area/horizon/stairwell/port/deck_2 + name = "Stairwell" + horizon_deck = 2 + +/area/horizon/stairwell/port/deck_3 + name = "Stairwell" + horizon_deck = 3 + +// Bridge Stairwell (Captain/Kitchen/Hydro) +/area/horizon/stairwell/bridge + name = "Horizon - Bridge Stairwell (PARENT AREA - DON'T USE)" + icon_state = "bridge_stairs" + ambience = AMBIENCE_HIGHSEC + department = LOC_COMMAND + location_ew = LOC_STARBOARD + location_ns = LOC_FORE_FAR + +/area/horizon/stairwell/bridge/deck_2 + name = "Stairwell" + horizon_deck = 2 + +/area/horizon/stairwell/bridge/deck_3 + name = "Stairwell" + horizon_deck = 3 + +// Engineering Stairwell (Engineering/Atmos) +/area/horizon/stairwell/engineering + name = "Horizon - Engineering Stairwell (PARENT AREA - DON'T USE)" + ambience = AMBIENCE_HIGHSEC + holomap_color = HOLOMAP_AREACOLOR_ENGINEERING + department = LOC_ENGINEERING + location_ns = LOC_AFT + +/area/horizon/stairwell/engineering/deck_1 + name = "Stairwell" + horizon_deck = 1 + area_blurb = "The exterior stowage tanks are visible from the window, hunched like patient stones." + +/area/horizon/stairwell/engineering/deck_2 + name = "Stairwell" + horizon_deck = 2 + area_blurb = "Filled with the sounds of machinery and an atmosphere of meaningful, directed purpose." + +/// Cryogenics +// This area is the only one post-reorg that isn't used on the actual map and it makes me sad and I refuse to delete the definition. +// Bring back dedicated cryo compartments! They're so cool! - Bat +/area/horizon/crew/cryo + name = "Cryogenic Storage" + area_flags = AREA_FLAG_RAD_SHIELDED + icon_state = "Sleep" + horizon_deck = 3 + subdepartment = SUBLOC_CRYO + +/// Residential Deck (access) +/area/horizon/crew/resdeck/living_quarters_lift + name = "Living Quarters Lift" + sound_environment = SOUND_AREA_SMALL_ENCLOSED + horizon_deck = 1 + subdepartment = SUBLOC_RESDECK + +/// Fitness Center (legacy) +/area/horizon/crew/fitness + name = "Horizon - Fitness Center (PARENT AREA - DON'T USE)" + icon_state = "fitness" + horizon_deck = 3 + +/area/horizon/crew/fitness/gym + name = "Gym" + icon_state = "fitness_gym" + +/area/horizon/crew/fitness/changing + name = "Changing Room" + icon_state = "fitness_changingroom" + +/area/horizon/crew/fitness/showers + name = "Showers" + icon_state = "showers" + sound_environment = SOUND_AREA_SMALL_ENCLOSED + +/// Representative and Consular offices. +// Yeah yeah I know, they're technically not 'Crew,' but they're also not Command... +/area/horizon/repoffice + name = "Representative Office (PARENT AREA - DON'T USE)" + icon_state = "law" + sound_environment = SOUND_AREA_MEDIUM_SOFTFLOOR + holomap_color = HOLOMAP_AREACOLOR_CIVILIAN + horizon_deck = 3 + department = LOC_COMMAND + area_blurb = "An office well-suited to the powerful: a useful lair for the consular or representative to withdraw with victims found after prowling the ship for themselves." + +/area/horizon/repoffice/consular_one + name = "Consular Office A" + icon_state = "law_con" + +/area/horizon/repoffice/consular_two + name = "Consular Office B" + icon_state = "law_con_b" + +/area/horizon/repoffice/representative_one + name = "Representative Office A" + icon_state = "law_rep" + +/area/horizon/repoffice/representative_two + name = "Representative Office B" + icon_state = "law_rep_b" + +/// Uncategorized/general +/area/horizon/crew/journalistoffice + name = "Journalist's Office" + sound_environment = SOUND_AREA_SMALL_SOFTFLOOR + horizon_deck = 3 + +/area/horizon/crew/lounge + name = "Crew Lounge" + icon_state = "lounge" + horizon_deck = 3 + +/area/horizon/crew/chargebay + name = "Mech Bay" + icon_state = "mechbay" + horizon_deck = 1 + +/area/horizon/crew/washroom + name = "Horizon - Washroom (PARENT AREA - DON'T USE)" + icon_state = "washroom" + sound_environment = SOUND_AREA_SMALL_ENCLOSED + +/area/horizon/crew/washroom/deck_2 + name = "Washroom" + icon_state = "washroom" + sound_environment = SOUND_AREA_SMALL_ENCLOSED + horizon_deck = 2 + +/area/horizon/crew/washroom/deck_3 + name = "Washroom" + icon_state = "washroom" + sound_environment = SOUND_AREA_SMALL_ENCLOSED + horizon_deck = 3 + +/area/horizon/crew/vacantoffice + name = "Vacant Office" + no_light_control = 0 + horizon_deck = 3 diff --git a/maps/sccv_horizon/areas/horizon_areas_engineering.dm b/maps/sccv_horizon/areas/horizon_areas_engineering.dm new file mode 100644 index 00000000000..265b1817335 --- /dev/null +++ b/maps/sccv_horizon/areas/horizon_areas_engineering.dm @@ -0,0 +1,224 @@ +/// ENGINEERING_AREAS +/area/horizon/engineering + name = "Engineering (PARENT AREA - DON'T USE)" + icon_state = "engineering" + ambience = AMBIENCE_ENGINEERING + holomap_color = HOLOMAP_AREACOLOR_ENGINEERING + department = LOC_ENGINEERING + area_blurb = "The engineering sectors of the ship tend to be a little noisier and more utilitarian than most." + +/area/horizon/engineering/drone_fabrication + name = "Drone Fabrication" + icon_state = "drone_fab" + sound_environment = SOUND_AREA_SMALL_ENCLOSED + horizon_deck = 2 + +/area/horizon/engineering/storage_hard + name = "Hard Storage" + icon_state = "engineering_storage" + horizon_deck = 2 + +/area/horizon/engineering/storage_eva + name = "EVA Storage" + icon_state = "engineering_storage" + horizon_deck = 2 + +/area/horizon/engineering/break_room + name = "Break Room" + icon_state = "engineering_break" + sound_environment = SOUND_AREA_MEDIUM_SOFTFLOOR + area_blurb = "The intermixed odors of coffee and oil lingers in the air." + area_blurb_category = "engi_breakroom" + horizon_deck = 3 + +/area/horizon/engineering/locker_room + name = "Locker Room" + icon_state = "engineering_locker" + horizon_deck = 2 + area_blurb = "It's not the most pleasantly fragrant locker room on the ship, but is probably the most orderly." + +/area/horizon/engineering/gravity_gen + name = "Gravity Generator" + icon_state = "engine" + horizon_deck = 1 + area_blurb = "The air in here tastes like copper, sour sugar, and smoke; none of the angles seem right. That probably means everything is working." + area_blurb_category = "engi_breakroom" + +/area/horizon/engineering/lobby + name = "Lobby" + horizon_deck = 2 + +/area/horizon/engineering/storage/tech + name = "Technical Storage" + icon_state = "auxstorage" + horizon_deck = 1 + +/area/horizon/engineering/storage/lower + name = "Lower Deck Storage" + horizon_deck = 1 + +/area/horizon/engineering/aft_airlock + name = "Aft Service Airlock" + horizon_deck = 2 + +/area/horizon/engineering/bluespace_drive + name = "Bluespace Drive" + icon_state = "engine" + horizon_deck = 1 + +/area/horizon/engineering/bluespace_drive/monitoring + name = "Bluespace Drive Monitoring" + icon_state = "engineering" + horizon_deck = 1 + +/area/horizon/engineering/shields + name = "Shield Control" + icon_state = "eva" + horizon_deck = 3 + +/// Engineering Hallways +/area/horizon/engineering/hallway + name = "Engineering Hallway (PARENT AREA - DON'T USE)" + sound_environment = SOUND_AREA_LARGE_ENCLOSED + horizon_deck = 2 + +/area/horizon/engineering/hallway/fore + // Location is defined here relative to the department center itself. Whatever. + name = "Fore Hallway" + area_blurb = "The sound of the ship's machinery grows louder the further aft you move. Machine oil, ozone, welding fumes, and combustion products begin to scent the air." + +/area/horizon/engineering/hallway/aft + // Location is defined here relative to the department center itself. Whatever. + name = "Aft Hallway" + area_blurb = "Filled with the sounds of machinery and an atmosphere of meaningful, directed purpose. The tops of the exterior stowage tanks are visible from the aft windows, hunched like patient stones." + +/area/horizon/engineering/hallway/interior + // Location is defined here relative to the department center itself. Whatever. + name = "Amidships Hallway" + area_blurb = "Filled with the sounds of machinery and an atmosphere of meaningful, directed purpose." + +/// ENGINEERING_AREAS - ATMOSIA_AREAS +/area/horizon/engineering/atmos + name = "Distribution Control" + icon_state = "atmos" + sound_environment = SOUND_AREA_LARGE_ENCLOSED + no_light_control = 1 + ambience = list(AMBIENCE_ENGINEERING, AMBIENCE_ATMOS) + area_blurb = "Many volume tanks filled with gas reside here, some providing vital gases for the vessel's life support systems. \ + Through the aft windows, exterior stowage tanks filled mostly with hazardous or volatile gases loom patiently." + area_blurb_category = "atmos" + horizon_deck = 1 + subdepartment = SUBLOC_ATMOS + +/area/horizon/engineering/atmos/storage + name = "Atmos Storage" + icon_state = "atmos_storage" + sound_environment = SOUND_AREA_SMALL_ENCLOSED + area_blurb = "The softly reassuring sounds of churning humming whirring resound gently from the distribution control compartment below." + horizon_deck = 2 + +/area/horizon/engineering/atmos/air + name = "Air Mixing" + +/area/horizon/engineering/atmos/propulsion + name = "Propulsion" + subdepartment = null + icon_state = "blue2" + sound_environment = SOUND_AREA_SMALL_ENCLOSED + area_blurb = "Every bulkhead is invisibly tense with the long-term strains of powerful impulse. The subtle aromas of various fuel compounds linger in the air." + location_ew = LOC_PORT + location_ns = LOC_AFT_FAR + +/area/horizon/engineering/atmos/propulsion/starboard + name = "Propulsion" + icon_state = "blue-red2" + location_ew = LOC_STARBOARD + +/area/horizon/engineering/atmos/turbine + name = "Combustion Turbine" + area_blurb = "It feels like this compartment gets smaller every time you enter it! What's with that?!" + +/// ENGINEERING_AREAS - REACTOR_AREAS +/area/horizon/engineering/reactor + name = "Engine (PARENT AREA - DON'T USE)" + icon_state = "engine" + sound_environment = SOUND_AREA_LARGE_ENCLOSED + no_light_control = 1 + ambience = AMBIENCE_SINGULARITY + horizon_deck = 2 + +// We'll give this a cool custom icon one day. +/area/horizon/engineering/reactor/supermatter + name = "Supermatter Reactor (PARENT AREA - DON'T USE)" + +/area/horizon/engineering/reactor/supermatter/airlock + name = "Supermatter Reactor Airlock" + sound_environment = SOUND_AREA_SMALL_ENCLOSED + area_blurb = "It's like clambering into the gullet of a monster." + +/area/horizon/engineering/reactor/supermatter/mainchamber + name = "Supermatter Reactor Chamber" + area_blurb = "The air throbs with subdued lethality. Phoronic science breaks the laws of thermodynamics in this chamber, and the laws of thermodynamics seem angry." + +/area/horizon/engineering/smes + name = "Supermatter Reactor SMES" + icon_state = "engine_smes" + sound_environment = SOUND_AREA_SMALL_ENCLOSED + area_blurb = "One could almost feel bad for the PSU in here." + +/area/horizon/engineering/reactor/supermatter/monitoring + name = "Supermatter Reactor Monitoring" + icon_state = "engine_monitoring" + area_blurb = "This compartment provides a fairly convincing illusion of safety and control." + +/area/horizon/engineering/reactor/supermatter/waste + name = "Supermatter Reactor Waste Handling" + icon_state = "engine_waste" + no_light_control = 1 + area_blurb = "Carefully threaded systems regulate the offgas products of the Supermatter Crystal in here, their final destination to be forever argued over by Atmospheric Technicians." + +// We'll give this a cool custom icon one day. +/area/horizon/engineering/reactor/indra + name = "INDRA Reactor (PARENT AREA - DON'T USE)" + +/area/horizon/engineering/reactor/indra/mainchamber + name = "INDRA Reactor Chamber" + ambience = AMBIENCE_SINGULARITY + area_blurb = "The product of over four-hundred years' iteration and refinement: the INDRA Mk.II Tokamak Fusion bottle and its vast supporting machineries dominate the entire compartment" + +/area/horizon/engineering/reactor/indra/smes + name = "INDRA Reactor SMES" + icon_state = "engine_smes" + area_blurb = "A quiet hum suffuses this compartment from grid balancing hardware and power banks fitted beneath the floor." + +/area/horizon/engineering/reactor/indra/monitoring + name = "INDRA Reactor Monitoring" + icon_state = "engine_monitoring" + area_blurb = "Where atoms are consigned to be smashed and the pretty lights beheld." + +/area/horizon/engineering/reactor/indra/office + name = "INDRA Reactor Office" + area_blurb = "A dingy, forgotten compartment a year or three away from looking about as well-kept as the Maints'." + +// The engineering stairwell /area/horizon/stairwell/engineering/* are defined in './horizon_areas_crew.dm'. Bat put them there originally because they felt that made sense. If you don't, migrate them here I guess, everything's cool. + +/// TCOMMS_AREAS +/area/horizon/tcommsat + ambience = AMBIENCE_ENGINEERING + no_light_control = 1 + station_area = TRUE + holomap_color = HOLOMAP_AREACOLOR_ENGINEERING + horizon_deck = 3 + area_blurb = "Countless machines sit within these compartments, an unfathomably complex network that runs every radio and computer connection. \ + The air lacks any notable scent, having been filtered of dust and pollutants for the sake of all the sensitive machinery." + department = LOC_ENGINEERING + subdepartment = SUBLOC_TELECOMMS + +/area/horizon/tcommsat/entrance + name = "Telecomms Entrance" + icon_state = "tcomsatentrance" + lightswitch = TRUE + +/area/horizon/tcommsat/chamber + name = "Telecomms Central Compartment" + icon_state = "tcomsatcham" diff --git a/maps/sccv_horizon/areas/horizon_areas_holodeck.dm b/maps/sccv_horizon/areas/horizon_areas_holodeck.dm new file mode 100644 index 00000000000..1f46aae69ac --- /dev/null +++ b/maps/sccv_horizon/areas/horizon_areas_holodeck.dm @@ -0,0 +1,145 @@ +/// HOLODECK_AREAS +/area/horizon/holodeck_control + name = "Holodeck Alpha" + area_flags = AREA_FLAG_RAD_SHIELDED + holomap_color = HOLOMAP_AREACOLOR_CIVILIAN + horizon_deck = 3 + area_blurb = "One of the SCCV Horizon's very expensive holodecks." + +/area/horizon/holodeck_control/beta + name = "Holodeck Beta" + +/area/horizon/holodeck + name = "Holodeck (PARENT AREA - DON'T USE)" + icon_state = "Holodeck" + sound_environment = SOUND_AREA_LARGE_ENCLOSED + no_light_control = TRUE + dynamic_lighting = FALSE + area_flags = AREA_FLAG_RAD_SHIELDED | AREA_FLAG_NO_GHOST_TELEPORT_ACCESS + holomap_color = HOLOMAP_AREACOLOR_CIVILIAN + horizon_deck = 3 + area_blurb = "One of the SCCV Horizon's very expensive holodecks." + +/area/horizon/holodeck/alphadeck + name = "Holodeck Alpha" + dynamic_lighting = TRUE + +/area/horizon/holodeck/betadeck + name = "Holodeck Beta" + dynamic_lighting = TRUE + +/area/horizon/holodeck/source_plating + name = "Holodeck - Off" + +/area/horizon/holodeck/source_chapel + name = "Holodeck - Chapel" + +/area/horizon/holodeck/source_gym + name = "Holodeck - Gym" + sound_environment = SOUND_ENVIRONMENT_ARENA + +/area/horizon/holodeck/source_range + name = "Holodeck - Range" + sound_environment = SOUND_ENVIRONMENT_ARENA + +/area/horizon/holodeck/source_emptycourt + name = "Holodeck - Empty Court" + sound_environment = SOUND_ENVIRONMENT_ARENA + +/area/horizon/holodeck/source_boxingcourt + name = "Holodeck - Boxing Court" + sound_environment = SOUND_ENVIRONMENT_ARENA + +/area/horizon/holodeck/source_basketball + name = "Holodeck - Basketball Court" + sound_environment = SOUND_ENVIRONMENT_ARENA + +/area/horizon/holodeck/source_thunderdomecourt + name = "Holodeck - Thunderdome Court" + sound_environment = SOUND_ENVIRONMENT_ARENA + +/area/horizon/holodeck/source_courtroom + name = "Holodeck - Courtroom" + sound_environment = SOUND_ENVIRONMENT_AUDITORIUM + +/area/horizon/holodeck/source_burntest + name = "Holodeck - Atmospheric Burn Test" + +/area/horizon/holodeck/source_wildlife + name = "Holodeck - Wildlife Simulation" + +/area/horizon/holodeck/source_meetinghall + name = "Holodeck - Meeting Hall" + sound_environment = SOUND_ENVIRONMENT_AUDITORIUM + +/area/horizon/holodeck/source_theatre + name = "Holodeck - Callistean Theatre" + sound_environment = SOUND_ENVIRONMENT_CONCERT_HALL + +/area/horizon/holodeck/source_picnicarea + name = "Holodeck - Picnic Area" + sound_environment = SOUND_ENVIRONMENT_PLAIN + +/area/horizon/holodeck/source_dininghall + name = "Holodeck - Dining Hall" + sound_environment = SOUND_ENVIRONMENT_PLAIN + +/area/horizon/holodeck/source_snowfield + name = "Holodeck - Bursa Tundra" + sound_environment = SOUND_ENVIRONMENT_FOREST + +/area/horizon/holodeck/source_desert + name = "Holodeck - Desert" + sound_environment = SOUND_ENVIRONMENT_PLAIN + +/area/horizon/holodeck/source_space + name = "Holodeck - Space" + has_gravity = FALSE + sound_environment = SOUND_AREA_SPACE + +/area/horizon/holodeck/source_battlemonsters + name = "Holodeck - Battlemonsters Arena" + sound_environment = SOUND_ENVIRONMENT_ARENA + +/area/horizon/holodeck/source_chessboard + name = "Holodeck - Chessboard" + +/area/horizon/holodeck/source_adhomai + name = "Holodeck - Adhomian Campfire" + +/area/horizon/holodeck/source_beach + name = "Holodeck - Silversunner Coast" + sound_environment = SOUND_ENVIRONMENT_PLAIN + +/area/horizon/holodeck/source_pool + name = "Holodeck - Swimming Pool" + +/area/horizon/holodeck/source_sauna + name = "Holodeck - Sauna" + +/area/horizon/holodeck/source_jupiter + name = "Holodeck - Jupiter Upper Atmosphere" + +/area/horizon/holodeck/source_konyang + name = "Holodeck - Konyanger Boardwalk" + +/area/horizon/holodeck/source_moghes + name = "Holodeck - Moghresian Jungle" + +/area/horizon/holodeck/source_biesel + name = "Holodeck - Foggy Mendell Skyline" + +/area/horizon/holodeck/source_tribunal + name = "Holodeck - Tribunalist Chapel" + +/area/horizon/holodeck/source_trinary + name = "Holodeck - Trinarist Chapel" + +/area/horizon/holodeck/source_cafe + name = "Holodeck - Animal Cafe" + +/area/horizon/holodeck/source_lasertag + name = "Holodeck - Laser Tag Arena" + +/area/horizon/holodeck/source_combat_training + name = "Holodeck - Combat Training Arena" diff --git a/maps/sccv_horizon/areas/horizon_areas_maintenance.dm b/maps/sccv_horizon/areas/horizon_areas_maintenance.dm new file mode 100644 index 00000000000..70743c8e500 --- /dev/null +++ b/maps/sccv_horizon/areas/horizon_areas_maintenance.dm @@ -0,0 +1,261 @@ +/// MAINTENANCE_AREAS +/area/horizon/maintenance + name = "Horizon - Maintenance (PARENT AREA - DON'T USE)" + icon_state = "maintenance" + area_flags = AREA_FLAG_RAD_SHIELDED | AREA_FLAG_HIDE_FROM_HOLOMAP + sound_environment = SOUND_AREA_TUNNEL_ENCLOSED + turf_initializer = new /datum/turf_initializer/maintenance() + area_blurb = "Scarcely lit, cramped, and filled with stale, dusty air. Around you hisses compressed air through the pipes, a buzz of electrical charge through the wires, and muffled rumbles of the hull settling. This place may feel alien compared to the interior of the ship and is a place where one could get lost or badly hurt, but some may find the isolation comforting." + area_blurb_category = "maint" + ambience = AMBIENCE_MAINTENANCE + department = LOC_MAINTENANCE + +/area/horizon/maintenance/deck_1 + horizon_deck = 1 + +/area/horizon/maintenance/deck_1/main/starboard + name = "Primary Maintenance Conduit" + location_ew = LOC_STARBOARD + +/area/horizon/maintenance/deck_1/main/port + name = "Primary Maintenance Conduit" + location_ew = LOC_PORT + +/area/horizon/maintenance/deck_1/main/interstitial + name = "Primary Maintenance Conduit" + location_ew = LOC_AMIDSHIPS + +/area/horizon/maintenance/deck_1/hangar/port + name = "Primary Hangar Maintenance" + location_ew = LOC_PORT + +/area/horizon/maintenance/deck_1/hangar/starboard + name = "Primary Hangar Maintenance" + location_ew = LOC_STARBOARD + +/area/horizon/maintenance/deck_1/operations/starboard + name = "Operations Maintenance" + location_ew = LOC_STARBOARD + +/area/horizon/maintenance/deck_1/operations/starboard/amidships + name = "Operations Maintenance" + location_ew = LOC_STARBOARD_NEAR + +/area/horizon/maintenance/deck_1/operations/starboard/far + name = "Operations Maintenance" + location_ew = LOC_STARBOARD_FAR + +/area/horizon/maintenance/deck_1/workshop + name = "Auxiliary Engineering Maintenance" + icon_state = "maint_engineering" + department = LOC_ENGINEERING + location_ew = LOC_STARBOARD + +/area/horizon/maintenance/deck_1/teleporter + name = "Teleporter Maintenance" + location_ew = LOC_AMIDSHIPS + +/area/horizon/maintenance/deck_1/wing/starboard + name = "Lower Wing Frame Interior" + location_ew = LOC_STARBOARD + +/area/horizon/maintenance/deck_1/wing/starboard/far + name = "Lower Wing Frame Interior" + location_ew = LOC_STARBOARD_FAR + +/area/horizon/maintenance/deck_1/wing/port/far + name = "Lower Wing Frame Interior" + location_ew = LOC_PORT_FAR + +/area/horizon/maintenance/deck_1/auxatmos + name = "Combustion Turbine Maintenance" + location_ew = LOC_PORT + location_ns = LOC_AFT + +/area/horizon/maintenance/deck_2 + horizon_deck = 2 + +/area/horizon/maintenance/deck_2/service/starboard + name = "Service Maintenance" + location_ew = LOC_STARBOARD + location_ns = LOC_FORE + +/area/horizon/maintenance/deck_2/service/port + name = "Service Maintenance" + location_ew = LOC_PORT + location_ns = LOC_FORE + +/area/horizon/maintenance/deck_2/research + name = "Research Maintenance" + icon_state = "maint_research_port" + location_ew = LOC_PORT + location_ns = LOC_AFT + +/area/horizon/maintenance/deck_2/cargo_compartment + name = "Auxiliary Cargo Maintenance" + +/area/horizon/maintenance/deck_2/aft + name = "Machine Shop Maintenance" + icon_state = "amaint" + location_ns = LOC_AFT + +/area/horizon/maintenance/deck_2/security_port + name = "Security Maintenance" + icon_state = "maint_security_port" + location_ew = LOC_PORT + location_ns = LOC_FORE + +/area/horizon/maintenance/deck_2/cargo_compartment + name = "Auxiliary Cargo Maintenance" + +/area/horizon/maintenance/deck_2/wing/starboard + name = "Wing Frame Interior" + location_ew = LOC_STARBOARD + +/area/horizon/maintenance/deck_2/wing/starboard/auxatmos + name = "Auxiliary Atmospherics" + subdepartment = SUBLOC_ATMOS + location_ew = LOC_STARBOARD + +/area/horizon/maintenance/deck_2/wing/starboard/near + name = "Wing Frame Interior" + location_ew = LOC_STARBOARD_NEAR + +/area/horizon/maintenance/deck_2/wing/starboard/far + name = "Wing Frame Interior" + location_ew = LOC_STARBOARD_FAR + +/area/horizon/maintenance/deck_2/wing/starboard/nacelle + name = "Starboard Nacelle" + // Special case, we're just going to have the location in the name. + +/area/horizon/maintenance/deck_2/wing/port + name = "Wing Frame Interior" + location_ew = LOC_PORT + +/area/horizon/maintenance/deck_2/wing/port/near + name = "Wing Frame Interior" + location_ew = LOC_PORT_NEAR + +/area/horizon/maintenance/deck_2/wing/port/far + name = "Wing Frame Interior" + location_ew = LOC_PORT_FAR + +/area/horizon/maintenance/deck_2/wing/port/nacelle + // Special case, we're just going to have the location in the name. + name = "Port Nacelle" + +/area/horizon/maintenance/deck_3 + horizon_deck = 3 + +/area/horizon/maintenance/deck_3/aft/holodeck + name = "Holodeck Maintenance" + location_ew = LOC_STARBOARD + +/area/horizon/maintenance/deck_3/aft/starboard + name = "Command Systems Maintenance" + location_ew = LOC_STARBOARD + location_ns = LOC_AFT + +/area/horizon/maintenance/deck_3/aft/starboard/far + name = "Command Systems Maintenance" + location_ew = LOC_STARBOARD_FAR + location_ns = LOC_AFT + +/area/horizon/maintenance/deck_3/aft/port + name = "Command Systems Maintenance" + location_ew = LOC_PORT + location_ns = LOC_AFT + +/area/horizon/maintenance/deck_3/aft/port/far + name = "Command Systems Maintenance" + location_ew = LOC_PORT_FAR + location_ns = LOC_AFT + +/area/horizon/maintenance/deck_3/security/starboard + name = "Security Maintenance" + location_ew = LOC_STARBOARD + +/area/horizon/maintenance/deck_3/security/port + name = "Security Maintenance" + location_ew = LOC_PORT + +/area/horizon/maintenance/deck_3/bridge + name = "Bridge Maintenance" + icon_state = "maintcentral" + location_ew = LOC_STARBOARD + location_ns = LOC_FORE + +/// SUBSTATIONS (Subtype of maint) +/area/horizon/maintenance/substation + name = "Substation" + icon_state = "substation" + sound_environment = SOUND_AREA_SMALL_ENCLOSED + ambience = AMBIENCE_SUBSTATION + area_blurb = "The hum of the substation's machinery fills the room, holding equipment made to transform voltage and manage power supply to various rooms, and to act as an emergency battery. In comparison to the maintenance tunnels, these stations are far less dusty." + area_blurb_category = "substation" + +/// Engineering (Main) +/area/horizon/maintenance/substation/engineering + name = "Engineering Substation" + horizon_deck = 2 + +/// Engineering (Atmospherics) +/area/horizon/maintenance/substation/engineering/lower + name = "Atmospherics Substation" + horizon_deck = 1 + +/// Medbay +/area/horizon/maintenance/substation/medical + name = "Medical Substation" + horizon_deck = 2 + +/// Research +/area/horizon/maintenance/substation/research + name = "Research Substation - Primary" + horizon_deck = 2 + +/// Xenoarchaeology +/area/horizon/maintenance/substation/xenoarchaeology + name = "Research Substation - Secondary" + horizon_deck = 1 + +/// Deck 2 civilian & service areas +/area/horizon/maintenance/substation/civ_d2 + name = "Civilian Substation - Primary" + horizon_deck = 1 + +/// Deck 3 civilian areas +/area/horizon/maintenance/substation/civ_d3 + name = "Civilian Substation - Secondary" + horizon_deck = 3 + +/// AI and central cluster. +/area/horizon/maintenance/substation/command + name = "Command Substation" + horizon_deck = 3 + +// Security, Brig, Permabrig, etc. +/area/horizon/maintenance/substation/security + name = "Security Substation" + horizon_deck = 1 + +/// Cargo and Mining. +/area/horizon/maintenance/substation/operations + name = "Operations Substation" + horizon_deck = 1 + +/// Hangars and Deck 1 civilian areas +/area/horizon/maintenance/substation/hangar + name = "Hangar Substation" + horizon_deck = 1 + +/// Deconstructed. +/area/horizon/maintenance/substation/wing_starboard + name = "Starboard Wing Substation" + horizon_deck = 2 + +/// Deconstructed. +/area/horizon/maintenance/substation/wing_port + name = "Port Wing Substation" + horizon_deck = 2 diff --git a/maps/sccv_horizon/areas/horizon_areas_medical.dm b/maps/sccv_horizon/areas/horizon_areas_medical.dm new file mode 100644 index 00000000000..a19ab043ae2 --- /dev/null +++ b/maps/sccv_horizon/areas/horizon_areas_medical.dm @@ -0,0 +1,118 @@ +/// MEDICAL_AREAS +/area/horizon/medical + station_area = TRUE + holomap_color = HOLOMAP_AREACOLOR_MEDICAL + area_blurb = "Various smells waft through the air: disinfectants, various medicines, sterile gloves, and gauze. It's not a pleasant smell, but one you could grow to ignore." + area_blurb_category = "mecical" + department = LOC_MEDICAL + +//Medbay is a large area, these additional areas help level out APC load. + +/area/horizon/medical/paramedic + name = "Paramedic Equipment Storage" + icon_state = "medbay" + horizon_deck = 2 + +/area/horizon/medical/reception + name = "Reception" + icon_state = "medbay" + ambience = list('sound/ambience/signal.ogg') + horizon_deck = 2 + +/area/horizon/medical/psych + name = "Psych Office" + icon_state = "medbay3" + area_blurb = "Featuring wood floors and soft carpets, this room has a warmer feeling compared to the sterility of the rest of the medical department." + area_blurb_category = "psych" + horizon_deck = 2 + +/area/horizon/medical/pharmacy + name = "Pharmacy" + icon_state = "phar" + horizon_deck = 2 + +/area/horizon/medical/cryo + name = "Cryogenics" + icon_state = "cryo" + horizon_deck = 2 + +/area/horizon/medical/gen_treatment + name = "General Treatment" + icon_state = "cryo" + horizon_deck = 2 + +/area/horizon/medical/icu + name = "Intensive Care Unit" + icon_state = "cryo" + area_blurb = "The sounds of pumps and cooling equipment can be heard within the room." + area_blurb_category = "icu" + horizon_deck = 2 + +/area/horizon/medical/main_storage + name = "Main Storage" + icon_state = "exam_room" + horizon_deck = 2 + +/area/horizon/medical/surgery + name = "Operating Theatre" + icon_state = "surgery" + horizon_deck = 2 + +/area/horizon/medical/surgery/storage + name = "Operating Theatre Storage" + icon_state = "surgery" + no_light_control = 1 + horizon_deck = 2 + +/area/horizon/medical/exam + name = "Examination Room" + icon_state = "exam_room" + horizon_deck = 2 + +/area/horizon/medical/ward + name = "Recovery Ward" + icon_state = "patients" + horizon_deck = 3 + +/area/horizon/medical/ward/isolation + name = "Isolation Ward" + area_blurb = "This seldom-used ward somehow smells sterile and musty at the same time." + area_blurb_category = "medical_isolation" + horizon_deck = 2 + +/area/horizon/medical/emergency_storage + name = "Emergency Storage" + sound_environment = SOUND_AREA_SMALL_ENCLOSED + horizon_deck = 1 + +/area/horizon/medical/morgue + name = "Morgue" + icon_state = "morgue" + ambience = AMBIENCE_GHOSTLY + area_blurb = "Morgue trays sit within this room, ready to hold the deceased until their postmortem wishes can be attended to." + area_blurb_category = "morgue" + horizon_deck = 1 + +/area/horizon/medical/equipment + name = "Equipment Room" + horizon_deck = 3 + +/area/horizon/medical/smoking + name = "Smoking Lounge" + area_blurb = "The smell of cigarette smoke lingers within this room." + area_blurb_category = "medical_smoking" + horizon_deck = 3 + +/area/horizon/medical/washroom + name = "Washroom" + horizon_deck = 3 + +/area/horizon/medical/hallway + name = "Atrium" + holomap_color = HOLOMAP_AREACOLOR_MEDICAL + icon_state = "medbay" + horizon_deck = 2 + +/area/horizon/medical/hallway/upper + name = "Upper Atrium" + horizon_deck = 3 diff --git a/maps/sccv_horizon/areas/horizon_areas_operations.dm b/maps/sccv_horizon/areas/horizon_areas_operations.dm new file mode 100644 index 00000000000..bfd4ffe749e --- /dev/null +++ b/maps/sccv_horizon/areas/horizon_areas_operations.dm @@ -0,0 +1,175 @@ +/// OPERATIONS_AREAS +/area/horizon/operations + name = "Ops (PARENT AREA - DON'T USE)" + icon_state = "dark" + ambience = AMBIENCE_ENGINEERING + holomap_color = HOLOMAP_AREACOLOR_OPERATIONS + department = LOC_OPERATIONS + area_blurb = "While mighty 'Cargonia' may never reign like in the feverish dreams of so many hangar techs, the halls of Operations today continue to resound with the clamor of pallets and materiel and rustling paper." + +/area/horizon/operations/warehouse + name = "Warehouse" + icon_state = "dark160" + sound_environment = SOUND_AREA_LARGE_ENCLOSED + area_blurb = "Scuff marks scar the floor from the movement of many crates and stored goods." + area_blurb_category = "ops_warehouse" + horizon_deck = 1 + +/area/horizon/operations/lobby + name = "Lobby" + horizon_deck = 2 + +/area/horizon/operations/loading + name = "Loading Bay" + icon_state = "quartloading" + horizon_deck = 1 + +/area/horizon/operations/break_room + name = "Break Room" + icon_state = "blue" + horizon_deck = 2 + +/area/horizon/operations/office + name = "Office" + icon_state = "quartoffice" + sound_environment = SOUND_AREA_MEDIUM_SOFTFLOOR + horizon_deck = 2 + +/area/horizon/operations/office_aux + name = "Auxiliary Office" + icon_state = "quartoffice" + sound_environment = SOUND_AREA_MEDIUM_SOFTFLOOR + horizon_deck = 3 + +/area/horizon/operations/mail_room + name = "Mail Room" + icon_state = "red" + horizon_deck = 2 + +/area/horizon/operations/commissary + name = "Commissary" + horizon_deck = 2 + +/area/horizon/operations/secure_ammunition_storage + name = "Secure Ammunitions Storage" + sound_environment = SOUND_AREA_SMALL_ENCLOSED + ambience = AMBIENCE_FOREBODING + holomap_color = HOLOMAP_AREACOLOR_OPERATIONS + horizon_deck = 2 + +/// OPERATIONS_AREAS - HANGAR_AREAS +/area/horizon/hangar + name = "Hangar (PARENT AREA - DON'T USE)" + icon_state = "bluenew" + ambience = AMBIENCE_HANGAR + sound_environment = SOUND_ENVIRONMENT_HANGAR + holomap_color = HOLOMAP_AREACOLOR_HANGAR + horizon_deck = 1 + subdepartment = SUBLOC_HANGAR + +/area/horizon/hangar/control + name = "Hangar Control Room" + sound_environment = SOUND_AREA_SMALL_ENCLOSED + +/area/horizon/hangar/intrepid + name = "Primary Hangar" + area_blurb = "A big, open room, home to the SCCV Horizon's largest shuttle, the Intrepid." + area_blurb_category = "hanger" + +/area/horizon/hangar/intrepid/interstitial + name = "Intrepid Hangar Access" + +/area/horizon/hangar/operations + name = "Starboard Auxiliary Hangar" + area_blurb = "A big, open room, home to two of the SCCV Horizon's shuttles, the Quark and the Canary." + area_blurb_category = "hanger" + +/area/horizon/hangar/auxiliary + name = "Port Auxiliary Hangar" + area_blurb = "A big, open room, home to the SCCV Horizon's mining shuttle, the Spark." + area_blurb_category = "hanger" + +/// OPERATIONS_AREAS - MACHINIST_AREAS +/area/horizon/operations/machinist + name = "Machinist Workshop" + icon_state = "machinist_workshop" + area_blurb = "The scents of oil and mechanical lubricants fill the air in this workshop." + area_blurb_category = "robotics" + subdepartment = SUBLOC_MACHINING + horizon_deck = 2 + +/area/horizon/operations/machinist/surgicalbay + name = "Machinist Surgical Bay" + icon_state = "machinist_workshop" + area_blurb = "The scent of sterilized equipment fill the air in this surgical bay." + area_blurb_category = "robotics" + horizon_deck = 2 + +/// OPERATIONS_AREAS - MINING_AREAS +/area/horizon/operations/mining_main + name = "Mining (PARENT AREA - DON'T USE)" + icon_state = "outpost_mine_main" + ambience = AMBIENCE_EXPOUTPOST + subdepartment = SUBLOC_MINING + area_blurb = "Even louder and noisier and rowdier than the rest of Operations, which is saying something." + +/area/horizon/operations/mining_main/eva + name = "Mining EVA Storage" + horizon_deck = 1 + +/area/horizon/operations/mining_main/refinery + name = "Mining Refinery" + horizon_deck = 1 + +/// WEAPONS_AREAS +/area/horizon/weapons/longbow + name = "Longbow Weapon System" + icon_state = "bridge_weapon" + sound_environment = SOUND_AREA_LARGE_ENCLOSED + ambience = AMBIENCE_HIGHSEC + area_flags = AREA_FLAG_HIDE_FROM_HOLOMAP + horizon_deck = 3 + area_blurb = "One of the SCCV Horizon's daunting weapons bays." + +/area/horizon/weapons/grauwolf + name = "Grauwolf Weapon System" + icon_state = "bridge_weapon" + sound_environment = SOUND_AREA_LARGE_ENCLOSED + ambience = AMBIENCE_HIGHSEC + area_flags = AREA_FLAG_HIDE_FROM_HOLOMAP + horizon_deck = 2 + area_blurb = "One of the SCCV Horizon's daunting weapons bays." + +/// STORAGE_AREAS +/area/horizon/storage + name = "Storage (PARENT AREA - DON'T USE)" + department = LOC_CREW + +/area/horizon/storage/primary + name = "Primary Tool Storage" + icon_state = "primarystorage" + horizon_deck = 2 + area_blurb = "A compartment for keeping the various things useful on any ship." + +/area/horizon/storage/eva + name = "EVA Storage" + icon_state = "eva" + horizon_deck = 1 + area_blurb = "Row after row of various types of void suits and the ancillary equipment for their use reside here, carefully checked and double-checked before each excursion." + +/// Science-restricted section of EVA. +/area/horizon/storage/eva/expedition + name = "Expedition EVA Storage" + icon_state = "eva" + horizon_deck = 1 + holomap_color = HOLOMAP_AREACOLOR_SCIENCE + department = LOC_SCIENCE + +/// THE VAAAAAAUULLT +/area/horizon/storage/secure + name = "Secure Storage" + icon_state = "storage" + horizon_deck = 2 + holomap_color = HOLOMAP_AREACOLOR_CIVILIAN + department = LOC_COMMAND + area_blurb = "A place not to be visited unless things are going either horribly wrong or horribly right." diff --git a/maps/sccv_horizon/areas/horizon_areas_science.dm b/maps/sccv_horizon/areas/horizon_areas_science.dm new file mode 100644 index 00000000000..744c05cf4bd --- /dev/null +++ b/maps/sccv_horizon/areas/horizon_areas_science.dm @@ -0,0 +1,104 @@ +/// SCIENCE_AREAS +/area/horizon/rnd + holomap_color = HOLOMAP_AREACOLOR_SCIENCE + department = LOC_SCIENCE + horizon_deck = 2 + icon_state = "research" + area_blurb = "The science sectors of the ship lend themselves to a clean, functional sterility; at least when everything is going well." + +/area/horizon/rnd/conference + name = "Conference Room" + +/area/horizon/rnd/hallway + name = "Hallway" + holomap_color = HOLOMAP_AREACOLOR_CIVILIAN + lightswitch = TRUE + location_ew = LOC_PORT + +/area/horizon/rnd/hallway/secondary + name = "Hallway" + lightswitch = TRUE + location_ns = LOC_AFT + +/area/horizon/rnd/telesci + name = "Telescience" + +/area/horizon/rnd/chemistry + name = "Exploratory Chemistry" + icon_state = "chem" + +/area/horizon/rnd/lab + name = "Research & Development" + icon_state = "toxlab" + +/area/horizon/rnd/server + name = "Server Room" + icon_state = "server" + +/area/horizon/rnd/xenological + name = "Xenological Studies" + icon_state = "xeno_log" + +/area/horizon/rnd/xenobiology + name = "Primary Laboratory" + icon_state = "xeno_lab" + subdepartment = SUBLOC_XENOBIO + +/area/horizon/rnd/xenobiology/hazardous + name = "Hazardous Containment" + +/area/horizon/rnd/xenobiology/dissection + name = "Dissection" + +/area/horizon/rnd/xenobiology/foyer + name = "Foyer" + +/area/horizon/rnd/xenobiology/xenoflora + name = "Grow Lab" + icon_state = "xeno_f_lab" + no_light_control = TRUE + subdepartment = SUBLOC_XENOBOT + +/area/horizon/rnd/test_range + name = "Weapons Testing Range" + area_flags = AREA_FLAG_FIRING_RANGE + horizon_deck = 1 + +/area/horizon/rnd/eva + name = "EVA Preparation" + icon_state = "blue" + horizon_deck = 1 + +/area/horizon/rnd/xenoarch + name = "Xenoarchaology - PARENT AREA DO NOT USE" + icon_state = "research" + horizon_deck = 1 + subdepartment = SUBLOC_XENOARCH + +/area/horizon/rnd/xenoarch/atrium + name = "Atrium" + +/area/horizon/rnd/xenoarch/storage + name = "General Storage" + icon_state = "purple" + +/area/horizon/rnd/xenoarch/anomaly_harvest + name = "Exotic Energy Harvesting" + +/area/horizon/rnd/xenoarch/anomaly_storage + name = "Artifact Storage" + +/area/horizon/rnd/xenoarch/spectrometry + name = "Spectrometry" + +/area/horizon/rnd/xenoarch/isolation_a + name = "Anomaly Isolation A" + icon_state = "blue" + +/area/horizon/rnd/xenoarch/isolation_b + name = "Anomaly Isolation B" + icon_state = "red" + +/area/horizon/rnd/xenoarch/isolation_c + name = "Anomaly Isolation C" + icon_state = "green" diff --git a/maps/sccv_horizon/areas/horizon_areas_security.dm b/maps/sccv_horizon/areas/horizon_areas_security.dm new file mode 100644 index 00000000000..4d5b489325c --- /dev/null +++ b/maps/sccv_horizon/areas/horizon_areas_security.dm @@ -0,0 +1,134 @@ +/// SECURITY_AREAS +/area/horizon/security + name = "Security (PARENT AREA - DON'T USE)" + holomap_color = HOLOMAP_AREACOLOR_SECURITY + department = LOC_SECURITY + area_blurb = "Every sound seems to echo just a little louder and more threateningly in the Security sectors of the SCCV Horizon." + +/area/horizon/security/lobby + name = "Lobby" + icon_state = "security" + horizon_deck = 2 + +/area/horizon/security/office + name = "Office" + icon_state = "security" + sound_environment = SOUND_AREA_SMALL_ENCLOSED + horizon_deck = 2 + +/area/horizon/security/hallway + name = "Main Hallway" + icon_state = "security" + horizon_deck = 2 + +/area/horizon/security/equipment + name = "Equipment Room" + icon_state = "security" + horizon_deck = 2 + +/area/horizon/security/washroom + name = "Washroom" + icon_state = "security" + sound_environment = SOUND_AREA_SMALL_ENCLOSED + horizon_deck = 2 + +/area/horizon/security/brig + name = "Brig" + icon_state = "brig" + area_flags = AREA_FLAG_HIDE_FROM_HOLOMAP | AREA_FLAG_PRISON + ambience = AMBIENCE_HIGHSEC + horizon_deck = 2 + +/area/horizon/security/holding_cell_a + name = "Holding Cell A" + icon_state = "brig_proc" + horizon_deck = 2 + +/area/horizon/security/holding_cell_b + name = "Holding Cell B" + icon_state = "brig_proc_two" + horizon_deck = 2 + +/area/horizon/security/warden + name = "Warden's Office" + icon_state = "Warden" + area_flags = AREA_FLAG_HIDE_FROM_HOLOMAP + ambience = AMBIENCE_HIGHSEC + sound_environment = SOUND_AREA_SMALL_ENCLOSED + horizon_deck = 2 + +/area/horizon/security/armoury + name = "Armoury" + icon_state = "Warden" + area_flags = AREA_FLAG_HIDE_FROM_HOLOMAP + ambience = AMBIENCE_HIGHSEC + sound_environment = SOUND_AREA_LARGE_ENCLOSED + horizon_deck = 2 + +/area/horizon/security/investigations_hallway + name = "Investigations Hallway" + icon_state = "security" + horizon_deck = 3 + +// Security (Deck 3) +/area/horizon/security/meeting_room + name = "Meeting Room" + icon_state = "security" + horizon_deck = 3 + +/area/horizon/security/firing_range + name = "Firing Range" + icon_state = "security" + sound_environment = SOUND_AREA_LARGE_ENCLOSED + horizon_deck = 3 + +/area/horizon/security/investigators_office + name = "Investigators' Office" + icon_state = "investigations_office" + sound_environment = SOUND_AREA_MEDIUM_SOFTFLOOR + horizon_deck = 3 + +/area/horizon/security/interrogation + name = "Interrogation" + icon_state = "investigations" + ambience = list(AMBIENCE_HIGHSEC, AMBIENCE_FOREBODING) + sound_environment = SOUND_AREA_SMALL_ENCLOSED + horizon_deck = 3 + +/area/horizon/security/interrogation/monitoring + name = "Interrogation Monitoring" + ambience = list(AMBIENCE_HIGHSEC) + sound_environment = SOUND_AREA_SMALL_ENCLOSED + horizon_deck = 3 + +/area/horizon/security/forensic_laboratory + name = "Forensic Laboratory" + icon_state = "investigations" + horizon_deck = 3 + +/area/horizon/security/autopsy_laboratory + name = "Autopsy Laboratory" + icon_state = "investigations" + ambience = list(AMBIENCE_GHOSTLY, AMBIENCE_FOREBODING) + horizon_deck = 3 + +/area/horizon/security/evidence_storage + name = "Evidence Storage" + icon_state = "evidence" + ambience = AMBIENCE_FOREBODING + sound_environment = SOUND_AREA_SMALL_ENCLOSED + horizon_deck = 3 + +/area/horizon/security/checkpoint + name = "Hangar Checkpoint" + icon_state = "checkpoint1" + no_light_control = 0 + horizon_deck = 1 + area_blurb = "A functional, unfriendly-looking compartment." + +/area/horizon/security/checkpoint2 + name = "Arrivals Checkpoint" + icon_state = "security" + ambience = AMBIENCE_ARRIVALS + horizon_deck = 2 + area_blurb = "A functional, unfriendly-looking compartment." diff --git a/maps/sccv_horizon/areas/horizon_areas_service.dm b/maps/sccv_horizon/areas/horizon_areas_service.dm new file mode 100644 index 00000000000..a3669aaef41 --- /dev/null +++ b/maps/sccv_horizon/areas/horizon_areas_service.dm @@ -0,0 +1,118 @@ +/// SERVICE_AREAS +/area/horizon/service + name = "Service (PARENT AREA - DON'T USE)" + holomap_color = HOLOMAP_AREACOLOR_CIVILIAN + department = LOC_SERVICE + +/// Hydroponics areas +/area/horizon/service/hydroponics + name = "Hydroponics" + icon_state = "hydro" + horizon_deck = 2 + area_blurb = "The humid air carries more than a strong whiff of assorted plant odors and fertilizing compounds, a complex admixture that is nonetheless quite pleasant." + +/area/horizon/service/hydroponics/lower + name = "Hydroponics" + horizon_deck = 1 + +/area/horizon/service/hydroponics/garden + name = "Public Garden" + icon_state = "garden" + horizon_deck = 2 + area_blurb = "The smell of rich, dark soil and pleasant intermixed plant odors lends the compartment an air of serenity." + +/// Library areas +/area/horizon/service/library + name = "Library" + icon_state = "library" + sound_environment = SOUND_AREA_LARGE_SOFTFLOOR + horizon_deck = 2 + area_blurb = "The soft rustling of actual paper and rich book-smell fill this compartment. Whoever designed the acoustics did a great job: sounds seem softened and subdued in here." + +/// Kitchen areas +/area/horizon/service/kitchen + name = "Kitchen" + icon_state = "kitchen" + allow_nightmode = FALSE + horizon_deck = 2 + area_blurb = "The clattering of cookware and dinnerware, the smells of every variety of meal; it's rare the crew who doesn't find something deeply ingrained and familiar about a bustling kitchen." + +/area/horizon/service/kitchen/freezer + name = "Kitchen - Freezer" + sound_environment = SOUND_AREA_SMALL_ENCLOSED + area_blurb = "It's really cold in here. How about that?" + +/// Bar areas +/area/horizon/service/bar + name = "Bar" + icon_state = "bar" + horizon_deck = 2 + area_blurb = "A place whose atmosphere morphs with every shift to the tastes of the presiding bartenders. If bulkhead walls could talk." + +/area/horizon/service/bar/backroom + name = "Bar - Backroom" + area_flags = AREA_FLAG_RAD_SHIELDED + area_blurb = "A place whose atmosphere morphs with every shift to the tastes of the presiding bartenders. If bulkhead walls could talk, times three back here." + +// Dining Hall +/area/horizon/service/dining_hall + name = "Dining Hall" + icon_state = "lounge" + sound_environment = SOUND_AREA_SMALL_SOFTFLOOR + horizon_deck = 2 + area_blurb = "One of the largest compartments on the SCCV Horizon and lavishly appointed to boot. The source of many accusations of excess, but nonetheless popular among the crew. " + +// Cafeteria +/area/horizon/service/cafeteria + name = "Cafe" + icon_state = "cafeteria" + area_blurb = "The smell of coffee wafts over from the cafe. Patience, the tree, stands proudly in the centre of the atrium." + area_blurb_category = "d3_cafe" + horizon_deck = 3 + +// Custodial areas +/area/horizon/service/custodial + name = "Custodial Closet" + icon_state = "janitor" + allow_nightmode = FALSE + sound_environment = SOUND_AREA_LARGE_ENCLOSED + ambience = list(AMBIENCE_FOREBODING, AMBIENCE_ENGINEERING) + area_blurb = "A strong, concentrated smell of many cleaning supplies linger within this room." + area_blurb_category = "janitor" + horizon_deck = 1 + +/area/horizon/service/custodial/disposals + name = "Disposals and Recycling (PARENT AREA - DON'T USE)" + icon_state = "disposal" + ambience = list(AMBIENCE_ENGINEERING, AMBIENCE_ATMOS) // Industrial sounds. + area_blurb = "A large trash compactor takes up much of the room, ready to crush the ship's rubbish." + area_blurb_category = "trash_compactor" + +/area/horizon/service/custodial/disposals/deck_1 + name = "Disposals and Recycling" + horizon_deck = 1 + +/area/horizon/service/custodial/disposals/deck_2 + name = "Disposals and Recycling" + horizon_deck = 2 + +/area/horizon/service/custodial/auxiliary + name = "Auxiliary Custodial Closet" + sound_environment = SOUND_AREA_SMALL_ENCLOSED + horizon_deck = 2 + +/area/horizon/service/chapel + sound_environment = SOUND_AREA_LARGE_ENCLOSED + ambience = AMBIENCE_CHAPEL + horizon_deck = 2 + +/area/horizon/service/chapel/main + name = "Chapel" + icon_state = "chapel" + area_blurb = "An impressive, spacious compartment nonetheless kept somewhat bland to accommodate the many disparate faiths whose practice may be attended here." + +/area/horizon/service/chapel/office + name = "Chapel Office" + icon_state = "chapeloffice" + sound_environment = SOUND_AREA_SMALL_ENCLOSED + area_blurb = "The atmosphere here is subdued and solemn." diff --git a/maps/sccv_horizon/areas/horizon_areas_shuttle.dm b/maps/sccv_horizon/areas/horizon_areas_shuttle.dm new file mode 100644 index 00000000000..2f0635a17d6 --- /dev/null +++ b/maps/sccv_horizon/areas/horizon_areas_shuttle.dm @@ -0,0 +1,73 @@ +/// SHUTTLE_AREAS +/area/horizon/shuttle + name = "Shuttle" + icon_state = "shuttle" + requires_power = 0 + sound_environment = SOUND_AREA_SMALL_ENCLOSED + area_flags = AREA_FLAG_RAD_SHIELDED + horizon_deck = 1 + area_blurb = "A shuttle compartment: compact and rigidly functional." + +/area/horizon/shuttle/intrepid + name = "Intrepid" + icon_state = "intrepid" + requires_power = TRUE + +/area/horizon/shuttle/intrepid/main_compartment + name = "Intrepid Main Compartment" + +/area/horizon/shuttle/intrepid/port_compartment + name = "Intrepid Port Compartment" + +/area/horizon/shuttle/intrepid/starboard_compartment + name = "Intrepid Starboard Compartment" + +/area/horizon/shuttle/intrepid/junction_compartment + name = "Intrepid Junction Compartment" + +/area/horizon/shuttle/intrepid/buffet + name = "Intrepid Buffet" + +/area/horizon/shuttle/intrepid/medical + name = "Intrepid Medical Compartment" + +/area/horizon/shuttle/intrepid/engineering + name = "Intrepid Engineering Compartment" + +/area/horizon/shuttle/intrepid/port_storage + name = "Intrepid Port Nacelle" + +/area/horizon/shuttle/intrepid/flight_deck + name = "Intrepid Flight Deck" + +/area/horizon/shuttle/escape_pod + name = "Escape Pod" + area_blurb = "If you're in here, you've probably had a bad day." + +/area/horizon/shuttle/escape_pod/pod1 + name = "Escape Pod - 1" + +/area/horizon/shuttle/escape_pod/pod2 + name = "Escape Pod - 2" + +/area/horizon/shuttle/escape_pod/pod3 + name = "Escape Pod - 3" + +/area/horizon/shuttle/escape_pod/pod4 + name = "Escape Pod - 4" + +/area/horizon/shuttle/mining + name = "Spark" + requires_power = TRUE + +/area/horizon/shuttle/canary + name = "Canary" + requires_power = TRUE + +/area/horizon/shuttle/quark/cockpit + name = "Quark Cockpit" + requires_power = TRUE + +/area/horizon/shuttle/quark/cargo_hold + name = "Quark Cargo Hold" + requires_power = TRUE diff --git a/maps/sccv_horizon/code/_sccv_horizon_shuttle_landmarks.dm b/maps/sccv_horizon/code/_sccv_horizon_shuttle_landmarks.dm index 89d04205113..a375ea4e46f 100644 --- a/maps/sccv_horizon/code/_sccv_horizon_shuttle_landmarks.dm +++ b/maps/sccv_horizon/code/_sccv_horizon_shuttle_landmarks.dm @@ -5,13 +5,13 @@ name = "First Deck Port Hangar Bay 1a" landmark_tag = "nav_horizon_hangar_1" base_turf = /turf/simulated/floor/plating - base_area = /area/hangar/auxiliary + base_area = /area/horizon/hangar/auxiliary /obj/effect/shuttle_landmark/horizon/hangar2 name = "First Deck Port Hangar Bay 2a" landmark_tag = "nav_horizon_hangar_2" base_turf = /turf/simulated/floor/plating - base_area = /area/hangar/auxiliary + base_area = /area/horizon/hangar/auxiliary // ================================ exterior docks diff --git a/maps/sccv_horizon/code/sccv_horizon.dm b/maps/sccv_horizon/code/sccv_horizon.dm index 0d083dad741..605a0283ebb 100644 --- a/maps/sccv_horizon/code/sccv_horizon.dm +++ b/maps/sccv_horizon/code/sccv_horizon.dm @@ -158,7 +158,7 @@ allow_borgs_to_leave = TRUE - warehouse_basearea = /area/operations/storage + warehouse_basearea = /area/horizon/operations/warehouse shuttle_manifests = list( "SCCV Canary" = list("color" = "blue", "icon" = "binoculars"), diff --git a/maps/sccv_horizon/code/sccv_horizon_lifts.dm b/maps/sccv_horizon/code/sccv_horizon_lifts.dm index 89db8e37213..7367bbbb107 100644 --- a/maps/sccv_horizon/code/sccv_horizon_lifts.dm +++ b/maps/sccv_horizon/code/sccv_horizon_lifts.dm @@ -88,14 +88,14 @@ /obj/effect/shuttle_landmark/lift/morgue_top name = "Morgue Top" landmark_tag = "nav_morgue_lift_top" - base_area = /area/hallway/medical + base_area = /area/horizon/medical/hallway base_turf = /turf/simulated/open /obj/effect/shuttle_landmark/lift/morgue_bottom name = "Morgue Bottom" landmark_tag = "nav_morgue_lift_bottom" landmark_flags = SLANDMARK_FLAG_AUTOSET - base_area = /area/medical/morgue/lower + base_area = /area/horizon/medical/morgue base_turf = /turf/simulated/floor/plating /area/turbolift/scc_ship/morgue_lift @@ -117,19 +117,19 @@ /obj/effect/shuttle_landmark/lift/operations_first_deck name = "Operations Lift - First Deck" landmark_tag = "nav_operations_lift_first_deck" - base_area = /area/operations/storage + base_area = /area/horizon/operations/warehouse base_turf = /turf/simulated/floor/plating /obj/effect/shuttle_landmark/lift/operations_second_deck name = "Operations Lift - Second Deck" landmark_tag = "nav_operations_lift_second_deck" - base_area = /area/operations/office + base_area = /area/horizon/operations/office base_turf = /turf/simulated/open /obj/effect/shuttle_landmark/lift/operations_third_deck name = "Operations Lift - Third Deck" landmark_tag = "nav_operations_lift_third_deck" - base_area = /area/operations/office_aux + base_area = /area/horizon/operations/office_aux base_turf = /turf/simulated/open /obj/machinery/computer/shuttle_control/multi/lift/operations @@ -159,21 +159,21 @@ name = "Robotics Lift - First Deck" landmark_tag = "nav_robotics_lift_first_deck" landmark_flags = SLANDMARK_FLAG_AUTOSET - base_area = /area/rnd/eva + base_area = /area/horizon/rnd/eva base_turf = /turf/simulated/floor/plating /obj/effect/shuttle_landmark/lift/robotics_second_deck name = "Robotics Lift - Second Deck" landmark_tag = "nav_robotics_lift_second_deck" // landmark_flags = SLANDMARK_FLAG_AUTOSET - base_area = /area/hallway/medical + base_area = /area/horizon/medical/hallway base_turf = /turf/simulated/open /obj/effect/shuttle_landmark/lift/robotics_third_deck name = "Robotics Lift - Third Deck" landmark_tag = "nav_robotics_lift_third_deck" landmark_flags = SLANDMARK_FLAG_AUTOSET - base_area = /area/hallway/medical + base_area = /area/horizon/medical/hallway base_turf = /turf/simulated/open /obj/machinery/computer/shuttle_control/multi/lift/robotics diff --git a/maps/sccv_horizon/code/sccv_horizon_shuttles.dm b/maps/sccv_horizon/code/sccv_horizon_shuttles.dm index f1566116aa0..8ffb0201fe2 100644 --- a/maps/sccv_horizon/code/sccv_horizon_shuttles.dm +++ b/maps/sccv_horizon/code/sccv_horizon_shuttles.dm @@ -106,7 +106,7 @@ /datum/shuttle/autodock/overmap/intrepid name = "Intrepid" move_time = 20 - shuttle_area = list(/area/shuttle/intrepid/main_compartment, /area/shuttle/intrepid/port_compartment, /area/shuttle/intrepid/starboard_compartment, /area/shuttle/intrepid/junction_compartment, /area/shuttle/intrepid/buffet, /area/shuttle/intrepid/medical, /area/shuttle/intrepid/engineering, /area/shuttle/intrepid/port_storage, /area/shuttle/intrepid/flight_deck) + shuttle_area = list(/area/horizon/shuttle/intrepid/main_compartment, /area/horizon/shuttle/intrepid/port_compartment, /area/horizon/shuttle/intrepid/starboard_compartment, /area/horizon/shuttle/intrepid/junction_compartment, /area/horizon/shuttle/intrepid/buffet, /area/horizon/shuttle/intrepid/medical, /area/horizon/shuttle/intrepid/engineering, /area/horizon/shuttle/intrepid/port_storage, /area/horizon/shuttle/intrepid/flight_deck) dock_target = "airlock_shuttle_intrepid" current_location = "nav_hangar_intrepid" landmark_transition = "nav_transit_intrepid" @@ -118,7 +118,7 @@ name = "First Deck Intrepid Hangar Bay" landmark_tag = "nav_hangar_intrepid" docking_controller = "intrepid_dock" - base_area = /area/hangar/intrepid + base_area = /area/horizon/hangar/intrepid base_turf = /turf/simulated/floor/plating /obj/effect/shuttle_landmark/intrepid/transit @@ -130,7 +130,7 @@ /datum/shuttle/autodock/overmap/canary name = "Canary" move_time = 20 - shuttle_area = list(/area/shuttle/canary) + shuttle_area = list(/area/horizon/shuttle/canary) dock_target = "canary_shuttle" current_location = "nav_hangar_canary" landmark_transition = "nav_transit_canary" @@ -142,7 +142,7 @@ name = "First Deck Canary Hangar Bay" landmark_tag = "nav_hangar_canary" docking_controller = "canary_dock" - base_area = /area/hangar/auxiliary + base_area = /area/horizon/hangar/auxiliary base_turf = /turf/simulated/floor/plating /obj/effect/shuttle_landmark/canary/transit @@ -154,7 +154,7 @@ /datum/shuttle/autodock/overmap/quark name = "Quark" move_time = 20 - shuttle_area = list(/area/shuttle/quark/cockpit, /area/shuttle/quark/cargo_hold) + shuttle_area = list(/area/horizon/shuttle/quark/cockpit, /area/horizon/shuttle/quark/cargo_hold) dock_target = "airlock_shuttle_quark" current_location = "nav_hangar_quark" landmark_transition = "nav_transit_quark" @@ -166,7 +166,7 @@ name = "First Deck Quark Hangar Bay" landmark_tag = "nav_hangar_quark" docking_controller = "quark_dock" - base_area = /area/hangar/auxiliary + base_area = /area/horizon/hangar/auxiliary base_turf = /turf/simulated/floor/plating /obj/effect/shuttle_landmark/quark/transit @@ -178,7 +178,7 @@ /datum/shuttle/autodock/overmap/mining name = "Spark" move_time = 20 - shuttle_area = /area/shuttle/mining + shuttle_area = /area/horizon/shuttle/mining dock_target = "airlock_shuttle_spark" current_location = "nav_hangar_mining" landmark_transition = "nav_transit_mining" @@ -191,7 +191,7 @@ landmark_tag = "nav_hangar_mining" docking_controller = "mining_shuttle_dock" base_turf = /turf/simulated/floor/airless - base_area = /area/hangar/operations + base_area = /area/horizon/hangar/operations movable_flags = MOVABLE_FLAG_EFFECTMOVE /obj/effect/shuttle_landmark/mining/transit @@ -218,7 +218,7 @@ landmark_tag = "nav_cargo_shuttle_dock" docking_controller = "cargo_shuttle_dock" base_turf = /turf/simulated/floor/plating - base_area = /area/hangar/operations + base_area = /area/horizon/hangar/operations //-// Admin Corvette //-// /datum/shuttle/autodock/multi/crescent diff --git a/maps/sccv_horizon/code/sccv_horizon_unittest.dm b/maps/sccv_horizon/code/sccv_horizon_unittest.dm index ec4570e23b7..09c445df3cb 100644 --- a/maps/sccv_horizon/code/sccv_horizon_unittest.dm +++ b/maps/sccv_horizon/code/sccv_horizon_unittest.dm @@ -7,45 +7,37 @@ /area/supply/station, /area/tdome, /area/centcom, - /area/prison, /area/supply/dock, /area/turbolift, /area/mine, - /area/construction, /area/horizon/exterior ) ut_apc_exempt_areas = list() ut_atmos_exempt_areas = list( - /area/maintenance, /area/horizon/maintenance, - /area/engineering/atmos/storage, - /area/server, - /area/tcommsat/chamber, - /area/bridge/aibunker, - /area/outpost/research/emergency_storage, - /area/medical/cryo, - /area/medical/surgery, - /area/turret_protected/ai, - /area/engineering/smes/rust, - /area/tcommsat/mainlvl_tcomms__relay, - /area/tcommsat/mainlvl_tcomms__relay/second, - /area/rnd/isolation_a, - /area/rnd/isolation_b, - /area/rnd/isolation_c + /area/horizon/engineering/atmos/storage, + /area/horizon/rnd/server, + /area/horizon/tcommsat/chamber, + /area/horizon/command/bridge/aibunker, + /area/horizon/medical/cryo, + /area/horizon/medical/surgery/storage, + /area/horizon/ai, + /area/horizon/engineering/reactor/indra/smes, + /area/horizon/rnd/xenoarch/isolation_a, + /area/horizon/rnd/xenoarch/isolation_b, + /area/horizon/rnd/xenoarch/isolation_c ) ut_fire_exempt_areas = list( - /area/maintenance, /area/horizon/maintenance, - /area/construction, - /area/bridge/aibunker, - /area/medical/cryo, - /area/horizon/crew_quarters/cryo/washroom, - /area/rnd/isolation_a, - /area/rnd/isolation_b, - /area/rnd/isolation_c + /area/horizon/command/bridge/aibunker, + /area/horizon/medical/cryo, + /area/horizon/crew/washroom/deck_3, + /area/horizon/rnd/xenoarch/isolation_a, + /area/horizon/rnd/xenoarch/isolation_b, + /area/horizon/rnd/xenoarch/isolation_c ) /datum/unit_test/zas_area_test/sccv_horizon @@ -53,4 +45,4 @@ /datum/unit_test/zas_area_test/sccv_horizon/storage name = "ZAS: Operations Bay" - area_path = /area/operations/storage + area_path = /area/horizon/operations/warehouse diff --git a/maps/sccv_horizon/sccv_horizon.dmm b/maps/sccv_horizon/sccv_horizon.dmm index 13f5e9da30f..79aaf5fbf91 100644 --- a/maps/sccv_horizon/sccv_horizon.dmm +++ b/maps/sccv_horizon/sccv_horizon.dmm @@ -1,27 +1,50 @@ //MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"aaa" = ( -/obj/machinery/door/airlock/glass{ - dir = 1; - name = "Hangar" +"aab" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 }, -/obj/machinery/door/blast/regular/open{ - dir = 8; - id = "hangarlockdown"; - name = "Hangar Lockdown" +/turf/simulated/floor/carpet/rubber, +/area/horizon/rnd/lab) +"aae" = ( +/obj/structure/cable/green{ + icon_state = "1-2" }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/full, -/area/hangar/intrepid) -"aac" = ( -/obj/effect/floor_decal/corner/mauve/diagonal, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/effect/floor_decal/corner/brown{ dir = 9 }, +/turf/simulated/floor/tiled, +/area/horizon/operations/office) +"aaj" = ( +/obj/effect/floor_decal/spline/fancy/wood/corner{ + dir = 1 + }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 8 }, -/turf/simulated/floor/tiled/white, -/area/rnd/lab) +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8"; + d1 = 4; + d2 = 8 + }, +/turf/simulated/floor/wood, +/area/horizon/service/library) +"aak" = ( +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/full, +/area/horizon/hallway/primary/deck_3/port/docks) +"aal" = ( +/turf/simulated/floor/tiled, +/area/horizon/hangar/operations) "aam" = ( /obj/effect/floor_decal/corner/dark_blue{ dir = 6 @@ -32,16 +55,32 @@ /obj/structure/extinguisher_cabinet/east, /turf/simulated/floor/tiled, /area/horizon/security/investigations_hallway) -"aav" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ +"aap" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/obj/effect/floor_decal/spline/fancy/wood/corner{ dir = 8 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 +/obj/structure/cable/green{ + icon_state = "1-2" }, -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/bluespace_drive) +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/wood, +/area/horizon/command/bridge/meeting_room) +"aaw" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 10 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/horizon/operations/lobby) "aax" = ( /obj/effect/floor_decal/corner/lime{ dir = 9 @@ -52,6 +91,30 @@ }, /turf/unsimulated/floor, /area/centcom/spawning) +"aaB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/horizon/service/chapel/main) +"aaC" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/break_room) +"aaD" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/full, +/area/horizon/hallway/primary/deck_2/fore) "aaE" = ( /obj/machinery/vending/snack{ name = "Free Chocolate Corp"; @@ -61,43 +124,39 @@ icon_state = "dark_preview" }, /area/centcom/specops) +"aaF" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/corner/dark_green{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_3/port) "aaI" = ( /obj/effect/floor_decal/corner/blue{ dir = 4 }, /turf/simulated/floor/holofloor/tiled, /area/horizon/holodeck/source_lasertag) -"aaK" = ( -/obj/structure/morgue{ - dir = 8 +"aaJ" = ( +/obj/machinery/atmospherics/pipe/manifold/visible{ + dir = 1 }, -/obj/machinery/light{ - dir = 4 +/obj/machinery/light/floor{ + dir = 1 }, +/obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology) -"aaP" = ( -/obj/machinery/alarm/north, -/obj/machinery/chem_heater, -/obj/effect/floor_decal/industrial/hatch/grey, +/area/horizon/rnd/xenobiology/xenoflora) +"aaQ" = ( +/obj/structure/closet/radiation, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, /turf/simulated/floor/tiled/full, -/area/bridge/minibar) -"aaT" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 8 - }, -/obj/machinery/airlock_sensor{ - dir = 8; - pixel_x = 20 - }, -/obj/effect/map_effect/marker/airlock{ - frequency = 1001; - master_tag = "airlock_horizon_deck_3_aft_1"; - name = "airlock_horizon_deck_3_aft_1" - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor, -/area/horizon/maintenance/deck_three/aft/starboard) +/area/horizon/engineering/reactor/supermatter/airlock) "aaW" = ( /obj/effect/floor_decal/carpet{ dir = 1 @@ -105,28 +164,36 @@ /obj/structure/bed/stool/chair/holochair, /turf/simulated/floor/holofloor/carpet, /area/horizon/holodeck/source_meetinghall) -"aaZ" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/maintenance{ - dir = 4; - name = "E.V.A. Maintenance"; - req_access = list(18) +"aaY" = ( +/obj/structure/closet/emcloset, +/obj/effect/floor_decal/corner/dark_green/full{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/outline/emergency_closet, +/obj/machinery/camera/network/second_deck{ + c_tag = "Second Deck - Operations Entrance"; + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_2/starboard) +"aba" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" }, -/obj/effect/floor_decal/industrial/hatch/yellow, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/full, -/area/storage/eva) -"abc" = ( -/obj/machinery/alarm/south, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/suit_cycler/engineering/prepared, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/storage_eva) +/turf/simulated/floor/tiled, +/area/horizon/command/bridge/controlroom) "abd" = ( /obj/machinery/door/airlock/glass{ dir = 4; @@ -146,55 +213,25 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/horizon/security/hallway) -"abg" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/effect/floor_decal/spline/plain, -/obj/machinery/hologram/holopad, +"abf" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/external{ + dir = 4; + id_tag = "riso1"; + name = "Isolation A"; + req_access = list(65) + }, +/obj/machinery/door/blast/regular/open{ + id = "iso_a"; + name = "Safety Blast Door" + }, /turf/simulated/floor/tiled/white, -/area/horizon/kitchen) -"abj" = ( -/turf/simulated/floor/tiled, -/area/operations/lobby) -"abk" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - dir = 1; - name = "Supermatter Reactor Waste Management"; - req_one_access = list(11,24) - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/firedoor, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/full, -/area/engineering/engine_waste) -"abl" = ( -/obj/structure/bed/stool/chair/office/light{ - dir = 8 - }, -/obj/effect/floor_decal/spline/plain/lime{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/tiled/dark, -/area/horizon/commissary) -"abn" = ( -/obj/machinery/door/firedoor, -/obj/structure/table/reinforced{ - req_access = list(33) - }, -/obj/machinery/door/blast/shutters{ - id = "CHE3shutters"; - name = "Pharmacy Desk Shutter" - }, -/obj/machinery/door/window/desk/southright{ - name = "Pharmacy Desk"; - req_access = list(33) - }, -/turf/simulated/floor/tiled/dark/full, -/area/medical/pharmacy) +/area/horizon/rnd/xenoarch/isolation_c) "abo" = ( /obj/machinery/door/window/brigdoor/southleft{ name = "holding cell"; @@ -212,6 +249,19 @@ /obj/effect/floor_decal/industrial/warning, /turf/unsimulated/floor, /area/centcom/legion/hangar5) +"abz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/full, +/area/horizon/hallway/primary/deck_2/central) "abD" = ( /obj/structure/bed/stool/chair/padded/blue{ dir = 8 @@ -224,96 +274,71 @@ }, /turf/unsimulated/floor/wood, /area/centcom/holding) -"abG" = ( -/obj/effect/floor_decal/corner/dark_green, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/starboard) -"abI" = ( -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/structure/railing/mapped, -/obj/structure/platform/ledge{ - dir = 1 - }, +"abN" = ( /obj/structure/platform/ledge{ dir = 4 }, -/obj/structure/platform_deco/ledge{ - dir = 10 +/obj/machinery/seed_extractor, +/obj/effect/floor_decal/corner/lime{ + dir = 5 }, -/turf/simulated/open, -/area/horizon/hallway/deck_three/primary/central) -"abL" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/structure/table/wood, -/obj/random/pottedplant_small{ - pixel_x = 7; - pixel_y = 2 - }, -/turf/simulated/floor/carpet/art, -/area/crew_quarters/lounge/secondary) +/turf/simulated/floor/tiled, +/area/horizon/rnd/xenobiology/xenoflora) "abP" = ( /turf/unsimulated/floor{ dir = 4 }, /area/antag/burglar) -"abQ" = ( -/obj/effect/floor_decal/corner/brown/full{ +"abV" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/reactor/supermatter/mainchamber) +"abX" = ( +/obj/effect/floor_decal/spline/fancy/wood{ dir = 4 }, -/obj/random/pottedplant, -/obj/machinery/alarm/east, -/turf/simulated/floor/tiled, -/area/operations/storage) -"abU" = ( -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 4 +/obj/machinery/hologram/holopad, +/turf/simulated/floor/wood, +/area/horizon/repoffice/consular_two) +"acb" = ( +/obj/structure/table/wood, +/turf/simulated/floor/carpet, +/area/horizon/service/chapel/office) +"ach" = ( +/obj/structure/window/shuttle/scc_space_ship, +/obj/structure/grille, +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 2; + icon_state = "shutter0"; + id = "LCKDshutters"; + name = "MedBay Lockdown Shutters"; + opacity = 0 }, -/obj/machinery/meter, -/turf/simulated/floor/tiled/dark, -/area/engineering/atmos/propulsion) -"acd" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/floor_decal/corner/yellow{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/engineering/lobby) +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/horizon/medical/equipment) "ack" = ( /turf/unsimulated/wall/steel, /area/antag/jockey) -"acn" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 +"acs" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 }, -/obj/machinery/light/small/emergency{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard/deck1) -"acp" = ( -/obj/effect/floor_decal/corner/dark_blue/full{ +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 8 }, -/obj/structure/table/rack, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/item/clothing/head/helmet/pilot/scc{ - pixel_y = 8 +/obj/structure/cable/green{ + icon_state = "1-4" }, -/obj/item/clothing/head/helmet/pilot/scc{ - pixel_y = 3 +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" }, -/obj/item/clothing/head/helmet/pilot/scc{ - pixel_y = -3 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/hangar/control) +/turf/simulated/floor/tiled, +/area/horizon/service/custodial) "act" = ( /obj/effect/landmark/thunderdome2, /obj/machinery/camera/network/thunder{ @@ -325,54 +350,33 @@ }, /turf/simulated/floor/holofloor/tiled/dark, /area/tdome/tdome2) -"acw" = ( -/obj/structure/stairs/south, +"acv" = ( /obj/structure/railing/mapped{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/horizon/hydroponics/lower) -"acA" = ( -/obj/structure/table/wood, -/obj/random/pottedplant_small{ - pixel_x = 7; - pixel_y = 2 - }, -/turf/simulated/floor/carpet, -/area/journalistoffice) -"acF" = ( -/obj/machinery/firealarm/south, -/obj/structure/closet/walllocker/medical/secure{ - name = "O- Blood Locker"; - pixel_x = -32 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/hatch/red, -/obj/machinery/light, -/obj/item/reagent_containers/blood/OMinus, -/obj/item/reagent_containers/blood/OMinus, -/obj/item/reagent_containers/blood/OMinus, -/obj/item/reagent_containers/blood/OMinus, -/obj/item/reagent_containers/blood/OMinus, -/obj/item/reagent_containers/blood/OMinus, -/turf/simulated/floor/tiled/white, -/area/medical/icu) -"acK" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/effect/floor_decal/spline/plain{ - dir = 8 - }, -/obj/effect/floor_decal/spline/plain{ dir = 4 }, -/obj/structure/disposalpipe/segment, -/obj/machinery/light{ +/obj/structure/lattice, +/obj/structure/platform/ledge{ dir = 8 }, -/turf/simulated/floor/tiled/white, -/area/horizon/kitchen) +/turf/simulated/open, +/area/horizon/hallway/primary/deck_2/central) +"acx" = ( +/obj/effect/floor_decal/industrial/warning/full, +/obj/machinery/power/smes/buildable{ + charge = 5000000; + input_attempt = 1; + input_level = 200000; + output_attempt = 1; + output_level = 200000 + }, +/obj/structure/cable/green, +/turf/simulated/floor, +/area/horizon/command/bridge/aibunker) +"acL" = ( +/obj/effect/floor_decal/industrial/outline/operations, +/obj/structure/closet/secure_closet/atmos_personal, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/atmos/storage) "acO" = ( /obj/item/storage/belt/security/tactical, /obj/item/storage/belt/security/tactical, @@ -450,40 +454,34 @@ /obj/structure/table/reinforced/steel, /turf/unsimulated/floor/plating, /area/centcom/specops) -"acR" = ( +"acS" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/map_effect/door_helper/unres, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id = "bridge blast"; + name = "Bridge Blast Doors"; + opacity = 0 + }, /obj/structure/cable/green{ - icon_state = "4-8" + icon_state = "1-2" }, -/obj/machinery/light, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/corner/brown{ - dir = 10 +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/airlock/glass_command{ + dir = 1; + id_tag = "bridge_foyer"; + name = "Bridge"; + req_one_access = list(19) }, /turf/simulated/floor/tiled, -/area/operations/office) -"acT" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/black{ - dir = 4 - }, -/obj/machinery/camera/network/reactor{ - c_tag = "Engineering - Waste Handling 2"; - dir = 8 - }, -/obj/machinery/meter, -/obj/effect/floor_decal/corner/yellow{ - dir = 6 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/dark, -/area/engineering/engine_waste) +/area/horizon/command/bridge/upperdeck) "acU" = ( /obj/structure/shuttle/engine/propulsion/burst/right, /turf/simulated/wall/shuttle/space_ship/mercenary, @@ -500,61 +498,30 @@ }, /turf/unsimulated/floor/wood, /area/antag/mercenary) -"acX" = ( -/obj/item/storage/secure/safe{ - pixel_y = 36 +"ade" = ( +/obj/structure/railing/mapped{ + dir = 8 }, -/obj/machinery/requests_console/north{ - announcementConsole = 1; - department = "Representative's Office Alpha"; - departmentType = 5; - name = "Representative's Office requests console"; - pixel_y = 5; - dir = 8; - pixel_x = -49 - }, -/obj/machinery/photocopier, -/turf/simulated/floor/carpet, -/area/lawoffice/representative) -"acY" = ( -/obj/structure/cable/green{ +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/operations/machinist) +"adi" = ( +/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_blue{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/hangar/intrepid) -"adh" = ( -/obj/structure/cable/green{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 7 - }, +/obj/machinery/door/firedoor, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/operations/starboard/far) +"adm" = ( +/obj/effect/floor_decal/corner/paleblue/diagonal, /obj/structure/cable/green{ icon_state = "1-2" }, -/turf/simulated/floor/wood, -/area/lawoffice/consular_two) -"adj" = ( -/obj/machinery/vending/vendors, -/obj/effect/floor_decal/corner/purple/full{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled, -/area/horizon/custodial) +/turf/simulated/floor/tiled/white, +/area/horizon/command/heads/cmo) "ado" = ( /obj/structure/flora/rock{ icon_state = "basalt2"; @@ -576,34 +543,24 @@ }, /turf/unsimulated/floor/plating, /area/shuttle/transport1) -"adz" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 4 +"adt" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 10 }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/bridge/cciaroom) -"adD" = ( -/obj/effect/floor_decal/corner/dark_blue/full{ - dir = 8 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/photocopier, /turf/simulated/floor/tiled, -/area/bridge/controlroom) -"adE" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 +/area/horizon/operations/loading) +"adu" = ( +/obj/effect/floor_decal/corner/lime{ + dir = 5 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 +/turf/simulated/floor/tiled, +/area/horizon/rnd/xenobiology/xenoflora) +"adB" = ( +/obj/effect/map_effect/window_spawner/full/reinforced/polarized/firedoor{ + id = "library" }, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenoarch_storage) +/turf/simulated/floor/tiled/dark/full, +/area/horizon/service/library) "adF" = ( /obj/effect/landmark{ name = "burglarspawn" @@ -622,30 +579,30 @@ name = "mossy grass" }, /area/horizon/holodeck/source_konyang) -"adH" = ( -/obj/effect/floor_decal/industrial/outline/grey, -/obj/structure/closet/crate/plastic{ - name = "folding chairs and tables crate" +"adI" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 }, -/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/intrepid) -"adL" = ( -/obj/effect/floor_decal/corner/purple{ - dir = 10 +/obj/structure/cable/green{ + icon_state = "2-4" }, -/obj/structure/closet/secure_closet/custodial, -/obj/effect/floor_decal/industrial/outline/custodial, -/obj/machinery/newscaster/south, /turf/simulated/floor/tiled, -/area/horizon/custodial/auxiliary) +/area/horizon/medical/gen_treatment) +"adJ" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/ore_box, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/operations/mining_main/refinery) +"adQ" = ( +/obj/effect/floor_decal/corner/grey/diagonal, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/reception) "adT" = ( /obj/effect/floor_decal/corner/dark_blue/full{ dir = 4 @@ -658,19 +615,35 @@ /obj/machinery/alarm/east, /turf/simulated/floor/tiled/dark, /area/horizon/security/evidence_storage) -"adU" = ( -/obj/machinery/vending/coffee, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 6 - }, -/turf/simulated/floor/wood, -/area/bridge/meeting_room) -"adX" = ( +"adV" = ( /obj/effect/floor_decal/industrial/warning{ - dir = 1 + dir = 9 }, /turf/simulated/floor/plating, -/area/hangar/auxiliary) +/area/horizon/maintenance/deck_2/cargo_compartment) +"adY" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/landmark/latejoinlift, +/obj/structure/disposalpipe/junction{ + dir = 8; + icon_state = "pipe-j2" + }, +/turf/simulated/floor/tiled, +/area/horizon/crew/resdeck/living_quarters_lift) +"aeb" = ( +/obj/structure/platform{ + dir = 4 + }, +/turf/simulated/floor, +/area/horizon/maintenance/deck_2/wing/starboard/far) "aed" = ( /obj/effect/floor_decal/corner/dark_blue{ dir = 5 @@ -685,6 +658,48 @@ }, /turf/simulated/floor/tiled, /area/horizon/security/holding_cell_b) +"aef" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/port/far) +"aej" = ( +/obj/machinery/power/apc/low/west, +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/obj/effect/floor_decal/industrial/warning/cee{ + dir = 8 + }, +/turf/simulated/floor/tiled/full, +/area/horizon/engineering/storage_hard) +"aek" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/structure/cable/green{ + icon_state = "0-8" + }, +/obj/structure/grille, +/turf/simulated/floor/tiled/dark/full/airless, +/area/horizon/command/bridge/controlroom) "aes" = ( /obj/item/tank/oxygen, /obj/item/clothing/shoes/magboots, @@ -700,15 +715,63 @@ /obj/random/voidsuit, /turf/simulated/floor/tiled, /area/shuttle/skipjack) -"aeC" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 +"aeu" = ( +/obj/machinery/power/smes/buildable/substation{ + RCon_tag = "Substation - Operations" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/obj/structure/cable, +/turf/simulated/floor/plating, +/area/horizon/maintenance/substation/operations) +"aev" = ( +/obj/structure/lattice/catwalk, +/obj/structure/ladder/up{ + pixel_y = 16 + }, +/obj/item/hullbeacon/red, +/turf/space/dynamic, +/area/horizon/exterior) +"aex" = ( +/obj/machinery/atmospherics/portables_connector/fuel{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning/cee, +/turf/simulated/floor/reinforced, +/area/horizon/shuttle/canary) +"aeA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/effect/floor_decal/corner/yellow/full{ + dir = 4 + }, +/obj/machinery/alarm/east, +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/reactor/supermatter/waste) +"aeF" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/structure/noticeboard{ + pixel_y = 32 + }, +/obj/machinery/door/blast/shutters{ + dir = 4; + id = "cargo_desk" + }, +/obj/machinery/ringer_button{ + id = "cargo_ringer"; + pixel_x = 6; + pixel_y = 5 + }, +/obj/machinery/door/window/desk/westright{ + name = "Operations Desk Interior Access"; + req_access = list(50) }, /turf/simulated/floor/tiled/dark/full, -/area/turret_protected/ai_upload) +/area/horizon/operations/office) "aeH" = ( /obj/structure/table/rack, /obj/item/ammo_magazine/gauss{ @@ -785,6 +848,31 @@ }, /turf/unsimulated/floor, /area/centcom/legion/hangar5) +"aeL" = ( +/obj/structure/platform_deco, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/wood, +/area/horizon/command/bridge/meeting_room) +"aeP" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/alarm/south, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/cargo_compartment) +"aeQ" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/substation/security) "aeU" = ( /obj/effect/floor_decal/spline/plain{ dir = 4 @@ -792,93 +880,94 @@ /obj/structure/flora/ausbushes/ywflowers, /turf/simulated/floor/exoplanet/grass/grove, /area/centcom/shared_dream) -"afa" = ( -/obj/machinery/alarm/north, -/obj/effect/floor_decal/spline/fancy/wood/cee{ - dir = 1 +"aeY" = ( +/obj/structure/cable{ + icon_state = "1-4" }, -/obj/structure/railing/mapped{ +/obj/machinery/light/small/emergency{ dir = 8 }, -/obj/structure/railing/mapped{ - dir = 4 +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/starboard/nacelle) +"afm" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 8 }, -/obj/structure/flora/ausbushes/brflowers, -/turf/simulated/floor/grass/no_edge, -/area/hallway/primary/central_two) -"afd" = ( -/turf/simulated/wall/shuttle/scc_space_ship/cardinal, -/area/maintenance/wing/port/far) -"afe" = ( -/obj/structure/ladder/up{ - pixel_y = 13 +/obj/machinery/light/small{ + dir = 1 }, -/obj/structure/cable{ - icon_state = "4-8" +/obj/effect/map_effect/marker/airlock{ + master_tag = "sccv_intrepid_port"; + name = "sccv_intrepid_port" + }, +/obj/machinery/embedded_controller/radio/airlock/airlock_controller{ + pixel_y = 23 + }, +/obj/effect/map_effect/marker/airlock{ + master_tag = "sccv_intrepid_port"; + name = "sccv_intrepid_port"; + req_one_access = null + }, +/turf/simulated/floor/plating, +/area/horizon/shuttle/intrepid/port_compartment) +"afs" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard/deck1) -"aff" = ( -/obj/structure/bed/stool/chair/office/light{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/medical/pharmacy) -"afg" = ( -/obj/effect/floor_decal/spline/fancy/wood{ dir = 6 }, -/obj/structure/railing/mapped, -/turf/simulated/floor/wood, -/area/horizon/cafeteria) -"afl" = ( -/obj/effect/floor_decal/industrial/loading/yellow, -/obj/effect/floor_decal/spline/plain{ - dir = 10 +/obj/effect/floor_decal/corner/black{ + dir = 5 }, -/obj/effect/landmark/start{ - name = "Cyborg" - }, -/turf/simulated/floor/carpet/rubber, -/area/assembly/chargebay) -"afq" = ( -/obj/structure/table/standard, -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/floor_decal/corner/mauve/full{ - dir = 4 - }, -/obj/item/paper_bin, -/obj/item/pen/black, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology/xenological) -"afr" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/effect/floor_decal/corner/paleblue/full, /turf/simulated/floor/tiled, -/area/bridge/cciaroom/lounge) +/area/horizon/operations/machinist) +"afu" = ( +/obj/structure/table/standard, +/obj/item/sampler, +/obj/item/sampler, +/obj/machinery/alarm/west, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/rnd/xenobiology/foyer) "afw" = ( /obj/effect/floor_decal/corner/green/full{ dir = 1 }, /turf/unsimulated/floor, /area/centcom/holding) -"afG" = ( -/obj/structure/bed/stool/bar/padded/red{ +"afy" = ( +/obj/effect/map_effect/window_spawner/full/reinforced/polarized/grille/firedoor{ + id = "consularB" + }, +/obj/structure/cable/green{ + icon_state = "0-8" + }, +/turf/simulated/floor, +/area/horizon/repoffice/consular_two) +"afB" = ( +/obj/structure/cable/orange{ + icon_state = "0-2" + }, +/obj/structure/cable/orange, +/obj/machinery/power/emitter{ dir = 4 }, -/turf/simulated/floor/lino, -/area/horizon/bar) +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/turf/simulated/floor/plating, +/area/horizon/engineering/bluespace_drive) +"afC" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/bluespace_drive) "afI" = ( /obj/machinery/door/airlock/highsecurity{ dir = 1; @@ -887,6 +976,18 @@ }, /turf/simulated/floor/tiled/dark, /area/shuttle/syndicate_elite) +"afR" = ( +/obj/effect/floor_decal/corner/green/diagonal, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/item/device/radio/intercom/west{ + pixel_y = -2 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/ward/isolation) "afW" = ( /obj/machinery/access_button{ pixel_x = 32; @@ -895,6 +996,9 @@ }, /turf/unsimulated/floor/plating, /area/centcom/specops) +"afY" = ( +/turf/simulated/wall/r_wall, +/area/horizon/rnd/conference) "agc" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -912,17 +1016,71 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/holodeck_control) -"agd" = ( -/obj/structure/cable/green{ - icon_state = "1-2" +"agf" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/spline/fancy/wood{ +/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/horizon/shuttle/quark/cargo_hold) +"agg" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/tank_wall/carbon_dioxide, +/turf/simulated/floor/airless, +/area/horizon/engineering/atmos) +"agj" = ( +/turf/simulated/wall, +/area/horizon/crew/fitness/changing) +"agk" = ( +/obj/effect/floor_decal/spline/plain{ dir = 9 }, -/turf/simulated/floor/wood, -/area/bridge/minibar) +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/break_room) +"agm" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/full, +/area/horizon/service/hydroponics/lower) +"ago" = ( +/obj/structure/table/wood, +/obj/item/storage/box/fancy/cigarettes, +/obj/machinery/power/outlet{ + pixel_y = 9 + }, +/turf/simulated/floor/carpet/art, +/area/horizon/crew/lounge) +"agp" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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/lattice/catwalk/indoor/grate, +/turf/simulated/floor, +/area/horizon/hallway/primary/deck_3/central) "agt" = ( /obj/structure/table/stone/marble, /obj/item/material/kitchen/rollingpin{ @@ -943,13 +1101,6 @@ }, /turf/unsimulated/floor, /area/centcom/bar) -"agw" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology/xenological) "agy" = ( /obj/effect/floor_decal/corner/paleblue{ dir = 10 @@ -964,6 +1115,13 @@ icon_state = "dark_preview" }, /area/centcom/ferry) +"agz" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/teleporter) "agB" = ( /obj/structure/sign/directions/security{ dir = 4; @@ -972,71 +1130,63 @@ }, /turf/unsimulated/floor/plating, /area/antag/mercenary) -"agG" = ( +"agC" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 10 + }, +/obj/structure/extinguisher_cabinet/south, +/obj/machinery/light/floor, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_2/central) +"agD" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 10 + }, /obj/structure/cable/green{ icon_state = "1-2" }, -/obj/effect/floor_decal/corner/dark_green{ - dir = 9 - }, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/machinery/disposal/small/east, -/obj/machinery/camera/network/third_deck{ - c_tag = "Third Deck - Central Ring Starboard"; - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/central) -"agI" = ( -/obj/effect/floor_decal/corner/black{ - dir = 9 - }, -/obj/structure/railing/mapped{ +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/hangar/auxiliary) -"agS" = ( -/obj/effect/floor_decal/corner/dark_blue/full{ - dir = 8 - }, -/obj/machinery/power/apc/north, -/obj/structure/cable/green{ - icon_state = "0-2" - }, +/area/horizon/storage/eva) +"agP" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/port/docks) -"agW" = ( -/obj/structure/railing/mapped{ - dir = 8 - }, -/turf/simulated/open, -/area/horizon/stairwell/central) -"agZ" = ( -/obj/random/junk, -/obj/effect/floor_decal/industrial/loading/yellow{ - dir = 1 - }, -/obj/structure/platform{ dir = 4 }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/structure/lattice/catwalk/indoor/grate, /turf/simulated/floor/plating, -/area/maintenance/wing/starboard/far) -"ahd" = ( -/obj/effect/floor_decal/corner_wide/green{ - dir = 9 +/area/horizon/hangar/intrepid) +"agT" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 10 }, -/obj/machinery/vending/medical{ - density = 0; - pixel_x = -32 +/obj/structure/cable/green{ + icon_state = "1-8" }, +/obj/machinery/light/floor, /turf/simulated/floor/tiled/white, -/area/hallway/medical/upper) +/area/horizon/rnd/xenobiology/hazardous) +"ahe" = ( +/obj/effect/floor_decal/corner_wide/purple{ + dir = 6 + }, +/obj/effect/floor_decal/corner_wide/purple{ + dir = 8 + }, +/obj/effect/floor_decal/sign/b, +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/xenoarch/atrium) "ahf" = ( /obj/structure/cryofeed{ dir = 4 @@ -1050,6 +1200,21 @@ }, /turf/unsimulated/floor, /area/centcom/legion) +"ahh" = ( +/obj/effect/floor_decal/corner_wide/yellow{ + dir = 6 + }, +/obj/machinery/camera/network/engineering{ + c_tag = "Engineering - Hallway 5"; + dir = 8 + }, +/obj/structure/sign/directions/prop{ + dir = 4; + pixel_x = 32; + pixel_y = 10 + }, +/turf/simulated/floor/tiled, +/area/horizon/engineering/hallway/aft) "ahk" = ( /obj/machinery/door/airlock/centcom{ dir = 1; @@ -1062,132 +1227,129 @@ /obj/effect/floor_decal/corner/paleblue, /turf/unsimulated/floor, /area/centcom/holding) -"ahq" = ( -/obj/structure/disposaloutlet{ - dir = 4 - }, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 10 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/reinforced, -/area/rnd/xenobiology) -"aht" = ( -/obj/machinery/light/small{ - dir = 1; - must_start_working = 1 - }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 4 - }, -/obj/effect/floor_decal/corner/yellow{ - dir = 1 - }, -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/manifold/visible/blue{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/engineering/engine_room/turbine) -"ahv" = ( -/obj/effect/floor_decal/corner_wide/green{ - dir = 9 - }, -/obj/effect/floor_decal/corner_wide/green, -/obj/machinery/vending/wallmed2{ - pixel_x = -28 - }, -/turf/simulated/floor/tiled/white, -/area/medical/exam) -"ahw" = ( -/obj/machinery/door/airlock/security{ - dir = 1; - name = "Security Checkpoint"; - req_access = list(63) +"aho" = ( +/obj/structure/cable{ + icon_state = "1-2" }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/door/firedoor, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/full, -/area/security/checkpoint) +/obj/structure/disposalpipe/segment, +/obj/machinery/door/airlock/maintenance{ + dir = 1; + name = "Maintenance Passthrough"; + req_one_access = list(12,47) + }, +/turf/simulated/floor/plating, +/area/horizon/rnd/xenoarch/atrium) +"ahs" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/platform_stairs/full/east_west_cap{ + dir = 8 + }, +/obj/structure/platform/cutout, +/obj/structure/platform{ + dir = 1 + }, +/turf/simulated/floor/lino, +/area/horizon/service/chapel/main) "ahy" = ( /turf/simulated/wall/shuttle/unique/ccia{ icon_state = "4,0" }, /area/shuttle/transport1) -"ahM" = ( -/obj/structure/disposalpipe/segment{ +"ahB" = ( +/turf/simulated/wall/r_wall, +/area/horizon/service/custodial/disposals/deck_1) +"ahT" = ( +/obj/machinery/conveyor{ + dir = 1; + id = "QMLoad" + }, +/turf/simulated/floor/tiled, +/area/horizon/hangar/operations) +"ahU" = ( +/turf/simulated/wall/r_wall, +/area/horizon/engineering/atmos/air) +"ahW" = ( +/obj/machinery/door/airlock/external{ dir = 4 }, -/obj/machinery/button/remote/blast_door{ - dir = 1; - id = "medicalisolation"; - name = "Isolation Ward Shutters"; - pixel_y = 30; - req_access = list(5) - }, -/obj/effect/floor_decal/corner_wide/green{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/hallway/medical/upper) -"ahN" = ( -/obj/effect/floor_decal/industrial/loading/yellow{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard/far) -"ahS" = ( -/obj/effect/floor_decal/corner/purple{ - dir = 6 - }, -/obj/structure/closet/crate/trashcart, -/obj/machinery/disposal/small/west, -/obj/structure/disposalpipe/trunk{ +/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/machinery/atmospherics/pipe/simple/hidden/scrubbers{ +/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/horizon/shuttle/quark/cockpit) +"aia" = ( +/turf/simulated/floor/tiled/dark, +/area/horizon/hallway/primary/deck_1/central) +"aic" = ( +/obj/structure/railing/mapped, +/obj/structure/platform/ledge{ + dir = 4 + }, +/obj/structure/platform/ledge{ + dir = 8 + }, +/obj/structure/platform/ledge{ + dir = 1 + }, +/obj/structure/platform_deco/ledge{ + dir = 6 + }, +/obj/structure/platform_deco/ledge{ dir = 10 }, -/obj/item/storage/bag/trash, -/obj/item/storage/bag/trash{ - pixel_x = -9; - pixel_y = 2 +/obj/structure/railing/mapped{ + dir = 4 }, -/obj/item/storage/bag/trash{ - pixel_x = -4; - pixel_y = -2 +/obj/structure/railing/mapped{ + dir = 8 }, -/turf/simulated/floor/tiled, -/area/horizon/custodial/auxiliary) -"ahV" = ( -/obj/effect/floor_decal/corner/brown{ - dir = 9 +/turf/simulated/open, +/area/horizon/operations/office) +"aid" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 10 }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/refinery) -"aik" = ( -/obj/structure/weightlifter, -/obj/random/dirt_75, -/obj/machinery/alarm/north, -/turf/simulated/floor/carpet/rubber, -/area/horizon/crew_quarters/fitness/gym) -"aio" = ( -/obj/machinery/door/airlock/glass_research{ - dir = 1; - name = "Exploratory Chemistry"; - req_access = list(7) +/obj/item/modular_computer/console/preset/command{ + dir = 1 }, +/obj/structure/railing/mapped, +/turf/simulated/floor/tiled/dark, +/area/horizon/command/bridge/controlroom) +"aih" = ( +/obj/structure/flora/ausbushes/ppflowers, +/obj/structure/flora/ausbushes/brflowers, +/obj/structure/flora/ausbushes/ywflowers, +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/structure/railing/mapped, +/turf/simulated/floor/grass/no_edge, +/area/horizon/rnd/hallway/secondary) +"aip" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/dark/full, -/area/rnd/chemistry) +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor/plating, +/area/horizon/hallway/primary/deck_2/fore) "air" = ( /obj/item/extinguisher, /obj/effect/floor_decal/corner/orange/diagonal, @@ -1195,26 +1357,15 @@ icon_state = "white" }, /area/tdome/tdomeadmin) -"aix" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/red{ - dir = 8 +"ais" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 5 }, -/turf/simulated/wall/shuttle/scc_space_ship/cardinal, -/area/horizon/custodial/disposals) -"aiz" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment{ +/obj/structure/bed/stool/chair/padded/black{ dir = 4 }, -/obj/machinery/power/sensor{ - name = "Powernet Sensor - Deck 3 Command Subgrid"; - name_tag = "Deck 3 Command Subgrid" - }, -/obj/structure/cable/green, -/turf/simulated/floor, -/area/maintenance/substation/command) +/turf/simulated/floor/tiled, +/area/horizon/hangar/intrepid) "aiB" = ( /obj/effect/floor_decal/industrial/warning{ dir = 1 @@ -1228,20 +1379,6 @@ }, /turf/unsimulated/floor/plating, /area/shuttle/syndicate_elite) -"aiG" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/machinery/alarm/north, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard/deck1) "aiI" = ( /obj/effect/floor_decal/corner/beige/full{ dir = 4 @@ -1254,6 +1391,56 @@ }, /turf/simulated/floor/tiled/white, /area/horizon/security/forensic_laboratory) +"aiL" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/effect/floor_decal/corner/brown{ + dir = 6 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/shuttle/intrepid/main_compartment) +"aiN" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/platform_stairs/full/east_west_cap/half{ + dir = 8 + }, +/obj/structure/platform, +/turf/simulated/floor/tiled/full, +/area/horizon/engineering/hallway/interior) +"aiO" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/machinery/light/small/emergency{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/operations/starboard/far) "aiR" = ( /obj/effect/floor_decal/corner/green/diagonal, /obj/effect/floor_decal/spline/fancy{ @@ -1262,77 +1449,100 @@ /obj/structure/bed/stool/padded/green, /turf/simulated/floor/tiled/white, /area/centcom/shared_dream) -"aja" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 6 +"aiT" = ( +/obj/structure/cable/green{ + icon_state = "4-8" }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/maintenance/engineering_ladder) -"ajg" = ( -/obj/machinery/computer/message_monitor, -/turf/simulated/floor/carpet/rubber, -/area/server) -"ajk" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/structure/cable/green{ - icon_state = "1-8" - }, /turf/simulated/floor/tiled, -/area/bridge/upperdeck) +/area/horizon/hallway/primary/deck_3/central) +"aiU" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/corner/dark_blue{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/turf/simulated/floor/tiled/dark, +/area/horizon/storage/eva) +"aiV" = ( +/obj/machinery/light, +/obj/effect/floor_decal/corner_wide/black{ + dir = 10 + }, +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/atmos/propulsion/starboard) +"ajc" = ( +/obj/effect/floor_decal/corner_wide/black/full, +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/atmos/propulsion) +"ajf" = ( +/turf/simulated/floor/wood, +/area/horizon/repoffice/consular_two) +"ajh" = ( +/turf/simulated/wall/r_wall, +/area/horizon/service/custodial) "ajm" = ( /obj/effect/floor_decal/corner/red/full{ dir = 4 }, /turf/simulated/floor/holofloor/tiled, /area/template_noop) -"ajr" = ( -/obj/effect/floor_decal/corner_wide/yellow{ - dir = 10 - }, -/obj/structure/extinguisher_cabinet/south, -/turf/simulated/floor/tiled, -/area/hallway/engineering) -"ajv" = ( -/obj/effect/floor_decal/corner/dark_blue/full, -/obj/structure/cable/green{ +"ajn" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; icon_state = "1-2" }, -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/turf/simulated/floor/tiled/dark, -/area/horizon/longbow) -"ajE" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/heads/chief) -"ajK" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/effect/floor_decal/corner/dark_green{ - dir = 9 - }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/alarm/west, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/engineering/storage/lower) +"ajp" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/camera/network/engineering{ + c_tag = "Engineering - Deck 2 - Starboard Auxiliary Atmospherics"; + dir = 1 + }, /turf/simulated/floor/tiled, -/area/assembly/chargebay) +/area/horizon/maintenance/deck_2/wing/starboard/auxatmos) +"ajD" = ( +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/storage/eva) "ajL" = ( /obj/effect/decal/fake_object{ desc = "A button."; @@ -1343,19 +1553,64 @@ }, /turf/unsimulated/wall/darkshuttlewall, /area/centcom/bar) -"ajU" = ( -/obj/effect/landmark/entry_point/starboard{ - name = "starboard, ballast middle" +"ajM" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 }, -/turf/simulated/wall/shuttle/scc_space_ship/cardinal, -/area/maintenance/wing/starboard/far) -"ajW" = ( -/obj/effect/floor_decal/corner/dark_green/full, -/obj/machinery/vending/cola, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/structure/railing/mapped, +/obj/structure/disposalpipe/junction{ + dir = 1; + icon_state = "pipe-j2" + }, +/turf/simulated/floor/wood, +/area/horizon/service/dining_hall) +"ajQ" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/reinforced, +/area/horizon/shuttle/mining) +"ajR" = ( +/obj/structure/lattice, +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/structure/railing/mapped{ + dir = 1 + }, +/turf/simulated/open, +/area/horizon/hallway/primary/deck_3/port) +"ajV" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 8 + }, +/obj/machinery/embedded_controller/radio/airlock/airlock_controller{ + dir = 8; + pixel_x = 20 + }, +/obj/effect/map_effect/marker/airlock{ + frequency = 3002; + master_tag = "airlock_horizon_deck_2_port_1"; + name = "airlock_horizon_deck_2_port_1" + }, +/turf/simulated/floor, +/area/horizon/maintenance/deck_2/wing/starboard/far) +"ajX" = ( +/obj/item/device/radio/intercom/south, +/obj/machinery/camera/network/supply{ + c_tag = "Operations - Lower Warehouse 4"; + dir = 1 + }, +/obj/vehicle/train/cargo/trolley, +/obj/effect/floor_decal/corner/brown{ + dir = 10 + }, +/obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled, -/area/hallway/primary/central_one) +/area/horizon/operations/warehouse) "ajY" = ( /obj/structure/table/reinforced/steel, /obj/item/device/flashlight/flare{ @@ -1408,70 +1663,122 @@ }, /turf/simulated/floor/tiled, /area/merchant_station) -"akf" = ( -/obj/effect/floor_decal/spline/fancy, -/obj/machinery/computer/ship/engines{ - dir = 1 +"akb" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 }, -/turf/simulated/floor/carpet/rubber, -/area/bridge/controlroom) -"aki" = ( -/obj/effect/floor_decal/corner/lime/full{ +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/item/hullbeacon/red, +/obj/machinery/camera/network/supply{ + c_tag = "Operations - Hangar Fore"; dir = 1 }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, /obj/machinery/light{ dir = 4 }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora) -"akj" = ( +/turf/simulated/floor/plating, +/area/horizon/hangar/operations) +"ake" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor, +/area/horizon/hallway/primary/deck_3/port) +"akh" = ( +/obj/structure/sink/kitchen{ + dir = 4; + name = "sink"; + pixel_x = -21 + }, +/obj/machinery/food_cart, +/turf/simulated/floor/tiled/freezer{ + name = "cooled tiles"; + temperature = 253.15 + }, +/area/horizon/service/kitchen/freezer) +"akk" = ( +/obj/structure/railing/mapped, +/obj/machinery/alarm/east{ + req_one_access = list(24,11,48) + }, /obj/structure/lattice/catwalk/indoor/grate/dark, /turf/simulated/floor/plating, -/area/maintenance/wing/cargo_compartment) -"akr" = ( -/obj/machinery/door/window/eastright{ - dir = 1 - }, +/area/horizon/maintenance/deck_2/wing/port/near) +"akl" = ( /obj/machinery/atmospherics/pipe/manifold/hidden{ - dir = 4 + dir = 8 }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor, -/area/horizon/hallway/deck_three/primary/port/docks) -"akw" = ( -/obj/machinery/atmospherics/binary/pump/high_power{ - dir = 8; - name = "Phoron to Propellant Line" +/obj/effect/map_effect/marker/airlock/docking{ + landmark_tag = "nav_horizon_dock_deck_3_starboard_3"; + master_tag = "airlock_horizon_dock_deck_3_starboard_3"; + name = "airlock_horizon_dock_deck_3_starboard_3" }, -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/dark, -/area/engineering/atmos/propulsion/starboard) -"akG" = ( -/obj/item/device/radio/intercom/east, -/obj/effect/floor_decal/corner/black{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 +/obj/machinery/light/small/emergency{ + dir = 8 }, +/turf/simulated/floor/plating, +/area/horizon/hallway/primary/deck_3/port/docks) +"aky" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 9 }, /obj/structure/cable/green{ - icon_state = "1-2" + icon_state = "1-8" }, -/turf/simulated/floor/tiled, -/area/operations/lower/machinist) +/obj/effect/floor_decal/industrial/hatch/red, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/aux{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/command/bridge/selfdestruct) +"akz" = ( +/obj/machinery/atmospherics/pipe/simple/visible/purple{ + dir = 4 + }, +/obj/effect/floor_decal/corner_wide/black{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/alarm/north, +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/atmos/propulsion) +"akB" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 8 + }, +/obj/effect/map_effect/marker/airlock{ + frequency = 3002; + master_tag = "airlock_horizon_deck_2_port_1"; + name = "airlock_horizon_deck_2_port_1" + }, +/turf/simulated/floor, +/area/horizon/maintenance/deck_2/wing/starboard/far) +"akD" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/reagent_dispensers/extinguisher, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/teleporter) +"akE" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 6 + }, +/turf/simulated/floor/reinforced/oxygen, +/area/horizon/engineering/atmos/air) "akK" = ( /obj/machinery/cryopod{ dir = 2 @@ -1486,71 +1793,22 @@ icon_state = "dark_preview" }, /area/centcom/holding) -"akP" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 9 +"akN" = ( +/obj/structure/platform_stairs/full/east_west_cap{ + dir = 8 }, -/obj/machinery/alarm/west, -/turf/simulated/floor/tiled, -/area/hangar/auxiliary) -"akR" = ( -/obj/machinery/camera/network/reactor{ - c_tag = "Engineering - Supermatter Reactor 1"; +/obj/structure/platform/cutout, +/obj/structure/platform{ dir = 1 }, -/obj/machinery/atmospherics/binary/pump/high_power{ - dir = 8; - name = "Intake to Cold Loop"; - target_pressure = 15000 - }, -/obj/effect/floor_decal/industrial/hatch_tiny/security, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"akS" = ( -/obj/machinery/atmospherics/binary/pump{ - dir = 8; - name = "Air to Connector" - }, -/turf/simulated/floor/plating, -/area/engineering/atmos/air) -"akT" = ( -/obj/effect/floor_decal/corner/purple{ - dir = 9 - }, -/obj/machinery/light_switch{ - dir = 8; - pixel_x = -22; - pixel_y = 23 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/structure/cable/green{ - icon_state = "2-8" - }, /turf/simulated/floor/tiled, -/area/horizon/custodial/auxiliary) -"akU" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 +/area/horizon/operations/machinist/surgicalbay) +"akV" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/full, -/area/hallway/primary/central_one) +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/main/starboard) "akW" = ( /obj/item/ammo_magazine/d762{ pixel_x = 6; @@ -1572,17 +1830,6 @@ }, /turf/unsimulated/floor, /area/antag/raider) -"akX" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/lattice/catwalk/indoor/grate, -/turf/simulated/floor/plating, -/area/hallway/primary/central_two) "akY" = ( /obj/machinery/light/small/emergency{ dir = 8 @@ -1597,19 +1844,24 @@ icon_state = "8,0" }, /area/shuttle/specops) -"alg" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 9 +"ala" = ( +/obj/structure/window/shuttle/unique/scc/scout{ + icon_state = "4,2" }, -/obj/structure/extinguisher_cabinet/west, -/obj/machinery/computer/arcade, -/turf/simulated/floor/wood, -/area/horizon/bar) -"alh" = ( -/obj/machinery/anti_bluespace, -/obj/effect/floor_decal/industrial/warning/full, -/turf/simulated/floor/reinforced, -/area/bridge/selfdestruct) +/obj/structure/window/shuttle/unique/scc/scout/over{ + icon_state = "4,2" + }, +/obj/structure/window/shuttle/unique/scc/scout/over{ + density = 0; + icon_state = "4,3"; + pixel_y = 32 + }, +/turf/simulated/floor/plating, +/area/horizon/shuttle/canary) +"alb" = ( +/obj/effect/map_effect/window_spawner/full/borosilicate/reinforced/firedoor, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/smes) "alj" = ( /obj/machinery/door/blast/shutters{ density = 0; @@ -1647,43 +1899,24 @@ /obj/structure/flora/ausbushes/sparsegrass, /turf/simulated/floor/holofloor/grass, /area/horizon/holodeck/source_picnicarea) -"alm" = ( -/obj/structure/lattice/catwalk/indoor, -/obj/machinery/power/breakerbox/activated{ - RCon_tag = "INDRA Grid Bypass" - }, -/turf/simulated/floor/plating, -/area/engineering/smes/rust) "alp" = ( /turf/simulated/floor/holofloor/beach/sand{ icon_state = "beachcorner" }, /area/horizon/holodeck/source_desert) -"alq" = ( -/obj/structure/table/reinforced, -/obj/effect/floor_decal/industrial/warning{ +"alv" = ( +/obj/effect/floor_decal/corner_wide/purple/full, +/obj/effect/floor_decal/corner_wide/purple{ dir = 4 }, -/obj/machinery/door/firedoor, -/obj/machinery/door/window/eastright, -/turf/simulated/floor/reinforced, -/area/rnd/test_range) -"als" = ( -/obj/effect/floor_decal/industrial/outline/operations, -/obj/machinery/suit_cycler/engineering/prepared, -/turf/simulated/floor/tiled/dark/full, -/area/storage/eva) -"alw" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 5 + }, /obj/structure/cable/green{ - icon_state = "1-2" + icon_state = "1-4" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/full, -/area/hallway/primary/central_two) +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/xenoarch/atrium) "alx" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 1 @@ -1699,41 +1932,18 @@ }, /turf/simulated/floor/wood, /area/horizon/security/meeting_room) -"alA" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/turf/simulated/floor/wood, -/area/crew_quarters/lounge/secondary) -"alC" = ( -/obj/structure/platform_stairs/south_north_solo, -/obj/structure/platform{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard/far) -"alE" = ( +"alB" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/structure/bed/stool/chair/sofa/pew/right{ - dir = 8 +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 10 +/obj/effect/floor_decal/spline/plain/corner{ + dir = 1 }, -/turf/simulated/floor/wood, -/area/chapel/main) -"alF" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/structure/sign/nosmoking_1{ - pixel_y = 32 - }, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/engine_room/rust) +/turf/simulated/floor/carpet/rubber, +/area/horizon/engineering/reactor/indra/monitoring) "alH" = ( /obj/machinery/light{ dir = 4 @@ -1748,38 +1958,33 @@ /obj/effect/floor_decal/sign/c, /turf/unsimulated/floor, /area/antag/mercenary) -"alJ" = ( -/obj/machinery/power/apc/north, -/obj/structure/cable/green{ - icon_state = "0-8" - }, -/obj/effect/floor_decal/corner/yellow/full{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/engineering/aft_airlock) "alM" = ( /turf/simulated/floor/exoplanet/grass/grove, /area/centcom/shared_dream) +"alN" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/corner/dark_green{ + dir = 6 + }, +/obj/structure/cable/green{ + icon_state = "4-8"; + d1 = 4; + d2 = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_2/fore) "alO" = ( /obj/effect/step_trigger/thrower/shuttle/southwest, /turf/template_noop, /area/template_noop) -"alS" = ( -/obj/effect/floor_decal/corner/mauve{ - dir = 10 - }, -/obj/machinery/light/floor, -/turf/simulated/floor/tiled/white, -/area/rnd/conference) -"alU" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "sorting"; - reversed = 1 - }, -/turf/simulated/floor/tiled/dark/full, -/area/operations/mail_room) "alW" = ( /obj/structure/table/reinforced/steel, /obj/item/card/id/captains_spare, @@ -1788,27 +1993,6 @@ }, /turf/unsimulated/floor/rubber_carpet, /area/centcom/control) -"ama" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/corner/mauve{ - dir = 5 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/light/floor{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/rnd/hallway) "amb" = ( /obj/effect/floor_decal/industrial/warning/dust{ dir = 8 @@ -1818,23 +2002,6 @@ }, /turf/simulated/floor/holofloor/carpet/rubber, /area/horizon/holodeck/source_basketball) -"amf" = ( -/obj/structure/cable/green{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor, -/area/horizon/maintenance/deck_three/aft/starboard) "amj" = ( /obj/effect/floor_decal/corner/dark_blue/full, /obj/structure/closet/walllocker/emerglocker/west, @@ -1845,24 +2012,6 @@ /obj/effect/floor_decal/industrial/outline/emergency_closet, /turf/simulated/floor/tiled, /area/horizon/security/hallway) -"amk" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/effect/landmark/start{ - name = "Bartender" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/lino, -/area/horizon/bar) "amm" = ( /obj/structure/table/reinforced/steel, /obj/machinery/door/window/brigdoor/northright{ @@ -1898,18 +2047,22 @@ /obj/effect/floor_decal/corner/beige/diagonal, /turf/simulated/floor/tiled/dark, /area/shuttle/merchant) -"amz" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 5 +"amu" = ( +/obj/structure/cable/green{ + icon_state = "4-8" }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/computer/cryopod/living_quarters{ - pixel_y = 32 +/obj/structure/cable/green{ + icon_state = "1-4" }, -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/effect/landmark/latejoin, -/turf/simulated/floor/tiled, -/area/horizon/crew_quarters/cryo/living_quarters_lift) +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/papershredder, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/horizon/repoffice/consular_two) "amA" = ( /obj/machinery/optable, /obj/machinery/light{ @@ -1930,35 +2083,71 @@ }, /turf/simulated/floor/tiled/dark, /area/centcom/bar) +"amD" = ( +/obj/structure/fuel_port/phoron/scc{ + pixel_y = 27 + }, +/obj/structure/bed/stool/chair/shuttle/double{ + pixel_x = -8 + }, +/obj/structure/bed/stool/chair/shuttle/double{ + pixel_x = 8 + }, +/obj/effect/floor_decal/spline/plain/cee/black, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/shuttle/intrepid/main_compartment) "amG" = ( /obj/machinery/optable, /turf/simulated/floor/tiled/white, /area/shuttle/hapt) +"amH" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/aux{ + dir = 10 + }, +/obj/machinery/firealarm/north, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/effect/floor_decal/corner/black/full{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/horizon/hangar/intrepid) +"amL" = ( +/turf/simulated/wall, +/area/horizon/engineering/storage_eva) "amO" = ( /obj/structure/filingcabinet/chestdrawer, /turf/simulated/floor/wood, /area/merchant_station) -"amU" = ( -/obj/machinery/door/airlock/external{ - dir = 4 +"amP" = ( +/obj/machinery/door/airlock/service{ + dir = 1; + name = "Bar - Backroom"; + req_access = list(25) }, -/obj/machinery/atmospherics/pipe/simple/hidden/aux{ - dir = 4 +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" }, -/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/door/firedoor, +/turf/simulated/floor/tiled/full, +/area/horizon/service/bar) +"amS" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 5 }, -/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) +/turf/simulated/floor/reinforced, +/area/horizon/weapons/grauwolf) "amW" = ( /obj/item/storage/secure/safe{ pixel_x = 8; @@ -1981,74 +2170,118 @@ }, /turf/simulated/floor/tiled/dark, /area/shuttle/merchant) -"amX" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ +"ana" = ( +/obj/structure/window/shuttle/scc_space_ship, +/obj/structure/grille/diagonal{ dir = 4 }, -/obj/machinery/light{ +/obj/machinery/door/blast/shutters/open{ + dir = 2; + id = "shutters_deck3_bridgesafety"; + name = "Safety Shutter" + }, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id = "bridge blast"; + name = "Bridge Blast Doors"; + opacity = 0 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/shutters/open{ + dir = 2; + id = "conferencesafetyshutters"; + name = "Safety Shutter" + }, +/turf/simulated/floor/plating, +/area/horizon/command/bridge/meeting_room) +"anc" = ( +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/machinery/power/apc/north, +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/obj/machinery/light/floor{ dir = 1 }, +/turf/simulated/floor/tiled/dark, +/area/horizon/stairwell/port/deck_3) +"ane" = ( +/obj/structure/bed/roller, +/obj/effect/floor_decal/industrial/outline/medical, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/gen_treatment) +"ank" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/corner_wide/green{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/hallway/upper) +"anu" = ( +/obj/structure/sign/radiation{ + pixel_x = -32 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/obj/structure/closet/radiation, +/obj/machinery/firealarm/north, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/reactor/indra/monitoring) +"anw" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/effect/floor_decal/corner/dark_green{ - dir = 5 +/obj/machinery/firealarm/west{ + dir = 2; + pixel_x = 0; + pixel_y = -22 }, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/central) -"amY" = ( -/turf/simulated/floor/plating, -/area/maintenance/wing/port/far) -"ani" = ( -/obj/structure/table/wood, -/obj/item/storage/box/fancy/candle_box, -/obj/item/storage/box/fancy/candle_box, -/obj/item/storage/box/fancy/candle_box, -/obj/item/holomenu, -/obj/item/book/manual/barman_recipes, -/obj/item/stack/packageWrap, -/obj/item/reagent_containers/food/drinks/shaker, -/obj/machinery/newscaster/west, -/obj/machinery/light{ +/obj/machinery/disposal/small/north, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 7 + }, +/turf/simulated/floor/wood, +/area/horizon/repoffice/consular_two) +"anx" = ( +/obj/structure/disposalpipe/trunk{ dir = 1 }, -/obj/item/device/destTagger, -/turf/simulated/floor/tiled/dark, -/area/horizon/bar/backroom) -"anl" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/maintenance{ - dir = 1; - req_one_access = list(11,24) +/obj/machinery/conveyor_switch/oneway{ + id = "cargo_1"; + pixel_x = 13; + pixel_y = 21 }, -/turf/simulated/floor, -/area/engineering/break_room) -"any" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/lattice/catwalk/indoor, -/obj/machinery/atmospherics/pipe/simple/visible{ +/obj/structure/disposaloutlet{ dir = 4 }, -/turf/simulated/floor/plating, -/area/engineering/atmos/air) -"anA" = ( -/obj/machinery/door/firedoor, -/obj/structure/window/shuttle/scc_space_ship, -/obj/machinery/door/blast/shutters/open{ - dir = 8; - id = "bar_viewing_shutters"; - name = "Bar Viewing Shutters" - }, -/obj/structure/grille, -/obj/effect/landmark/entry_point/starboard{ - name = "starboard, bar" - }, -/turf/simulated/floor/plating, -/area/horizon/bar) +/obj/effect/floor_decal/industrial/warning/full, +/turf/simulated/floor/tiled, +/area/horizon/operations/loading) "anF" = ( /obj/effect/decal{ anchored = 1; @@ -2073,60 +2306,48 @@ /obj/effect/decal/fake_object/light_source/invisible, /turf/simulated/floor/bluegrid, /area/tdome) -"anK" = ( -/obj/structure/shuttle/engine/propulsion/burst/right{ - dir = 8 +"anN" = ( +/obj/machinery/door/firedoor, +/obj/structure/grille/diagonal{ + dir = 4 }, -/turf/simulated/floor/plating, -/area/shuttle/escape_pod/pod1) -"anM" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 +/obj/structure/window/shuttle/scc_space_ship, +/turf/simulated/floor/reinforced, +/area/horizon/crew/lounge) +"anQ" = ( +/obj/machinery/door/blast/shutters/open{ + dir = 2; + id = "shutters_hangarseccpexternal"; + name = "Security Checkpoint External Shutter" }, -/obj/machinery/atmospherics/binary/pump{ - dir = 1 +/obj/machinery/door/blast/regular/open{ + dir = 4; + id = "hangarlockdown"; + name = "Hangar Lockdown" }, +/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, /turf/simulated/floor/tiled/dark/full, -/area/engineering/engine_room/rust) -"anV" = ( -/obj/structure/flora/ausbushes/sparsegrass, -/obj/structure/flora/ausbushes/lavendergrass, -/mob/living/simple_animal/chicken, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 +/area/horizon/security/checkpoint) +"anW" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 6 }, -/turf/simulated/floor/grass/no_edge, -/area/horizon/hydroponics/lower) -"aob" = ( -/obj/structure/lattice/catwalk/indoor, -/obj/machinery/light{ - dir = 8 +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_1/central) +"anY" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 }, /turf/simulated/floor/plating, -/area/hangar/intrepid) +/area/horizon/maintenance/deck_2/cargo_compartment) "aoe" = ( /obj/effect/floor_decal/industrial/outline/yellow, /obj/machinery/acting/changer, /turf/unsimulated/floor/dark_monotile, /area/antag/actor) -"aoh" = ( -/obj/machinery/atmospherics/pipe/simple/visible/black{ - dir = 4 - }, -/obj/machinery/door/airlock/external{ - dir = 4; - frequency = 1379; - icon_state = "door_locked"; - id_tag = "port_combustion"; - locked = 1; - name = "Combustion Chamber"; - req_access = list(13) - }, -/obj/machinery/door/blast/regular{ - id = "portpropulsioninterior" - }, -/turf/simulated/floor/reinforced, -/area/engineering/atmos/propulsion) "aoi" = ( /obj/item/device/camera, /obj/effect/floor_decal/corner/blue/diagonal, @@ -2134,36 +2355,43 @@ icon_state = "white" }, /area/tdome/tdomeobserve) -"aoj" = ( -/obj/structure/platform/ledge{ - dir = 8 - }, -/obj/structure/platform/ledge{ - dir = 1 - }, -/obj/structure/platform_deco/ledge{ - dir = 6 - }, -/obj/structure/railing/mapped{ +"aok" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/obj/structure/railing/mapped, -/turf/simulated/open, -/area/horizon/hallway/deck_three/primary/central) -"aom" = ( -/obj/machinery/atmospherics/pipe/simple/visible/red{ - dir = 5 +/obj/structure/cable{ + icon_state = "2-4" }, -/obj/machinery/meter, /turf/simulated/floor/plating, -/area/engineering/atmos/air) -"aop" = ( -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/manifold/visible/cyan{ +/area/horizon/maintenance/deck_2/wing/port/nacelle) +"aol" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/loading/yellow{ dir = 4 }, /turf/simulated/floor/tiled/dark/full, -/area/engineering/engine_room/turbine) +/area/horizon/engineering/reactor/indra/mainchamber) +"aon" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/effect/floor_decal/corner_wide/green{ + dir = 10 + }, +/obj/structure/railing/mapped, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/hallway/upper) "aos" = ( /obj/effect/decal/fake_object{ desc = "A rudimentary, poorly utilized railing mechanism. Stepping over it is easy."; @@ -2185,157 +2413,135 @@ /obj/machinery/suit_storage_unit/standard_unit, /turf/unsimulated/floor, /area/centcom/legion/hangar5) -"aoD" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 9 +"aoC" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 }, -/turf/simulated/floor/plating, -/area/rnd/xenoarch_atrium) +/obj/structure/table/rack, +/obj/random/loot, +/turf/simulated/floor, +/area/horizon/maintenance/deck_3/aft/holodeck) +"aoE" = ( +/turf/simulated/wall/r_wall, +/area/horizon/command/heads/hos) +"aoJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/bluespace_drive) "aoL" = ( /obj/structure/flora/rock/pile, /turf/simulated/floor/exoplanet/barren, /area/centcom/shared_dream) -"aoO" = ( -/obj/machinery/door/firedoor/multi_tile{ - dir = 1 +"aoP" = ( +/obj/structure/cable/green{ + icon_state = "1-8" }, -/obj/machinery/door/airlock/multi_tile/glass{ - dir = 2; - name = "Medical Reception" +/obj/structure/cable/green{ + icon_state = "1-4" }, -/obj/machinery/door/blast/shutters{ - density = 0; +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/operations/starboard) +"aoT" = ( +/obj/structure/bed/stool/chair/padded/brown{ + dir = 4 + }, +/obj/effect/landmark/start{ + name = "Passenger" + }, +/turf/simulated/floor/carpet/art, +/area/horizon/crew/lounge) +"aoU" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ dir = 4; - icon_state = "shutter0"; - id = "LCKDshutters"; - name = "MedBay Lockdown Shutters"; - opacity = 0 + name = "Cafe" + }, +/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/yellow, /turf/simulated/floor/tiled/full, -/area/medical/reception) -"aoR" = ( -/obj/machinery/atmospherics/unary/vent_pump/siphon/on/atmos{ - id_tag = "ph_out_portthruster" +/area/horizon/service/cafeteria) +"aoX" = ( +/obj/structure/table/standard, +/obj/machinery/requests_console/east{ + department = "Research and Development"; + name = "RnD Requests Console" }, -/turf/simulated/floor/reinforced/phoron, -/area/engineering/atmos) -"aoV" = ( -/obj/structure/lattice, -/obj/structure/railing/mapped{ +/obj/item/paper_bin, +/obj/item/pen{ + pixel_x = -4 + }, +/obj/item/pen/red{ + pixel_x = -1; + pixel_y = 4 + }, +/obj/item/pen/blue{ + pixel_x = 3; + pixel_y = 7 + }, +/obj/effect/floor_decal/corner/mauve/full{ dir = 1 }, -/obj/structure/railing/mapped{ +/obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 }, -/turf/simulated/open, -/area/maintenance/wing/starboard) -"apb" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 +/obj/machinery/recharger{ + pixel_x = -7; + pixel_y = 8 }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor, -/area/horizon/maintenance/deck_three/aft/starboard) +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/lab) "apc" = ( /obj/effect/floor_decal/corner/red{ dir = 10 }, /turf/simulated/floor/holofloor/tiled, /area/horizon/holodeck/source_thunderdomecourt) -"apf" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 10 +"apg" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 }, -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/tiled/dark, -/area/hangar/intrepid) -"aph" = ( -/obj/structure/sign/nosmoking_1{ - pixel_y = 32 +/obj/structure/trash_pile, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/teleporter) +"apr" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/machinery/computer/general_air_control/large_tank_control/terminal{ - sensors = list("co2_sensor"="Tank"); - output_tag = "CO2_out_fuelbay"; - name = "Carbon Dioxide - Fuel Bay" +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 5 }, -/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/platform, +/turf/simulated/floor/wood, +/area/horizon/service/dining_hall) +"apz" = ( +/obj/effect/floor_decal/industrial/outline/operations, +/obj/structure/table/rack, +/obj/item/device/price_scanner, +/obj/item/device/quikpay{ + destinationact = "Operations"; + pixel_y = 3 + }, +/obj/machinery/alarm/east, +/obj/item/storage/box/plasticbag, +/obj/item/storage/toolbox/mechanical, /turf/simulated/floor/tiled/dark/full, -/area/engineering/atmos) -"apn" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/airlock/atmos{ - dir = 4; - name = "Deck 2 Starboard Auxiliary Atmospherics"; - req_one_access = list(11,24) - }, -/turf/simulated/floor/tiled/dark, -/area/maintenance/aux_atmospherics/deck_2/starboard/wing) -"aps" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/firedoor, -/obj/effect/floor_decal/industrial/hatch_door/red{ - dir = 1 - }, -/obj/machinery/door/airlock/maintenance_hatch{ - dir = 1 - }, -/obj/effect/decal/cleanable/cobweb, -/obj/effect/decal/cleanable/cobweb2, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/dark, -/area/maintenance/wing/port/far) -"apw" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/platform_stairs/full/south_north_cap, -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/platform{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge/controlroom) -"apy" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/carpet/rubber, -/area/tcommsat/entrance) -"apA" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/alarm/east{ - req_one_access = list(24,11,55) - }, -/turf/simulated/floor/tiled/white, -/area/medical/ors) -"apC" = ( -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/machinery/disposal/small/north, -/turf/simulated/floor/tiled/white, -/area/rnd/chemistry) +/area/horizon/operations/commissary) "apH" = ( /obj/structure/table/reinforced/steel, /turf/unsimulated/floor{ @@ -2347,136 +2553,141 @@ icon_state = "0,2" }, /area/centcom/specops) -"apL" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/effect/floor_decal/spline/fancy/wood/cee, -/turf/simulated/floor/wood, -/area/chapel/office) -"apQ" = ( -/obj/machinery/light, -/obj/machinery/atmospherics/pipe/simple/visible/black{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/engineering/atmos/propulsion) -"apR" = ( -/obj/machinery/vending/cola, -/obj/effect/floor_decal/industrial/hatch/grey, -/turf/simulated/floor/tiled/full, -/area/horizon/hallway/deck_three/primary/starboard) -"apW" = ( -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/effect/floor_decal/corner/dark_blue{ +"aqe" = ( +/obj/machinery/iv_drip, +/obj/effect/floor_decal/corner_wide/green{ dir = 6 }, -/obj/random/pottedplant, -/turf/simulated/floor/tiled/dark, -/area/bridge/controlroom) -"apX" = ( -/obj/effect/floor_decal/spline/fancy/wood/corner{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ +/obj/machinery/light{ dir = 4 }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8"; - d1 = 4; - d2 = 8 - }, -/turf/simulated/floor/wood, -/area/horizon/library) -"aqc" = ( -/obj/effect/floor_decal/corner/purple{ - dir = 6 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/railing/mapped, -/obj/structure/reagent_dispensers/watertank, -/obj/machinery/atmospherics/pipe/simple/hidden/red{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/horizon/custodial/disposals) +/turf/simulated/floor/tiled/white, +/area/horizon/medical/equipment) "aqg" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 4 }, /turf/simulated/floor/wood/maple, /area/horizon/holodeck/source_cafe) +"aqj" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/carpet/rubber, +/area/horizon/tcommsat/entrance) "aqk" = ( /obj/structure/dispenser/oxygen{ pixel_x = -1 }, /turf/unsimulated/floor, /area/centcom/distress_prep) +"aql" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/structure/railing/mapped{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/port/near) +"aqt" = ( +/obj/effect/floor_decal/spline/fancy/wood/cee{ + dir = 4 + }, +/obj/structure/table/standard, +/obj/random/plushie, +/turf/simulated/floor/wood, +/area/horizon/command/bridge/upperdeck) "aqu" = ( /obj/effect/step_trigger/thrower/shuttle/northwest, /turf/template_noop, /area/template_noop) -"aqD" = ( -/obj/machinery/light/small/emergency{ +"aqw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 1 }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/maintenance/security_port) -"aqG" = ( -/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/green{ icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/corner_wide/green{ +/obj/effect/floor_decal/corner/dark_blue{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/command/teleporter) +"aqB" = ( +/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/horizon/shuttle/quark/cockpit) +"aqC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/turf/simulated/floor/tiled/white, -/area/hallway/medical) -"aqH" = ( -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 8; - icon_state = "shutter0"; - id = "LCKDshutters"; - name = "Medical Lockdown Shutters"; - opacity = 0 - }, -/obj/effect/map_effect/window_spawner/full/reinforced/polarized/firedoor{ - id = "psych" - }, -/turf/simulated/floor/tiled/dark/full, -/area/medical/psych) -"aqO" = ( -/obj/effect/floor_decal/spline/fancy/wood, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - icon_state = "1-2" +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 }, /obj/structure/cable/green{ - icon_state = "2-8" + icon_state = "4-8" }, +/obj/effect/floor_decal/spline/plain{ + dir = 5 + }, +/obj/machinery/atmospherics/binary/pump/on{ + name = "Canister to Telecommunications Server Hall"; + dir = 8 + }, +/turf/simulated/floor/carpet/rubber, +/area/horizon/tcommsat/entrance) +"aqE" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/obj/structure/trash_pile, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/starboard) +"aqF" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_command{ + dir = 4; + name = "EVA Storage"; + req_one_access = list(18,47) + }, +/obj/effect/map_effect/door_helper/unres{ + dir = 4 + }, +/turf/simulated/floor/tiled/full, +/area/horizon/storage/eva) +"aqM" = ( /obj/structure/disposalpipe/segment{ - icon_state = "pipe-c" + dir = 4 }, -/turf/simulated/floor/wood, -/area/lawoffice/consular) +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner/dark_blue{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/horizon/hangar/intrepid/interstitial) "aqP" = ( /obj/structure/undies_wardrobe{ pixel_x = 2; @@ -2487,30 +2698,44 @@ icon_state = "wood" }, /area/centcom/distress_prep) -"aqW" = ( -/obj/machinery/body_scanconsole{ - dir = 1; - pixel_y = 6 +"aqR" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/effect/floor_decal/corner/beige/full, -/turf/simulated/floor/tiled/dark, -/area/medical/gen_treatment) -"aqY" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 +/obj/effect/floor_decal/corner/brown{ + dir = 10 }, -/turf/simulated/floor/reinforced{ - blocks_air = 1; - density = 1; - name = "thruster mount" - }, -/area/engineering/atmos/propulsion) -"are" = ( -/obj/effect/floor_decal/corner/black/full{ +/obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 }, /turf/simulated/floor/tiled, -/area/operations/lower/machinist) +/area/horizon/operations/office) +"aqZ" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/grille, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark/full/airless, +/area/horizon/command/bridge/controlroom) +"arc" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 9 + }, +/turf/simulated/floor/wood, +/area/horizon/service/dining_hall) "arj" = ( /obj/effect/floor_decal/industrial/warning{ dir = 8 @@ -2520,66 +2745,72 @@ }, /turf/unsimulated/floor/dark_monotile, /area/antag/actor) -"arn" = ( -/obj/machinery/power/smes/buildable/substation{ - RCon_tag = "Substation - Service" - }, -/obj/structure/cable, -/obj/structure/cable/green{ - icon_state = "0-2" - }, -/turf/simulated/floor/plating, -/area/maintenance/substation/civilian_west) -"aro" = ( -/obj/effect/floor_decal/corner/dark_green/diagonal, -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = -14 - }, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/starboard) "arp" = ( /obj/effect/map_effect/window_spawner/full/reinforced/polarized/firedoor{ id = "holodecktint_b" }, /turf/simulated/floor/tiled/full, /area/horizon/holodeck_control/beta) -"arr" = ( -/turf/simulated/wall, -/area/horizon/custodial) -"ars" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/effect/floor_decal/industrial/warning, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/maintenance/engineering) -"arw" = ( -/obj/structure/cable/green{ - icon_state = "1-4" +"arx" = ( +/obj/structure/bed/stool/padded/red, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 }, /obj/structure/cable/green{ - icon_state = "1-8" + icon_state = "4-8" }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" +/turf/simulated/floor/lino, +/area/horizon/service/dining_hall) +"arC" = ( +/obj/effect/floor_decal/corner_wide/yellow{ + dir = 10 }, -/obj/effect/floor_decal/corner/brown/full{ - dir = 8 +/obj/structure/table/standard, +/obj/machinery/requests_console/south{ + department = "Engineering"; + departmentType = 1; + name = "Engineering Lobby RC" + }, +/obj/item/folder/yellow{ + pixel_x = -6; + pixel_y = 6 + }, +/obj/item/pen{ + pixel_x = 5; + pixel_y = 9 + }, +/obj/item/clipboard{ + pixel_y = -2; + pixel_x = -6 + }, +/obj/item/paper_bin{ + pixel_x = 4; + pixel_y = 2 }, /turf/simulated/floor/tiled, -/area/operations/loading) -"arB" = ( -/obj/structure/cable{ - icon_state = "1-2" +/area/horizon/engineering/lobby) +"arG" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 4 }, -/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/maintenance/wing/starboard/far) +/obj/machinery/atmospherics/binary/pump{ + name = "Phoron to Mix" + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/atmos) +"arI" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/xenobiology/hazardous) "arL" = ( /obj/machinery/light{ dir = 8; @@ -2588,100 +2819,138 @@ }, /turf/unsimulated/floor, /area/centcom/distress_prep) +"arO" = ( +/obj/effect/map_effect/window_spawner/full/borosilicate/reinforced, +/obj/machinery/door/blast/regular/open{ + id = "r_ust_core_blast"; + name = "INDRA Reactor Blast Doors" + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/reactor/indra/mainchamber) +"arR" = ( +/obj/structure/railing/mapped, +/obj/structure/platform/ledge{ + dir = 1 + }, +/obj/structure/platform_deco/ledge{ + dir = 8 + }, +/turf/simulated/open, +/area/horizon/hallway/primary/deck_3/central) +"arS" = ( +/obj/structure/disposalpipe/segment{ + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/operations/commissary) +"arT" = ( +/obj/structure/disposalpipe/segment, +/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/full, +/area/horizon/hangar/intrepid/interstitial) +"arU" = ( +/obj/machinery/door/firedoor, +/obj/effect/floor_decal/corner_wide/yellow{ + dir = 9 + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/full, +/area/horizon/stairwell/engineering/deck_2) +"arX" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/horizon/engineering/reactor/supermatter/mainchamber) +"asa" = ( +/obj/machinery/door/firedoor, +/obj/structure/sink{ + dir = 4; + pixel_x = 12 + }, +/obj/effect/floor_decal/corner_wide/green{ + dir = 6 + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/effect/floor_decal/industrial/warning/corner, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/icu) "asb" = ( /turf/unsimulated/floor, /area/antag/mercenary) -"asc" = ( -/obj/machinery/disposal/small/south, -/obj/structure/disposalpipe/trunk, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 +"ask" = ( +/turf/simulated/wall/r_wall, +/area/horizon/rnd/xenological) +"asl" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 9 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 +/obj/machinery/power/apc/low/west, +/obj/structure/cable/green{ + icon_state = "0-2" }, -/obj/effect/floor_decal/spline/fancy/wood{ +/turf/simulated/floor/tiled, +/area/horizon/stairwell/bridge) +"asq" = ( +/obj/effect/floor_decal/industrial/warning{ dir = 1 }, -/obj/structure/cable/green{ - icon_state = "2-4" - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/lawoffice/representative_two) -"asf" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/door/airlock/engineering{ - dir = 4; - name = "Deck 2 Research Substation"; - req_one_access = list(11,24) - }, -/obj/machinery/door/firedoor, /turf/simulated/floor/plating, -/area/maintenance/substation/research) -"aso" = ( -/obj/machinery/chemical_dispenser/full{ - dir = 8 - }, -/obj/effect/floor_decal/spline/plain/cee{ - dir = 8 - }, -/turf/simulated/floor/carpet/rubber, -/area/rnd/chemistry) -"asr" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/aux, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel, +/area/horizon/hangar/operations) +"ass" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, /turf/simulated/floor/plating, -/area/maintenance/research_port) -"asy" = ( -/turf/simulated/wall, -/area/engineering/bluespace_drive/monitoring) -"asz" = ( -/obj/effect/floor_decal/industrial/outline/red, -/obj/machinery/iv_drip, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 +/area/horizon/maintenance/deck_2/wing/port) +"asw" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/structure/tank_wall/oxygen{ + icon_state = "o2-15" }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/white, -/area/medical/ors) -"asA" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 4 - }, -/obj/machinery/hologram/holopad, -/turf/simulated/floor/wood, -/area/chapel/main) -"asB" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/structure/cable/orange{ - icon_state = "1-2" - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/lattice/catwalk/indoor, +/obj/machinery/atmospherics/pipe/simple/visible/cyan, /turf/simulated/floor/plating, -/area/engineering/bluespace_drive) +/area/horizon/engineering/atmos/air) "asC" = ( /obj/structure/flora/ausbushes/brflowers, /turf/unsimulated/floor/grass, /area/antag/actor) +"asF" = ( +/obj/structure/grille, +/obj/structure/window/shuttle/scc_space_ship, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/horizon/hallway/primary/deck_3/starboard/docks) +"asI" = ( +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/lino, +/area/horizon/service/chapel/main) +"asJ" = ( +/obj/structure/reagent_dispensers/keg/beerkeg, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/port) "asK" = ( /obj/structure/railing/mapped{ dir = 8 @@ -2691,52 +2960,62 @@ name = "staircase" }, /area/centcom/spawning) -"asO" = ( -/turf/simulated/floor, -/area/turret_protected/ai_upload_foyer) -"asY" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 +"asP" = ( +/obj/effect/floor_decal/corner/lime{ + dir = 10 }, -/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" = ( +/area/horizon/rnd/xenobiology/xenoflora) +"asR" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/corner/brown{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/horizon/operations/lobby) +"asT" = ( +/turf/simulated/wall/shuttle/scc, +/area/horizon/shuttle/intrepid/flight_deck) +"asZ" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 5 + }, +/obj/machinery/power/apc/high/north, +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/obj/structure/table/standard, +/obj/machinery/reagentgrinder{ + pixel_x = 3; + pixel_y = 10 + }, +/obj/item/storage/box/slides{ + pixel_x = -5; + pixel_y = 5 + }, +/obj/item/reagent_containers/chem_disp_cartridge, +/obj/item/reagent_containers/chem_disp_cartridge, +/obj/item/reagent_containers/chem_disp_cartridge, +/obj/item/reagent_containers/chem_disp_cartridge, +/obj/item/reagent_containers/chem_disp_cartridge, +/turf/simulated/floor/tiled/dark, +/area/horizon/rnd/xenobiology/xenoflora) +"atd" = ( +/obj/structure/ladder{ + pixel_y = 8 + }, +/turf/simulated/open, +/area/horizon/maintenance/deck_2/wing/starboard/far) +"atg" = ( /obj/structure/cable{ icon_state = "1-2" }, -/turf/simulated/floor/tiled/dark, -/area/maintenance/wing/port/far) -"ath" = ( -/obj/effect/floor_decal/corner_wide/paleblue{ - dir = 6 - }, -/obj/machinery/disposal/small/west{ - pixel_x = 15 - }, -/obj/structure/disposalpipe/trunk, -/obj/machinery/light_switch{ - dir = 4; - pixel_x = 23; - pixel_y = 23 - }, -/obj/machinery/button/switch/windowtint{ - dir = 4; - id = "cmooffice"; - pixel_x = 23; - pixel_y = 33; - req_access = list(40) - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/heads/cmo) +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/hangar/starboard) "atj" = ( /obj/effect/floor_decal/snowdrift/large{ dir = 4 @@ -2761,57 +3040,10 @@ }, /turf/unsimulated/floor/plating, /area/shuttle/specops) -"atu" = ( -/obj/machinery/door/airlock/command{ - dir = 4; - id_tag = "hra_room"; - name = "Human Resources Meeting Room"; - req_one_access = list(19,38,72) - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "bridge blast"; - name = "Bridge Blast Doors"; - opacity = 0 - }, -/turf/simulated/floor/tiled, -/area/bridge) -"atv" = ( -/obj/machinery/atmospherics/pipe/simple/visible/purple, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 8 - }, -/obj/effect/floor_decal/corner/yellow{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/engineering/engine_room/turbine) -"atw" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/platform_deco{ - icon_state = "ledge_deco" - }, -/obj/structure/lattice/catwalk/indoor/grate, -/turf/simulated/floor, -/area/bridge) -"atA" = ( -/obj/structure/cable{ - icon_state = "0-2" - }, -/obj/machinery/power/terminal{ - dir = 4 - }, -/obj/machinery/light/small/emergency{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/substation/research_sublevel) +"atC" = ( +/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/crew/resdeck/living_quarters_lift) "atE" = ( /obj/structure/table/rack, /obj/item/shield/riot/tact/legion{ @@ -2840,6 +3072,14 @@ }, /turf/unsimulated/floor, /area/centcom/legion/hangar5) +"atG" = ( +/obj/effect/floor_decal/corner/brown/full{ + dir = 8 + }, +/obj/machinery/alarm/north, +/obj/machinery/recharge_station, +/turf/simulated/floor/tiled, +/area/horizon/operations/break_room) "atH" = ( /obj/structure/table/rack, /obj/item/reagent_containers/spray/pepper{ @@ -2928,13 +3168,6 @@ /obj/item/ammo_display, /turf/simulated/floor/tiled, /area/horizon/security/warden) -"atI" = ( -/obj/effect/floor_decal/corner/mauve{ - dir = 10 - }, -/obj/machinery/firealarm/south, -/turf/simulated/floor/tiled, -/area/rnd/hallway) "atK" = ( /obj/structure/table/standard, /obj/item/storage/box/handcuffs, @@ -2943,6 +3176,25 @@ icon_state = "white" }, /area/tdome/tdomeadmin) +"atO" = ( +/obj/effect/floor_decal/corner_wide/purple{ + dir = 6 + }, +/obj/effect/floor_decal/corner_wide/purple{ + dir = 8 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/platform{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/xenoarch/atrium) +"atS" = ( +/obj/structure/flora/ausbushes/sunnybush, +/turf/simulated/floor/grass/no_edge, +/area/horizon/service/cafeteria) "atU" = ( /obj/machinery/light{ dir = 4 @@ -2958,38 +3210,6 @@ "atV" = ( /turf/simulated/wall/elevator, /area/centcom/bar) -"atZ" = ( -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/door/airlock/maintenance{ - dir = 4; - req_one_access = list(12,48) - }, -/turf/simulated/floor/tiled/full, -/area/hangar/intrepid) -"aua" = ( -/obj/effect/floor_decal/industrial/hatch/red, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/longbow) -"aud" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/door/firedoor, -/obj/effect/map_effect/door_helper/unres{ - dir = 1 - }, -/obj/machinery/door/airlock/engineering{ - name = "Engineering Lobby"; - req_one_access = list(10) - }, -/turf/simulated/floor/tiled/full, -/area/engineering/lobby) "aue" = ( /obj/machinery/recharge_station, /obj/machinery/light/small{ @@ -3003,80 +3223,73 @@ }, /turf/simulated/floor/marble/dark, /area/horizon/holodeck/source_tribunal) -"auo" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/structure/disposalpipe/junction{ - dir = 8 - }, -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/turf/simulated/floor/tiled, -/area/bridge/controlroom) -"auF" = ( -/obj/structure/window/shuttle/scc_space_ship, -/obj/structure/grille, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/engineering/atmos/propulsion/starboard) -"auG" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 10 - }, -/obj/machinery/power/apc/south{ - is_critical = 1 - }, -/obj/structure/cable/green, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"auL" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 5 - }, -/obj/structure/cable/green{ +"aun" = ( +/obj/structure/cable{ icon_state = "1-2" }, -/obj/structure/closet/crate, -/obj/item/weldingtool/emergency{ - pixel_y = 6 +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id = "bridge blast"; + name = "Bridge Blast Doors"; + opacity = 0 }, -/obj/item/ladder_mobile, -/obj/item/clothing/glasses/welding/emergency{ - pixel_y = -6 +/obj/structure/disposalpipe/segment, +/obj/machinery/door/airlock/engineering{ + dir = 1; + name = "Deck 3 Command Substation"; + req_one_access = list(11,24,57) }, -/obj/item/paper/fluff/bridge, -/obj/item/crowbar/red, +/turf/simulated/floor, +/area/horizon/hallway/primary/deck_3/port) +"aus" = ( +/turf/simulated/wall, +/area/horizon/maintenance/deck_1/auxatmos) +"auB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/tile/floor, /turf/simulated/floor/tiled, -/area/bridge/supply) +/area/horizon/maintenance/deck_1/operations/starboard) +"auD" = ( +/obj/machinery/light/small/emergency{ + dir = 1 + }, +/obj/effect/floor_decal/corner_wide/blue{ + dir = 10 + }, +/obj/effect/floor_decal/corner_wide/yellow{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/reinforced, +/area/horizon/command/bridge/selfdestruct) +"auN" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 5 + }, +/obj/machinery/autolathe, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/horizon/operations/office) "auP" = ( /obj/effect/map_effect/window_spawner/full/reinforced/indestructible, /turf/unsimulated/floor/plating, /area/antag/mercenary) -"auQ" = ( -/obj/machinery/vending/coffee, -/obj/effect/floor_decal/industrial/hatch/grey, -/turf/simulated/floor/tiled/full, -/area/horizon/hallway/deck_three/primary/starboard) -"auS" = ( -/turf/simulated/wall/r_wall, -/area/engineering/engine_airlock) -"auW" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 10 +"auZ" = ( +/obj/item/device/radio/intercom/east{ + pixel_y = 1 }, -/obj/structure/railing/mapped, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"ava" = ( -/obj/structure/railing/mapped{ - dir = 8 - }, -/turf/simulated/open, -/area/horizon/hydroponics) +/obj/effect/floor_decal/industrial/outline/medical, +/obj/machinery/stasis_bed, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/icu) "avc" = ( /obj/effect/floor_decal/corner_wide/paleblue/diagonal{ dir = 8 @@ -3099,16 +3312,63 @@ /obj/item/reagent_containers/blood/OMinus, /turf/simulated/floor/tiled/dark, /area/shuttle/mercenary) -"avi" = ( -/obj/machinery/vending/coffee, -/obj/machinery/light{ - dir = 1 +"ave" = ( +/obj/effect/floor_decal/industrial/hatch_door/red, +/obj/machinery/door/airlock/external{ + dir = 8 }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 9 +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 10 }, -/turf/simulated/floor/wood, -/area/crew_quarters/lounge/secondary) +/obj/effect/map_effect/marker/airlock{ + master_tag = "sccv_intrepid_starboard"; + name = "sccv_intrepid_starboard"; + req_one_access = null + }, +/obj/effect/map_effect/marker_helper/airlock/interior, +/obj/machinery/access_button{ + pixel_y = 29; + pixel_x = 7; + dir = 4 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/shuttle/intrepid/starboard_compartment) +"avn" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/hatch{ + dir = 4; + name = "Deck 2 Port Pod"; + req_access = list(12) + }, +/obj/structure/plasticflaps/airtight, +/obj/item/tape/engineering{ + icon_state = "engineering_door" + }, +/obj/effect/decal/cleanable/cobweb, +/obj/effect/decal/cleanable/cobweb2, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/maintenance/deck_2/wing/starboard/nacelle) +"avp" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/purple{ + dir = 6 + }, +/turf/simulated/wall/r_wall, +/area/horizon/engineering/atmos) +"avq" = ( +/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/horizon/maintenance/deck_1/hangar/starboard) "avt" = ( /obj/machinery/atmospherics/unary/vent_pump/high_volume{ dir = 8; @@ -3120,6 +3380,39 @@ }, /turf/simulated/floor/tiled/dark, /area/shuttle/mercenary) +"avu" = ( +/obj/machinery/power/apc/low/west, +/obj/structure/table/reinforced/steel, +/obj/effect/floor_decal/industrial/hatch/grey, +/obj/machinery/chemical_dispenser/bar_soft/full{ + dir = 4; + pixel_y = 4; + pixel_x = -2 + }, +/obj/item/storage/box/drinkingglasses{ + pixel_y = 4; + pixel_x = 8 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/button/switch/windowtint{ + id = "OM Windows"; + pixel_x = 4; + pixel_y = 25; + req_access = list(41); + dir = 1 + }, +/obj/machinery/light_switch{ + pixel_x = -4; + pixel_y = 25; + dir = 1 + }, +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/turf/simulated/floor/tiled/full, +/area/horizon/command/heads/om) "avw" = ( /obj/item/gun/projectile/automatic/wt550/lethal{ pixel_y = -1 @@ -3136,118 +3429,133 @@ /obj/structure/table/reinforced/steel, /turf/unsimulated/floor/plating, /area/centcom/specops) -"avD" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +"avC" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/item/hullbeacon/red, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/airless, +/area/horizon/hangar/operations) +"avE" = ( +/obj/effect/floor_decal/corner/lime/diagonal, +/turf/simulated/floor/tiled/white{ + name = "cooled white floor"; + temperature = 278.15 + }, +/area/horizon/medical/morgue) +"avF" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 5 + }, +/obj/structure/disposalpipe/segment{ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor, -/area/maintenance/engineering_ladder) -"avI" = ( -/obj/structure/cable/green{ - icon_state = "1-2" +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/machinery/atmospherics/pipe/simple/hidden/yellow, -/turf/simulated/floor/plating, -/area/maintenance/engineering) +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/effect/floor_decal/spline/plain{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_2/fore) "avJ" = ( /obj/effect/floor_decal/industrial/warning, /obj/effect/decal/cleanable/dirt, /turf/unsimulated/floor, /area/antag/raider) -"avS" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/engine_room) -"avT" = ( -/obj/effect/floor_decal/spline/plain{ +"avR" = ( +/turf/simulated/floor/tiled/full, +/area/horizon/stairwell/port/deck_3) +"avV" = ( +/obj/effect/floor_decal/spline/fancy/wood{ dir = 8 }, -/obj/effect/floor_decal/spline/plain{ +/obj/effect/floor_decal/spline/fancy/wood{ dir = 4 }, -/obj/structure/cable/green{ - icon_state = "1-2" +/obj/structure/bookcase/libraryspawn/religion, +/obj/machinery/light{ + dir = 4 }, -/turf/simulated/floor/carpet/rubber, -/area/tcommsat/chamber) -"awc" = ( -/obj/effect/floor_decal/corner_wide/paleblue/full{ +/turf/simulated/floor/wood, +/area/horizon/service/chapel/main) +"avW" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 1 }, -/obj/machinery/papershredder, -/obj/machinery/camera/network/medbay{ - c_tag = "Medical - CMO's Office" +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/heads/cmo) -"awf" = ( -/obj/effect/floor_decal/corner/lime/diagonal, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/alarm/cold/east, -/turf/simulated/floor/tiled/white{ - name = "cooled white floor"; - temperature = 278.15 +/obj/structure/cable{ + icon_state = "4-8" }, -/area/medical/morgue/lower) -"awj" = ( -/obj/effect/floor_decal/spline/plain/black{ - dir = 8 - }, -/obj/structure/table/steel, -/obj/effect/floor_decal/corner/dark_green, -/obj/structure/cable/green{ - icon_state = "0-2" - }, -/obj/machinery/power/apc/north, -/obj/item/towel/random{ - pixel_x = 2; - pixel_y = 8 - }, -/obj/item/towel/random{ - pixel_x = 2; - pixel_y = 12 - }, -/obj/item/clothing/gloves/fingerless{ - pixel_y = -6 - }, -/turf/simulated/floor/tiled, -/area/horizon/crew_quarters/fitness/gym) -"awl" = ( -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 4 - }, -/turf/simulated/wall, -/area/medical/icu) -"awn" = ( -/turf/simulated/wall/r_wall, -/area/operations/office_aux) -"awr" = ( -/obj/structure/cable/green{ +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/structure/cable{ icon_state = "2-8" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/structure/disposalpipe/segment, /turf/simulated/floor/plating, -/area/maintenance/hangar/port) -"awx" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/effect/decal/cleanable/dirt, -/obj/structure/railing/mapped, +/area/horizon/maintenance/deck_2/wing/starboard/nacelle) +"awa" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/bluespace_drive) +"awd" = ( +/obj/machinery/r_n_d/weapons_analyzer, +/obj/effect/floor_decal/corner_wide/purple{ + dir = 5 + }, +/obj/effect/floor_decal/corner_wide/purple/diagonal, +/obj/machinery/alarm/north, +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/test_range) +"awi" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/storage/eva) +"awq" = ( +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/effect/floor_decal/corner/dark_green/diagonal, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_3/starboard) +"aws" = ( +/obj/effect/floor_decal/industrial/outline/grey, +/obj/structure/survey_probe, /turf/simulated/floor/plating, -/area/maintenance/wing/starboard/deck1) +/area/horizon/hangar/intrepid) "awz" = ( /obj/effect/floor_decal/corner/yellow{ dir = 5 @@ -3257,27 +3565,89 @@ }, /turf/simulated/floor/marble/dark, /area/horizon/holodeck/source_trinary) -"awJ" = ( -/turf/simulated/wall/shuttle/scc_space_ship/cardinal, -/area/engineering/atmos/propulsion/starboard) +"awI" = ( +/turf/simulated/wall/shuttle/unique/scc/mining{ + icon_state = "fix1" + }, +/area/horizon/shuttle/mining) +"awM" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 6 + }, +/obj/machinery/mineral/processing_unit_console{ + id = "horizon_processing_1"; + pixel_x = 32 + }, +/obj/effect/floor_decal/industrial/hatch_tiny/yellow, +/obj/machinery/conveyor_switch/oneway{ + pixel_y = 7; + id = "mining_1" + }, +/turf/simulated/floor/tiled, +/area/horizon/operations/mining_main/refinery) "awP" = ( /obj/structure/reagent_dispensers/watertank, /turf/simulated/floor/tiled, /area/merchant_station/warehouse) -"axe" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/structure/window/shuttle/scc_space_ship/cardinal, -/turf/simulated/floor/plating, -/area/security/checkpoint2) -"axf" = ( -/obj/effect/floor_decal/spline/plain, -/obj/effect/floor_decal/spline/plain{ - dir = 1 +"awT" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/machinery/alarm/tcom/north, -/turf/simulated/floor/carpet/rubber, -/area/tcommsat/chamber) +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/corner_wide/green{ + dir = 10 + }, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/hallway/upper) +"awY" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/horizon/operations/lobby) +"awZ" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/aux, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/main/port) +"axa" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume, +/obj/effect/map_effect/marker/airlock/docking{ + landmark_tag = "nav_horizon_dock_deck_3_starboard_2"; + master_tag = "airlock_horizon_dock_deck_3_starboard_2"; + name = "airlock_horizon_dock_deck_3_starboard_2" + }, +/turf/simulated/floor/plating, +/area/horizon/hallway/primary/deck_3/port/docks) +"axb" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/port) "axi" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 8 @@ -3299,6 +3669,20 @@ }, /turf/simulated/floor/tiled, /area/horizon/security/hallway) +"axp" = ( +/obj/machinery/atmospherics/omni/mixer{ + active_power_usage = 7500; + tag_east = 2; + tag_north = 1; + tag_north_con = 0.5; + tag_south = 1; + tag_south_con = 0.5; + tag_west = 1; + tag_west_con = 0 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/atmos/propulsion/starboard) "axs" = ( /turf/simulated/floor/exoplanet/water/shallow{ dir = 8; @@ -3307,56 +3691,25 @@ name = "coast" }, /area/horizon/holodeck/source_konyang) -"axt" = ( -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/machinery/light/small/emergency{ - dir = 4 - }, +"axx" = ( +/obj/machinery/alarm/north, +/obj/random/dirt_75, /turf/simulated/floor/plating, -/area/maintenance/security_port) -"axu" = ( -/obj/effect/floor_decal/corner/mauve{ - dir = 6 +/area/horizon/maintenance/deck_2/wing/starboard/nacelle) +"axy" = ( +/obj/structure/table/standard, +/obj/item/roller{ + pixel_x = 2; + pixel_y = 3 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 +/obj/item/mirror{ + pixel_x = 7; + pixel_y = 4 }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/rnd/hallway/secondary) -"axv" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/greenglow, -/obj/machinery/light/small/emergency{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/hangar/starboard) -"axF" = ( -/obj/machinery/alarm/east, -/obj/effect/floor_decal/corner/teal/diagonal, -/obj/machinery/reagentgrinder{ - pixel_x = 1; - pixel_y = 8 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/structure/table/stone/marble, -/obj/item/reagent_containers/glass/beaker{ - pixel_x = 9 - }, -/obj/effect/floor_decal/spline/plain{ - dir = 6 - }, -/turf/simulated/floor/lino, -/area/horizon/cafeteria) -"axK" = ( -/obj/machinery/atmospherics/pipe/simple/visible/cyan, -/turf/simulated/floor/plating, -/area/engineering/atmos/air) +/obj/machinery/firealarm/west, +/obj/item/storage/box/bodybags, +/turf/simulated/floor/tiled/white, +/area/horizon/operations/machinist/surgicalbay) "axN" = ( /obj/effect/floor_decal/industrial/warning/corner{ dir = 1 @@ -3364,70 +3717,36 @@ /obj/effect/decal/fake_object/light_source/invisible, /turf/unsimulated/floor, /area/antag/ninja) -"axP" = ( -/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/machinery/door/airlock/medical{ - dir = 1; - name = "Staff Facilities"; - req_access = list(5) - }, -/obj/machinery/door/firedoor, -/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/full, -/area/medical/washroom) -"axR" = ( -/obj/effect/floor_decal/corner/purple/full{ +"axX" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 }, -/obj/structure/table/steel, -/obj/item/paper_bin{ - pixel_x = -4; - pixel_y = 7 +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 }, -/obj/item/pen{ - pixel_x = -4; - pixel_y = 8 - }, -/obj/item/device/hand_labeler, -/obj/machinery/ringer/west{ - department = "Auxiliary Custodial"; - id = "ringers_custodialaux"; - name = "\improper Auxiliary Custodial Ringer Terminal"; - pixel_y = 5; - req_access = list(26) - }, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled, -/area/horizon/custodial/auxiliary) -"axV" = ( -/obj/effect/floor_decal/corner/dark_blue/full{ - dir = 8 - }, -/obj/machinery/disposal, -/obj/structure/sign/deathsposal{ - name = "\improper SPENT MUNITIONS EJECTION CHUTE sign"; - pixel_x = -32 +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/atmos) +"aya" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 6 }, +/obj/machinery/disposal/small/west, /obj/structure/disposalpipe/trunk{ dir = 8 }, -/turf/simulated/floor/tiled/dark, -/area/horizon/grauwolf) +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/firealarm/east, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_1/central) +"ayb" = ( +/obj/structure/foamedmetal, +/obj/structure/shuttle_part/scc_space_ship{ + icon_state = "d2-2" + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/port/far) "ayd" = ( /obj/structure/reagent_dispensers/keg/beerkeg, /obj/effect/floor_decal/corner/blue/diagonal, @@ -3448,27 +3767,36 @@ }, /turf/simulated/floor/tiled/white, /area/horizon/security/forensic_laboratory) -"ayj" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"ayo" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard/far) -"ayr" = ( -/obj/effect/floor_decal/corner_wide/paleblue{ +"ayp" = ( +/obj/effect/floor_decal/corner/dark_green{ dir = 5 }, -/turf/simulated/floor/tiled/white, -/area/hallway/medical) +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/alarm/north{ + req_one_access = list(24,11,55) + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/spline/plain/corner{ + dir = 4 + }, +/obj/structure/engineer_maintenance/electric{ + dir = 8 + }, +/obj/structure/engineer_maintenance/pipe{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_2/fore) "ays" = ( /obj/effect/floor_decal/corner/yellow{ dir = 6 @@ -3478,25 +3806,27 @@ }, /turf/simulated/floor/marble/dark, /area/horizon/holodeck/source_trinary) -"ayv" = ( -/obj/machinery/light/spot{ - dir = 4 - }, -/obj/machinery/button/remote/blast_door{ - desc = "A remote control-switch for the engine control room blast doors."; - dir = 4; - id = "EngineEmitterPortWest"; - name = "Supermatter Reactor Room Blast Doors"; - pixel_x = 24; - req_one_access = list(11,24) - }, -/turf/simulated/floor/plating, -/area/engineering/engine_room) +"ayt" = ( +/obj/structure/flora/ausbushes/sparsegrass, +/obj/machinery/portable_atmospherics/hydroponics/soil, +/turf/simulated/floor/grass/no_edge, +/area/horizon/service/hydroponics/garden) "ayw" = ( /obj/structure/lattice, /obj/structure/grille, /turf/simulated/open/airless, /area/horizon/exterior) +"ayy" = ( +/obj/machinery/camera/network/engineering{ + c_tag = "Engineering - Starboard Combustion Chamber"; + dir = 1; + pixel_x = -11 + }, +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 9 + }, +/turf/simulated/floor/reinforced/airless, +/area/horizon/engineering/atmos/propulsion) "ayz" = ( /obj/structure/bedsheetbin{ pixel_y = 4 @@ -3509,56 +3839,54 @@ icon_state = "wood" }, /area/centcom/legion) -"ayA" = ( -/obj/machinery/telecomms/server/presets/unused, -/turf/simulated/floor/bluegrid, -/area/tcommsat/chamber) "ayE" = ( /obj/effect/floor_decal/industrial/warning, /obj/structure/railing/mapped, /turf/simulated/floor/reinforced/airless, /area/horizon/exterior) -"ayR" = ( -/obj/machinery/portable_atmospherics/hydroponics/soil, -/turf/simulated/floor/grass/no_edge, -/area/rnd/xenobiology/xenoflora) +"ayL" = ( +/obj/effect/floor_decal/corner/dark_green/full, +/obj/item/device/radio/intercom/west, +/obj/structure/bed/stool/chair/office/light{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/horizon/crew/chargebay) +"ayS" = ( +/obj/machinery/atmospherics/pipe/simple/visible/universal{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/horizon/maintenance/deck_2/wing/starboard/auxatmos) "ayV" = ( /obj/structure/bed/stool/chair/office/bridge/pilot, /obj/effect/floor_decal/corner/red/diagonal, /turf/simulated/floor/tiled/dark, /area/shuttle/syndicate_elite) -"azb" = ( -/obj/machinery/telepad, -/obj/effect/floor_decal/industrial/warning/full, -/turf/simulated/floor/reinforced, -/area/rnd/telesci) -"azi" = ( -/obj/machinery/door/blast/regular/open{ - dir = 2; - fail_secure = 1; - id = "xenobio_d"; - name = "Cell Containment Blast Door" +"ayX" = ( +/obj/structure/cable/green{ + icon_state = "2-8" }, -/obj/structure/window/reinforced{ - dir = 4 +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 }, -/obj/structure/window/reinforced{ - dir = 1 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 }, -/obj/machinery/disposal/deliveryChute{ - dir = 8 +/obj/machinery/atmospherics/pipe/simple/hidden/yellow, +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor/plating, +/area/horizon/stairwell/engineering/deck_1) +"azd" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 10 }, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/machinery/door/window/westleft{ - req_access = list(55) - }, -/obj/machinery/door/firedoor{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark/full, -/area/rnd/xenobiology) +/obj/random/pottedplant, +/turf/simulated/floor/wood, +/area/horizon/crew/lounge) "azj" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 8 @@ -3567,48 +3895,61 @@ /obj/item/device/flashlight/lantern, /turf/simulated/floor/holofloor/wood, /area/horizon/holodeck/source_sauna) -"azk" = ( -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/effect/floor_decal/spline/plain/grey{ - dir = 5 - }, -/obj/random/dirt_75, -/obj/structure/closet/walllocker/medical/firstaid{ - pixel_y = 32 - }, -/obj/effect/floor_decal/industrial/outline/medical, -/turf/simulated/floor/reinforced, -/area/horizon/crew_quarters/fitness/gym) -"azl" = ( -/obj/machinery/atmospherics/pipe/simple/visible/purple{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/structure/bed/stool/chair/office/dark{ +"azp" = ( +/turf/simulated/wall/shuttle/scc_space_ship/cardinal, +/area/horizon/command/bridge/minibar) +"azr" = ( +/obj/effect/floor_decal/spline/fancy/wood{ dir = 1 }, -/turf/simulated/floor/plating, -/area/engineering/atmos/propulsion/starboard) -"azw" = ( -/obj/effect/floor_decal/industrial/warning{ +/obj/structure/bed/stool/chair/padded/brown{ dir = 4 }, -/obj/structure/cable/yellow{ - icon_state = "4-8" +/obj/effect/landmark/start{ + name = "Passenger" }, -/turf/simulated/floor/reinforced/airless, -/area/engineering/engine_room/rust) +/turf/simulated/floor/carpet/art, +/area/horizon/crew/lounge) +"azs" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/extinguisher_cabinet/north, +/obj/effect/floor_decal/corner/dark_green/full{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/horizon/security/checkpoint2) +"azu" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/machinery/door/airlock/external{ + dir = 4 + }, +/obj/effect/map_effect/marker/airlock{ + frequency = 2003; + master_tag = "airlock_horizon_deck_2_aft_indra"; + name = "airlock_horizon_deck_2_aft_indra" + }, +/obj/machinery/access_button{ + pixel_x = 28; + pixel_y = 20 + }, +/obj/effect/map_effect/marker_helper/airlock/interior, +/turf/simulated/floor/plating, +/area/horizon/engineering/aft_airlock) "azy" = ( /turf/simulated/floor/holofloor/beach/sand{ icon_state = "beachcorner" }, /area/horizon/holodeck/source_beach) +"azz" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/horizon/hangar/intrepid) "azB" = ( /obj/effect/floor_decal/corner/paleblue/full{ dir = 4 @@ -3622,45 +3963,101 @@ /obj/random/pottedplant, /turf/unsimulated/floor, /area/centcom/holding) -"azJ" = ( +"azC" = ( +/obj/effect/floor_decal/corner/dark_green, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_3/central) +"azE" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/bed/stool/chair/padded/black, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/turf/simulated/floor/carpet, +/area/horizon/repoffice/representative_two) +"azF" = ( +/obj/machinery/door/firedoor, +/obj/effect/floor_decal/corner_wide/yellow{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/full, +/area/horizon/engineering/hallway/aft) +"azG" = ( +/obj/machinery/camera/network/engineering{ + c_tag = "Engineering - Atmospherics Control 4" + }, +/obj/machinery/atmospherics/pipe/manifold/visible/yellow{ + dir = 1 + }, +/obj/effect/floor_decal/corner/yellow{ + dir = 1 + }, +/obj/effect/floor_decal/corner/dark_blue{ + dir = 4 + }, +/obj/machinery/meter, +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/atmos) +"azI" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'HIGH VOLTAGE'"; + icon_state = "shock"; + name = "HIGH VOLTAGE"; + pixel_x = -32 + }, +/obj/effect/floor_decal/corner/yellow/full{ + dir = 8 + }, +/obj/structure/sign/nosmoking_1{ + pixel_y = 32 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/table/standard, +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/storage/tech) +"azN" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/power/smes/buildable/horizon_shuttle{ + RCon_tag = "Intrepid" + }, /obj/structure/cable/green{ - icon_state = "1-2" + icon_state = "0-8" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 +/obj/machinery/light/small{ + dir = 1 }, -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/floor_decal/spline/plain{ - dir = 4 - }, -/turf/simulated/floor/carpet/rubber, -/area/engineering/bluespace_drive/monitoring) +/turf/simulated/floor/plating, +/area/horizon/shuttle/intrepid/port_compartment) "azO" = ( /obj/effect/floor_decal/corner/beige{ dir = 6 }, /turf/simulated/floor/tiled/white, /area/horizon/security/forensic_laboratory) -"azT" = ( -/obj/effect/floor_decal/industrial/outline/red, -/obj/machinery/atmospherics/valve/digital{ - dir = 4; - name = "Thermal Relief Valve" +"azU" = ( +/turf/simulated/wall/shuttle/scc_space_ship/cardinal, +/area/horizon/medical/smoking) +"azV" = ( +/obj/machinery/newscaster/east, +/obj/effect/floor_decal/corner/teal/diagonal, +/obj/machinery/smartfridge/drinks{ + opacity = 1 }, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"azX" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/atmospherics/unary/vent_pump/on{ +/obj/effect/floor_decal/spline/plain{ + dir = 5 + }, +/obj/machinery/light{ dir = 4 }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/quark/cargo_hold) -"aAe" = ( -/turf/simulated/wall/r_wall, -/area/hangar/intrepid) +/turf/simulated/floor/lino, +/area/horizon/service/cafeteria) "aAg" = ( /obj/machinery/light/small{ brightness_power = 0.5; @@ -3671,34 +4068,21 @@ icon_state = "dark_preview" }, /area/centcom/control) -"aAr" = ( -/obj/effect/map_effect/window_spawner/full/borosilicate/reinforced/firedoor, -/obj/machinery/door/blast/regular/open{ - dir = 8; - fail_secure = 1; - id = "hazardous_lockdown"; - name = "Hazardous Containment Lockdown" +"aAl" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 }, -/turf/simulated/floor/tiled/dark/full, -/area/rnd/xenobiology/hazardous) -"aAy" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 +/turf/simulated/floor/tiled/dark, +/area/horizon/maintenance/deck_2/wing/starboard/nacelle) +"aAs" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 9 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" + icon_state = "1-4" }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/effect/landmark/start{ - name = "Bartender" - }, -/obj/structure/bed/stool/padded/red, /turf/simulated/floor/tiled/dark, -/area/horizon/bar/backroom) +/area/horizon/security/evidence_storage) "aAA" = ( /obj/structure/lattice/catwalk, /obj/item/ore{ @@ -3708,59 +4092,33 @@ }, /turf/space/dynamic, /area/template_noop) -"aAB" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/effect/floor_decal/corner/yellow{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/lobby) +"aAD" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/alarm/north, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/port/near) "aAE" = ( /obj/structure/closet/crate/secure/legion, /turf/unsimulated/floor/plating, /area/centcom/legion/hangar5) -"aAF" = ( -/obj/structure/bed/stool/chair/office/light{ - dir = 4 +"aAI" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/shutters/open{ + dir = 2; + id = "lounge_window_shutters"; + name = "Lounge Window Shutter" }, -/obj/effect/landmark/start{ - name = "Lab Assistant" - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 9 +/obj/structure/grille, +/obj/structure/window/shuttle/scc_space_ship/cardinal, +/turf/simulated/floor/plating, +/area/horizon/service/dining_hall) +"aAO" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 }, +/obj/effect/floor_decal/spline/fancy/wood/cee, /turf/simulated/floor/wood, -/area/rnd/conference) -"aAN" = ( -/obj/effect/floor_decal/corner_wide/black{ - dir = 10 - }, -/obj/effect/floor_decal/corner_wide/black{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/visible/green{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/engineering/atmos/propulsion/starboard) +/area/horizon/service/chapel/office) "aAP" = ( /obj/structure/disposalpipe/trunk{ dir = 4 @@ -3769,70 +4127,21 @@ /obj/machinery/disposal/small/east, /turf/simulated/floor/tiled, /area/horizon/security/hallway) -"aAQ" = ( -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 6 - }, -/obj/structure/ladder/up{ - pixel_y = 13 - }, -/obj/structure/lattice/catwalk/indoor, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/visible/supply{ - dir = 10 - }, -/turf/simulated/floor/plating, -/area/engineering/atmos/air) -"aAS" = ( -/obj/machinery/media/jukebox/audioconsole/wall{ - pixel_y = 32 - }, -/obj/effect/floor_decal/industrial/outline/service, -/obj/machinery/biogenerator, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/hydroponics) -"aAU" = ( -/obj/effect/floor_decal/corner/pink/diagonal, -/obj/structure/table/standard, -/obj/item/device/flashlight/lamp/off{ - pixel_x = -5; - pixel_y = 6 - }, -/turf/simulated/floor/tiled/dark, -/area/maintenance/wing/port/far) -"aAV" = ( -/obj/effect/landmark/entry_point/aft{ - name = "aft engines, port 1" - }, -/turf/space/dynamic, -/area/engineering/atmos/propulsion) -"aBc" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ +"aAT" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/purple{ dir = 5 }, -/obj/structure/cable/green{ - icon_state = "1-4" +/turf/simulated/wall/shuttle/scc_space_ship/cardinal, +/area/horizon/service/custodial/disposals/deck_1) +"aAX" = ( +/turf/simulated/wall, +/area/horizon/hangar/intrepid/interstitial) +"aBa" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 5 }, -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/turf/simulated/floor/tiled/dark, -/area/horizon/longbow) -"aBl" = ( -/obj/structure/window/reinforced, -/obj/machinery/chem_master, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenoarch_atrium) -"aBm" = ( -/obj/structure/platform/ledge{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/visible, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology/xenoflora) +/turf/simulated/floor, +/area/horizon/maintenance/deck_3/bridge) "aBt" = ( /obj/structure/bed/stool/chair/padded/blue{ dir = 4 @@ -3845,27 +4154,6 @@ }, /turf/unsimulated/floor/wood, /area/centcom/holding) -"aBw" = ( -/obj/machinery/light/small/emergency{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/maintenance/operations) -"aBy" = ( -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/engineering/atmos) "aBz" = ( /obj/effect/floor_decal/industrial/outline/yellow, /obj/structure/closet/crate/loot{ @@ -3875,17 +4163,15 @@ }, /turf/simulated/floor/tiled, /area/merchant_station/warehouse) -"aBB" = ( -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora) -"aBK" = ( -/obj/structure/shuttle_part/scc/scout{ - density = 0; - icon_state = "1,12" +"aBL" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 8 }, -/turf/simulated/floor/plating, -/area/shuttle/canary) +/obj/effect/floor_decal/spline/plain{ + dir = 4 + }, +/turf/simulated/floor/carpet/rubber, +/area/horizon/tcommsat/chamber) "aBM" = ( /obj/effect/floor_decal/industrial/warning{ dir = 8 @@ -3900,90 +4186,117 @@ dir = 4 }, /area/centcom/holding) -"aBS" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "bridge blast"; - name = "Bridge Blast Doors"; - opacity = 0 +"aBQ" = ( +/obj/machinery/chemical_dispenser, +/obj/effect/floor_decal/spline/plain/cee{ + dir = 4 }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/full, -/area/horizon/hallway/deck_three/primary/central) +/turf/simulated/floor/carpet/rubber, +/area/horizon/rnd/xenobiology/xenoflora) "aBV" = ( /obj/structure/table/wood, /obj/item/flame/candle, /turf/simulated/floor/holofloor/carpet, /area/horizon/holodeck/source_dininghall) -"aBY" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/corner/dark_green{ - dir = 6 +"aBW" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 }, -/turf/simulated/floor/tiled, -/area/hangar/intrepid) -"aCf" = ( -/obj/effect/map_effect/window_spawner/full/reinforced/grille/firedoor, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "bridge blast"; - name = "Bridge Blast Doors"; - opacity = 0 +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 }, /obj/structure/cable/green{ - icon_state = "0-4" + icon_state = "1-4" }, -/turf/simulated/floor, -/area/bridge/supply) +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/corner/dark_green{ + dir = 5 + }, +/obj/machinery/ringer_button{ + pixel_y = 29; + id = "consular_a_ringer"; + pixel_x = -32 + }, +/turf/simulated/floor/tiled, +/area/horizon/command/bridge/upperdeck) +"aCa" = ( +/obj/effect/floor_decal/corner/grey/diagonal, +/obj/effect/floor_decal/spline/plain/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/spline/plain/corner, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/white, +/area/horizon/service/kitchen) +"aCb" = ( +/obj/machinery/media/jukebox/audioconsole/wall{ + pixel_y = 32 + }, +/obj/effect/floor_decal/industrial/outline/service, +/obj/machinery/biogenerator, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/service/hydroponics) +"aCe" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 10 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/structure/sign/emergency/evacuation{ + pixel_y = -32 + }, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_3/port) "aCg" = ( /turf/unsimulated/floor{ dir = 8; icon_state = "ramptop" }, /area/centcom/ferry) -"aCh" = ( +"aCj" = ( +/turf/simulated/wall, +/area/horizon/crew/journalistoffice) +"aCm" = ( +/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/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance{ + dir = 4; + req_one_access = list(5,10,12) + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/port/near) +"aCp" = ( +/obj/structure/shuttle_part/scc/scout{ + icon_state = "1,4" + }, +/turf/simulated/floor/plating, +/area/horizon/shuttle/canary) +"aCq" = ( +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/horizon/engineering/reactor/supermatter/mainchamber) +"aCt" = ( /obj/effect/floor_decal/industrial/warning{ dir = 5 }, -/obj/item/material/shard{ - icon_state = "small" - }, /turf/simulated/floor/plating, -/area/maintenance/wing/starboard) -"aCn" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled, -/area/hangar/auxiliary) -"aCo" = ( -/obj/machinery/power/apc/west, -/obj/structure/cable/green{ - icon_state = "0-4" - }, -/obj/effect/floor_decal/corner_wide/green{ - dir = 9 - }, -/obj/item/device/radio/intercom/west, -/obj/machinery/light/floor{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/hallway/medical/upper) -"aCu" = ( -/obj/structure/closet/excavation, -/obj/effect/floor_decal/corner/mauve/full{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/outline/research, -/obj/machinery/alarm/east, -/turf/simulated/floor/tiled/white, -/area/storage/eva) +/area/horizon/maintenance/deck_1/main/starboard) "aCv" = ( /obj/machinery/door/airlock/centcom{ name = "Red Access"; @@ -3995,33 +4308,69 @@ }, /turf/unsimulated/floor, /area/centcom/holding) -"aCL" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/heads/hop/xo) -"aCW" = ( +"aCy" = ( +/obj/effect/floor_decal/corner/dark_green/full, +/obj/structure/railing/mapped, /turf/simulated/floor/tiled, -/area/engineering/lobby) -"aDc" = ( -/obj/structure/cable/green{ - icon_state = "1-4" +/area/horizon/hallway/primary/deck_1/central) +"aCD" = ( +/obj/structure/cable/orange{ + icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/structure/lattice/catwalk/indoor, +/turf/simulated/floor/plating, +/area/horizon/engineering/reactor/indra/mainchamber) +"aCG" = ( +/obj/structure/table/wood, +/obj/machinery/button/switch/windowtint{ + dir = 4; + id = "psych"; + pixel_x = 21; + pixel_y = -9 + }, +/obj/machinery/light{ dir = 4 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/item/device/flashlight/lamp/lava/pink{ + pixel_x = 5; + pixel_y = 14 }, -/obj/effect/floor_decal/corner/brown{ +/obj/random/desktoy{ + pixel_x = -7; + pixel_y = 6 + }, +/turf/simulated/floor/carpet, +/area/horizon/medical/psych) +"aCQ" = ( +/obj/effect/floor_decal/corner/dark_blue{ dir = 10 }, -/turf/simulated/floor/tiled, -/area/operations/break_room) +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/command/bridge/aibunker) +"aCV" = ( +/obj/effect/floor_decal/corner_wide/orange{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/pharmacy) +"aDa" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 1 + }, +/obj/machinery/light, +/obj/machinery/portable_atmospherics/powered/pump/filled, +/obj/effect/floor_decal/industrial/outline/blue, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/hallway/aft) "aDh" = ( /obj/item/circuitboard/borgupload, /obj/item/circuitboard/aiupload{ @@ -4046,79 +4395,43 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled, -/area/outpost/research/anomaly_harvest) +/area/horizon/rnd/xenoarch/anomaly_harvest) "aDk" = ( /obj/effect/floor_decal/industrial/warning/corner{ dir = 8 }, /turf/simulated/floor/tiled/dark, /area/shuttle/mercenary) -"aDl" = ( -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/manifold/visible/yellow{ +"aDr" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/sign/directions/prop{ + pixel_y = -22 + }, +/obj/effect/floor_decal/spline/plain/yellow{ dir = 8 }, /turf/simulated/floor/tiled/dark/full, -/area/engineering/engine_room/turbine) -"aDm" = ( -/obj/item/device/radio/intercom/south, -/obj/effect/floor_decal/corner/purple/full{ +/area/horizon/engineering/reactor/indra/smes) +"aDC" = ( +/obj/structure/disposalpipe/up, +/obj/effect/floor_decal/industrial/warning/cee{ dir = 4 }, -/obj/structure/engineer_maintenance/pipe{ - dir = 1 - }, -/obj/structure/engineer_maintenance/electric{ - dir = 4 - }, -/obj/structure/sink/kitchen{ - dir = 8; - name = "sink"; - pixel_x = 21 - }, -/turf/simulated/floor/tiled, -/area/horizon/custodial) -"aDn" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/window/westright, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/window/eastleft, -/turf/simulated/floor/reinforced, -/area/rnd/test_range) -"aDp" = ( -/obj/machinery/power/apc/super/critical/west, -/obj/structure/cable{ - icon_state = "0-2" - }, -/obj/structure/table/reinforced/steel, -/obj/machinery/button/remote/blast_door{ - dir = 1; - id = "r_ust_core_blast"; - name = "INDRA Reactor Core Blast Doors"; - pixel_x = -6; - pixel_y = 7 - }, -/obj/machinery/button/remote/blast_door{ - dir = 1; - id = "r-ust_monitoring_blast"; - name = "INDRA Reactor Monitoring Blast Doors"; - pixel_x = 6; - pixel_y = 7 - }, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/engine_monitoring/rust) -"aDv" = ( -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/machinery/power/apc/low/east, /turf/simulated/floor/plating, -/area/maintenance/operations) -"aDx" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ +/area/horizon/maintenance/deck_1/operations/starboard/far) +"aDD" = ( +/obj/structure/flora/ausbushes/sparsegrass, +/obj/structure/flora/ausbushes/ywflowers, +/turf/simulated/floor/grass/no_edge, +/area/horizon/service/hydroponics/lower) +"aDM" = ( +/obj/structure/railing/mapped, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -4127,85 +4440,35 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 10 - }, -/obj/machinery/camera/network/third_deck{ - c_tag = "Third Deck - Port Dock Starboard"; - dir = 1 - }, -/obj/structure/closet/walllocker/emerglocker{ - pixel_y = -32 - }, -/obj/effect/floor_decal/industrial/outline/emergency_closet, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/starboard/docks) -"aDA" = ( -/obj/effect/map_effect/door_helper/unres, -/obj/machinery/door/firedoor, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/airlock/glass_command{ - dir = 1; - id_tag = "command_foyer"; - name = "Bridge"; - req_one_access = list(19,38,72) - }, -/obj/effect/map_effect/door_helper/level_access/command_foyer{ - req_one_access_by_level = list("green","yellow"=list(19,38,72),"blue"=list(19,38,72),"red"=list(19,38,72),"delta"=list(19,38,72)); - access_by_level = null - }, -/turf/simulated/floor/tiled/full, -/area/horizon/hallway/deck_three/primary/central) -"aDF" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor, +/area/horizon/maintenance/deck_3/aft/starboard) +"aDN" = ( +/obj/machinery/telecomms/allinone/ship/station_relay, +/turf/simulated/floor/bluegrid, +/area/horizon/tcommsat/chamber) +"aDP" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/effect/floor_decal/corner/brown{ - dir = 6 - }, /obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/operations/lobby) -"aDH" = ( -/obj/machinery/portable_atmospherics/canister/air, -/obj/machinery/atmospherics/portables_connector{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/dark, -/area/maintenance/aux_atmospherics/deck_2/starboard/wing) -"aDT" = ( -/obj/effect/map_effect/window_spawner/full/reinforced/grille/firedoor, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "bridge blast"; - name = "Bridge Blast Doors"; - opacity = 0 - }, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "bridge blast"; - name = "Bridge Blast Doors"; - opacity = 0 - }, -/obj/structure/cable/green{ - icon_state = "0-4" + icon_state = "1-8" }, /obj/structure/cable/green{ icon_state = "1-4" }, -/obj/structure/cable/green{ - icon_state = "2-4" - }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/structure/lattice/catwalk/indoor/grate, /turf/simulated/floor, -/area/bridge/supply) +/area/horizon/hallway/primary/deck_3/central) +"aDS" = ( +/obj/structure/bed/stool/chair/shuttle{ + dir = 8 + }, +/obj/item/device/radio/intercom/south, +/turf/simulated/floor/shuttle/dark_blue, +/area/horizon/shuttle/escape_pod/pod3) "aDW" = ( /obj/effect/floor_decal/corner/dark_blue{ dir = 6 @@ -4219,64 +4482,40 @@ /obj/effect/floor_decal/industrial/warning/corner, /turf/simulated/floor/tiled, /area/horizon/security/hallway) -"aEc" = ( -/obj/machinery/light/small/emergency{ - dir = 4 +"aDZ" = ( +/obj/effect/floor_decal/corner_wide/paleblue{ + dir = 6 }, -/obj/random/dirt_75, -/turf/simulated/floor, -/area/maintenance/wing/port/far) -"aEd" = ( -/obj/machinery/computer/ship/targeting/cockpit{ - pixel_x = -25; - req_one_access = list(73,74) - }, -/obj/structure/bed/stool/chair/cockpit, -/obj/machinery/computer/ship/sensors/cockpit/right{ - pixel_x = 25 - }, -/turf/simulated/floor/carpet/rubber, -/area/shuttle/canary) -"aEi" = ( -/obj/structure/bed/stool/chair/padded/purple{ - dir = 1 - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 10 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/heads/hor) -"aEj" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/operations/storage) -"aEl" = ( -/obj/machinery/door/blast/shutters/open{ - dir = 2; - id = "shutters_hangarseccp"; - name = "Security Checkpoint Shutter" - }, -/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, -/turf/simulated/floor/tiled/dark/full, -/area/security/checkpoint) -"aEp" = ( -/obj/effect/floor_decal/corner/mauve{ - dir = 10 - }, -/obj/structure/extinguisher_cabinet/south, -/turf/simulated/floor/tiled, -/area/rnd/hallway) -"aEs" = ( -/obj/effect/floor_decal/industrial/warning{ +/obj/machinery/disposal/small/west, +/obj/structure/disposalpipe/trunk{ dir = 8 }, -/obj/structure/tank_wall/oxygen{ - icon_state = "o2-4" +/obj/machinery/camera/network/medbay{ + c_tag = "Medical - Operating Room 2"; + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/surgery) +"aEh" = ( +/obj/structure/table/standard, +/obj/item/device/flashlight/lamp/off{ + pixel_x = -5; + pixel_y = 5 }, /turf/simulated/floor/plating, -/area/engineering/atmos/air) +/area/horizon/engineering/reactor/indra/office) +"aEz" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_2/starboard) +"aEA" = ( +/obj/effect/landmark/entry_point/starboard{ + name = "starboard, engineering drone storage" + }, +/turf/simulated/wall/shuttle/scc_space_ship/cardinal, +/area/horizon/engineering/bluespace_drive) "aEC" = ( /obj/effect/decal/fake_object/light_source/invisible{ light_color = "#66ccff"; @@ -4286,73 +4525,26 @@ }, /turf/simulated/floor/exoplanet/snow, /area/centcom/shared_dream) -"aEE" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 6 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/firealarm/west{ - dir = 2; - pixel_x = 0; - pixel_y = -25 - }, -/turf/simulated/floor/wood, -/area/lawoffice/representative) -"aEL" = ( -/obj/structure/sign/flag/scc{ - pixel_y = 30 - }, -/obj/structure/table/standard, -/obj/machinery/photocopier/faxmachine{ - anchored = 0; - department = "Human Resources"; - pixel_y = 4; - req_one_access = list(38,19,72) - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/machinery/firealarm/west, -/turf/simulated/floor/tiled/full, -/area/bridge/cciaroom) -"aEP" = ( -/obj/effect/floor_decal/spline/fancy/wood/cee{ - dir = 4 - }, -/obj/structure/bed/stool/chair/padded/brown{ +"aEN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 8 }, -/turf/simulated/floor/wood, -/area/operations/office) -"aER" = ( -/obj/machinery/disposal/deliveryChute{ - dir = 4 +/obj/machinery/light/spot{ + dir = 8; + must_start_working = 1 }, -/obj/structure/disposalpipe/trunk, -/obj/effect/floor_decal/industrial/warning/full, -/obj/structure/plasticflaps/airtight{ - dir = 4 +/obj/effect/floor_decal/corner/dark_green{ + dir = 9 }, -/turf/simulated/floor/tiled/dark/full, -/area/operations/mail_room) -"aEV" = ( -/obj/structure/cable/green{ - icon_state = "1-4" +/turf/simulated/floor/tiled, +/area/horizon/hangar/auxiliary) +"aEW" = ( +/obj/effect/landmark/entry_point/fore{ + name = "fore, kitchen" }, -/turf/simulated/floor/carpet, -/area/lawoffice/consular) +/turf/simulated/wall/shuttle/scc_space_ship/cardinal, +/area/horizon/service/kitchen/freezer) "aEX" = ( /obj/item/screwdriver{ pixel_y = 12 @@ -4363,97 +4555,69 @@ }, /turf/unsimulated/floor, /area/centcom/legion) -"aFa" = ( -/obj/structure/closet/secure_closet/package_courier, -/turf/simulated/floor/tiled, -/area/operations/storage) -"aFf" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ +"aFb" = ( +/obj/machinery/r_n_d/weapons_analyzer, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/rnd/lab) +"aFc" = ( +/obj/structure/bed/stool/chair/office/light{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/conveyor{ - id = "cargo_1" - }, -/turf/simulated/floor/tiled, -/area/hangar/operations) -"aFg" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/floor_decal/corner_wide/yellow{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/engineering/bluespace_drive) -"aFh" = ( -/obj/effect/landmark/entry_point/starboard{ - name = "starboard, cargo bay" - }, -/turf/simulated/wall/shuttle/scc, -/area/shuttle/intrepid/buffet) -"aFB" = ( -/obj/effect/floor_decal/corner/mauve{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/conference) -"aFD" = ( -/obj/structure/grille, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "bridge blast"; - name = "Bridge Blast Doors"; - opacity = 0 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/shutters/open{ - dir = 2; - id = "shutters_deck3_bridgesafety"; - name = "Safety Shutter" - }, -/obj/effect/landmark/entry_point/fore{ - name = "fore, command break room" - }, -/obj/structure/window/shuttle/scc_space_ship/cardinal, /turf/simulated/floor/plating, -/area/bridge/minibar) -"aFE" = ( +/area/horizon/engineering/reactor/indra/office) +"aFi" = ( +/obj/machinery/disposal/small/east{ + pixel_x = -6 + }, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/item/device/radio/intercom/west, +/obj/structure/platform{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/horizon/service/dining_hall) +"aFp" = ( /obj/structure/cable/green{ icon_state = "1-2" }, -/obj/structure/disposalpipe/sortjunction/flipped{ - dir = 1; - name = "Chapel Office"; - sortType = "Chapel Office" +/obj/structure/cable/green, +/obj/effect/map_effect/window_spawner/full/reinforced/polarized/grille/firedoor{ + id = "bridgeconf" }, +/turf/simulated/floor, +/area/horizon/command/bridge/meeting_room) +"aFA" = ( +/obj/effect/floor_decal/corner_wide/yellow/diagonal, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/power/apc/low/south, /obj/structure/cable/green{ - icon_state = "2-8" + icon_state = "0-8" }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/break_room) +"aFJ" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 5 }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 +/turf/simulated/floor/tiled, +/area/horizon/operations/office) +"aFL" = ( +/obj/machinery/light/small/red{ + dir = 8 }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/horizon/maintenance/deck_two/fore/starboard) -"aFM" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small/emergency{ - dir = 1 - }, -/obj/structure/bed/stool/chair, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard) +/turf/simulated/floor/tiled/dark, +/area/horizon/maintenance/deck_2/wing/port/nacelle) "aFN" = ( /obj/machinery/camera/network/research{ c_tag = "Research - Exotic Energies Harvesting"; @@ -4461,59 +4625,125 @@ }, /obj/machinery/firealarm/north, /turf/simulated/floor/tiled, -/area/outpost/research/anomaly_harvest) -"aFQ" = ( -/obj/effect/floor_decal/corner/dark_green/full{ +/area/horizon/rnd/xenoarch/anomaly_harvest) +"aFS" = ( +/obj/effect/floor_decal/corner_wide/purple{ dir = 8 }, -/obj/machinery/media/jukebox/audioconsole/wall{ - pixel_y = 32 - }, -/obj/effect/floor_decal/spline/plain/corner/green, -/obj/machinery/atmospherics/pipe/simple/hidden{ +/obj/effect/floor_decal/corner_wide/purple{ dir = 6 }, -/turf/simulated/floor/tiled, -/area/horizon/hydroponics/lower) -"aFV" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/external{ - dir = 4; - frequency = 1380; - icon_state = "door_locked"; - id_tag = "escape_pod_3_berth_hatch"; - locked = 1; - name = "Escape Pod"; - req_access = list(13) - }, -/turf/simulated/floor/tiled, -/area/hangar/operations) -"aGd" = ( -/turf/simulated/wall, -/area/chapel/office) -"aGe" = ( -/obj/structure/platform/ledge, -/obj/effect/decal/cleanable/blood/oil, -/obj/structure/engineer_maintenance/electric/wall, -/turf/simulated/floor/carpet/rubber, -/area/operations/lower/machinist) -"aGj" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ +/obj/effect/floor_decal/industrial/warning{ dir = 4 }, /obj/structure/cable/green{ icon_state = "4-8" }, -/turf/simulated/floor/tiled/full, -/area/hallway/primary/central_two) +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/button/remote/blast_door{ + dir = 4; + id = "iso_c_purge"; + name = "PURGE Atmosphere"; + pixel_x = 28; + pixel_y = -26; + req_access = list(65) + }, +/obj/machinery/button/remote/blast_door{ + dir = 4; + id = "iso_c"; + name = "Blast Door Control"; + pixel_x = 22; + pixel_y = -36; + req_access = list(65) + }, +/obj/machinery/button/remote/airlock{ + dir = 4; + id = "riso3"; + name = "Door Bolt Control"; + pixel_x = 22; + pixel_y = -25; + req_access = list(65); + specialfunctions = 4 + }, +/obj/machinery/atmospherics/valve/digital/open{ + dir = 4; + name = "Isolation A" + }, +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/xenoarch/atrium) +"aFX" = ( +/obj/structure/table/wood, +/obj/effect/floor_decal/spline/fancy/wood, +/obj/random/pottedplant_small{ + pixel_y = 16 + }, +/turf/simulated/floor/wood, +/area/horizon/hallway/primary/deck_3/central) +"aFZ" = ( +/obj/effect/floor_decal/corner/white/diagonal, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/closet/walllocker/firecloset/medical{ + pixel_x = -32 + }, +/obj/structure/engineer_maintenance/pipe{ + dir = 8 + }, +/obj/structure/engineer_maintenance/electric, +/turf/simulated/floor/tiled, +/area/horizon/medical/paramedic) +"aGa" = ( +/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/horizon/hangar/auxiliary) "aGl" = ( /obj/machinery/atmospherics/pipe/simple/heat_exchanging, /obj/structure/lattice, /turf/simulated/open/airless, /area/horizon/exterior) +"aGm" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/junction{ + dir = 1 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 10 + }, +/turf/simulated/floor/wood, +/area/horizon/service/bar) +"aGn" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_service{ + dir = 1; + name = "Bar Lounge" + }, +/turf/simulated/floor/tiled/full, +/area/horizon/service/bar) "aGq" = ( /obj/machinery/vending/cigarette{ name = "Free Cigarette Machine"; @@ -4528,24 +4758,6 @@ /obj/structure/sign/christmas/snowman/hat, /turf/simulated/floor/exoplanet/snow, /area/centcom/shared_dream) -"aGt" = ( -/obj/structure/table/wood, -/obj/item/paper_bin{ - pixel_x = -6 - }, -/obj/item/pen/green{ - pixel_y = -3; - pixel_x = 3 - }, -/obj/item/pen/red{ - pixel_x = 5 - }, -/obj/item/pen/blue{ - pixel_x = 8; - pixel_y = 3 - }, -/turf/simulated/floor/carpet, -/area/lawoffice/consular_two) "aGv" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/liquid_fuel, @@ -4554,63 +4766,71 @@ }, /turf/unsimulated/floor, /area/antag/raider) -"aGw" = ( -/obj/machinery/embedded_controller/radio/simple_docking_controller/escape_pod{ - frequency = 1380; - id_tag = "escape_pod_4"; - pixel_y = 25; - tag_door = "escape_pod_4_hatch" +"aGz" = ( +/obj/structure/cable/green{ + icon_state = "1-2" }, -/obj/item/modular_computer/console/preset/civilian{ - dir = 4 +/obj/machinery/newscaster/west, +/obj/effect/floor_decal/corner/dark_green{ + dir = 9 }, -/turf/simulated/floor/shuttle/dark_blue, -/area/shuttle/escape_pod/pod4) -"aGC" = ( -/obj/effect/floor_decal/industrial/warning{ +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 5 }, -/turf/simulated/floor/plating, -/area/maintenance/wing/port/far) -"aGD" = ( -/turf/simulated/wall, -/area/horizon/kitchen/freezer) -"aGU" = ( -/obj/structure/table/rack, -/obj/random/loot, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard) -"aGW" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/floor_decal/corner/dark_green{ +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 5 }, /turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/central) -"aGX" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 13 +/area/horizon/crew/chargebay) +"aGJ" = ( +/obj/effect/floor_decal/corner_wide/yellow{ + dir = 10 }, -/obj/machinery/alarm/south, -/obj/machinery/light/small, -/obj/effect/floor_decal/corner/green/full{ - dir = 4 +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/horizon/engineering/hallway/interior) +"aGK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + icon_state = "1-2" }, -/obj/structure/mirror{ - pixel_x = 27 +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/corner/purple{ + dir = 5 }, -/turf/simulated/floor/tiled/white, -/area/operations/break_room) +/turf/simulated/floor/tiled, +/area/horizon/service/custodial) +"aGL" = ( +/obj/structure/disposaloutlet{ + dir = 8 + }, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/reinforced, +/area/horizon/rnd/xenobiology) +"aGN" = ( +/obj/effect/floor_decal/corner/mauve/diagonal, +/obj/machinery/alarm/east, +/turf/simulated/floor/tiled, +/area/horizon/rnd/xenobiology) +"aGR" = ( +/obj/machinery/atmospherics/pipe/manifold4w/visible, +/turf/simulated/floor/tiled/dark, +/area/horizon/rnd/xenobiology/xenoflora) +"aGY" = ( +/obj/effect/landmark/entry_point/starboard{ + name = "starboard, escape pods" + }, +/turf/simulated/wall/shuttle/scc_space_ship/cardinal, +/area/horizon/hangar/operations) "aHa" = ( /obj/structure/bed/stool/chair{ dir = 8 @@ -4619,11 +4839,53 @@ icon_state = "dark_preview" }, /area/centcom/holding) -"aHc" = ( -/obj/machinery/r_n_d/weapons_analyzer, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/dark/full, -/area/rnd/lab) +"aHd" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/weapons/longbow) +"aHh" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 10 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/machinery/camera/network/first_deck{ + c_tag = "First Deck - Hangar 2"; + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/hangar/intrepid) +"aHi" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/xenological) +"aHl" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/lattice/catwalk/indoor, +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/structure/railing/mapped, +/turf/simulated/floor/plating, +/area/horizon/engineering/bluespace_drive) "aHn" = ( /obj/machinery/door/airlock/silver{ dir = 4; @@ -4638,36 +4900,6 @@ /obj/effect/decal/cleanable/dirt, /turf/unsimulated/floor, /area/centcom/legion) -"aHr" = ( -/obj/structure/closet/crate, -/obj/item/stock_parts/matter_bin, -/obj/item/stock_parts/matter_bin, -/obj/item/stock_parts/matter_bin, -/obj/item/stock_parts/matter_bin, -/obj/item/stock_parts/capacitor, -/obj/item/stock_parts/capacitor, -/obj/item/stock_parts/capacitor, -/obj/item/stock_parts/manipulator, -/obj/item/stock_parts/manipulator, -/obj/item/stock_parts/manipulator, -/obj/item/stock_parts/micro_laser, -/obj/item/stock_parts/micro_laser, -/obj/item/stock_parts/micro_laser, -/obj/item/stock_parts/scanning_module, -/obj/item/stock_parts/scanning_module, -/obj/item/stock_parts/scanning_module, -/obj/item/stock_parts/console_screen, -/obj/item/stock_parts/console_screen, -/obj/item/stack/cable_coil/random, -/obj/item/stack/cable_coil/random, -/turf/simulated/floor/carpet/rubber, -/area/maintenance/engineering/auxillary) -"aHs" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 9 - }, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/engine_room) "aHw" = ( /obj/effect/floor_decal/corner/beige/diagonal, /obj/structure/cable/green{ @@ -4681,39 +4913,40 @@ }, /turf/simulated/floor/tiled/white, /area/horizon/security/forensic_laboratory) -"aHz" = ( +"aHx" = ( /obj/structure/cable/green{ - icon_state = "4-8" + icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance{ + dir = 1; + name = "Deck 1 Medical Maintenance"; + req_access = list(5) }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 2; + icon_state = "shutter0"; + id = "LCKDshutters"; + name = "Medical Lockdown Shutters"; + opacity = 0 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/simulated/floor/tiled/full, +/area/horizon/medical/emergency_storage) +"aHD" = ( +/obj/machinery/atmospherics/valve{ + dir = 4; + name = "Propellant Line to Heat Exchangers" }, -/obj/effect/floor_decal/corner/mauve{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/rnd/hallway) -"aHB" = ( /obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/cryopod, -/obj/machinery/computer/cryopod{ - pixel_x = -1; - pixel_y = -26 - }, -/turf/simulated/floor/tiled/dark/full, -/area/shuttle/intrepid/port_storage) -"aHC" = ( -/obj/structure/table/reinforced/wood, -/obj/item/folder/blue, -/obj/item/pen, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/dark, -/area/bridge/meeting_room) +/area/horizon/engineering/atmos/propulsion) +"aHK" = ( +/turf/simulated/floor/grass/no_edge, +/area/horizon/rnd/xenobiology/xenoflora) "aHP" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -4749,15 +4982,28 @@ /obj/machinery/atmospherics/pipe/simple/hidden, /turf/simulated/floor/tiled, /area/horizon/security/brig) -"aHT" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 10 +"aHQ" = ( +/turf/simulated/wall/shuttle/scc_space_ship/cardinal, +/area/horizon/maintenance/deck_3/bridge) +"aHS" = ( +/obj/machinery/light{ + dir = 1 }, -/obj/effect/floor_decal/industrial/loading/yellow{ +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ dir = 4 }, -/turf/simulated/floor/tiled, -/area/bridge/upperdeck) +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/engineering/atmos) +"aHU" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/red{ + dir = 8 + }, +/turf/simulated/wall/shuttle/scc_space_ship/cardinal, +/area/horizon/service/custodial/disposals/deck_1) "aHV" = ( /obj/structure/table/rack, /obj/item/storage/backpack, @@ -4773,29 +5019,72 @@ }, /turf/simulated/floor/holofloor/wood, /area/horizon/holodeck/source_theatre) -"aHY" = ( -/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, -/turf/simulated/floor/tiled/dark/full, -/area/hangar/intrepid) -"aIp" = ( +"aHX" = ( +/obj/machinery/atmospherics/pipe/manifold4w/visible/yellow, +/turf/simulated/floor/plating, +/area/horizon/rnd/xenoarch/atrium) +"aIa" = ( +/obj/effect/floor_decal/corner/mauve/diagonal, +/obj/machinery/alarm/north, +/turf/simulated/floor/tiled, +/area/horizon/rnd/xenobiology/xenoflora) +"aIc" = ( +/obj/structure/closet/secure_closet/guncabinet{ + name = "Bridge Defense Equipment"; + req_access = list(60) + }, +/obj/item/gun/energy/gun, +/obj/item/gun/energy/gun, +/obj/item/gun/energy/gun, +/obj/item/gun/projectile/sec, +/obj/item/gun/projectile/sec, +/obj/item/gun/projectile/sec, +/obj/item/ammo_magazine/c45m, +/obj/item/ammo_magazine/c45m, +/obj/item/ammo_magazine/c45m, +/obj/item/ammo_magazine/c45m, +/obj/item/ammo_magazine/c45m, +/obj/item/ammo_magazine/c45m, /obj/effect/floor_decal/corner/dark_blue{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" + dir = 6 }, +/obj/effect/floor_decal/industrial/outline/red, +/obj/machinery/alarm/east, +/obj/item/melee/baton/loaded, +/obj/item/melee/baton/loaded, +/obj/item/melee/baton/loaded, +/turf/simulated/floor/tiled, +/area/horizon/command/bridge/bridge_crew) +"aIl" = ( +/obj/structure/stairs/west, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/hallway) +"aIn" = ( /obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/dark, -/area/horizon/longbow) -"aIs" = ( -/obj/structure/cable{ icon_state = "1-2" }, -/turf/simulated/floor/tiled/dark, -/area/hangar/auxiliary) +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/machinery/computer/bluespacedrive{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/horizon/engineering/bluespace_drive) +"aIq" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door/window/westright{ + name = "Oxygen Supplies Access" + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/operations/mining_main/refinery) "aIt" = ( /obj/effect/floor_decal/corner/paleblue{ dir = 5 @@ -4809,158 +5098,124 @@ /obj/effect/floor_decal/corner/paleblue, /turf/unsimulated/floor, /area/centcom/holding) -"aIz" = ( +"aIu" = ( +/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/maintenance/deck_1/hangar/starboard) +"aIv" = ( /obj/structure/table/wood, -/obj/structure/cable/green{ - icon_state = "4-8" +/obj/item/reagent_containers/food/condiment/shaker/salt{ + pixel_x = -6; + pixel_y = 16 }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 +/obj/item/reagent_containers/food/condiment/shaker/peppermill{ + pixel_x = 4; + pixel_y = 16 }, -/obj/item/pen{ - pixel_x = 6 +/obj/item/flame/candle{ + pixel_y = 16 }, -/obj/item/paper_bin{ - pixel_x = 7 +/obj/random/pottedplant_small{ + spawn_nothing_percentage = 25; + name = "random potted plant, small (25% nothing)"; + pixel_x = -4; + pixel_y = -2 }, -/turf/simulated/floor/carpet, -/area/lawoffice/representative) -"aIB" = ( -/obj/machinery/recharger/wallcharger{ - pixel_x = 5; - pixel_y = 28 +/obj/machinery/power/outlet, +/turf/simulated/floor/wood, +/area/horizon/service/dining_hall) +"aIH" = ( +/obj/structure/table/standard, +/obj/item/toy/comic/inspector{ + pixel_x = -4 }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 5 +/obj/item/toy/comic/inspector, +/obj/item/toy/comic/stormman{ + pixel_x = 4 }, -/turf/simulated/floor/tiled, -/area/bridge/bridge_crew) -"aIE" = ( -/obj/effect/floor_decal/industrial/outline/grey, -/obj/structure/table/steel, -/obj/item/storage/toolbox/emergency{ - pixel_x = 2; - pixel_y = 4 - }, -/turf/simulated/floor/plating, -/area/hangar/intrepid) -"aIN" = ( -/obj/machinery/door/firedoor/multi_tile, -/obj/machinery/door/airlock/multi_tile/glass{ - name = "Livestock Pen"; - req_access = list(35) - }, -/turf/simulated/floor/tiled/full, -/area/horizon/hydroponics/lower) -"aIS" = ( -/obj/effect/floor_decal/spline/plain{ +/obj/effect/floor_decal/spline/fancy/wood{ dir = 8 }, -/obj/effect/floor_decal/spline/plain{ +/obj/effect/floor_decal/spline/fancy/wood{ dir = 4 }, -/obj/machinery/atmospherics/unary/vent_pump{ - external_pressure_bound = 140; - external_pressure_bound_default = 140; - icon_state = "map_vent_out"; - pressure_checks = 0; - pressure_checks_default = 0; - use_power = 1 +/turf/simulated/floor/wood, +/area/horizon/operations/machinist/surgicalbay) +"aII" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 4 }, -/obj/machinery/firealarm/west, -/turf/simulated/floor/carpet/rubber, -/area/tcommsat/chamber) +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_1/central) +"aIO" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/wood, +/area/horizon/service/cafeteria) +"aIW" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor, +/area/horizon/maintenance/deck_2/wing/starboard/far) "aIZ" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/floor_decal/corner_wide/dark_green/diagonal, /turf/simulated/floor/tiled/dark, /area/shuttle/skipjack) -"aJg" = ( -/obj/effect/floor_decal/corner_wide/green{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/medical/gen_treatment) -"aJj" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 5 - }, -/obj/machinery/alarm/north, -/obj/machinery/vending/lavatory, -/turf/simulated/floor/tiled, -/area/horizon/crew_quarters/fitness/changing) -"aJn" = ( -/obj/structure/table/standard, -/obj/item/taperoll/medical{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/taperoll/medical{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/taperoll/medical{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/device/flashlight/pen{ - pixel_x = -4; - pixel_y = -2 - }, -/obj/item/device/flashlight/pen{ - pixel_x = -4; - pixel_y = -2 - }, -/obj/item/device/flashlight/pen{ - pixel_x = -4; - pixel_y = -2 - }, -/obj/item/device/flashlight/pen{ - pixel_x = -4; - pixel_y = -2 - }, -/obj/item/device/flashlight/pen{ - pixel_x = -4; - pixel_y = -2 - }, -/obj/item/device/flashlight/pen{ - pixel_x = -4; - pixel_y = -2 - }, -/obj/effect/floor_decal/corner_wide/green{ - dir = 5 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/medical/equipment) -"aJr" = ( -/obj/effect/floor_decal/corner/green/diagonal, -/obj/structure/bed/stool, -/obj/structure/curtain/open, -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/window/reinforced, -/turf/simulated/floor/tiled/white, -/area/horizon/crew_quarters/fitness/changing) -"aJu" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/platform_stairs/full/east_west_cap{ +"aJa" = ( +/obj/structure/platform{ dir = 8 }, -/obj/structure/platform/cutout, +/obj/effect/floor_decal/corner/mauve{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/lab) +"aJe" = ( +/obj/effect/floor_decal/corner/white/diagonal, +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/obj/machinery/power/apc/low/west, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, /turf/simulated/floor/tiled, -/area/bridge/upperdeck) +/area/horizon/medical/paramedic) +"aJk" = ( +/obj/structure/railing/mapped, +/obj/structure/sign/directions/prop{ + pixel_y = 32 + }, +/turf/simulated/open, +/area/horizon/stairwell/engineering/deck_2) +"aJs" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/effect/floor_decal/spline/plain{ + dir = 1 + }, +/obj/machinery/vending/coffee, +/turf/simulated/floor/tiled/dark, +/area/horizon/hallway/primary/deck_2/central) +"aJt" = ( +/obj/structure/dispenser, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/camera/network/research{ + c_tag = "Research - Xenoarchaeology Suit Storage"; + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/rnd/xenoarch/storage) "aJw" = ( /obj/machinery/door/airlock/external{ frequency = 1399; @@ -4978,21 +5233,13 @@ icon_state = "dark_preview" }, /area/centcom/specops) -"aJA" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 6 +"aJx" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 8 }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 1 - }, -/turf/simulated/floor/reinforced, -/area/engineering/gravity_gen) -"aJB" = ( -/turf/simulated/wall/r_wall, -/area/horizon/custodial/disposals) +/obj/machinery/alarm/west, +/turf/simulated/floor/carpet/rubber, +/area/horizon/tcommsat/entrance) "aJF" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/structure/disposalpipe/segment{ @@ -5015,9 +5262,9 @@ }, /turf/simulated/floor/tiled/full, /area/horizon/security/brig) -"aJI" = ( -/turf/simulated/wall/shuttle/scc, -/area/shuttle/intrepid/port_storage) +"aJJ" = ( +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/service/port) "aJL" = ( /obj/machinery/door/airlock/glass_command{ dir = 1; @@ -5039,134 +5286,189 @@ }, /turf/unsimulated/floor/plating, /area/shuttle/syndicate_elite) -"aJS" = ( -/obj/structure/disposalpipe/segment{ - icon_state = "pipe-c" +"aJR" = ( +/obj/item/reagent_containers/blood/OMinus, +/obj/item/reagent_containers/blood/sbs, +/obj/item/reagent_containers/blood/OMinus, +/obj/item/reagent_containers/blood/OMinus, +/obj/structure/closet/walllocker/medical/secure{ + name = "O- Blood Locker"; + pixel_y = 32 }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"aJU" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/machinery/power/terminal, -/turf/simulated/floor/carpet/rubber, -/area/tcommsat/entrance) -"aKh" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark/full, -/area/shuttle/intrepid/main_compartment) -"aKn" = ( -/obj/effect/floor_decal/corner_wide/purple/full{ - dir = 1 - }, -/obj/effect/floor_decal/corner_wide/purple{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenoarch_atrium) -"aKo" = ( -/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/industrial/hatch/yellow, -/obj/machinery/alarm/north, -/obj/machinery/door/blast/shutters/open{ - dir = 8; - id = "shutters_hangardeskcpport"; - name = "Security Checkpoint Shutter" - }, -/obj/machinery/door/blast/regular/open{ - id = "hangarlockdown"; - name = "Hangar Lockdown" - }, -/turf/simulated/floor/tiled, -/area/security/checkpoint) -"aKy" = ( -/obj/machinery/turretid/stun{ - check_synth = 1; - name = "\improper AI Chamber Turret Control Console"; - pixel_x = -40; - pixel_y = 25 - }, -/obj/item/device/radio/intercom/west{ - name = "Common Channel"; - pixel_y = 18; - dir = 1; - pixel_x = 0 - }, -/obj/machinery/firealarm/south, -/turf/simulated/floor/bluegrid{ - name = "cooled mainframe floor"; +/turf/simulated/floor/tiled/freezer{ + name = "cold storage tiles"; temperature = 278 }, -/area/turret_protected/ai) +/area/horizon/medical/surgery/storage) +"aJX" = ( +/obj/structure/closet/walllocker/medical/firstaid{ + pixel_x = 32 + }, +/obj/effect/floor_decal/industrial/outline/medical, +/turf/simulated/floor/tiled/dark, +/area/horizon/hangar/auxiliary) +"aJY" = ( +/obj/machinery/atmospherics/pipe/manifold4w/visible, +/turf/simulated/floor/tiled, +/area/horizon/maintenance/deck_2/wing/starboard/auxatmos) +"aKb" = ( +/obj/structure/platform{ + dir = 4 + }, +/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/horizon/operations/machinist/surgicalbay) +"aKc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/structure/closet/crate, +/obj/random/loot, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/main/starboard) +"aKd" = ( +/obj/structure/bed/stool/chair/office/bridge{ + dir = 8 + }, +/obj/effect/floor_decal/corner/dark_blue{ + dir = 6 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/command/bridge/meeting_room) +"aKi" = ( +/turf/space/dynamic, +/area/horizon/engineering/atmos/propulsion) +"aKj" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/effect/decal/cleanable/cobweb2, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/auxatmos) +"aKl" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 8 + }, +/obj/effect/map_effect/marker/airlock{ + frequency = 3002; + master_tag = "airlock_horizon_deck_2_port_1"; + name = "airlock_horizon_deck_2_port_1" + }, +/turf/simulated/floor, +/area/horizon/maintenance/deck_2/wing/starboard/far) +"aKt" = ( +/obj/machinery/button/remote/blast_door{ + dir = 10; + id = "bridge blast"; + name = "Bridge Lockdown"; + pixel_x = -5; + pixel_y = -18; + req_access = list(19) + }, +/obj/machinery/button/remote/blast_door{ + dir = 6; + id = "shutters_deck3_bridgesafety"; + name = "Bridge Safety Shutters"; + pixel_x = 6; + pixel_y = -18 + }, +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/effect/floor_decal/corner/dark_blue{ + dir = 6 + }, +/obj/item/folder/blue{ + pixel_y = 7; + pixel_x = 5 + }, +/obj/item/folder/blue{ + pixel_y = 7; + pixel_x = 5 + }, +/obj/structure/table/reinforced/steel, +/obj/item/folder/red{ + pixel_y = 4; + pixel_x = 5 + }, +/obj/machinery/light_switch{ + dir = 6; + pixel_x = 5; + pixel_y = -7 + }, +/obj/random/pottedplant_small{ + pixel_x = -6; + pixel_y = 4 + }, +/obj/machinery/button/remote/blast_door{ + dir = 6; + id = "bridge_foyer"; + name = "Bridge Bolt Control"; + pixel_x = 6; + pixel_y = -27; + req_access = list(19) + }, +/obj/machinery/button/remote/blast_door{ + dir = 10; + id = "hangarlockdown"; + name = "Hangar Lockdoor"; + pixel_x = -5; + pixel_y = -27 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/command/bridge/controlroom) "aKC" = ( /obj/effect/floor_decal/industrial/warning{ dir = 6 }, /turf/unsimulated/floor, /area/antag/ninja) -"aKK" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 9 +"aKD" = ( +/obj/effect/decal/cleanable/cobweb, +/obj/structure/ladder/up{ + pixel_y = 13 }, -/turf/simulated/floor, -/area/maintenance/engineering_ladder) +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/auxatmos) +"aKG" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/railing/mapped, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/reactor/indra/mainchamber) "aKL" = ( /turf/simulated/floor, /area/tdome) +"aKP" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/structure/trash_pile, +/turf/simulated/floor, +/area/horizon/maintenance/deck_3/aft/holodeck) "aKV" = ( /obj/machinery/vending/assist/synd, /turf/simulated/floor/tiled/dark/full, /area/shuttle/mercenary) -"aLa" = ( -/mob/living/carbon/slime, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 +"aKW" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 6 }, -/turf/simulated/floor/reinforced, -/area/rnd/xenobiology) -"aLe" = ( -/obj/structure/platform/ledge, -/obj/structure/platform/ledge{ - dir = 4 +/obj/structure/cable/green{ + icon_state = "0-2" }, -/obj/structure/platform_deco/ledge{ - dir = 5 - }, -/turf/simulated/open, -/area/hallway/medical/upper) +/obj/machinery/power/apc/east, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_1/central) "aLf" = ( /turf/unsimulated/floor/plating, /area/centcom/ferry) @@ -5215,60 +5517,44 @@ /obj/structure/table/steel, /turf/unsimulated/floor/plating, /area/centcom/specops) -"aLu" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 +"aLr" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 }, -/obj/machinery/atmospherics/portables_connector{ - dir = 4 - }, -/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, -/obj/machinery/access_button{ - dir = 1; - pixel_x = -28; - pixel_y = 12 - }, -/obj/effect/map_effect/marker/airlock{ - frequency = 3002; - master_tag = "airlock_horizon_deck_2_port_1"; - name = "airlock_horizon_deck_2_port_1" - }, -/obj/effect/map_effect/marker_helper/airlock/interior, -/turf/simulated/floor, -/area/maintenance/wing/port/far) -"aLH" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/corner/red/diagonal, -/obj/effect/floor_decal/spline/plain/corner{ - dir = 8 +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/structure/cable/green{ + icon_state = "1-4" }, /turf/simulated/floor/lino, -/area/horizon/cafeteria) +/area/horizon/service/dining_hall) +"aLx" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/xenobiology/hazardous) "aLJ" = ( /obj/structure/grille, /obj/effect/map_effect/perma_light/starlight/wide, /turf/space/dynamic, /area/template_noop) -"aLK" = ( -/obj/machinery/atmospherics/pipe/simple/visible/purple{ +"aLR" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/structure/platform{ dir = 4 }, -/obj/machinery/door/firedoor, -/obj/structure/window/shuttle/scc_space_ship, -/obj/structure/grille, /turf/simulated/floor/plating, -/area/engineering/atmos/propulsion) +/area/horizon/maintenance/deck_2/wing/port/near) "aLT" = ( /obj/machinery/vending/coffee/free{ pixel_x = -1 @@ -5281,10 +5567,33 @@ }, /turf/unsimulated/floor, /area/centcom/holding) +"aLW" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/obj/machinery/camera/network/research{ + dir = 4; + c_tag = "Xenobio - Cell E"; + network = list("Xeno_Bio") + }, +/turf/simulated/floor/reinforced, +/area/horizon/rnd/xenobiology) "aLX" = ( /obj/structure/table/wood, /turf/simulated/floor/holofloor/carpet, /area/horizon/holodeck/source_meetinghall) +"aMa" = ( +/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/effect/floor_decal/corner/dark_green/full{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_3/central) "aMc" = ( /obj/machinery/camera/network/prison{ c_tag = "Security - Cell C"; @@ -5308,15 +5617,6 @@ }, /turf/simulated/floor/tiled, /area/horizon/security/brig) -"aMh" = ( -/obj/effect/floor_decal/corner/lime{ - dir = 10 - }, -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/turf/simulated/floor/tiled, -/area/medical/morgue/lower) "aMk" = ( /obj/effect/floor_decal/corner/dark_blue{ dir = 9 @@ -5333,9 +5633,14 @@ /obj/random/pottedplant, /turf/unsimulated/floor/wood, /area/centcom/specops) -"aMt" = ( -/turf/simulated/open, -/area/hallway/medical/upper) +"aMw" = ( +/obj/machinery/computer/ship/engines/terminal{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/outline/security, +/obj/machinery/light/small, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/shuttle/intrepid/flight_deck) "aMx" = ( /obj/machinery/door/airlock/external{ dir = 1; @@ -5349,108 +5654,78 @@ /obj/effect/shuttle_landmark/ccia/start, /turf/simulated/floor/shuttle/dark_blue, /area/shuttle/transport1) -"aMD" = ( -/obj/structure/bed/stool/chair/office/bridge{ +"aMB" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/structure/trash_pile, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/port/far) +"aMI" = ( +/obj/structure/disposalpipe/trunk{ dir = 4 }, -/obj/effect/floor_decal/corner/paleblue/diagonal, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/heads/cmo) -"aME" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 1 - }, -/turf/simulated/wall/shuttle/unique/scc/mining{ - icon_state = "1,9" - }, -/area/shuttle/mining) -"aMG" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/floor_decal/corner/purple{ - dir = 5 - }, -/obj/structure/reagent_dispensers/peppertank/spacecleaner{ - pixel_y = 32 - }, -/turf/simulated/floor/tiled, -/area/horizon/custodial) -"aNc" = ( -/obj/structure/closet/emcloset, -/obj/item/storage/toolbox/emergency, -/obj/item/crowbar/red, -/obj/structure/cable{ - icon_state = "0-2" - }, -/obj/effect/floor_decal/corner/dark_green{ - dir = 5 - }, -/obj/effect/floor_decal/industrial/outline/emergency_closet, -/obj/machinery/power/apc/super/critical/north, -/turf/simulated/floor/tiled, -/area/horizon/crew_quarters/cryo/living_quarters_lift) -"aNd" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/map_effect/door_helper/unres, -/obj/machinery/door/firedoor{ - dir = 4 - }, -/obj/machinery/door/blast/regular{ - density = 0; +/obj/machinery/disposal/small{ dir = 4; - icon_state = "pdoor0"; - id = "bridge blast"; - name = "Bridge Blast Doors"; - opacity = 0 + pixel_x = -12 }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/airlock/glass_command{ - dir = 1; - id_tag = "bridge_foyer"; - name = "Bridge"; - req_one_access = list(19) - }, -/turf/simulated/floor/tiled, -/area/bridge/controlroom) -"aNe" = ( -/obj/structure/bed/stool/chair{ - dir = 8 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/carpet, -/area/crew_quarters/heads/hop/xo) -"aNf" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 6 - }, -/obj/random/pottedplant, /turf/simulated/floor/wood, -/area/crew_quarters/lounge/secondary) -"aNk" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 9 - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/r_n_d/circuit_imprinter, -/obj/structure/railing/mapped{ +/area/horizon/medical/psych) +"aMJ" = ( +/obj/effect/floor_decal/corner/lime/diagonal, +/obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 }, -/turf/simulated/floor/carpet/rubber, -/area/rnd/lab) -"aNn" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/bed/handrail{ + dir = 8 + }, +/obj/structure/closet/walllocker/medical/secure{ + name = "O- Blood Locker"; + pixel_x = 32 + }, +/obj/item/reagent_containers/blood/OMinus, +/obj/item/reagent_containers/blood/OMinus, +/obj/item/reagent_containers/blood/OMinus, +/turf/simulated/floor/tiled/white, +/area/horizon/shuttle/intrepid/medical) +"aMS" = ( +/turf/simulated/wall/shuttle/unique/scc/mining{ + icon_state = "7,4" + }, +/area/horizon/shuttle/mining) +"aMX" = ( +/turf/simulated/wall, +/area/horizon/maintenance/deck_2/wing/port/far) +"aNh" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/door/airlock/maintenance_hatch{ + dir = 4; + req_access = list(12) + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/aft) +"aNi" = ( /obj/structure/cable/green{ icon_state = "4-8" }, -/turf/simulated/floor/tiled/dark, -/area/turret_protected/ai_upload_foyer) +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_engineering{ + dir = 4; + name = "Engineering Hallway"; + req_one_access = list(10) + }, +/obj/effect/map_effect/door_helper/unres{ + dir = 8 + }, +/turf/simulated/floor/tiled/full, +/area/horizon/engineering/hallway/interior) "aNp" = ( /obj/effect/floor_decal/corner/dark_blue/full{ dir = 1 @@ -5461,6 +5736,39 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/security/evidence_storage) +"aNt" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/item/device/radio/intercom/north, +/turf/simulated/floor/wood, +/area/horizon/service/bar) +"aNz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/atmospherics/omni/mixer{ + active_power_usage = 7500; + tag_east = 2; + tag_north = 1; + tag_north_con = 0.5; + tag_south = 1; + tag_south_con = 0.5; + tag_west_con = 0; + use_power = 0 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/atmos/turbine) "aND" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 8 @@ -5471,57 +5779,23 @@ icon_state = "wood" }, /area/centcom/control) -"aNE" = ( -/obj/structure/cable/green{ - icon_state = "1-2" +"aNH" = ( +/obj/machinery/conveyor{ + id = "cargo_1" }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_engineering{ - dir = 1; - name = "Engineering Hallway"; - req_access = list(10) - }, -/obj/effect/map_effect/door_helper/unres{ - dir = 1 - }, -/turf/simulated/floor/tiled/full, -/area/hallway/engineering/rust) -"aNO" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/fuel, -/turf/simulated/wall/shuttle/unique/scc/mining{ - icon_state = "4,7" - }, -/area/shuttle/mining) -"aNR" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"aNS" = ( -/obj/effect/floor_decal/industrial/hatch_door/yellow, -/obj/machinery/door/firedoor{ - req_one_access = list(24,11,67,73); - dir = 4 - }, -/turf/simulated/floor/tiled/dark/full, -/area/shuttle/intrepid/starboard_compartment) -"aNT" = ( -/obj/effect/floor_decal/corner_wide/purple{ - dir = 4 - }, -/obj/effect/floor_decal/corner_wide/purple{ - dir = 9 - }, -/obj/machinery/light{ +/obj/structure/railing/mapped{ dir = 8 }, -/obj/structure/closet/walllocker/firecloset{ - pixel_x = -32 +/obj/effect/floor_decal/industrial/warning{ + dir = 10 }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/white, -/area/rnd/xenoarch_atrium) +/turf/simulated/floor/tiled, +/area/horizon/hangar/operations) +"aNM" = ( +/obj/machinery/power/tesla_beacon, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/storage_hard) "aNV" = ( /obj/structure/table/wood{ pixel_x = -4; @@ -5556,153 +5830,174 @@ icon_state = "wood" }, /area/centcom/distress_prep) -"aNX" = ( -/obj/machinery/fusion_fuel_injector/mapped{ - dir = 4; - initial_id_tag = "horizon_fusion" +"aNY" = ( +/obj/effect/floor_decal/plaque{ + desc = "The Stellar Corporate Conglomerate Logo Engraved in bronze."; + desc_extended = "The unbreakable chainlink, the one thing holding the Orion Spur together..."; + name = "Commemorative SCC Plaque" }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/simulated/floor/carpet/rubber, -/area/engineering/engine_room/rust) -"aNZ" = ( -/obj/structure/table/standard, -/obj/effect/floor_decal/corner/black{ - dir = 6 - }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/requests_console/east{ - name = "Machinist Request Console"; - department = "Machinist Workshop" - }, -/obj/item/paper_bin{ - pixel_x = 5 - }, -/obj/item/pen/black{ - pixel_x = 7 - }, -/obj/item/folder/yellow{ - pixel_x = -6 - }, -/turf/simulated/floor/tiled, -/area/operations/lower/machinist) -"aOc" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/effect/floor_decal/corner/dark_green{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/central) -"aOh" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/effect/floor_decal/corner/dark_green/full{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/horizon/stairwell/central) -"aOk" = ( -/obj/structure/railing/mapped{ +/obj/effect/floor_decal/spline/fancy/wood/full, +/mob/living/simple_animal/corgi/fox/Chauncey, +/turf/simulated/floor/wood, +/area/horizon/command/heads/captain) +"aOa" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/clothing/glasses/sunglasses, +/obj/item/screwdriver, +/obj/structure/platform, +/obj/structure/table/reinforced, +/turf/simulated/floor/tiled/dark, +/area/horizon/maintenance/deck_2/wing/starboard/far) +"aOd" = ( +/obj/structure/flora/tree/jungle/small/patience, +/turf/simulated/floor/grass/no_edge, +/area/horizon/service/cafeteria) +"aOg" = ( +/obj/effect/floor_decal/spline/fancy/wood{ dir = 8 }, -/obj/structure/railing/mapped, -/obj/machinery/button/remote/blast_door{ - dir = 4; - id = "shutters_deck2_hydroponicswindowssafety"; - name = "Viewing Shutters"; - pixel_x = 19; - pixel_y = 5 +/obj/machinery/firealarm/west, +/obj/structure/cable/green{ + icon_state = "1-2" }, -/turf/simulated/open, -/area/horizon/hydroponics) -"aOs" = ( -/obj/machinery/alarm/south, +/obj/structure/engineer_maintenance/electric, +/obj/structure/engineer_maintenance/pipe{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/horizon/command/heads/rd) +"aOl" = ( +/obj/structure/bed/stool/chair/office/bridge{ + dir = 4 + }, +/obj/effect/floor_decal/corner/dark_blue{ + dir = 6 + }, +/obj/item/device/radio/intercom/east{ + pixel_y = 36 + }, +/obj/machinery/keycard_auth{ + pixel_x = 31; + pixel_y = 26 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/command/bridge/aibunker) +"aOp" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled, +/area/horizon/operations/warehouse) +"aOr" = ( +/obj/machinery/embedded_controller/radio/simple_docking_controller/escape_pod{ + frequency = 1380; + id_tag = "escape_pod_4"; + pixel_y = 25; + tag_door = "escape_pod_4_hatch" + }, +/obj/item/modular_computer/console/preset/civilian{ + dir = 4 + }, +/turf/simulated/floor/shuttle/dark_blue, +/area/horizon/shuttle/escape_pod/pod3) +"aOt" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/aux{ + dir = 4 + }, +/obj/machinery/door/airlock/highsecurity{ + dir = 8; + name = "Restricted Area" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/industrial/hatch/yellow, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/door/blast/regular/open{ + name = "Command Bunker Lockdown"; + id = "command_bunker_lockdown" + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/command/bridge/aibunker) +"aOw" = ( +/turf/simulated/floor/tiled, +/area/horizon/engineering/hallway/fore) +"aOA" = ( +/obj/structure/table/standard, +/turf/simulated/floor/tiled, +/area/horizon/operations/break_room) +"aOI" = ( +/turf/simulated/wall/r_wall, +/area/horizon/maintenance/substation/engineering) +"aOK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, /obj/structure/cable/green{ icon_state = "4-8" }, -/turf/simulated/floor/tiled/dark, -/area/horizon/stairwell/bridge) -"aOu" = ( -/obj/effect/floor_decal/corner/green/diagonal, -/turf/simulated/floor/tiled/white, -/area/horizon/crew_quarters/washroom/central) -"aOv" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 +/obj/structure/cable{ + icon_state = "1-2" }, -/turf/simulated/floor/plating, -/area/maintenance/wing/port/deck1) -"aOx" = ( -/obj/structure/window/shuttle/unique/scc/scout{ - icon_state = "5,4" - }, -/obj/structure/window/shuttle/unique/scc/scout/over{ - icon_state = "5,4" - }, -/turf/simulated/floor/plating, -/area/shuttle/canary) -"aOC" = ( -/obj/structure/closet/emcloset, -/obj/effect/floor_decal/industrial/outline/emergency_closet, -/obj/machinery/camera/network/supply{ - c_tag = "Operations - Hangar Starboard Fore"; - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hangar/operations) -"aOD" = ( -/obj/structure/bed/stool/chair/shuttle{ - dir = 8 - }, -/obj/machinery/light, -/turf/simulated/floor/shuttle/dark_blue, -/area/shuttle/escape_pod/pod3) -"aOE" = ( -/obj/machinery/atmospherics/binary/pump, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/dark, -/area/maintenance/aux_atmospherics/deck_2/starboard/wing) -"aOF" = ( -/obj/machinery/atmospherics/unary/freezer{ - icon_state = "freezer" - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/plating, -/area/medical/cryo) -"aOH" = ( -/obj/effect/floor_decal/corner_wide/paleblue{ - dir = 9 - }, -/obj/item/device/radio/intercom/west, -/obj/machinery/light/floor{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/hallway/medical/upper) -"aOQ" = ( -/obj/effect/floor_decal/industrial/loading/yellow, -/obj/structure/platform{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard/far) -"aOY" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/bed/stool/bar/padded/red, +/obj/structure/lattice/catwalk/indoor/grate/dark, /turf/simulated/floor, -/area/horizon/maintenance/deck_three/aft/starboard) +/area/horizon/maintenance/deck_3/aft/port) +"aOT" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/fuel{ + dir = 8 + }, +/turf/simulated/wall/shuttle/scc, +/area/horizon/shuttle/intrepid/port_storage) +"aOU" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 10 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/structure/railing/mapped, +/turf/simulated/floor/tiled, +/area/horizon/operations/loading) +"aPe" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/atmospherics/unary/vent_pump/high_volume, +/obj/machinery/door/blast/shutters/open{ + dir = 2; + id = "intrepid_bay_outer"; + name = "Intrepid Shutter" + }, +/obj/effect/map_effect/marker/airlock/shuttle{ + cycle_to_external_air = 1; + master_tag = "airlock_shuttle_intrepid"; + name = "airlock_shuttle_intrepid"; + req_one_access = null; + shuttle_tag = "Intrepid" + }, +/obj/effect/map_effect/marker_helper/airlock/exterior, +/turf/simulated/floor/plating, +/area/horizon/shuttle/intrepid/main_compartment) +"aPf" = ( +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/effect/floor_decal/spline/plain{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/lino, +/area/horizon/service/dining_hall) "aPg" = ( /obj/machinery/recharger/wallcharger{ pixel_x = 5; @@ -5719,24 +6014,19 @@ icon_state = "dark_preview" }, /area/centcom/specops) -"aPl" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ +"aPr" = ( +/obj/structure/railing/mapped{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 +/obj/structure/railing/mapped, +/obj/structure/railing/mapped{ + dir = 8 }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/full, -/area/bridge) -"aPp" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/maintenance/wing/starboard/far) +/turf/simulated/open, +/area/horizon/service/hydroponics) +"aPs" = ( +/turf/simulated/wall/shuttle/scc_space_ship/cardinal, +/area/horizon/engineering/break_room) "aPt" = ( /obj/effect/decal/fake_object{ desc = "A vine-covered shrine to the three faces of Sk'akh, a prominent faith in the Unathi people."; @@ -5753,46 +6043,15 @@ icon_state = "water" }, /area/horizon/holodeck/source_moghes) -"aPw" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_command{ - dir = 1; - name = "Break Room"; - req_one_access = list(19,28,38) +"aPx" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 6 +/obj/machinery/atmospherics/pipe/manifold/visible/yellow{ + dir = 1 }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 9 - }, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "bridge blast"; - name = "Bridge Blast Doors"; - opacity = 0; - dir = 8 - }, -/obj/effect/map_effect/door_helper/level_access/command_foyer, -/turf/simulated/floor/tiled, -/area/bridge/minibar) -"aPy" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/platform, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/corner/dark_blue/diagonal, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/firedoor{ - dir = 4 - }, -/obj/structure/engineer_maintenance/pipe/wall, -/turf/simulated/floor/tiled, -/area/bridge) +/turf/simulated/floor/plating, +/area/horizon/rnd/xenoarch/atrium) "aPA" = ( /obj/effect/floor_decal/carpet{ dir = 8 @@ -5806,214 +6065,113 @@ }, /turf/simulated/floor/holofloor/carpet, /area/horizon/holodeck/source_courtroom) -"aPD" = ( -/obj/effect/floor_decal/corner/green/diagonal, -/obj/structure/bed/stool/chair/plastic{ - dir = 4 - }, -/obj/structure/engineer_maintenance/pipe/wall, -/turf/simulated/floor/tiled/white, -/area/medical/ward/isolation) -"aPY" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/airlock/glass_command{ - dir = 4; - name = "Expedition EVA Storage"; - req_one_access = list(18,47) - }, -/turf/simulated/floor/tiled/full, -/area/storage/eva) -"aQa" = ( -/obj/structure/platform_stairs/full/east_west_cap{ - dir = 8 - }, -/obj/structure/platform/cutout, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 +"aPM" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 9 }, /turf/simulated/floor/tiled, -/area/bridge/cciaroom/lounge) -"aQh" = ( -/obj/machinery/button/remote/airlock{ - dir = 5; - id = "rep_office_a"; - name = "representative door bolts"; - pixel_x = 25; - pixel_y = 39; - specialfunctions = 4 - }, -/obj/machinery/button/remote/airlock{ - dir = 5; - id = "rep_office_a"; - name = "representative door control"; - pixel_x = 35; - pixel_y = 39 - }, -/obj/machinery/button/switch/windowtint{ - dir = 9; - id = "repa"; - pixel_x = 35; - pixel_y = 30; - req_access = list(38) - }, -/obj/machinery/light_switch{ - dir = 9; - pixel_x = 25; - pixel_y = 30 - }, -/obj/effect/landmark/start{ - name = "Corporate Liaison" - }, -/obj/structure/bed/stool/chair/office/bridge/generic{ +/area/horizon/hangar/intrepid/interstitial) +"aPN" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ dir = 4 }, -/obj/machinery/button/switch/windowtint{ - dir = 9; - id = "rep"; - pixel_x = 27; - pixel_y = -23; - req_access = list(38) +/obj/effect/map_effect/marker/airlock{ + frequency = 1003; + master_tag = "airlock_horizon_deck_1_aft_propulsion_2"; + name = "airlock_horizon_deck_1_aft_propulsion_2" }, -/turf/simulated/floor/carpet, -/area/lawoffice/representative) -"aQj" = ( -/obj/effect/map_effect/window_spawner/full/reinforced/grille/firedoor, -/turf/simulated/floor, -/area/bridge/controlroom) -"aQr" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/simulated/floor/plating, +/area/horizon/engineering/atmos/propulsion/starboard) +"aPO" = ( +/obj/structure/cable/yellow{ + icon_state = "0-8" }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/structure/cable{ - icon_state = "4-8" +/obj/machinery/power/terminal, +/obj/machinery/power/sensor{ + name = "Powernet Sensor - SM Reactor Output"; + name_tag = "SM Reactor Output" }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/structure/cable{ - icon_state = "1-8" +/obj/machinery/button/remote/blast_door{ + desc = "A remote control-switch for the engine control room blast doors."; + dir = 4; + id = "EngineEmitterPortWest"; + name = "Supermatter Reactor Room Blast Doors"; + pixel_x = 24; + req_one_access = list(11,24) }, +/turf/simulated/floor/plating, +/area/horizon/engineering/reactor/supermatter/mainchamber) +"aQm" = ( +/obj/effect/decal/cleanable/dirt, /obj/structure/lattice/catwalk/indoor/grate/dark, /turf/simulated/floor/plating, -/area/maintenance/engineering) -"aQs" = ( -/obj/structure/closet, -/obj/random/loot, -/obj/random/loot, -/obj/random/loot, -/turf/simulated/floor/plating, -/area/maintenance/wing/port) +/area/horizon/maintenance/deck_2/wing/starboard/far) +"aQo" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/turf/simulated/floor/tiled, +/area/horizon/storage/primary) "aQu" = ( /obj/effect/floor_decal/industrial/warning/corner{ dir = 4 }, /turf/unsimulated/floor/plating, /area/centcom/ferry) -"aQw" = ( -/obj/machinery/power/terminal{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/warning{ +"aQv" = ( +/obj/structure/lattice, +/obj/structure/platform/ledge{ dir = 1 }, -/obj/structure/cable{ - icon_state = "0-4" +/turf/simulated/open, +/area/horizon/hallway/primary/deck_2/central) +"aQx" = ( +/turf/simulated/wall/r_wall, +/area/horizon/tcommsat/chamber) +"aQC" = ( +/obj/structure/tank_wall/hydrogen{ + icon_state = "h15" }, -/turf/simulated/floor/plating, -/area/shuttle/quark/cargo_hold) -"aQy" = ( -/obj/machinery/suit_cycler/captain, -/obj/item/clothing/suit/space/void/captain, -/obj/item/tank/jetpack/oxygen, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 4 - }, -/obj/machinery/light, -/obj/item/clothing/head/helmet/space/void/captain, -/obj/item/clothing/mask/gas/half, -/turf/simulated/floor/wood, -/area/crew_quarters/captain) +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/airless, +/area/horizon/engineering/atmos) "aQE" = ( /obj/effect/floor_decal/industrial/warning/corner, /turf/simulated/floor/tiled/dark, /area/shuttle/mercenary) -"aQF" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 9 +"aQG" = ( +/obj/structure/table/stone/marble, +/obj/machinery/reagentgrinder{ + pixel_x = 4; + pixel_y = 18 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 +/obj/machinery/light{ + dir = 1 }, -/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 - }, -/obj/effect/landmark/start{ - name = "Scientist" - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/rnd/conference) -"aQN" = ( -/obj/machinery/firealarm/north, -/obj/structure/cargo_receptacle/horizon, -/turf/simulated/floor/tiled, -/area/operations/storage) -"aQO" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 4 - }, -/obj/effect/map_effect/marker/airlock{ - frequency = 1002; - master_tag = "airlock_horizon_deck_3_fore_starboard_1"; - name = "airlock_horizon_deck_3_fore_starboard_1" - }, -/turf/simulated/floor, -/area/maintenance/bridge) -"aQS" = ( -/obj/effect/floor_decal/corner/black{ +/obj/item/reagent_containers/glass/beaker/teapot, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/service/bar) +"aQP" = ( +/obj/machinery/artifact_scanpad, +/obj/effect/floor_decal/spline/plain{ dir = 10 }, -/obj/effect/floor_decal/industrial/outline/grey, -/obj/structure/table/steel, -/obj/item/storage/box/flares{ - pixel_x = -6; - pixel_y = 11 +/turf/simulated/floor/bluegrid, +/area/horizon/rnd/xenoarch/isolation_a) +"aQT" = ( +/obj/structure/bookcase, +/obj/item/book/manual/stasis, +/obj/item/book/manual/psych, +/obj/item/book/manual/wiki/security_space_law, +/obj/item/book/manual/wiki/station_procedure, +/obj/machinery/camera/network/command{ + c_tag = "Bridge - Captain's Office Aft" }, -/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) +/obj/item/book/manual/tcaf_pamphlet, +/turf/simulated/floor/carpet, +/area/horizon/command/heads/captain) "aQU" = ( /obj/structure/cable/green{ icon_state = "1-2" @@ -6026,15 +6184,65 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled, /area/horizon/security/investigations_hallway) -"aRr" = ( -/obj/effect/floor_decal/industrial/warning{ +"aRa" = ( +/turf/simulated/wall, +/area/horizon/maintenance/deck_1/operations/starboard/amidships) +"aRc" = ( +/obj/effect/map_effect/window_spawner/full/reinforced/grille/firedoor, +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id = "bridge blast"; + name = "Bridge Blast Doors"; + opacity = 0 + }, +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id = "bridge blast"; + name = "Bridge Blast Doors"; + opacity = 0 + }, +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/turf/simulated/floor, +/area/horizon/command/bridge/bridge_crew) +"aRj" = ( +/turf/simulated/wall/r_wall, +/area/horizon/command/heads/xo) +"aRk" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/railing/mapped{ +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/engine_room/rust) +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/horizon/rnd/hallway) +"aRo" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 9 + }, +/obj/machinery/requests_console/west{ + department = "Mining"; + departmentType = 2; + name = "Mining Requests Console" + }, +/turf/simulated/floor/tiled, +/area/horizon/operations/mining_main/refinery) "aRD" = ( /obj/structure/bed/stool/chair{ dir = 4 @@ -6052,81 +6260,29 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/unsimulated/floor/rubber_carpet, /area/antag/jockey) -"aRF" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable{ - d2 = 2; - icon_state = "0-2" - }, -/obj/structure/cable{ - icon_state = "2-4" +"aRO" = ( +/obj/structure/railing/mapped, +/obj/structure/lattice, +/obj/structure/platform/ledge{ + dir = 1 }, +/turf/simulated/open, +/area/horizon/hallway/primary/deck_2/central) +"aRR" = ( /obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/maintenance/wing/port/far) -"aRG" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/item/hullbeacon/red, -/obj/machinery/light/spot{ - dir = 8 +/obj/structure/cable{ + icon_state = "1-8" }, -/turf/simulated/floor/plating, -/area/hangar/intrepid) -"aRJ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/table/stone/marble, -/obj/item/reagent_containers/glass/rag/advanced/idris{ - pixel_x = -8; - pixel_y = -1 - }, -/obj/item/reagent_containers/food/drinks/shaker{ - pixel_x = 2; - pixel_y = 4 - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 8 - }, -/obj/machinery/button/remote/blast_door{ - dir = 9; - id = "shutters_deck3_cafedesk"; - name = "Cafe Desk Shutters"; - pixel_x = 10; - pixel_y = -4 - }, -/obj/machinery/button/remote/blast_door{ - dir = 5; - id = "shutters_deck3_cafewindows"; - name = "Cafe Window Shutters"; - pixel_x = 10; - pixel_y = 6 - }, -/turf/simulated/floor/wood, -/area/horizon/cafeteria) -"aRM" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/structure/disposalpipe/junction{ - dir = 8; - icon_state = "pipe-j2" - }, -/obj/effect/floor_decal/corner_wide/green{ - dir = 5 - }, -/obj/structure/cable/green{ +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/structure/cable{ icon_state = "4-8" }, -/turf/simulated/floor/tiled/white, -/area/hallway/medical/upper) +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/main/starboard) "aRW" = ( /obj/item/device/flashlight/lantern, /obj/item/pickaxe, @@ -6138,38 +6294,16 @@ }, /turf/simulated/floor/exoplanet/barren, /area/centcom/shared_dream) -"aRX" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/platform{ - dir = 4 +"aSf" = ( +/obj/structure/plasticflaps/airtight, +/obj/machinery/door/blast/regular{ + _wifi_id = "chapel_driver"; + dir = 4; + id = "chapel_driver" }, -/obj/structure/platform{ - dir = 8 - }, -/turf/simulated/floor/carpet/rubber, -/area/bridge/controlroom) -"aSb" = ( -/obj/machinery/shieldwallgen, -/obj/structure/cable/green{ - icon_state = "0-4" - }, -/obj/effect/floor_decal/industrial/outline/security, -/turf/simulated/floor/plating, -/area/engineering/bluespace_drive) -"aSc" = ( -/obj/structure/table/stone/marble, -/obj/item/material/ashtray/bronze{ - pixel_x = -8; - pixel_y = 8 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/shutters{ - dir = 2; - id = "bar_shutter"; - name = "Bar Shutter" - }, -/turf/simulated/floor/tiled/dark, -/area/horizon/bar) +/obj/effect/floor_decal/industrial/hatch/red, +/turf/simulated/floor/reinforced, +/area/horizon/service/chapel/office) "aSh" = ( /obj/effect/floor_decal/spline/plain{ dir = 1 @@ -6177,120 +6311,69 @@ /obj/structure/weightlifter, /turf/simulated/floor/holofloor/tiled, /area/horizon/holodeck/source_gym) -"aSl" = ( -/obj/machinery/light/small/emergency{ - dir = 4 +"aSk" = ( +/obj/random/dirt_75, +/turf/simulated/floor, +/area/horizon/maintenance/deck_2/wing/starboard/far) +"aSv" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 }, -/obj/structure/platform, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard) -"aSn" = ( -/obj/structure/cable/green{ - icon_state = "0-8" - }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 6 - }, -/obj/structure/bed/handrail{ +/obj/effect/floor_decal/corner/grey{ dir = 8 }, -/obj/machinery/power/apc/canary/east{ - req_one_access = list(73,74,11) - }, -/obj/machinery/atmospherics/binary/pump/fuel{ - dir = 1; - name = "Fuel Tank to Thrusters" - }, -/turf/simulated/floor/tiled/dark/full, -/area/shuttle/canary) -"aSo" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/bed/stool/bar/padded/red{ - dir = 1 - }, /turf/simulated/floor/lino, -/area/horizon/bar) -"aSq" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - icon_state = "1-2" +/area/horizon/service/bar) +"aSy" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 9 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/airlock/maintenance_hatch{ - dir = 1; - frequency = 1379; - id_tag = "engine_airlock_exterior"; - locked = 1; - name = "Supermatter Reactor Airlock Exterior"; - req_one_access = list(11,24) +/obj/structure/table/reinforced/wood, +/obj/item/stamp/captain{ + pixel_x = -8; + pixel_y = 15 }, -/obj/machinery/access_button{ - command = "cycle_exterior"; - frequency = 1379; - master_tag = "engine_airlock_control"; - name = "Supermatter Reactor Airlock Access"; - pixel_x = 23; - req_one_access = list(11,24) +/obj/item/paper_bin{ + pixel_x = -6 }, -/obj/machinery/door/firedoor, -/obj/machinery/embedded_controller/radio/airlock/access_controller{ - id_tag = "engine_airlock_control"; - name = "Supermatter Reactor Airlock Access Console"; - pixel_x = 38; - tag_exterior_door = "engine_airlock_exterior"; - tag_interior_door = "engine_airlock_interior" +/obj/item/stamp/denied{ + pixel_x = 1; + pixel_y = 15 }, -/turf/simulated/floor/tiled/full, -/area/engineering/engine_airlock) -"aSu" = ( -/obj/structure/cable/green{ - icon_state = "4-8" +/obj/machinery/newscaster/security_unit/north{ + pixel_y = 4; + dir = 8; + pixel_x = -10 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 +/obj/machinery/recharger/wallcharger{ + pixel_x = 5; + pixel_y = 20 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/corner/mauve{ - dir = 5 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/rnd/hallway) -"aSA" = ( -/turf/simulated/floor/carpet/rubber, -/area/operations/lower/machinist) -"aSC" = ( /obj/machinery/light{ - dir = 4 - }, -/obj/structure/filingcabinet/filingcabinet{ - pixel_x = 10; - pixel_y = 1 - }, -/obj/structure/filingcabinet/chestdrawer{ - pixel_x = -6; - pixel_y = 1 - }, -/obj/item/device/flashlight/lamp/lava/red{ - pixel_x = -7; - pixel_y = 14 - }, -/obj/effect/floor_decal/corner/beige/full{ dir = 1 }, -/turf/simulated/floor/tiled, -/area/security/vacantoffice) -"aSD" = ( -/obj/effect/floor_decal/spline/plain, -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled/dark, -/area/hallway/primary/central_one) +/obj/item/pen/fountain/captain{ + pixel_x = -5 + }, +/obj/item/folder/sec{ + pixel_y = 5; + pixel_x = 9 + }, +/obj/item/folder/red{ + pixel_x = 9 + }, +/obj/item/paper/monitorkey{ + pixel_y = -6; + pixel_x = 9 + }, +/turf/simulated/floor/wood, +/area/horizon/command/heads/captain) +"aSz" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/hangar/port) "aSE" = ( /obj/structure/table/reinforced/steel, /obj/item/device/magnetic_lock, @@ -6302,26 +6385,6 @@ }, /turf/unsimulated/floor/rubber_carpet, /area/centcom/control) -"aSF" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4; - maxhealth = 140 - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 6 - }, -/obj/structure/table/standard, -/obj/item/storage/box/cups{ - pixel_y = 15; - pixel_x = 8 - }, -/obj/item/storage/box/cups{ - pixel_y = 4; - pixel_x = 8 - }, -/turf/simulated/floor/wood, -/area/bridge/upperdeck) "aSG" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 6 @@ -6329,82 +6392,17 @@ /obj/structure/lattice/catwalk/indoor/grate/dark, /turf/simulated/floor/plating, /area/shuttle/mercenary) -"aSL" = ( -/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/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/corner/brown{ - dir = 9 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/operations/loading) -"aSO" = ( -/obj/structure/foamedmetal, -/obj/structure/shuttle_part/scc_space_ship{ - icon_state = "d2-2-f" - }, -/turf/simulated/floor/plating, -/area/maintenance/wing/port/far) -"aSR" = ( -/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 - }, +"aSN" = ( +/obj/structure/grille, /obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/airlock/glass_mining{ +/obj/structure/window/shuttle/scc_space_ship/cardinal, +/obj/machinery/door/blast/shutters/open{ dir = 4; - name = "Mining"; - req_one_access = list(31,48,67) + id = "kitchen_window_shutters"; + name = "Viewing Shutter" }, -/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{ - dir = 4 - }, -/obj/machinery/light/small, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/dark/full, -/area/bridge/aibunker) +/area/horizon/service/kitchen/freezer) "aSZ" = ( /obj/structure/grille, /obj/machinery/door/firedoor, @@ -6424,26 +6422,16 @@ /obj/machinery/atmospherics/unary/vent_pump/on, /turf/simulated/floor/tiled/white, /area/horizon/security/autopsy_laboratory) -"aTo" = ( -/obj/machinery/disposal/small/north, -/obj/structure/disposalpipe/trunk{ - dir = 1 +"aTh" = ( +/obj/structure/cable/green, +/obj/effect/map_effect/window_spawner/full/reinforced/polarized/grille/firedoor{ + id = "HoS Windows" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 7 - }, -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/obj/machinery/light, -/turf/simulated/floor/wood, -/area/lawoffice/representative) +/turf/simulated/floor/tiled/dark/full, +/area/horizon/command/heads/hos) +"aTi" = ( +/turf/simulated/wall/r_wall, +/area/horizon/service/kitchen) "aTq" = ( /obj/effect/floor_decal/corner/paleblue/diagonal{ dir = 8 @@ -6451,27 +6439,29 @@ /obj/structure/bed/roller, /turf/simulated/floor/tiled/white, /area/merchant_station) -"aTv" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/machinery/atmospherics/unary/freezer{ - dir = 4; - icon_state = "freezer" - }, -/obj/machinery/light, -/turf/simulated/floor/plating, -/area/rnd/xenoarch_atrium) -"aTx" = ( -/obj/structure/bed/stool/chair/padded/black{ +"aTs" = ( +/obj/structure/bed/handrail{ dir = 4 }, -/obj/effect/floor_decal/spline/fancy/wood{ +/obj/effect/floor_decal/corner/grey/diagonal, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/white, +/area/horizon/shuttle/intrepid/buffet) +"aTy" = ( +/obj/effect/floor_decal/corner/green/diagonal, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/obj/effect/landmark/start{ - name = "Chaplain" +/obj/machinery/power/apc/south, +/obj/structure/cable/green{ + icon_state = "0-8" }, -/turf/simulated/floor/wood, -/area/chapel/office) +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/white, +/area/horizon/crew/washroom/deck_2) "aTz" = ( /obj/effect/decal/fake_object{ dir = 4; @@ -6507,56 +6497,59 @@ name = "shallow water" }, /area/horizon/holodeck/source_konyang) -"aTA" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 +"aTG" = ( +/obj/structure/table/wood, +/obj/item/modular_computer/laptop/preset/representative{ + pixel_x = -1; + pixel_y = 5 }, -/turf/simulated/floor/tiled, -/area/operations/office) -"aTP" = ( -/obj/machinery/atmospherics/pipe/simple/visible/purple, -/turf/simulated/wall/shuttle/scc_space_ship/cardinal, -/area/engineering/engine_room/turbine) -"aTR" = ( -/obj/machinery/door/airlock/maintenance{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled, -/area/maintenance/wing/starboard/deck1) -"aTT" = ( +/turf/simulated/floor/carpet, +/area/horizon/repoffice/consular_two) +"aTK" = ( +/obj/structure/cable/green, /obj/structure/cable/green{ - icon_state = "4-8" + icon_state = "1-8" }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/machinery/power/sensor{ + name = "Powernet Sensor - Deck 2 and 3 Security Subgrid"; + name_tag = "Deck 2 and 3 Security Subgrid" }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 +/obj/machinery/power/apc/low/south, +/turf/simulated/floor/plating, +/area/horizon/maintenance/substation/security) +"aTL" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 9 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/gen_treatment) -"aTZ" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 1 +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/item/storage/toolbox/mechanical{ + pixel_y = 8 }, +/obj/structure/table/rack, +/obj/item/device/spaceflare, +/obj/item/device/spaceflare, +/obj/item/device/spaceflare, +/obj/item/device/spaceflare, +/obj/item/device/spaceflare, +/obj/item/device/spaceflare, /turf/simulated/floor/tiled/dark, -/area/engineering/break_room) -"aUb" = ( -/obj/effect/floor_decal/spline/fancy/wood/cee{ +/area/horizon/hangar/control) +"aTN" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 5 + }, +/obj/machinery/light{ dir = 1 }, -/obj/structure/railing/mapped{ - dir = 4 +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled, +/area/horizon/rnd/hallway) +"aTY" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 6 }, -/obj/structure/bed/stool/chair/padded/black{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/hallway/primary/central_one) +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_2/fore) "aUg" = ( /obj/structure/lattice, /obj/structure/grille/broken, @@ -6574,10 +6567,6 @@ }, /turf/simulated/floor/plating, /area/shuttle/skipjack) -"aUk" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/plating, -/area/hangar/intrepid) "aUl" = ( /obj/structure/closet/secure_closet/refrigerator/standard, /obj/item/storage/box/fancy/egg_box, @@ -6588,23 +6577,17 @@ /obj/item/reagent_containers/food/drinks/carton/milk, /turf/unsimulated/floor, /area/centcom/bar) -"aUv" = ( -/obj/structure/cable/green{ - icon_state = "4-8" +"aUu" = ( +/obj/structure/platform{ + dir = 1 }, -/obj/effect/floor_decal/corner_wide/yellow{ - dir = 10 +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/structure/window/reinforced, +/obj/machinery/door/firedoor{ + dir = 4 }, /turf/simulated/floor/tiled, -/area/hallway/engineering/rust) -"aUw" = ( -/obj/machinery/door/airlock/glass{ - dir = 1; - name = "Horizon Dining Hall" - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/full, -/area/horizon/crew_quarters/lounge/bar) +/area/horizon/command/bridge/upperdeck) "aUy" = ( /obj/structure/table/standard, /obj/item/folder/sec{ @@ -6614,23 +6597,56 @@ /obj/effect/floor_decal/corner/dark_blue/full, /turf/simulated/floor/tiled/dark, /area/horizon/security/interrogation/monitoring) -"aUC" = ( -/obj/structure/table/rack{ +"aUz" = ( +/obj/machinery/door/firedoor, +/obj/structure/grille/diagonal, +/obj/structure/window/shuttle/scc_space_ship, +/turf/simulated/floor/reinforced, +/area/horizon/service/dining_hall) +"aUF" = ( +/obj/machinery/light/floor{ + dir = 1 + }, +/obj/structure/extinguisher_cabinet/north, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_3/central) +"aUI" = ( +/obj/machinery/iv_drip, +/obj/effect/floor_decal/industrial/warning, +/obj/effect/floor_decal/industrial/outline/red, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/icu) +"aUJ" = ( +/obj/structure/table/reinforced/steel, +/obj/machinery/recharger{ + pixel_y = 5; + pixel_x = -4 + }, +/obj/machinery/power/outlet{ + pixel_y = 4; + pixel_x = 7 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/bluespace_drive/monitoring) +"aUP" = ( +/obj/structure/platform, +/obj/structure/platform_deco, +/turf/simulated/floor/reinforced, +/area/horizon/command/bridge/controlroom) +"aUS" = ( +/obj/machinery/atmospherics/pipe/simple/visible/universal{ dir = 8 }, -/obj/effect/floor_decal/corner/yellow/diagonal, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/item/aicard, -/obj/item/circuitboard/security/mining{ - pixel_y = 4 +/obj/effect/floor_decal/industrial/warning/cee{ + dir = 4 }, -/obj/item/circuitboard/autolathe, -/obj/item/aiModule/reset{ - pixel_y = -4 - }, -/obj/machinery/alarm/south, -/turf/simulated/floor/tiled/dark, -/area/engineering/storage/tech) +/obj/machinery/firealarm/north, +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor/plating, +/area/horizon/hallway/primary/deck_3/port/docks) "aUV" = ( /obj/effect/floor_decal/corner/beige{ dir = 9 @@ -6644,46 +6660,58 @@ /obj/item/folder/sec, /turf/simulated/floor/tiled/white, /area/horizon/security/forensic_laboratory) -"aUX" = ( -/obj/structure/table/standard, -/obj/effect/floor_decal/corner/brown/full{ +"aUY" = ( +/obj/machinery/firealarm/east, +/obj/effect/floor_decal/corner/dark_blue{ dir = 4 }, -/obj/item/device/destTagger, -/obj/item/paper_scanner, -/obj/item/device/quikpay{ - destinationact = "Operations" +/obj/effect/floor_decal/corner/lime{ + dir = 10 }, -/obj/random/pottedplant_small{ - pixel_x = 9; - pixel_y = 16 +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/light/floor{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/storage/eva) +"aUZ" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 5 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/vending/snack, /turf/simulated/floor/tiled, -/area/operations/office) -"aVe" = ( -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/full, -/area/engineering/lobby) -"aVg" = ( -/turf/simulated/floor/plating, -/area/maintenance/wing/port/deck1) -"aVk" = ( -/obj/effect/map_effect/window_spawner/full/reinforced/polarized/grille/firedoor{ - id = "consularB" +/area/horizon/hangar/intrepid) +"aVa" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 6 }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/shuttle/mining) +"aVu" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 7 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/green{ - icon_state = "0-2" + icon_state = "4-8" }, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "bridge blast"; - name = "Bridge Blast Doors"; - opacity = 0 - }, -/turf/simulated/floor, -/area/lawoffice/consular_two) +/turf/simulated/floor/wood, +/area/horizon/command/heads/captain) "aVv" = ( /obj/machinery/door/airlock/glass_centcom{ name = "Valkyrie's Rest Kitchen"; @@ -6691,44 +6719,50 @@ }, /turf/unsimulated/floor, /area/centcom/bar) -"aVC" = ( -/obj/machinery/iv_drip, -/obj/effect/floor_decal/industrial/warning, -/obj/effect/floor_decal/industrial/outline/red, -/obj/machinery/light{ - dir = 1 +"aVx" = ( +/obj/structure/cable{ + icon_state = "1-2" }, -/turf/simulated/floor/tiled/white, -/area/medical/icu) -"aVF" = ( -/obj/structure/closet/emcloset, -/obj/effect/floor_decal/corner/brown/full{ +/obj/machinery/atmospherics/pipe/simple/hidden/aux{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 8 }, -/obj/effect/floor_decal/industrial/outline/emergency_closet, -/obj/machinery/light{ +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 8 }, -/turf/simulated/floor/tiled, -/area/operations/office) -"aVK" = ( -/turf/simulated/wall/shuttle/scc_space_ship/cardinal, -/area/maintenance/wing/starboard/far) -"aVM" = ( -/obj/machinery/power/apc/west, -/obj/structure/cable/green{ - icon_state = "0-4" +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/operations/starboard/amidships) +"aVz" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/portable_atmospherics/canister/hydrogen, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/reactor/indra/mainchamber) +"aVG" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + dir = 4; + name = "Residential Deck Lifts" }, -/obj/effect/floor_decal/industrial/warning/full, -/obj/structure/sign/biohazard{ - pixel_x = -32 +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/structure/closet/secure_closet/freezer/kois/spores, -/turf/simulated/floor/tiled/freezer{ - name = "cooled tiles"; - temperature = 253.15 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 }, -/area/horizon/kitchen/freezer) +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/full, +/area/horizon/crew/resdeck/living_quarters_lift) "aVQ" = ( /obj/effect/floor_decal/corner/paleblue/diagonal, /obj/item/reagent_containers/hypospray, @@ -6747,98 +6781,25 @@ /obj/structure/reagent_dispensers/water_cooler, /turf/simulated/floor/tiled, /area/horizon/security/lobby) -"aVV" = ( -/obj/effect/floor_decal/corner_wide/yellow{ - dir = 5 +"aWj" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/blast/shutters{ + dir = 8; + id = "r-ust_north"; + name = "INDRA Reactor Fore Storage Shutters" }, -/obj/machinery/power/apc/north, -/obj/structure/cable/green{ - icon_state = "0-4" +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/reactor/indra/mainchamber) +"aWt" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 10 }, -/turf/simulated/floor/tiled, -/area/hallway/engineering/rust) -"aVY" = ( -/obj/machinery/computer/ship/navigation{ - dir = 4 - }, -/obj/effect/floor_decal/corner/dark_blue/full{ +/obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 }, -/obj/structure/platform, -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/platform_deco{ - dir = 5 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge/controlroom) -"aWa" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/obj/effect/floor_decal/spline/plain/purple{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, +/obj/machinery/light, /turf/simulated/floor/tiled, -/area/horizon/hydroponics) -"aWd" = ( -/turf/simulated/wall/shuttle/scc_space_ship/cardinal, -/area/server) -"aWn" = ( -/obj/structure/closet/secure_closet/engineering_personal, -/obj/effect/floor_decal/corner/yellow{ - dir = 6 - }, -/obj/effect/floor_decal/industrial/outline/operations, -/turf/simulated/floor/tiled, -/area/engineering/locker_room) -"aWo" = ( -/obj/machinery/atmospherics/pipe/manifold4w/visible, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology/xenoflora) -"aWr" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/aux{ - dir = 6 - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ - dir = 5 - }, -/turf/simulated/floor/plating, -/area/maintenance/engineering) +/area/horizon/rnd/eva) "aWv" = ( /obj/structure/shuttle/engine/propulsion{ name = "spaceship engine"; @@ -6852,26 +6813,29 @@ }, /turf/unsimulated/floor/plating, /area/centcom/distress_prep) -"aWx" = ( -/obj/structure/grille, -/obj/structure/window/shuttle/scc_space_ship, -/turf/simulated/floor/plating, -/area/shuttle/escape_pod/pod1) "aWz" = ( /obj/structure/table/reinforced/steel, /turf/unsimulated/floor, /area/centcom/legion/hangar5) -"aWB" = ( -/obj/random/loot, -/obj/structure/railing/mapped{ - dir = 4 +"aWE" = ( +/obj/machinery/door/firedoor/multi_tile{ + dir = 1 }, -/obj/structure/closet, -/obj/effect/floor_decal/industrial/warning{ - dir = 6 +/obj/machinery/door/airlock/multi_tile/glass{ + dir = 2; + name = "Medical Reception" }, -/turf/simulated/floor/plating, -/area/maintenance/research_port) +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 4; + icon_state = "shutter0"; + id = "LCKDshutters"; + name = "MedBay Lockdown Shutters"; + opacity = 0 + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/full, +/area/horizon/medical/reception) "aWF" = ( /obj/structure/window/reinforced{ dir = 8 @@ -6893,37 +6857,57 @@ /obj/effect/floor_decal/spline/plain, /turf/simulated/floor/exoplanet/grass, /area/centcom/shared_dream) -"aWN" = ( -/obj/machinery/power/breakerbox, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/cobweb, -/turf/simulated/floor/plating, -/area/maintenance/wing/port/far) -"aWO" = ( -/obj/effect/floor_decal/corner_wide/green{ +"aWQ" = ( +/obj/machinery/door/firedoor, +/obj/structure/grille, +/obj/structure/window/shuttle/scc_space_ship, +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id = "bridge blast"; + name = "Bridge Blast Doors"; + opacity = 0 + }, +/obj/machinery/door/blast/shutters{ + dir = 4; + id = "shutters_deck3_xo"; + name = "Safety Shutter" + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/command/heads/xo) +"aWU" = ( +/obj/structure/table/reinforced/steel, +/obj/item/storage/box/gloves{ + pixel_x = 2; + pixel_y = 17 + }, +/obj/item/clothing/glasses/safety/goggles{ + pixel_y = 4 + }, +/obj/item/clothing/glasses/safety/goggles{ + pixel_y = -2 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/service/hydroponics/lower) +"aXa" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 1 }, -/obj/effect/floor_decal/industrial/warning/corner{ +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 1 }, -/turf/simulated/floor/tiled/white, -/area/hallway/medical) -"aWP" = ( -/turf/simulated/wall, -/area/hangar/control) -"aWW" = ( -/obj/effect/floor_decal/corner/beige/full{ - dir = 8 +/obj/structure/disposalpipe/junction{ + dir = 8; + icon_state = "pipe-j2" }, -/obj/effect/floor_decal/industrial/warning{ - dir = 9 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge/aibunker) -"aWZ" = ( -/turf/simulated/wall/r_wall, -/area/rnd/xenoarch_storage) +/turf/simulated/floor/tiled, +/area/horizon/rnd/hallway) "aXb" = ( /obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction, /obj/structure/sign/radiation{ @@ -6931,15 +6915,26 @@ }, /turf/simulated/open/airless, /area/horizon/exterior) -"aXe" = ( -/obj/structure/tank_wall{ - icon_state = "m-4" +"aXc" = ( +/obj/effect/floor_decal/corner_wide/lime{ + dir = 10 }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 +/obj/random/pottedplant, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/reception) +"aXd" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 6 }, -/turf/simulated/floor/plating, -/area/engineering/atmos) +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/light/floor{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/horizon/rnd/hallway/secondary) "aXg" = ( /obj/structure/closet/gimmick{ name = "emergency response team wardrobe" @@ -6960,14 +6955,6 @@ icon_state = "dark_preview" }, /area/centcom/specops) -"aXh" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/hangar/auxiliary) "aXk" = ( /turf/simulated/floor/holofloor/beach/sand{ dir = 10; @@ -6988,21 +6975,6 @@ /obj/structure/lattice/catwalk/indoor/grate, /turf/simulated/floor/plating, /area/horizon/security/hallway) -"aXq" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/effect/floor_decal/corner/black{ - dir = 6 - }, -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/hangar/intrepid) "aXs" = ( /obj/effect/floor_decal/corner/lime{ dir = 5 @@ -7012,25 +6984,40 @@ }, /turf/unsimulated/floor, /area/centcom/spawning) -"aXv" = ( -/obj/structure/cable{ - icon_state = "1-2" +"aXt" = ( +/obj/structure/table/standard, +/obj/item/paper_bin{ + pixel_y = 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, -/obj/structure/platform/ledge{ +/obj/item/pen, +/turf/simulated/floor/carpet/purple, +/area/horizon/command/heads/rd) +"aXu" = ( +/obj/effect/floor_decal/spline/fancy/wood/corner{ dir = 1 }, -/obj/structure/platform/ledge, -/turf/simulated/open, -/area/horizon/hallway/deck_three/primary/central) +/turf/simulated/floor/wood, +/area/horizon/service/chapel/main) +"aXw" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 10 + }, +/obj/effect/floor_decal/spline/plain, +/obj/structure/table/reinforced, +/obj/machinery/button/remote/blast_door{ + id = "shutters_deck2_hydroponicsdesk"; + name = "Desk Shutters"; + pixel_y = 8; + pixel_x = 6 + }, +/obj/machinery/button/remote/blast_door{ + id = "shutters_deck2_hydroponicswindows"; + name = "Window Shutters"; + pixel_y = 8; + pixel_x = -7 + }, +/turf/simulated/floor/tiled, +/area/horizon/service/hydroponics) "aXA" = ( /obj/structure/sink{ dir = 4; @@ -7048,80 +7035,101 @@ name = "dirt" }, /area/horizon/holodeck/source_adhomai) -"aXC" = ( -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "0-4" - }, -/obj/structure/cable/green{ - icon_state = "12-0" - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 +"aXJ" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/visible/green{ + dir = 9 }, +/obj/structure/window/shuttle/scc_space_ship/cardinal, /turf/simulated/floor/plating, -/area/maintenance/wing/starboard/deck1) +/area/horizon/engineering/atmos/turbine) "aXL" = ( /obj/structure/table/wood, /obj/item/clothing/accessory/holster/armpit, /obj/item/gun/energy/pistol, /turf/simulated/floor/carpet, /area/merchant_station) -"aXM" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/open, -/area/maintenance/wing/starboard) -"aXN" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/item/device/radio/intercom/east, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/effect/floor_decal/corner/dark_green/full{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/horizon/stairwell/central) -"aXV" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 5 - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, +"aXR" = ( +/turf/simulated/wall, +/area/horizon/hallway/primary/deck_2/fore) +"aXU" = ( +/obj/machinery/portable_atmospherics/powered/scrubber, +/obj/effect/floor_decal/industrial/outline/grey, /turf/simulated/floor/plating, -/area/maintenance/wing/starboard) -"aYc" = ( +/area/horizon/hangar/auxiliary) +"aXW" = ( +/obj/machinery/atmospherics/pipe/manifold4w/visible/yellow, +/obj/structure/lattice/catwalk/indoor, /obj/structure/cable/green{ icon_state = "4-8" }, +/obj/machinery/door/window/southleft{ + dir = 4; + name = "Atmospheric Tanks"; + req_access = list(24) + }, +/obj/machinery/atmospherics/pipe/simple/visible/supply{ + dir = 5 + }, +/turf/simulated/floor/plating, +/area/horizon/engineering/atmos/air) +"aXX" = ( +/obj/effect/floor_decal/corner_wide/purple{ + dir = 10 + }, +/obj/effect/floor_decal/corner_wide/purple{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/xenoarch/atrium) +"aYf" = ( +/obj/structure/table/standard, +/obj/item/paper_bin{ + pixel_x = -4; + pixel_y = 2 + }, +/obj/item/pen{ + pixel_x = -6 + }, +/obj/item/paper_scanner{ + pixel_x = 9; + pixel_y = 3 + }, +/obj/item/folder/yellow{ + pixel_x = -5 + }, +/turf/simulated/floor/carpet, +/area/horizon/command/heads/chief) +"aYj" = ( +/obj/structure/table/standard, +/obj/item/device/suit_cooling_unit, +/obj/item/device/suit_cooling_unit, +/obj/item/device/suit_cooling_unit, +/obj/item/device/suit_cooling_unit, +/obj/item/device/suit_cooling_unit, +/turf/simulated/floor/tiled, +/area/horizon/engineering/storage_eva) +"aYk" = ( /obj/structure/cable/green{ - icon_state = "2-4" + icon_state = "1-8" }, -/turf/simulated/floor/tiled/dark/full, -/area/shuttle/intrepid/junction_compartment) -"aYe" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 1 +/obj/structure/cable/green{ + icon_state = "4-8" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/firedoor, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/full, -/area/maintenance/security_port) +/turf/simulated/floor/carpet, +/area/horizon/repoffice/consular_two) "aYo" = ( /obj/structure/table/rack, /obj/item/tank/emergency_oxygen/double{ @@ -7144,49 +7152,57 @@ }, /turf/unsimulated/floor/plating, /area/centcom/specops) -"aYs" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 5 - }, -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/obj/machinery/alarm/north{ +"aYr" = ( +/obj/machinery/button/remote/airlock{ dir = 4; - pixel_y = 0; - pixel_x = 10 + id = "sat2"; + name = "Scuttling Device Bolts"; + pixel_x = 22; + pixel_y = 40; + req_access = list(20); + specialfunctions = 4 }, -/obj/structure/table/wood, -/obj/machinery/chemical_dispenser/bar_soft/full{ - dir = 8; - pixel_x = 3 - }, -/obj/item/storage/box/drinkingglasses{ - pixel_x = -13; - pixel_y = 7 - }, -/turf/simulated/floor/wood, -/area/lawoffice/consular) -"aYt" = ( +/obj/effect/floor_decal/industrial/hatch/red, /obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/structure/tank_wall/oxygen, -/turf/simulated/floor/plating, -/area/engineering/atmos/air) -"aYC" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/obj/structure/platform_stairs/full/east_west_cap{ +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 8 }, -/obj/structure/platform/cutout, -/obj/structure/platform{ - dir = 1 +/obj/machinery/atmospherics/pipe/simple/hidden/aux{ + dir = 6 }, -/turf/simulated/floor/lino, -/area/chapel/main) +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/command/bridge/aibunker) +"aYz" = ( +/obj/machinery/button/remote/blast_door{ + dir = 4; + id = "shutters_custodialdesk"; + name = "Custodial Desk Shutter"; + pixel_x = 22; + pixel_y = -7; + req_access = list(26) + }, +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/button/remote/blast_door{ + dir = 4; + id = "shutters_custodialgarage"; + name = "Custodial Garage Shutter"; + pixel_x = 22; + pixel_y = 7; + req_access = list(26) + }, +/obj/structure/railing/mapped, +/turf/simulated/floor/tiled/dark, +/area/horizon/service/custodial) +"aYB" = ( +/obj/random/loot, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/port) "aYF" = ( /turf/simulated/wall/shuttle/unique/tcfl{ icon_state = "8,6" @@ -7196,20 +7212,21 @@ /obj/effect/floor_decal/spline/fancy/wood/corner, /turf/simulated/floor/wood/maple, /area/horizon/holodeck/source_cafe) -"aYL" = ( -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 2; - icon_state = "shutter0"; - id = "LCKDshutters"; - name = "Medical Lockdown Shutters"; - opacity = 0 +"aYK" = ( +/turf/simulated/wall/r_wall, +/area/horizon/stairwell/engineering/deck_2) +"aYN" = ( +/obj/structure/cable/green{ + icon_state = "4-8" }, -/obj/effect/map_effect/window_spawner/full/reinforced/polarized/firedoor{ - id = "psych" - }, -/turf/simulated/floor/tiled/dark/full, -/area/medical/psych) +/obj/structure/lattice/catwalk/indoor, +/turf/simulated/floor/plating, +/area/horizon/engineering/bluespace_drive) +"aYO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/random/dirt_75, +/turf/simulated/floor, +/area/horizon/maintenance/deck_2/wing/starboard/far) "aYQ" = ( /obj/effect/floor_decal/corner/red{ dir = 10 @@ -7229,108 +7246,78 @@ icon_state = "white" }, /area/centcom/holding) -"aYV" = ( -/obj/effect/floor_decal/corner_wide/yellow{ - dir = 10 +"aYU" = ( +/obj/structure/table/reinforced/steel, +/obj/item/folder/yellow{ + pixel_x = -7; + pixel_y = 8 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/engineering/break_room) -"aYX" = ( -/obj/structure/table/wood, -/turf/simulated/floor/carpet, -/area/chapel/office) -"aYY" = ( -/obj/effect/floor_decal/corner/lime{ - dir = 10 - }, -/obj/machinery/door/airlock/multi_tile/glass{ - dir = 2; - name = "Emergency Supplies Storage" - }, -/obj/machinery/door/firedoor/multi_tile{ +/obj/machinery/light{ dir = 1 }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/full, -/area/medical/morgue/lower) -"aZa" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 7 - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 1 - }, -/obj/machinery/alarm/north{ - pixel_y = 0; - dir = 8; - pixel_x = -43 - }, -/turf/simulated/floor/wood, -/area/lawoffice/representative) +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/reactor/indra/monitoring) "aZd" = ( /obj/machinery/atmospherics/pipe/simple/visible/green{ dir = 4 }, /turf/space/dynamic, /area/horizon/exterior) -"aZg" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 12 +"aZe" = ( +/obj/effect/map_effect/window_spawner/full/reinforced/polarized/grille/firedoor{ + id = "hra" }, -/obj/structure/mirror{ - pixel_x = 27 +/obj/structure/cable/green{ + icon_state = "0-4" }, -/turf/simulated/floor/tiled/freezer, -/area/medical/washroom) +/turf/simulated/floor, +/area/horizon/command/bridge/cciaroom) "aZl" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/effect/large_stock_marker, /turf/unsimulated/floor, /area/antag/raider) -"aZp" = ( -/obj/structure/bed/stool/chair/sofa/left/red, -/turf/simulated/floor/carpet/red, -/area/horizon/library) +"aZm" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_mining{ + dir = 1; + name = "Operations Bay"; + req_one_access = list(26,29,31,48,67,70) + }, +/obj/effect/map_effect/door_helper/unres{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/horizon/operations/office) "aZs" = ( /obj/structure/window/shuttle/unique/ccia{ icon_state = "1,3" }, /turf/simulated/floor/plating, /area/shuttle/transport1) -"aZx" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 5 +"aZH" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/item/material/shard{ + icon_state = "small" }, -/obj/machinery/light/floor{ - dir = 1 +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/port/far) +"aZI" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable{ + icon_state = "4-8" }, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/starboard) -"aZB" = ( -/obj/machinery/door/airlock/maintenance{ +/obj/machinery/door/airlock/engineering{ dir = 4; - name = "Research and Development Maintenance"; - req_one_access = list(12,47) - }, -/obj/machinery/door/firedoor{ - dir = 4 + name = "Deck 1 Civilian Substation"; + req_one_access = list(11,24) }, /obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/dark/full, -/area/crew_quarters/heads/hor) -"aZF" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 4 - }, -/obj/structure/table/wood, -/obj/random/pottedplant_small{ - pixel_x = 9 - }, -/turf/simulated/floor/carpet, -/area/lawoffice/representative) +/turf/simulated/floor/tiled/full, +/area/horizon/maintenance/substation/hangar) "aZL" = ( /obj/structure/closet{ icon_door = "white"; @@ -7359,9 +7346,6 @@ icon_state = "white" }, /area/centcom/legion) -"aZM" = ( -/turf/simulated/wall/r_wall, -/area/horizon/security/head_of_security) "aZO" = ( /obj/structure/flora/grass/jungle, /obj/effect/floor_decal/spline/plain/corner, @@ -7373,51 +7357,6 @@ }, /turf/simulated/floor/exoplanet/grass, /area/centcom/shared_dream) -"aZP" = ( -/obj/machinery/door/firedoor, -/obj/effect/floor_decal/industrial/hatch/red, -/obj/structure/plasticflaps/airtight, -/obj/machinery/door/window/southleft{ - name = "Mass Driver External Access"; - req_access = list(26) - }, -/obj/machinery/door/window/northleft{ - name = "Mass Driver Internal Access"; - req_access = list(26) - }, -/turf/simulated/floor/reinforced{ - roof_type = null - }, -/area/horizon/custodial/disposals) -"aZR" = ( -/obj/machinery/maneuvering_engine, -/obj/effect/landmark/entry_point/aft{ - name = "aft, port maneuvering engines" - }, -/turf/simulated/wall/shuttle/scc_space_ship/cardinal, -/area/maintenance/wing/port/far) -"aZS" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/visible, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/structure/reagent_dispensers/watertank, -/obj/item/reagent_containers/glass/bucket, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology/xenoflora) -"aZU" = ( -/obj/effect/floor_decal/corner/brown{ - dir = 9 - }, -/obj/structure/engineer_maintenance/electric{ - dir = 8 - }, -/obj/structure/engineer_maintenance/pipe, -/turf/simulated/floor/tiled, -/area/operations/office) "aZW" = ( /obj/machinery/light/spot, /obj/effect/floor_decal/corner/paleblue{ @@ -7425,76 +7364,59 @@ }, /turf/unsimulated/floor, /area/centcom/bar) -"bae" = ( -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, +"bab" = ( +/obj/effect/floor_decal/industrial/outline/grey, +/obj/structure/reagent_dispensers/cookingoil, /turf/simulated/floor/tiled/freezer{ name = "cooled tiles"; temperature = 253.15 }, -/area/horizon/kitchen/freezer) -"bak" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/random/junk, -/turf/simulated/floor/plating, -/area/horizon/maintenance/deck_two/fore/starboard) +/area/horizon/service/kitchen/freezer) +"baf" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/structure/disposalpipe/segment{ + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/full, +/area/horizon/hallway/primary/deck_3/port) +"bah" = ( +/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/hangar/intrepid) +"bai" = ( +/obj/effect/floor_decal/corner/dark_blue/full{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/horizon/command/bridge/upperdeck) +"baj" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/tiled/full, +/area/horizon/engineering/hallway/fore) "bal" = ( /obj/structure/flora/grass/jungle, /turf/simulated/floor/exoplanet/grass, /area/centcom/shared_dream) -"bao" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/structure/tank_wall/nitrous_oxide{ - icon_state = "h10" - }, -/turf/simulated/floor/plating, -/area/engineering/atmos/air) -"bap" = ( -/obj/machinery/disposal/small/north, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/effect/floor_decal/corner/dark_green/full, -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/newscaster/south, -/turf/simulated/floor/tiled, -/area/horizon/crew_quarters/cryo/living_quarters_lift) -"baq" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"bas" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 8 - }, -/obj/structure/railing/mapped, -/turf/simulated/floor/tiled/dark, -/area/hallway/primary/central_one) -"baA" = ( -/obj/item/modular_computer/console/preset/command{ - dir = 8 - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 5 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/turf/simulated/floor/wood, -/area/crew_quarters/heads/hop/xo) "baE" = ( /obj/structure/cable/green{ icon_state = "0-8" @@ -7519,80 +7441,87 @@ }, /turf/unsimulated/floor, /area/centcom/spawning) -"baG" = ( -/obj/machinery/atmospherics/pipe/manifold/visible{ - dir = 1 +"baL" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 10 }, -/obj/machinery/light/floor{ - dir = 1 +/obj/effect/floor_decal/corner/yellow, +/obj/effect/floor_decal/corner/dark_blue{ + dir = 4 }, -/obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology/xenoflora) -"baH" = ( -/obj/effect/shuttle_landmark/horizon/dock/deck_3/port_1, -/obj/machinery/door/airlock/external, -/obj/effect/map_effect/marker/airlock/docking{ - landmark_tag = "nav_horizon_dock_deck_3_port_2"; - master_tag = "airlock_horizon_dock_deck_3_port_2"; - name = "airlock_horizon_dock_deck_3_port_2" - }, -/obj/effect/map_effect/marker_helper/airlock/exterior, -/obj/machinery/access_button{ - dir = 1; - pixel_x = -28; - pixel_y = 12 +/area/horizon/engineering/atmos) +"baU" = ( +/obj/machinery/atmospherics/pipe/simple/visible/green{ + dir = 9 }, +/obj/machinery/light, /turf/simulated/floor/plating, -/area/horizon/hallway/deck_three/primary/port/docks) -"baR" = ( -/obj/effect/floor_decal/corner_wide/blue, -/obj/effect/floor_decal/corner_wide/yellow{ - dir = 8 +/area/horizon/engineering/reactor/supermatter/mainchamber) +"bbh" = ( +/obj/effect/map_effect/door_helper/unres{ + dir = 1 + }, +/obj/machinery/door/airlock/command{ + dir = 1; + name = "Teleporter"; + req_access = list(19) }, -/obj/effect/floor_decal/spline/plain/corner, /obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/blue{ - dir = 8 +/turf/simulated/floor/tiled/full, +/area/horizon/command/teleporter) +"bbi" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 }, -/obj/machinery/door/airlock/glass_atmos{ - dir = 4; - name = "Atmospherics Locker Room"; - req_access = list(24) +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" }, /turf/simulated/floor/tiled/full, -/area/engineering/atmos/storage) -"baS" = ( +/area/horizon/hallway/primary/deck_2/central) +"bbj" = ( +/obj/effect/floor_decal/corner/black{ + dir = 6 + }, +/obj/structure/railing/mapped{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/hangar/auxiliary) +"bbl" = ( +/obj/structure/closet/crate, +/obj/random/loot, /obj/effect/floor_decal/industrial/warning{ dir = 4 }, -/obj/structure/tank_wall/air{ - icon_state = "air9" +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/security_port) +"bbq" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" }, /turf/simulated/floor/plating, -/area/engineering/atmos/air) -"baV" = ( -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/machinery/door/airlock/maintenance_hatch{ +/area/horizon/engineering/reactor/supermatter/mainchamber) +"bbs" = ( +/obj/machinery/camera/network/first_deck{ + c_tag = "First Deck - Hangar Entrance"; + dir = 1 + }, +/obj/structure/bed/stool/chair/padded/brown{ + dir = 8 + }, +/obj/effect/floor_decal/spline/fancy/wood/cee{ dir = 4 }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/maintenance/operations) -"bbg" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/fuel, -/turf/simulated/wall/shuttle/scc, -/area/shuttle/intrepid/port_storage) -"bbr" = ( -/obj/machinery/hologram/holopad, -/turf/simulated/floor/carpet, -/area/operations/qm) -"bbu" = ( -/obj/machinery/botany/editor, -/obj/effect/floor_decal/corner/mauve/full, -/obj/machinery/light, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology/xenoflora) +/turf/simulated/floor/wood, +/area/horizon/hallway/primary/deck_1/central) "bbv" = ( /obj/item/device/magnetic_lock, /obj/item/device/magnetic_lock, @@ -7606,116 +7535,61 @@ icon_state = "dark_preview" }, /area/centcom/specops) -"bbw" = ( -/obj/effect/floor_decal/spline/fancy/wood{ +"bbF" = ( +/obj/structure/closet/walllocker/medical/secure{ + name = "Stabilization Kit"; + pixel_x = -32 + }, +/obj/item/bodybag/cryobag, +/obj/item/bodybag/cryobag, +/obj/item/bodybag/cryobag, +/obj/effect/floor_decal/industrial/warning{ dir = 4 }, -/obj/structure/table/reinforced/wood, -/obj/item/reagent_containers/glass/beaker/teapot{ - pixel_y = 4 +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 5 }, -/turf/simulated/floor/wood, -/area/bridge/minibar) -"bby" = ( -/obj/machinery/light{ +/obj/effect/floor_decal/corner_wide/green{ + dir = 9 + }, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/item/tank/oxygen, +/obj/item/tank/oxygen, +/obj/item/tank/oxygen, +/obj/item/tank/oxygen, +/obj/item/clothing/mask/breath/medical, +/obj/item/clothing/mask/breath/medical, +/obj/item/clothing/mask/breath/medical, +/obj/item/clothing/mask/breath/medical, +/obj/effect/floor_decal/industrial/warning/corner{ dir = 8 }, -/obj/effect/floor_decal/industrial/warning{ - dir = 10 +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 }, -/turf/simulated/floor/reinforced, -/area/rnd/xenobiology) -"bbB" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/engineering/bluespace_drive) -"bbG" = ( -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/machinery/light, -/obj/machinery/vending/robotics, -/obj/effect/floor_decal/corner/black/full, -/turf/simulated/floor/tiled, -/area/operations/lower/machinist) +/turf/simulated/floor/tiled/white, +/area/horizon/medical/gen_treatment) "bbH" = ( /obj/structure/window/shuttle/unique/ccia{ icon_state = "1,1" }, /turf/simulated/floor/plating, /area/shuttle/transport1) -"bbI" = ( -/turf/simulated/wall/r_wall, -/area/tcommsat/chamber) -"bbJ" = ( -/obj/effect/floor_decal/industrial/outline/grey, -/obj/structure/reagent_dispensers/cookingoil, -/turf/simulated/floor/tiled/freezer{ - name = "cooled tiles"; - temperature = 253.15 - }, -/area/horizon/kitchen/freezer) -"bbL" = ( -/obj/machinery/power/breakerbox, -/obj/effect/decal/cleanable/cobweb2, -/obj/effect/floor_decal/industrial/warning/full, +"bbK" = ( +/obj/machinery/atmospherics/portables_connector, +/obj/machinery/portable_atmospherics/canister/empty, /turf/simulated/floor/plating, -/area/maintenance/wing/port/far) -"bbN" = ( -/obj/machinery/atmospherics/omni/filter{ - tag_east = 2; - tag_north = 8; - tag_south = 1 +/area/horizon/engineering/atmos/air) +"bbQ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + icon_state = "1-2" }, -/obj/effect/floor_decal/corner/yellow{ - dir = 9 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/dark, -/area/engineering/engine_waste) -"bbP" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/green{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"bbV" = ( -/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/lattice/catwalk/indoor/grate/dark, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/turf/simulated/floor, -/area/maintenance/engineering_ladder) -"bbW" = ( -/obj/structure/table/stone/marble, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 8 - }, -/obj/item/flame/candle, -/obj/machinery/button/switch/windowtint{ - dir = 8; - id = "chapel_outer"; - pixel_x = -22; - pixel_y = 3 - }, -/turf/simulated/floor/wood, -/area/chapel/main) +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/xenobiology/foyer) "bbX" = ( /obj/effect/floor_decal/industrial/warning{ dir = 1 @@ -7734,75 +7608,50 @@ }, /turf/space/dynamic, /area/horizon/exterior) -"bcb" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/simulated/floor/tiled/dark, -/area/maintenance/wing/port/far) -"bcc" = ( -/obj/effect/floor_decal/corner/mauve/diagonal, -/turf/simulated/floor/tiled/white, -/area/rnd/lab) -"bce" = ( -/obj/effect/floor_decal/industrial/warning/corner, -/obj/machinery/alarm/south, -/obj/machinery/atmospherics/binary/pump/high_power{ - dir = 4; - name = "Intake to Hot Loop"; - target_pressure = 15000 - }, -/obj/effect/floor_decal/industrial/hatch_tiny/firefighting_closet, -/turf/simulated/floor/plating, -/area/engineering/engine_room) "bcg" = ( /obj/structure/shuttle_part/scc_space_ship{ icon_state = "d3-2-f" }, /turf/space/dynamic, /area/template_noop) -"bcj" = ( -/obj/effect/floor_decal/corner/yellow{ - dir = 1 +"bci" = ( +/obj/structure/table/rack, +/obj/random/loot, +/obj/effect/floor_decal/corner/red/diagonal, +/turf/simulated/floor/tiled, +/area/horizon/maintenance/deck_3/aft/holodeck) +"bcu" = ( +/obj/structure/cable{ + icon_state = "4-8" }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 8 +/obj/effect/floor_decal/corner/dark_green{ + dir = 5 }, -/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 6 }, -/turf/simulated/floor/tiled/dark, -/area/engineering/atmos) -"bcm" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/structure/railing/mapped, -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/lattice/catwalk/indoor/grate, -/turf/simulated/floor, -/area/bridge) -"bco" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/machinery/light/floor{ - dir = 4 + dir = 6 }, /turf/simulated/floor/tiled, -/area/bridge/upperdeck) +/area/horizon/hangar/auxiliary) +"bcA" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 4 + }, +/obj/effect/map_effect/marker/airlock/docking{ + landmark_tag = "nav_horizon_dock_deck_3_port_4"; + master_tag = "airlock_horizon_dock_deck_3_port_4"; + name = "airlock_horizon_dock_deck_3_port_4" + }, +/turf/simulated/floor/plating, +/area/horizon/hallway/primary/deck_3/starboard/docks) +"bcB" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/horizon/engineering/bluespace_drive) "bcF" = ( /obj/machinery/vending/cigarette{ name = "hacked cigarette machine"; @@ -7810,30 +7659,15 @@ }, /turf/simulated/floor/tiled/dark/full, /area/antag/raider) -"bcG" = ( -/turf/simulated/wall, -/area/maintenance/substation/engineering/lower) -"bcH" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ +"bcK" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/visible/black{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/platform_deco{ - dir = 4 - }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 5 - }, -/obj/structure/disposalpipe/junction{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/bridge) +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/reactor/supermatter/waste) "bcN" = ( /obj/effect/floor_decal/industrial/warning{ dir = 1 @@ -7841,25 +7675,47 @@ /obj/item/hullbeacon/red, /turf/simulated/floor/reinforced/airless, /area/horizon/exterior) -"bcR" = ( -/obj/effect/floor_decal/industrial/hatch/red, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/bluespace_drive) -"bcW" = ( +"bcQ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/loading/yellow{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/rnd/xenoarch/atrium) +"bcT" = ( +/obj/machinery/alarm/north, +/obj/machinery/chem_heater, +/obj/effect/floor_decal/industrial/hatch/grey, +/turf/simulated/floor/tiled/full, +/area/horizon/command/bridge/minibar) +"bcV" = ( +/obj/effect/floor_decal/corner_wide/yellow{ + dir = 6 + }, /obj/structure/cable/green{ - icon_state = "4-8" + icon_state = "1-2" }, -/obj/effect/floor_decal/corner/dark_green{ - dir = 1 +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 }, /turf/simulated/floor/tiled, -/area/horizon/hallway/deck_two/fore) +/area/horizon/engineering/hallway/interior) +"bcW" = ( +/turf/simulated/wall/shuttle/unique/scc/mining{ + icon_state = "fix4" + }, +/area/horizon/shuttle/mining) "bcX" = ( /obj/structure/table/reinforced/steel, /obj/effect/floor_decal/corner/red{ @@ -7873,6 +7729,29 @@ icon_state = "dark_preview" }, /area/centcom/holding) +"bcZ" = ( +/obj/machinery/atmospherics/pipe/simple/visible/red{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/engineering/atmos/propulsion/starboard) +"bda" = ( +/obj/effect/floor_decal/corner/black/full{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/power/apc/east, +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/turf/simulated/floor/tiled, +/area/horizon/operations/machinist) "bdb" = ( /obj/effect/floor_decal/corner_wide/blue{ dir = 5 @@ -7882,22 +7761,16 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/holodeck/source_pool) -"bdc" = ( -/obj/effect/floor_decal/industrial/outline/operations, -/obj/machinery/pipedispenser/disposal, -/obj/machinery/power/apc/north, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" +"bdk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/crate/trashcart, +/obj/random/loot, +/obj/random/junk, +/obj/effect/floor_decal/industrial/warning{ + dir = 9 }, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/atmos/storage) -"bdg" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/bluegrid/server, -/area/server) +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/operations/starboard/amidships) "bdm" = ( /turf/simulated/floor/holofloor/grass{ desc = "Lush, mossy grass. A staple of Konyang."; @@ -7933,32 +7806,20 @@ }, /turf/unsimulated/floor/wood, /area/centcom/evac) -"bdC" = ( -/obj/effect/floor_decal/corner/dark_green/full{ - dir = 8 +"bdD" = ( +/obj/effect/floor_decal/spline/fancy/wood, +/obj/structure/bed/stool/chair/wood{ + dir = 4 }, -/obj/effect/floor_decal/spline/plain/corner/green, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/horizon/hydroponics/lower) +/obj/structure/railing/mapped, +/turf/simulated/floor/wood, +/area/horizon/service/cafeteria) "bdE" = ( /obj/structure/window/reinforced/crescent{ dir = 8 }, /turf/simulated/floor/carpet/cyan, /area/centcom/ferry) -"bdG" = ( -/obj/machinery/power/smes/buildable/substation{ - RCon_tag = "Substation - Engineering Main" - }, -/obj/structure/cable, -/obj/structure/cable/green{ - icon_state = "0-4" - }, -/turf/simulated/floor/plating, -/area/maintenance/substation/engineering) "bdH" = ( /obj/effect/shuttle_landmark/skipjack_ship/interim{ dir = 1 @@ -7966,18 +7827,6 @@ /obj/effect/step_trigger/thrower/shuttle/east, /turf/space/transit/north, /area/template_noop) -"bdI" = ( -/obj/structure/table/rack, -/obj/random/loot, -/obj/effect/floor_decal/industrial/warning, -/obj/machinery/light/small/emergency{ - dir = 1 - }, -/turf/simulated/floor, -/area/maintenance/engineering_ladder) -"bdJ" = ( -/turf/simulated/wall/r_wall, -/area/crew_quarters/heads/hop/xo) "bdM" = ( /obj/machinery/light{ dir = 8 @@ -7994,41 +7843,24 @@ icon_state = "pool" }, /area/horizon/holodeck/source_sauna) -"bdV" = ( -/obj/structure/ship_weapon_dummy, -/turf/simulated/floor/reinforced, -/area/horizon/grauwolf) -"bdY" = ( -/obj/effect/floor_decal/corner/yellow/full{ - dir = 4 +"bdZ" = ( +/obj/structure/railing/mapped{ + dir = 8 }, -/obj/structure/sign/nosmoking_1{ - pixel_y = -32 +/obj/effect/floor_decal/corner/black{ + dir = 9 }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/vending/tool, /turf/simulated/floor/tiled/dark, -/area/engineering/storage/tech) -"beb" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 1 - }, -/obj/effect/map_effect/marker/airlock/docking{ - landmark_tag = "nav_horizon_dock_deck_3_starboard_3"; - master_tag = "airlock_horizon_dock_deck_3_starboard_3"; - name = "airlock_horizon_dock_deck_3_starboard_3" - }, -/turf/simulated/floor/plating, -/area/horizon/hallway/deck_three/primary/starboard/docks) -"bec" = ( -/obj/effect/floor_decal/corner/white{ +/area/horizon/hangar/auxiliary) +"bea" = ( +/obj/effect/floor_decal/corner/dark_blue{ dir = 5 }, -/obj/structure/cable{ - icon_state = "4-8" +/obj/structure/cable/green{ + icon_state = "2-8" }, /turf/simulated/floor/tiled, -/area/hallway/primary/aft) +/area/horizon/rnd/eva) "beg" = ( /obj/machinery/acting/changer, /obj/effect/floor_decal/corner/red{ @@ -8036,71 +7868,40 @@ }, /turf/unsimulated/floor, /area/antag/mercenary) -"bej" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 10 +"bel" = ( +/obj/structure/table/wood, +/obj/machinery/power/outlet, +/obj/item/paper_bin{ + pixel_x = 5; + pixel_y = 12 }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 +/obj/item/pen{ + pixel_x = 5; + pixel_y = 13 }, -/obj/machinery/light, -/turf/simulated/floor/tiled, -/area/horizon/crew_quarters/fitness/changing) -"bek" = ( -/obj/structure/cable{ - icon_state = "1-2" +/obj/item/paper/crumpled{ + pixel_x = -8; + pixel_y = 7 }, -/obj/effect/floor_decal/industrial/warning{ - dir = 6 +/obj/item/toy/desk/fan{ + pixel_x = -1; + pixel_y = -6 }, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"bem" = ( -/obj/structure/cable/green{ - icon_state = "1-2" +/obj/machinery/light{ + dir = 8 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/carpet/red, +/area/horizon/service/library) +"bes" = ( +/obj/effect/floor_decal/corner_wide/purple/diagonal, /obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/lattice/catwalk/indoor, -/obj/structure/railing/mapped, -/obj/structure/railing/mapped{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/engineering/bluespace_drive) -"ben" = ( -/obj/structure/lattice/catwalk/indoor/grate/damaged{ - color = "#4c535b" - }, -/obj/machinery/light/small/emergency{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"beu" = ( -/obj/machinery/atmospherics/pipe/simple/visible/black{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/hatch{ - dir = 4; - name = "Propulsion"; - req_one_access = list(11,24) - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/engineering/atmos/propulsion/starboard) -"beF" = ( -/obj/structure/bed/stool/chair/office/dark{ - dir = 8 - }, -/obj/effect/floor_decal/spline/plain{ - dir = 8 - }, -/turf/simulated/floor/carpet/rubber, -/area/engineering/bluespace_drive/monitoring) +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/test_range) +"beE" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/suit_cycler/mining/prepared, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/operations/mining_main/eva) "beK" = ( /obj/machinery/light_switch{ pixel_x = 8; @@ -8120,39 +7921,25 @@ /turf/simulated/floor/tiled/white, /area/horizon/security/forensic_laboratory) "beO" = ( -/obj/effect/map_effect/window_spawner/full/reinforced/polarized/grille/firedoor{ - id = "consularA" - }, -/obj/structure/cable/green{ - icon_state = "0-8" - }, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "bridge blast"; - name = "Bridge Blast Doors"; - opacity = 0 - }, -/turf/simulated/floor, -/area/lawoffice/consular) -"beT" = ( -/obj/structure/cable/green{ +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/structure/cable{ icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/airlock/glass_engineering{ - dir = 1; - name = "Supermatter Reactor Monitoring Room"; - req_one_access = list(11,24) +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/port/nacelle) +"beP" = ( +/obj/structure/cryofeed{ + dir = 4 }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor, +/area/horizon/crew/fitness/changing) +"beU" = ( /obj/machinery/door/firedoor, -/obj/effect/map_effect/door_helper/unres{ - dir = 1 - }, -/turf/simulated/floor/tiled/full, -/area/engineering/engine_monitoring) +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/structure/curtain/open/medical, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/surgery) "beW" = ( /obj/machinery/door/airlock/centcom{ name = "Administrative Wing"; @@ -8160,57 +7947,63 @@ }, /turf/unsimulated/floor, /area/centcom/control) -"beY" = ( -/obj/machinery/atmospherics/pipe/simple/visible/universal{ - dir = 4 +"bfd" = ( +/obj/structure/cable/green{ + icon_state = "2-8" }, -/turf/simulated/floor/tiled, -/area/maintenance/aux_atmospherics/deck_2/starboard/wing) -"bfb" = ( -/obj/structure/table/wood, -/obj/item/paper_bin, -/obj/item/folder/sec, -/obj/item/pen/blue{ - pixel_x = -2; - pixel_y = -3 +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, -/obj/item/pen/black, -/obj/item/pen/red{ - pixel_y = 3; - pixel_x = 2 - }, -/obj/item/stamp/hos, -/obj/machinery/atmospherics/unary/vent_pump/on{ +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 1 }, -/turf/simulated/floor/carpet, -/area/horizon/security/head_of_security) -"bfc" = ( -/obj/structure/railing/mapped, -/obj/structure/railing/mapped{ +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor/plating, +/area/horizon/hallway/primary/deck_2/starboard) +"bfi" = ( +/obj/machinery/door/airlock/glass_research{ + dir = 4; + id_tag = "xeno_dissection"; + name = "Dissection"; + req_access = list(55); + locked = 1 + }, +/obj/machinery/door/firedoor{ dir = 4 }, -/turf/simulated/open, -/area/maintenance/wing/starboard) -"bfk" = ( -/obj/machinery/power/breakerbox/activated{ - RCon_tag = "Deck 3 Civilian Substation" +/obj/machinery/door/blast/regular/open{ + dir = 2; + fail_secure = 1; + id = "hazardous_lockdown"; + name = "Hazardous Containment Lockdown" }, -/turf/simulated/floor, -/area/maintenance/substation/civilian_east) -"bfq" = ( -/obj/effect/floor_decal/corner/paleblue/diagonal, -/mob/living/simple_animal/cat/crusher, -/obj/machinery/hologram/holopad, +/obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/white, -/area/crew_quarters/heads/cmo) -"bfA" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/structure/tank_wall/nitrous_oxide{ - icon_state = "h16" +/area/horizon/rnd/xenobiology/hazardous) +"bfn" = ( +/obj/structure/cable/green{ + icon_state = "0-2" }, -/turf/simulated/floor/plating, -/area/engineering/atmos/air) +/obj/machinery/power/apc/east, +/obj/effect/floor_decal/corner_wide/green{ + dir = 6 + }, +/obj/effect/floor_decal/corner_wide/green{ + dir = 1 + }, +/obj/structure/table/standard, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/exam) +"bfC" = ( +/turf/simulated/open, +/area/horizon/stairwell/starboard/deck_3) "bfG" = ( /obj/effect/decal/fake_object{ density = 1; @@ -8223,16 +8016,39 @@ icon_state = "dark" }, /area/centcom/legion) -"bfN" = ( +"bfJ" = ( +/obj/structure/table/rack{ + dir = 8 + }, +/obj/item/device/multitool, +/obj/item/cell/high{ + charge = 100; + maxcharge = 15000 + }, +/obj/item/cell/high{ + charge = 100; + maxcharge = 15000 + }, +/obj/item/device/flash, +/obj/item/device/flash, +/turf/simulated/floor/plating, +/area/horizon/engineering/storage/lower) +"bfM" = ( +/obj/structure/table/standard, /obj/machinery/light{ - dir = 1 + dir = 8 }, -/obj/effect/floor_decal/corner/dark_green{ - dir = 5 +/obj/item/paper_bin, +/obj/item/pen, +/obj/item/pen/multi{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/effect/floor_decal/corner/beige/full{ + dir = 8 }, -/obj/machinery/firealarm/north, /turf/simulated/floor/tiled, -/area/hallway/primary/central_two) +/area/horizon/crew/vacantoffice) "bfO" = ( /turf/simulated/floor/holofloor/grass{ dir = 1; @@ -8247,27 +8063,39 @@ }, /turf/unsimulated/floor/plating, /area/centcom/evac) -"bfX" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 9 +"bfS" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/structure/lattice/catwalk/indoor, /turf/simulated/floor/plating, -/area/maintenance/engineering) -"bgd" = ( -/obj/effect/floor_decal/corner/dark_green/full{ - dir = 8 +/area/horizon/engineering/reactor/indra/mainchamber) +"bga" = ( +/obj/effect/floor_decal/corner_wide/black{ + dir = 10 }, -/obj/machinery/camera/network/second_deck{ - c_tag = "Second Deck - Dinner Entrance 1"; +/obj/effect/floor_decal/corner_wide/black{ dir = 4 }, -/obj/structure/engineer_maintenance/pipe{ +/obj/effect/floor_decal/industrial/warning, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible/green{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 8 }, -/obj/random/pottedplant, -/obj/machinery/firealarm/west, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_two/fore) +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/atmos/propulsion) "bgf" = ( /obj/effect/floor_decal/corner/paleblue{ dir = 5 @@ -8277,18 +8105,54 @@ }, /turf/unsimulated/floor, /area/centcom/legion) -"bgl" = ( -/obj/effect/floor_decal/corner/mauve{ - dir = 10 +"bgi" = ( +/obj/effect/floor_decal/corner/mauve/full{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, /obj/structure/cable/green{ - icon_state = "1-2" + icon_state = "4-8" }, +/obj/machinery/button/remote/airlock{ + id = "xeno_entrance_int_a"; + name = "Xenobiology External Access Bolts"; + pixel_y = -28; + req_access = list(55); + specialfunctions = 4; + dir = 4; + pixel_x = 22; + desiredstate = 1 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/xenobiology/foyer) +"bgj" = ( +/obj/effect/floor_decal/corner/mauve/full{ + dir = 1 + }, +/obj/machinery/button/remote/airlock/screamer{ + channel = "Science"; + dir = 1; + id = "server_door_lock"; + message = "The Server Room Airlock's ID lock toggle has been used."; + name = "Server Room Control"; + pixel_y = 32; + req_access = list(47); + specialfunctions = 2 + }, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/machinery/light/floor{ + dir = 4 + }, +/obj/machinery/firealarm/east, /turf/simulated/floor/tiled, -/area/rnd/hallway) +/area/horizon/rnd/hallway/secondary) "bgr" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/machinery/door/blast/odin{ @@ -8297,21 +8161,24 @@ }, /turf/unsimulated/floor/monotile, /area/antag/mercenary) -"bgz" = ( -/obj/machinery/air_sensor{ - id_tag = "supermatter_sensor"; - output = 63 +"bgt" = ( +/obj/item/modular_computer/console/preset/ai{ + dir = 8 }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/reinforced/reactor, -/area/engineering/engine_room) -"bgA" = ( -/obj/structure/shuttle_part/scc_space_ship{ - icon_state = "d3-6-f" +/turf/simulated/floor/bluegrid{ + name = "cooled mainframe floor"; + temperature = 278 }, -/turf/simulated/wall/shuttle/scc_space_ship/cardinal, -/area/maintenance/wing/starboard) +/area/horizon/ai/chamber) +"bgu" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/weapons/longbow) "bgB" = ( /obj/structure/filingcabinet/chestdrawer, /obj/machinery/recharger/wallcharger{ @@ -8319,18 +8186,12 @@ }, /turf/unsimulated/floor, /area/centcom/ferry) -"bgF" = ( -/obj/effect/floor_decal/corner/mauve/full{ - dir = 1 - }, -/obj/machinery/light{ +"bgE" = ( +/obj/effect/floor_decal/spline/fancy/wood{ dir = 4 }, -/obj/structure/engineer_maintenance/pipe{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology) +/turf/simulated/floor/wood, +/area/horizon/service/cafeteria) "bgG" = ( /obj/effect/floor_decal/corner/dark_blue/full{ dir = 4 @@ -8343,72 +8204,132 @@ }, /turf/simulated/floor/tiled, /area/horizon/security/hallway) -"bgQ" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 5 +"bgH" = ( +/obj/item/device/radio/intercom/west, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/machinery/vending/overloaders, +/turf/simulated/floor/tiled/full, +/area/horizon/hallway/primary/deck_2/fore) +"bgI" = ( +/obj/effect/floor_decal/corner/lime/full{ + dir = 1 }, -/obj/structure/disposalpipe/segment{ +/obj/structure/platform_deco, +/turf/simulated/floor/tiled/white{ + name = "cooled white floor"; + temperature = 278.15 + }, +/area/horizon/medical/morgue) +"bgK" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/obj/effect/floor_decal/spline/fancy/wood{ dir = 4 }, -/obj/machinery/firealarm/north, +/obj/structure/flora/ausbushes/brflowers, +/turf/simulated/floor/grass/no_edge, +/area/horizon/hallway/primary/deck_3/starboard) +"bgT" = ( /obj/structure/cable/green{ - icon_state = "2-8" + icon_state = "2-4" + }, +/turf/simulated/floor/carpet, +/area/horizon/command/heads/captain) +"bgW" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 9 + }, +/obj/machinery/light/floor{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_2/central) +"bgZ" = ( +/obj/machinery/light/small, +/obj/machinery/atmospherics/pipe/tank/air/scc_shuttle{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning/cee{ + dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/horizon/longbow) -"bgR" = ( +/area/horizon/shuttle/mining) +"bha" = ( +/obj/structure/cable/orange{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor/plating, +/area/horizon/engineering/reactor/indra/mainchamber) +"bhc" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/carpet/rubber, -/area/maintenance/engineering/auxillary) -"bhe" = ( -/obj/effect/map_effect/window_spawner/full/reinforced/polarized/grille/firedoor{ - id = "XO" - }, -/obj/machinery/door/blast/regular{ - density = 0; +/obj/machinery/door/airlock/hatch{ dir = 4; - icon_state = "pdoor0"; - id = "bridge blast"; - name = "Bridge Blast Doors"; - opacity = 0 + lights = 0; + locked = 1; + name = "Maintenance Hatch" }, -/obj/structure/cable/green{ - icon_state = "0-2" +/obj/machinery/door/firedoor{ + dir = 4 }, -/turf/simulated/floor, -/area/crew_quarters/heads/hop/xo) +/turf/simulated/floor/tiled/full, +/area/horizon/medical/ward/isolation) "bhj" = ( /obj/effect/floor_decal/corner/teal{ dir = 6 }, /turf/unsimulated/floor/dark, /area/antag/actor) -"bhm" = ( -/mob/living/simple_animal/corgi/Ian, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 8 +"bhl" = ( +/obj/effect/floor_decal/corner/black{ + dir = 9 }, -/obj/structure/disposalpipe/segment{ - icon_state = "pipe-c" +/obj/effect/floor_decal/industrial/loading/yellow{ + dir = 4 }, -/turf/simulated/floor/wood, -/area/crew_quarters/heads/hop/xo) -"bhq" = ( -/obj/structure/shuttle_part/scc_space_ship{ - icon_state = "d2-1" - }, -/turf/simulated/wall, -/area/operations/lobby) +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/dark, +/area/horizon/hangar/auxiliary) "bhs" = ( /obj/structure/undies_wardrobe, /obj/effect/floor_decal/industrial/outline/yellow, /turf/unsimulated/floor/linoleum, /area/antag/actor) +"bhv" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/structure/railing/mapped{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/port/near) "bhw" = ( /obj/structure/closet/walllocker/medical/secure{ name = "blood closet"; @@ -8427,37 +8348,10 @@ icon_state = "dark_preview" }, /area/centcom/holding) -"bhx" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/turf/simulated/floor/tiled/full, -/area/outpost/mining_main/refinery) -"bhB" = ( -/obj/effect/map_effect/window_spawner/full/reinforced/polarized/firedoor{ - id = "journalist" - }, -/turf/simulated/floor/tiled/dark/full, -/area/journalistoffice) "bhE" = ( /obj/effect/map_effect/window_spawner/full/reinforced/grille/firedoor, /turf/simulated/floor/tiled/dark/full, /area/horizon/security/brig) -"bhF" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/machinery/alarm/north, -/obj/machinery/light/small/emergency{ - dir = 4 - }, -/turf/simulated/floor, -/area/horizon/maintenance/deck_three/aft/starboard) "bhI" = ( /obj/effect/floor_decal/corner/dark_blue{ dir = 6 @@ -8471,40 +8365,15 @@ }, /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" = ( +"bhL" = ( +/turf/simulated/wall, +/area/horizon/stairwell/starboard/deck_2) +"bhQ" = ( /obj/structure/cable/green{ icon_state = "4-8" }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 7 - }, -/obj/effect/floor_decal/spline/fancy/wood/corner{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/wood, -/area/crew_quarters/heads/hop/xo) -"bhU" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 9 - }, -/obj/machinery/firealarm/south, -/obj/effect/floor_decal/corner/yellow/full, -/turf/simulated/floor/tiled/dark, -/area/engineering/aft_airlock) +/turf/simulated/floor/tiled, +/area/horizon/engineering/storage_eva) "bhV" = ( /obj/effect/floor_decal/spline/plain/corner{ dir = 4 @@ -8516,6 +8385,19 @@ /obj/structure/flora/ausbushes/ppflowers, /turf/simulated/floor/exoplanet/grass/grove, /area/centcom/shared_dream) +"bhW" = ( +/obj/structure/table/reinforced/wood, +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 2; + icon_state = "shutter0"; + id = "cap_office_desk"; + name = "Captain Desk Shutters"; + opacity = 0 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/command/heads/captain) "bic" = ( /obj/machinery/door/airlock/external{ dir = 4; @@ -8541,39 +8423,6 @@ }, /turf/simulated/floor/tiled/dark, /area/shuttle/mercenary) -"bid" = ( -/obj/machinery/door/airlock/external{ - dir = 1; - frequency = 1379; - icon_state = "door_locked"; - id_tag = "turbine_combustion"; - locked = 1; - name = "Combustion Chamber"; - req_access = list(24) - }, -/obj/machinery/door/blast/regular{ - id = "turbineinterior"; - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/visible/cyan, -/obj/machinery/atmospherics/pipe/simple/visible/yellow, -/turf/simulated/floor/reinforced/airless, -/area/engineering/engine_room/turbine) -"bie" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/corner/dark_green{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/engineering/lobby) "bif" = ( /obj/structure/table/reinforced/wood, /obj/effect/floor_decal/spline/fancy/wood{ @@ -8592,22 +8441,26 @@ }, /turf/unsimulated/floor/dark, /area/antag/actor) -"bij" = ( -/obj/structure/window/shuttle/scc_space_ship, -/obj/structure/grille, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/maintenance/hangar/starboard) -"bik" = ( -/obj/machinery/light/small/emergency{ - dir = 8 +"bii" = ( +/obj/effect/shuttle_landmark/escape_pod/start/pod3, +/turf/simulated/floor/shuttle/dark_blue, +/area/horizon/shuttle/escape_pod/pod4) +"bim" = ( +/obj/structure/cable{ + icon_state = "1-4" }, -/obj/effect/floor_decal/industrial/hatch/red, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 1 +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" }, -/turf/simulated/floor/tiled/dark, -/area/bridge/selfdestruct) +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/tiled/full, +/area/horizon/engineering/hallway/fore) "bin" = ( /obj/effect/floor_decal/spline/plain{ dir = 10 @@ -8621,6 +8474,19 @@ icon_state = "beach" }, /area/centcom/shared_dream) +"bio" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/structure/cable/orange{ + icon_state = "4-8" + }, +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor/plating, +/area/horizon/engineering/reactor/indra/mainchamber) "bip" = ( /obj/effect/decal/cleanable/cobweb, /obj/effect/floor_decal/spline/plain{ @@ -8646,16 +8512,16 @@ }, /turf/simulated/floor/exoplanet/grass, /area/centcom/shared_dream) -"bit" = ( -/obj/structure/cable{ - icon_state = "2-4" +"bix" = ( +/obj/effect/floor_decal/corner/brown/full{ + dir = 8 }, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 10 +/obj/effect/floor_decal/industrial/loading/yellow{ + dir = 8 }, +/obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/starboard) +/area/horizon/operations/mining_main/refinery) "biz" = ( /obj/effect/floor_decal/corner/dark_blue/diagonal{ dir = 4 @@ -8672,43 +8538,41 @@ }, /turf/simulated/floor/holofloor/tiled/dark, /area/horizon/holodeck/source_boxingcourt) -"biH" = ( -/obj/effect/floor_decal/corner_wide/blue{ - dir = 10 - }, -/obj/structure/table/reinforced/steel, -/obj/random/bad_ai{ - pixel_x = 5 - }, -/obj/random/bad_ai{ - pixel_y = 9; - pixel_x = 5 - }, -/obj/machinery/door/window/northright{ - name = "Storage"; - req_access = list(20) - }, -/obj/random/bad_ai{ - pixel_x = -6; - pixel_y = 9 - }, -/obj/random/bad_ai{ - pixel_x = -6 - }, -/turf/simulated/floor/tiled/dark/full, -/area/storage/secure) -"biK" = ( -/obj/structure/cable{ +"biG" = ( +/obj/structure/cable/green{ icon_state = "4-8" }, -/obj/effect/floor_decal/corner/dark_green{ +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/structure/cable{ - icon_state = "2-8" +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/effect/floor_decal/corner/brown{ + dir = 10 }, /turf/simulated/floor/tiled, -/area/hangar/auxiliary) +/area/horizon/operations/office) +"biJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/horizon/rnd/xenoarch/atrium) +"biL" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/table/standard, +/obj/machinery/camera/network/supply{ + c_tag = "Operations - Lower Warehouse 3" + }, +/turf/simulated/floor/tiled, +/area/horizon/operations/warehouse) "biM" = ( /obj/structure/window/shuttle/scc_space_ship, /obj/machinery/door/firedoor, @@ -8731,48 +8595,12 @@ icon_state = "dark_preview" }, /area/centcom/specops) -"biP" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/simulated/floor, -/area/maintenance/engineering_ladder) "biR" = ( /obj/effect/floor_decal/corner/red/full{ dir = 1 }, /turf/simulated/floor/holofloor/tiled, /area/template_noop) -"biV" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/railing/mapped, -/turf/simulated/floor/tiled/dark/full, -/area/hallway/primary/central_one) -"biW" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume, -/obj/effect/map_effect/marker/airlock/docking{ - landmark_tag = "nav_horizon_dock_deck_3_starboard_2"; - master_tag = "airlock_horizon_dock_deck_3_starboard_2"; - name = "airlock_horizon_dock_deck_3_starboard_2" - }, -/turf/simulated/floor/plating, -/area/horizon/hallway/deck_three/primary/starboard/docks) -"biY" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 1 - }, -/obj/structure/platform{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/horizon/bar) "biZ" = ( /obj/structure/bed/stool/chair/padded/black{ dir = 1 @@ -8806,16 +8634,6 @@ }, /turf/simulated/floor/wood, /area/shuttle/merchant) -"bjd" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/turf/simulated/floor/wood, -/area/lawoffice/consular_two) "bje" = ( /obj/machinery/light{ dir = 4 @@ -8827,51 +8645,86 @@ }, /turf/unsimulated/floor/monotile, /area/antag/raider) -"bjf" = ( -/obj/machinery/camera/network/first_deck{ - c_tag = "First Deck - Hangar 5"; - dir = 8 +"bji" = ( +/turf/simulated/floor/tiled, +/area/horizon/operations/office) +"bjj" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 5 }, -/obj/effect/floor_decal/corner/dark_green{ - dir = 6 +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/auxatmos) +"bjl" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 10 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1; + level = 2 }, /turf/simulated/floor/tiled, -/area/hangar/intrepid) -"bjy" = ( -/obj/structure/cable{ +/area/horizon/rnd/hallway) +"bjs" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/horizon/engineering/storage/lower) +"bjw" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/fuel, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/structure/cable/green{ icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/corner/dark_green{ - dir = 6 +/turf/simulated/floor/plating, +/area/horizon/shuttle/quark/cargo_hold) +"bjx" = ( +/obj/structure/table/steel, +/obj/item/storage/box/lights/mixed{ + pixel_x = -3; + pixel_y = 5 }, -/obj/machinery/light/floor{ +/obj/machinery/alarm/west, +/turf/simulated/floor/plating, +/area/horizon/engineering/reactor/indra/office) +"bjB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/corner/brown{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/warning{ dir = 4 }, /turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/central) +/area/horizon/hangar/operations) +"bjD" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/full, +/area/horizon/hallway/primary/deck_2/starboard) "bjH" = ( /obj/machinery/appliance/cooker/fryer{ stat = 0 }, /turf/unsimulated/floor, /area/centcom/bar) -"bjJ" = ( -/obj/machinery/door/airlock/glass_research{ - dir = 1; - name = "Telescience"; - req_access = list(7) +"bjI" = ( +/obj/effect/landmark/entry_point/aft{ + name = "aft, weapons range" }, -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/regular/open{ - dir = 8; - fail_secure = 1; - id = "telesci_lockdown"; - name = "Hazardous Containment Lockdown" - }, -/turf/simulated/floor/tiled/dark/full, -/area/rnd/telesci) +/turf/simulated/wall/shuttle/scc_space_ship/cardinal, +/area/horizon/rnd/test_range) "bjL" = ( /obj/structure/shuttle_part/ert{ icon_state = "4,0"; @@ -8879,109 +8732,25 @@ }, /turf/unsimulated/floor/plating, /area/shuttle/specops) -"bjS" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/hallway/medical/upper) -"bjU" = ( -/obj/machinery/door/airlock/glass_engineering{ - dir = 4; - name = "Engineering Hallway"; - req_one_access = list(10) - }, -/obj/machinery/door/firedoor, -/obj/effect/map_effect/door_helper/unres{ - dir = 8 - }, -/turf/simulated/floor/tiled/full, -/area/hallway/engineering) -"bkq" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 8 - }, -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/wood, -/area/crew_quarters/captain) -"bks" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/obj/machinery/button/remote/airlock{ - id = "xeno_entrance_ext"; - name = "Xenobiology External Access Bolts"; - pixel_y = 26; - req_access = list(55); - specialfunctions = 4; - dir = 10; - pixel_x = 32; - desiredstate = 1 - }, -/obj/effect/floor_decal/corner/mauve{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology/foyer) -"bkx" = ( -/obj/structure/closet/secure_closet/hangar_tech, -/obj/effect/floor_decal/corner/brown{ - dir = 6 - }, -/obj/effect/floor_decal/industrial/outline/yellow, +"bjN" = ( +/obj/effect/floor_decal/industrial/outline/engineering, /turf/simulated/floor/tiled, -/area/operations/office) -"bkA" = ( -/obj/effect/map_effect/window_spawner/full/reinforced/grille/firedoor, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "bridge blast"; - name = "Bridge Blast Doors"; - opacity = 0 - }, -/obj/structure/cable/green{ - icon_state = "0-2" - }, -/obj/structure/cable/green{ - icon_state = "2-4" - }, -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/turf/simulated/floor, -/area/bridge/supply) -"bkB" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 9 - }, -/obj/effect/floor_decal/industrial/loading/yellow{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/dark, -/area/horizon/longbow) +/area/horizon/operations/warehouse) +"bkg" = ( +/obj/structure/flora/ausbushes/sparsegrass, +/obj/structure/flora/ausbushes/ywflowers, +/turf/simulated/floor/grass/no_edge, +/area/horizon/hallway/primary/deck_2/fore) +"bkj" = ( +/turf/simulated/floor/tiled, +/area/horizon/maintenance/deck_2/wing/starboard/auxatmos) +"bkz" = ( +/obj/structure/closet, +/obj/random/loot, +/obj/random/loot, +/obj/random/loot, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/research) "bkD" = ( /obj/structure/window/reinforced/crescent{ dir = 8 @@ -8997,44 +8766,6 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/security/warden) -"bkG" = ( -/obj/structure/bed/stool/chair/office/dark{ - dir = 8 - }, -/obj/effect/floor_decal/spline/plain, -/obj/effect/floor_decal/spline/plain{ - dir = 1 - }, -/obj/effect/landmark/start{ - name = "Machinist" - }, -/turf/simulated/floor/carpet/rubber, -/area/operations/lower/machinist) -"bkI" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/engine_room/rust) -"bkK" = ( -/obj/machinery/door/firedoor, -/obj/effect/floor_decal/corner/dark_green{ - dir = 10 - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/full, -/area/horizon/hallway/deck_three/primary/central) -"bkN" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/random/junk, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard) "bkO" = ( /obj/effect/floor_decal/corner/dark_blue{ dir = 5 @@ -9057,43 +8788,14 @@ /obj/effect/decal/cleanable/dirt, /turf/unsimulated/floor/carpet, /area/antag/raider) -"bkV" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenoarch_storage) -"bkY" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 4 +"blc" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/red{ + dir = 5 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/simulated/wall/shuttle/unique/scc/mining{ + icon_state = "6,2" }, -/turf/simulated/floor/wood, -/area/horizon/bar) -"blb" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/medical/gen_treatment) -"bld" = ( -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/structure/disposalpipe/down{ - dir = 8 - }, -/obj/structure/lattice, -/turf/simulated/open, -/area/maintenance/wing/starboard) +/area/horizon/shuttle/mining) "blg" = ( /obj/machinery/atmospherics/unary/vent_pump/high_volume{ dir = 1; @@ -9113,15 +8815,6 @@ }, /turf/simulated/floor/tiled/dark, /area/shuttle/legion) -"blj" = ( -/obj/structure/table/reinforced/steel, -/obj/random/contraband, -/obj/random/contraband, -/turf/simulated/floor/carpet/rubber, -/area/maintenance/engineering/auxillary) -"blk" = ( -/turf/simulated/wall/shuttle/scc_space_ship/cardinal, -/area/medical/washroom) "bll" = ( /obj/effect/floor_decal/corner/paleblue/diagonal{ dir = 8 @@ -9132,12 +8825,6 @@ }, /turf/unsimulated/floor, /area/centcom/holding) -"blr" = ( -/obj/structure/shuttle_part/scc/mining{ - icon_state = "7,9" - }, -/turf/simulated/floor/plating, -/area/shuttle/mining) "bls" = ( /obj/structure/table/holotable, /obj/item/clothing/gloves/boxing/hologlove, @@ -9145,97 +8832,77 @@ /obj/item/clothing/gloves/boxing/hologlove, /turf/simulated/floor/holofloor/tiled, /area/horizon/holodeck/source_boxingcourt) -"blt" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ +"blw" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/door/airlock/atmos{ - name = "Drone Fabrication"; - req_one_access = list(11,24); - dir = 4 - }, -/turf/simulated/floor/plating, -/area/engineering/drone_fabrication) -"blu" = ( -/obj/structure/table/reinforced/glass, -/turf/simulated/floor/carpet/rubber, -/area/rnd/lab) +/obj/machinery/meter, +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/atmos/propulsion) "blz" = ( /obj/structure/window/reinforced/holowindow{ dir = 8 }, /turf/simulated/floor/holofloor/space, /area/horizon/holodeck/source_basketball) -"blB" = ( -/obj/machinery/portable_atmospherics/hydroponics/soil, -/obj/machinery/light{ - dir = 1 +"blA" = ( +/obj/structure/shuttle_part/scc_space_ship{ + icon_state = "d3-4-f" }, -/turf/simulated/floor/grass/no_edge, -/area/rnd/xenobiology/xenoflora) +/obj/effect/landmark/entry_point/aft{ + name = "aft, starboard ballast maintenance, middle" + }, +/obj/structure/foamedmetal, +/obj/structure/shuttle_part/scc_space_ship{ + icon_state = "d3-4-f" + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/port) "blH" = ( /obj/structure/table/holotable, /obj/item/holo/practicesword, /obj/item/holo/practicesword, /turf/simulated/floor/holofloor/tiled, /area/horizon/holodeck/source_boxingcourt) -"blO" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 10 +"blK" = ( +/obj/machinery/light/small/emergency{ + dir = 4 }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/atmospherics/pipe/simple/hidden/aux, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel, /turf/simulated/floor/plating, -/area/maintenance/engineering) -"blP" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ +/area/horizon/maintenance/deck_1/auxatmos) +"blM" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 1 }, -/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{ +/turf/simulated/floor/tiled/full, +/area/horizon/hallway/primary/deck_2/fore) +"blY" = ( +/obj/structure/cable{ icon_state = "1-2" }, -/obj/effect/floor_decal/corner/dark_green{ - dir = 9 +/obj/structure/disposalpipe/sortjunction/flipped{ + name = "CE Office"; + sortType = "CE Office" }, -/obj/machinery/firealarm/west, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/central) -"blW" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 8 }, -/obj/structure/cable/green{ - icon_state = "4-8" +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor/plating, +/area/horizon/engineering/hallway/interior) +"bma" = ( +/obj/item/modular_computer/console/preset/medical, +/obj/effect/floor_decal/corner_wide/green{ + dir = 5 }, -/obj/effect/floor_decal/corner/brown{ - dir = 9 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/intrepid/main_compartment) +/turf/simulated/floor/tiled/white, +/area/horizon/medical/hallway/upper) "bmc" = ( /obj/effect/floor_decal/corner/dark_blue{ dir = 10 @@ -9248,23 +8915,32 @@ }, /turf/simulated/floor/tiled, /area/horizon/security/holding_cell_a) -"bmf" = ( -/obj/machinery/alarm/west, -/obj/machinery/newscaster/south, -/obj/effect/floor_decal/corner/dark_blue/full, -/obj/structure/table/standard, -/obj/item/device/radio/off, -/obj/item/device/radio/off, -/obj/item/device/radio/off, -/obj/item/crowbar/red, -/obj/item/crowbar/red, -/obj/item/crowbar/red, -/obj/item/crowbar/red, -/obj/item/device/flashlight, -/obj/item/device/flashlight, -/obj/item/device/flashlight, +"bme" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 10 + }, +/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/bridge/bridge_crew) +/area/horizon/stairwell/port/deck_3) +"bmi" = ( +/obj/structure/table/reinforced/steel, +/obj/effect/floor_decal/spline/plain{ + dir = 8 + }, +/obj/item/paper/fluff/bluespacedrive_manual{ + pixel_y = 3; + pixel_x = -8 + }, +/obj/item/folder/yellow{ + pixel_y = 3; + pixel_x = -15 + }, +/turf/simulated/floor/carpet/rubber, +/area/horizon/engineering/bluespace_drive/monitoring) "bmj" = ( /obj/structure/bed/stool/bar/padded/red{ dir = 1 @@ -9274,38 +8950,75 @@ }, /turf/unsimulated/floor/wood, /area/antag/raider) -"bmn" = ( +"bmq" = ( +/obj/machinery/door/airlock/glass_engineering{ + dir = 1; + name = "INDRA Reactor"; + req_one_access = list(11,24) + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/reactor/indra/smes) +"bms" = ( +/obj/effect/floor_decal/corner_wide/green{ + dir = 6 + }, +/obj/machinery/vending/coffee, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/ward) +"bmu" = ( +/obj/effect/floor_decal/corner/dark_blue/diagonal, /obj/structure/cable/green{ icon_state = "4-8" }, -/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/horizon/command/bridge/bridge_crew) +"bmC" = ( +/obj/machinery/door/firedoor{ + dir = 4 + }, +/obj/machinery/door/airlock/medical{ + dir = 4; + name = "Cremation"; + req_one_access = list(6,33) + }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 + dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 + dir = 8 }, -/obj/structure/cable/green{ - icon_state = "2-8" +/obj/structure/plasticflaps/airtight{ + dir = 8 }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ - dir = 4 +/turf/simulated/floor/tiled/full, +/area/horizon/medical/morgue) +"bmD" = ( +/obj/structure/closet/crate/freezer{ + name = "Assorted Blood Packs" }, -/turf/simulated/floor/plating, -/area/maintenance/engineering) -"bmx" = ( -/obj/structure/railing/mapped, -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard/deck1) -"bmG" = ( -/obj/structure/flora/ausbushes/sparsegrass, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/grass/no_edge, -/area/horizon/hydroponics/lower) +/obj/item/reagent_containers/blood/OPlus, +/obj/item/reagent_containers/blood/OPlus, +/obj/item/reagent_containers/blood/BPlus, +/obj/item/reagent_containers/blood/BPlus, +/obj/item/reagent_containers/blood/BMinus, +/obj/item/reagent_containers/blood/BMinus, +/obj/item/reagent_containers/blood/sbs, +/obj/item/reagent_containers/blood/sbs, +/obj/item/reagent_containers/blood/APlus, +/obj/item/reagent_containers/blood/APlus, +/obj/item/reagent_containers/blood/AMinus, +/obj/item/reagent_containers/blood/AMinus, +/obj/effect/floor_decal/corner_wide/green/full, +/obj/structure/cable/green, +/obj/machinery/power/apc/west, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/main_storage) "bmH" = ( /obj/machinery/door/airlock/medical{ dir = 4; @@ -9318,15 +9031,27 @@ }, /turf/simulated/floor/tiled/dark/full, /area/shuttle/mercenary) -"bmM" = ( -/obj/structure/closet/crate, -/obj/random/loot, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/light/small/emergency{ +"bmK" = ( +/obj/effect/floor_decal/industrial/warning/full, +/obj/machinery/door/blast/regular/open{ + dir = 2; + fail_secure = 1; + id = "xenobio_c"; + name = "Cell Containment Blast Door" + }, +/obj/machinery/door/window/holowindoor{ + dir = 8; + req_access = list(55) + }, +/obj/machinery/door/window/holowindoor{ + dir = 4; + req_access = list(55) + }, +/obj/machinery/door/firedoor{ dir = 4 }, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard/far) +/turf/simulated/floor/tiled/dark/full, +/area/horizon/rnd/xenobiology) "bmT" = ( /obj/structure/closet/secure_closet/evidence, /obj/effect/floor_decal/corner/dark_blue{ @@ -9335,19 +9060,49 @@ /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{ +"bmV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/structure/sign/emergency/evacuation/pods{ - pixel_x = 32 +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 }, -/obj/effect/floor_decal/corner/dark_green{ +/obj/effect/floor_decal/industrial/loading/yellow{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/rnd/xenoarch/atrium) +"bmW" = ( +/obj/structure/bed/stool/padded/red, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/lino, +/area/horizon/service/dining_hall) +"bmX" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black{ dir = 6 }, -/turf/simulated/floor/tiled, -/area/hangar/auxiliary) +/turf/simulated/floor/plating, +/area/horizon/engineering/reactor/supermatter/mainchamber) +"bmZ" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 1 + }, +/obj/effect/floor_decal/corner/dark_blue{ + dir = 8 + }, +/obj/machinery/atmospherics/portables_connector{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/extinguisher_cabinet/west, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/atmos) "bne" = ( /obj/machinery/light/small{ dir = 4; @@ -9356,62 +9111,22 @@ /obj/structure/table/reinforced/steel, /turf/unsimulated/floor/dark_monotile, /area/antag/actor) -"bng" = ( -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/machinery/alarm/west, -/turf/simulated/floor/plating, -/area/maintenance/wing/port/far) -"bnp" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/structure/bed/stool/chair/office/light, -/turf/simulated/floor/tiled/white, -/area/medical/reception) -"bnr" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 5 +"bnq" = ( +/obj/structure/bed/stool/chair/padded/black{ + dir = 1 }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 +/obj/effect/floor_decal/corner/dark_green{ + dir = 9 }, /turf/simulated/floor/tiled, -/area/bridge) -"bnu" = ( -/obj/structure/disposalpipe/junction{ - dir = 4; - icon_state = "pipe-j2" - }, -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/obj/effect/floor_decal/corner/dark_blue/full, -/turf/simulated/floor/tiled, -/area/bridge) -"bny" = ( -/obj/structure/bed/stool/chair/padded/red{ - dir = 4 - }, -/obj/machinery/camera/network/service{ - c_tag = "Service - Deck 2 - Booth 2"; - dir = 4 - }, -/turf/simulated/floor/carpet/red, -/area/horizon/crew_quarters/lounge/bar) -"bnC" = ( -/obj/machinery/camera/network/service{ - c_tag = "Service - Deck 2 - Dining Hall 1"; - dir = 4 - }, -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/closet/walllocker/medical/firstaid{ - pixel_x = -32 - }, -/obj/machinery/light/floor{ - dir = 8 +/area/horizon/security/checkpoint2) +"bnA" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 10 }, +/obj/machinery/light/small/floor, /turf/simulated/floor/wood, -/area/horizon/crew_quarters/lounge/bar) +/area/horizon/service/cafeteria) "bnG" = ( /obj/structure/railing/mapped{ dir = 1 @@ -9421,43 +9136,44 @@ icon_state = "ramptop" }, /area/centcom/holding) -"bnI" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/aux{ - dir = 4 +"bnL" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/effect/floor_decal/industrial/outline_segment/yellow{ + dir = 5 }, -/turf/simulated/floor/plating, -/area/engineering/atmos/air) +/turf/simulated/floor/tiled/dark, +/area/horizon/maintenance/deck_2/wing/port/nacelle) "bnO" = ( /obj/effect/floor_decal/corner/grey/diagonal{ dir = 4 }, /turf/unsimulated/floor, /area/centcom/spawning) -"bnR" = ( -/obj/structure/closet/secure_closet/hangar_tech, -/obj/effect/floor_decal/corner/brown{ - dir = 6 +"bnP" = ( +/obj/machinery/atmospherics/unary/freezer{ + icon_state = "freezer" }, -/obj/machinery/firealarm/east, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled, -/area/operations/office) -"bnT" = ( -/obj/structure/table/standard, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/plating, +/area/horizon/medical/cryo) +"bnW" = ( +/obj/machinery/atmospherics/unary/vent_pump{ + dir = 4; + external_pressure_bound = 0; + external_pressure_bound_default = 0; + frequency = 1441; + icon_state = "map_vent_in"; + id_tag = "mixed_out"; + initialize_directions = 1; + internal_pressure_bound = 4000; + internal_pressure_bound_default = 4000; + name = "mixed gas vent"; + pressure_checks = 2; + pressure_checks_default = 2; + pump_direction = 0 }, -/obj/item/stack/material/phoron{ - amount = 6; - pixel_x = 12 - }, -/obj/machinery/reagentgrinder{ - pixel_y = 16 - }, -/obj/item/screwdriver, -/turf/simulated/floor/tiled/white, -/area/medical/pharmacy) +/turf/simulated/floor/reinforced/airless, +/area/horizon/engineering/atmos) "bnY" = ( /obj/machinery/door/airlock/centcom{ name = "Special Ops."; @@ -9472,13 +9188,13 @@ icon_state = "dark_preview" }, /area/centcom/specops) -"boa" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" +"bnZ" = ( +/obj/structure/foamedmetal, +/obj/structure/shuttle_part/scc_space_ship{ + icon_state = "d3-5-f" }, -/turf/simulated/floor/wood, -/area/crew_quarters/captain) +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/port) "boc" = ( /obj/structure/railing/mapped{ dir = 8 @@ -9487,19 +9203,49 @@ /obj/item/device/versebook/tribunal, /turf/simulated/floor/marble, /area/horizon/holodeck/source_tribunal) -"boe" = ( -/obj/machinery/door/airlock/glass_command{ - dir = 1; - name = "Captain's Office"; - req_access = list(20) +"bof" = ( +/obj/effect/floor_decal/corner/grey/diagonal, +/obj/effect/floor_decal/spline/plain/corner{ + dir = 1 }, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/firedoor, -/obj/structure/cable/green{ - icon_state = "1-2" +/obj/machinery/light, +/obj/machinery/light_switch{ + dir = 8; + pixel_x = -20; + pixel_y = -1 }, -/turf/simulated/floor/wood, -/area/crew_quarters/captain) +/obj/machinery/button/remote/blast_door{ + dir = 8; + id = "kitchen_window_shutters"; + name = "Window Shutters"; + pixel_x = -20; + pixel_y = -8; + req_access = list(28) + }, +/obj/machinery/button/remote/blast_door{ + dir = 8; + id = "shutters_deck2_kitchendesk"; + name = "Desk Shutters"; + pixel_x = -28; + pixel_y = -4; + req_access = list(28) + }, +/obj/machinery/button/remote/blast_door{ + dir = 8; + id = "shutters_deck2_smartheater"; + name = "SmartHeater Shutter"; + pixel_x = -28; + pixel_y = 7; + req_access = list(28) + }, +/obj/machinery/button/switch/holosign{ + id = 4; + dir = 8; + pixel_y = 7; + pixel_x = -20 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/service/kitchen) "boh" = ( /obj/machinery/light/small/emergency, /obj/structure/table/rack, @@ -9529,24 +9275,75 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/unsimulated/floor/monotile, /area/antag/jockey) -"boi" = ( -/obj/effect/floor_decal/corner/green/diagonal, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/structure/closet/secure_closet/personal/patient, -/turf/simulated/floor/tiled/white, -/area/medical/ward/isolation) "bok" = ( -/obj/effect/map_effect/window_spawner/full/reinforced/polarized/firedoor{ - id = "library" +/obj/machinery/firealarm/south, +/obj/machinery/computer/ship/navigation/terminal{ + dir = 8 }, +/obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled/dark/full, -/area/horizon/library) +/area/horizon/shuttle/intrepid/port_compartment) "bon" = ( /obj/random/pottedplant, /turf/simulated/floor/holofloor/tiled, /area/horizon/holodeck/source_battlemonsters) +"boo" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/corner/yellow{ + dir = 1 + }, +/obj/effect/floor_decal/corner/dark_blue{ + dir = 8 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/binary/passive_gate{ + name = "Reactor Waste to Mix" + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/atmos) +"boq" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/effect/floor_decal/spline/plain{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/r_n_d/protolathe, +/turf/simulated/floor/carpet/rubber, +/area/horizon/rnd/lab) +"bor" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/smes) +"bot" = ( +/obj/structure/closet/walllocker/emerglocker/south, +/obj/machinery/atmospherics/pipe/manifold/hidden, +/obj/effect/floor_decal/corner/dark_blue{ + dir = 10 + }, +/obj/machinery/alarm/south, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_3/port/docks) "bou" = ( /obj/structure/table/wood, /obj/item/folder/blue, @@ -9573,20 +9370,32 @@ icon_state = "dark_preview" }, /area/centcom/holding) -"boB" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, +"boy" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/hatch{ - dir = 1; - name = "Starboard Propulsion"; - req_one_access = list(11,24) +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/xenobiology) +"boz" = ( +/obj/effect/map_effect/window_spawner/full/reinforced/polarized/firedoor{ + id = "surgery2" }, -/turf/simulated/floor/tiled/full, -/area/engineering/atmos/propulsion/starboard) +/turf/simulated/floor/tiled/dark/full, +/area/horizon/medical/surgery) +"boA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/bed/stool/chair/sofa/pew/left{ + dir = 8 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 9 + }, +/turf/simulated/floor/wood, +/area/horizon/service/chapel/main) +"boC" = ( +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor, +/area/horizon/maintenance/deck_3/aft/starboard/far) "boH" = ( /obj/machinery/atmospherics/pipe/simple/hidden/yellow, /obj/machinery/atmospherics/pipe/simple/visible/green{ @@ -9594,6 +9403,11 @@ }, /turf/space/dynamic, /area/horizon/exterior) +"boJ" = ( +/obj/effect/floor_decal/industrial/outline/medical, +/obj/machinery/suit_cycler/medical/prepared, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/storage/eva) "boL" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 6 @@ -9604,34 +9418,35 @@ /obj/effect/floor_decal/carpet, /turf/simulated/floor/carpet/magenta, /area/horizon/holodeck/source_cafe) -"boS" = ( -/obj/machinery/access_button{ - command = "cycle_interior"; - frequency = 1380; - master_tag = "centcom_shuttle_dock_airlock"; - name = "interior access button"; - pixel_x = -25; - pixel_y = -25; - req_access = list(13) +"boP" = ( +/obj/machinery/hologram/holopad, +/turf/simulated/floor/wood, +/area/horizon/command/bridge/minibar) +"boQ" = ( +/obj/structure/cable/green{ + icon_state = "4-8" }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 10 - }, -/obj/effect/floor_decal/corner/dark_green/full{ +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/machinery/alarm/east, -/turf/simulated/floor/tiled, -/area/security/checkpoint2) -"boT" = ( -/obj/effect/floor_decal/corner/red/diagonal, -/obj/effect/floor_decal/industrial/warning{ +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/obj/machinery/portable_atmospherics/powered/pump/filled, -/obj/effect/floor_decal/industrial/outline/emergency_closet, -/turf/simulated/floor/tiled, -/area/maintenance/wing/port) +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/hallway/upper) +"boU" = ( +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/obj/machinery/power/apc/north, +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/substation/engineering/lower) "boV" = ( /obj/structure/table/reinforced, /obj/item/paper_bin{ @@ -9645,58 +9460,17 @@ /obj/effect/floor_decal/corner/dark_blue/full, /turf/simulated/floor/tiled, /area/horizon/security/brig) -"boY" = ( -/obj/machinery/atmospherics/pipe/simple/visible/cyan{ - dir = 9 - }, -/obj/machinery/meter, -/turf/simulated/floor/plating, -/area/engineering/atmos/air) -"bpa" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ +"bpd" = ( +/obj/effect/floor_decal/corner/dark_green/full{ dir = 8 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora) -"bpe" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/structure/platform{ - dir = 4 - }, -/obj/machinery/light/floor{ +/obj/effect/floor_decal/industrial/warning/corner{ dir = 8 }, -/obj/effect/floor_decal/corner/dark_blue/diagonal{ - dir = 8 - }, -/obj/machinery/computer/guestpass{ - pixel_x = -32 - }, +/obj/effect/floor_decal/industrial/outline/emergency_closet, +/obj/structure/closet/emcloset, /turf/simulated/floor/tiled, -/area/bridge) -"bpg" = ( -/obj/effect/floor_decal/corner_wide/blue{ - dir = 1 - }, -/obj/effect/floor_decal/corner_wide/yellow{ - dir = 4 - }, -/obj/effect/floor_decal/spline/plain{ - dir = 1 - }, -/obj/machinery/atmospherics/binary/pump/high_power/on{ - dir = 4; - name = "Scrubber to Waste"; - target_pressure = 15000 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos/storage) +/area/horizon/operations/lobby) "bph" = ( /obj/effect/floor_decal/corner/white/diagonal, /obj/machinery/door/airlock{ @@ -9708,152 +9482,110 @@ "bpj" = ( /turf/simulated/floor/holofloor/beach/sand, /area/horizon/holodeck/source_picnicarea) -"bpl" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/full, -/area/horizon/hydroponics/lower) -"bpu" = ( -/obj/structure/cable{ - icon_state = "1-2" +"bpp" = ( +/obj/machinery/firealarm/east, +/turf/simulated/floor/tiled, +/area/horizon/service/hydroponics/lower) +"bpq" = ( +/obj/machinery/alarm/north, +/obj/effect/floor_decal/corner/dark_blue{ + dir = 5 }, -/obj/effect/floor_decal/corner/dark_blue/diagonal, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/hologram/holopad/long_range, /turf/simulated/floor/tiled/dark, -/area/turret_protected/ai_upload_foyer) -"bpx" = ( -/obj/effect/floor_decal/corner/yellow{ +/area/horizon/weapons/grauwolf) +"bpE" = ( +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 6 }, -/turf/simulated/floor/tiled, -/area/engineering/rust_office) -"bpC" = ( -/turf/simulated/wall/r_wall, -/area/bridge/bridge_crew) -"bpD" = ( -/obj/structure/table/standard, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 1 +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 }, -/obj/item/paper_bin{ - pixel_x = -2; - pixel_y = 5 - }, -/obj/item/pen, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/chapel/office) -"bpI" = ( -/obj/machinery/door/airlock/external{ - dir = 4 - }, -/obj/machinery/access_button{ - pixel_x = 28; - pixel_y = 32 - }, -/obj/effect/map_effect/marker/airlock{ - frequency = 1004; - master_tag = "airlock_horizon_deck_1_fore_1"; - name = "airlock_horizon_deck_1_fore_1" - }, -/obj/effect/map_effect/marker_helper/airlock/exterior, -/turf/simulated/floor/plating, -/area/maintenance/hangar/starboard) -"bpL" = ( -/obj/machinery/photocopier, -/obj/effect/floor_decal/corner/dark_blue/diagonal, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/light, -/turf/simulated/floor/tiled/dark, -/area/security/checkpoint) -"bpQ" = ( -/turf/simulated/floor/carpet, -/area/horizon/security/investigators_office) -"bpR" = ( /obj/structure/cable/green{ icon_state = "4-8" }, -/obj/effect/floor_decal/corner/dark_green{ - dir = 10 - }, -/obj/structure/disposalpipe/segment{ +/obj/effect/floor_decal/spline/plain/corner{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/central) -"bpS" = ( -/obj/structure/bed/stool/chair/office/dark{ - dir = 8 - }, -/obj/effect/floor_decal/spline/plain{ +/obj/effect/floor_decal/spline/plain/corner{ dir = 1 }, -/obj/effect/landmark/start{ - name = "Machinist" +/obj/machinery/atmospherics/pipe/simple/hidden/black{ + dir = 5 }, /turf/simulated/floor/carpet/rubber, -/area/operations/lower/machinist) -"bqa" = ( -/obj/structure/bed/stool/chair/padded/beige, -/turf/simulated/floor/carpet, -/area/crew_quarters/captain) -"bqf" = ( -/obj/effect/floor_decal/industrial/outline/service, -/obj/machinery/light{ - dir = 4 +/area/horizon/tcommsat/entrance) +"bpF" = ( +/obj/structure/table/standard, +/obj/machinery/requests_console/east{ + name = "Research Director RC"; + department = "Research Director's Desk"; + announcementConsole = 1 }, -/obj/machinery/lapvend, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/library) -"bqi" = ( -/obj/structure/cable{ - icon_state = "0-2" +/obj/machinery/button/switch/windowtint{ + pixel_x = -6; + dir = 5; + pixel_y = 7; + id = "rdoffice" }, -/obj/structure/cable{ - icon_state = "12-0" +/turf/simulated/floor/carpet/purple, +/area/horizon/command/heads/rd) +"bpG" = ( +/obj/structure/closet/walllocker/medical/firstaid{ + pixel_y = 32 }, -/obj/machinery/atmospherics/pipe/zpipe/up/supply, -/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers, -/obj/effect/floor_decal/industrial/warning/full, -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/structure/railing/mapped, -/obj/structure/disposalpipe/up, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard/deck1) -"bqk" = ( /obj/effect/floor_decal/corner/dark_green{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 + dir = 5 }, /turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"bql" = ( -/obj/effect/floor_decal/industrial/loading/yellow{ - dir = 8 +/area/horizon/security/checkpoint2) +"bpQ" = ( +/turf/simulated/floor/carpet, +/area/horizon/security/investigators_office) +"bpT" = ( +/obj/structure/grille, +/obj/structure/window/shuttle/scc_space_ship, +/turf/simulated/floor/plating, +/area/horizon/shuttle/escape_pod/pod4) +"bpX" = ( +/obj/structure/cable/green{ + icon_state = "2-4" }, -/turf/simulated/floor/tiled, -/area/maintenance/wing/starboard/far) +/obj/effect/floor_decal/corner/yellow{ + dir = 5 + }, +/obj/effect/floor_decal/corner/yellow{ + dir = 5 + }, +/obj/machinery/alarm/north, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/aft_airlock) +"bqe" = ( +/obj/effect/map_effect/window_spawner/full/reinforced/grille/firedoor, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/turf/simulated/floor/plating, +/area/horizon/engineering/bluespace_drive/monitoring) +"bqg" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/obj/structure/table/wood, +/obj/random/pottedplant_small{ + pixel_x = 4; + pixel_y = 5 + }, +/obj/machinery/power/outlet{ + pixel_y = -2 + }, +/turf/simulated/floor/wood, +/area/horizon/service/cafeteria) "bqp" = ( /obj/machinery/alarm/north, /obj/structure/closet/secure_closet/investigator, @@ -9864,37 +9596,6 @@ }, /turf/simulated/floor/lino, /area/horizon/security/investigators_office) -"bqs" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 6 - }, -/obj/machinery/atm{ - dir = 4; - pixel_x = 16 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_two) -"bqw" = ( -/obj/effect/floor_decal/spline/fancy/wood, -/obj/structure/table/wood, -/obj/structure/railing/mapped, -/obj/random/pottedplant_small{ - pixel_x = -3; - pixel_y = 8 - }, -/obj/machinery/power/outlet{ - pixel_y = 9 - }, -/turf/simulated/floor/wood, -/area/horizon/cafeteria) -"bqy" = ( -/obj/machinery/portable_atmospherics/hydroponics, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology/xenoflora) "bqz" = ( /obj/machinery/papershredder, /turf/unsimulated/floor{ @@ -9924,21 +9625,25 @@ }, /turf/unsimulated/floor, /area/centcom/legion) -"bqI" = ( -/obj/structure/cable/green{ - icon_state = "4-8" +"bqH" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 }, +/obj/structure/bed/stool/chair/padded/beige, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 5 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/horizon/command/bridge) +"bqS" = ( +/obj/structure/closet/emcloset, +/obj/effect/floor_decal/corner/dark_blue/full, +/obj/effect/floor_decal/industrial/outline/emergency_closet, /turf/simulated/floor/tiled, -/area/operations/storage) -"bqN" = ( -/obj/machinery/appliance/cooker/fryer, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/effect/floor_decal/industrial/outline/grey, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/kitchen) +/area/horizon/command/bridge/bridge_crew) "bqT" = ( /obj/effect/floor_decal/corner/dark_blue{ dir = 6 @@ -9946,19 +9651,6 @@ /obj/item/device/radio/intercom/east, /turf/simulated/floor/tiled/dark, /area/horizon/security/evidence_storage) -"bqY" = ( -/obj/structure/sign/nosmoking_1{ - pixel_y = 32 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/aux{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 8 - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/engineering/atmos/air) "bra" = ( /obj/effect/floor_decal/corner/beige{ dir = 9 @@ -9982,52 +9674,129 @@ }, /turf/unsimulated/floor, /area/centcom/evac) -"brf" = ( +"bre" = ( +/obj/random/tool, +/obj/random/tool, +/obj/random/tool, +/obj/random/tech_supply, +/obj/structure/closet/crate/tool, +/obj/random/dirt_75, +/obj/effect/floor_decal/industrial/outline/grey, +/turf/simulated/floor/tiled/dark, +/area/horizon/maintenance/deck_2/wing/starboard/nacelle) +"brl" = ( +/turf/simulated/wall/shuttle/scc_space_ship/cardinal, +/area/horizon/engineering/atmos/turbine) +"brn" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/lattice/catwalk/indoor/grate/damaged{ + color = "#4c535b" + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/wing/starboard) +"brp" = ( /obj/structure/cable/green{ - icon_state = "1-2" + icon_state = "4-8" }, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/airlock/multi_tile/glass{ - name = "Deck 2 Central Stairwell" - }, -/obj/machinery/door/firedoor/multi_tile, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/full, -/area/horizon/stairwell/central) -"bri" = ( -/obj/random/pottedplant, -/obj/structure/railing/mapped, -/obj/effect/floor_decal/corner/dark_blue/full{ +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/full, +/area/horizon/operations/mining_main/refinery) +"bru" = ( +/turf/unsimulated/wall/steel, +/area/antag/wizard) +"brx" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, /obj/machinery/light/floor{ dir = 4 }, /turf/simulated/floor/tiled, -/area/bridge/upperdeck) -"brk" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/structure/tank_wall/nitrogen{ - icon_state = "n16" +/area/horizon/command/bridge/upperdeck) +"brz" = ( +/obj/effect/floor_decal/corner/white{ + dir = 5 }, -/turf/simulated/floor/plating, -/area/engineering/atmos/air) -"bru" = ( -/turf/unsimulated/wall/steel, -/area/antag/wizard) +/obj/effect/floor_decal/corner/mauve{ + dir = 10 + }, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/dark, +/area/horizon/rnd/xenobiology/xenoflora) "brB" = ( /turf/simulated/floor/holofloor/tiled/ramp{ dir = 4 }, /area/horizon/holodeck/source_theatre) -"brI" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/structure/lattice/catwalk/indoor/grate/dark, +"brE" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/lattice/catwalk/indoor, /turf/simulated/floor/plating, -/area/shuttle/intrepid/main_compartment) +/area/horizon/engineering/atmos/air) +"brG" = ( +/obj/effect/floor_decal/corner/brown/full{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/canister/carbon_dioxide, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled, +/area/horizon/hangar/operations) +"brJ" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/pipedispenser/disposal, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/main/port) +"brK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/aux{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/button/remote/blast_door{ + id = "command_bunker_lockdown"; + name = "Command Bunker Lockdown"; + pixel_y = -17; + req_access = list(19); + tag = "command_bunker_lockdown" + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/command/bridge/aibunker) +"brL" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/turf/simulated/floor/reinforced/reactor, +/area/horizon/engineering/reactor/supermatter/mainchamber) +"brM" = ( +/obj/item/device/radio/intercom/south, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/light/small, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/command/bridge/aibunker) "brN" = ( /obj/structure/table/rack, /obj/item/clothing/mask/gas/half, @@ -10045,133 +9814,153 @@ icon_state = "dark_preview" }, /area/centcom/holding) -"brQ" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 6 - }, -/obj/structure/bed/stool/chair/sofa/left/red{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/rnd/hallway) -"brT" = ( -/obj/machinery/light/small, -/obj/structure/table/standard{ - no_cargo = 1 - }, -/obj/random/tech_supply, -/obj/random/tech_supply, -/obj/random/tech_supply, -/obj/random/tech_supply, -/obj/random/tech_supply, -/obj/random/tech_supply, -/obj/effect/floor_decal/corner/brown{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/operations/storage) -"brV" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/effect/floor_decal/corner/dark_green{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/engineering/lobby) -"brX" = ( -/obj/structure/bed/stool/chair/office/light{ - dir = 8 - }, -/obj/effect/landmark/start{ - name = "Xenobiologist" - }, -/obj/effect/floor_decal/spline/fancy/wood{ +"brU" = ( +/obj/structure/bed/stool/chair/shuttle{ dir = 4 }, -/turf/simulated/floor/wood, -/area/rnd/conference) -"brZ" = ( -/obj/effect/floor_decal/corner/lime/diagonal, -/obj/structure/cable/green{ - icon_state = "4-8" +/obj/machinery/light/small, +/obj/machinery/camera/network/mining{ + c_tag = "Mining - Shuttle"; + dir = 1 }, -/turf/simulated/floor/tiled/white, -/area/shuttle/intrepid/medical) -"bse" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 10 +/obj/effect/floor_decal/industrial/outline/grey, +/obj/machinery/vending/wallmed1{ + pixel_x = -6; + req_access = null; + pixel_y = -27 + }, +/obj/structure/closet/walllocker/emerglocker/west{ + pixel_x = -25 + }, +/obj/item/reagent_containers/inhaler/pneumalin, +/obj/item/reagent_containers/inhaler/pneumalin, +/turf/simulated/floor/tiled/dark, +/area/horizon/shuttle/mining) +"brW" = ( +/obj/machinery/ammunition_loader/francisca{ + weapon_id = "Francisca Rotary Gun" + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/shuttle/canary) +"brY" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/simulated/floor/tiled/full, +/area/horizon/hangar/intrepid) +"bsd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/portable_atmospherics/canister/air/airlock, +/obj/machinery/atmospherics/portables_connector{ + dir = 1 }, -/obj/effect/floor_decal/spline/plain, -/turf/simulated/floor/tiled, -/area/horizon/hydroponics) -"bsf" = ( -/obj/machinery/alarm/west, /turf/simulated/floor, -/area/horizon/maintenance/deck_three/aft/starboard) +/area/horizon/maintenance/deck_2/wing/starboard/far) "bsh" = ( /turf/simulated/wall/shuttle/unique/ccia{ icon_state = "10,4" }, /area/shuttle/transport1) -"bsk" = ( -/obj/structure/closet/crate, -/obj/random/loot, -/turf/simulated/floor/plating, -/area/maintenance/aft) -"bst" = ( -/obj/machinery/light, -/obj/effect/floor_decal/corner/dark_green/full, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/port) +"bsu" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume, +/obj/effect/map_effect/marker/airlock{ + master_tag = "airlock_horizon_bunker"; + name = "airlock_horizon_bunker"; + frequency = 1109; + req_one_access = list(19) + }, +/obj/machinery/embedded_controller/radio/airlock/airlock_controller{ + pixel_y = 23 + }, +/turf/simulated/floor, +/area/horizon/ai/upload_foyer) "bsw" = ( /obj/structure/cryofeed, /turf/simulated/floor/tiled/dark, /area/merchant_station) -"bsC" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ +"bsx" = ( +/turf/simulated/wall/r_wall, +/area/horizon/engineering/reactor/supermatter/waste) +"bsz" = ( +/obj/effect/floor_decal/corner_wide/blue/full{ + dir = 1 + }, +/obj/structure/table/reinforced/steel, +/obj/structure/window/reinforced{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/window/southright{ + name = "Storage"; + req_access = list(20) + }, +/obj/random/vault_weapon{ + pixel_y = 12 + }, +/obj/random/vault_weapon{ + pixel_y = 6 + }, +/obj/random/vault_weapon, +/obj/item/storage/box/syndie_kit/random_weapon{ + pixel_y = 6 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/storage/secure) +"bsA" = ( +/obj/effect/floor_decal/corner_wide/purple{ + dir = 5 + }, +/obj/effect/floor_decal/corner_wide/purple{ + dir = 8 + }, +/obj/machinery/camera/network/research{ + c_tag = "Research - Xenoarchaeology 2" + }, +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/xenoarch/atrium) +"bsD" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/wood, +/area/horizon/service/library) +"bsF" = ( +/obj/structure/cable/green{ + icon_state = "1-4" }, /obj/structure/cable/green{ - icon_state = "4-8" + icon_state = "2-4" }, -/obj/machinery/door/airlock/hatch{ - dir = 4; - name = "Ship Flak Munitions Bay"; - req_one_access = list(75) +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/dark, -/area/horizon/grauwolf) -"bsH" = ( -/obj/structure/ship_weapon_dummy, -/turf/simulated/wall/shuttle/unique/scc/scout{ - icon_state = "2,5" +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 }, -/area/shuttle/canary) -"bsJ" = ( -/obj/effect/floor_decal/corner/dark_green/full{ +/obj/effect/floor_decal/corner/brown{ dir = 4 }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, /turf/simulated/floor/tiled, -/area/horizon/commissary) -"bsK" = ( +/area/horizon/operations/warehouse) +"bsG" = ( +/obj/structure/table/stone/marble, /obj/effect/floor_decal/spline/fancy/wood{ - dir = 1 + dir = 8 + }, +/obj/item/flame/candle, +/obj/machinery/button/switch/windowtint{ + dir = 8; + id = "chapel_outer"; + pixel_x = -22; + pixel_y = 3 }, /turf/simulated/floor/wood, -/area/horizon/bar) -"bsM" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled, -/area/engineering/storage_eva) +/area/horizon/service/chapel/main) "bsO" = ( /obj/machinery/computer/security/telescreen, /obj/effect/floor_decal/corner/orange/diagonal, @@ -10179,108 +9968,172 @@ icon_state = "white" }, /area/tdome/tdomeadmin) -"bsS" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 1 +"bsP" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 9 }, -/turf/simulated/floor/wood, -/area/horizon/cafeteria) -"bsX" = ( -/obj/effect/floor_decal/industrial/warning{ +/turf/simulated/floor/tiled, +/area/horizon/operations/warehouse) +"bsQ" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black, +/obj/machinery/door/airlock/hatch{ + dir = 1; + name = "Propulsion"; + req_one_access = list(11,24) + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/atmos/propulsion/starboard) +"bsR" = ( +/obj/effect/floor_decal/industrial/loading/yellow, +/obj/structure/platform{ dir = 4 }, -/obj/structure/target_stake, -/turf/simulated/floor/reinforced, -/area/rnd/test_range) -"btc" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/platform_stairs/full{ - dir = 4 - }, -/obj/structure/platform/cutout, -/turf/simulated/floor, -/area/bridge/upperdeck) -"btk" = ( -/obj/structure/noticeboard, -/turf/simulated/wall/r_wall, -/area/lawoffice/consular) -"btw" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 6 - }, /obj/machinery/light{ - dir = 4 + dir = 8 }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/operations/machinist) +"bsU" = ( +/obj/effect/floor_decal/corner_wide/grey/diagonal, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/vending/cola, +/turf/simulated/floor/tiled/white, +/area/horizon/operations/break_room) +"btb" = ( /obj/structure/cable/green{ icon_state = "1-2" }, -/turf/simulated/floor/tiled, -/area/hallway/primary/aft) -"btx" = ( -/obj/machinery/power/breakerbox/activated{ - RCon_tag = "Research Substation" - }, -/turf/simulated/floor/plating, -/area/maintenance/substation/research) -"btD" = ( -/obj/effect/floor_decal/corner/dark_green/full{ +/obj/machinery/light/small/emergency{ dir = 4 }, -/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/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 }, -/obj/effect/floor_decal/corner/dark_green{ - dir = 6 +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 }, -/turf/simulated/floor/tiled, -/area/hangar/auxiliary) +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/service/port) +"btg" = ( +/obj/item/storage/secure/safe{ + pixel_y = -20 + }, +/obj/effect/floor_decal/industrial/hatch/grey, +/obj/structure/filingcabinet{ + pixel_x = -9 + }, +/obj/machinery/papershredder{ + pixel_x = 7 + }, +/obj/machinery/light, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/command/heads/hos) +"bti" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/obj/machinery/portable_atmospherics/canister/empty, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/auxatmos) +"btn" = ( +/obj/effect/floor_decal/corner_wide/green{ + dir = 9 + }, +/obj/effect/floor_decal/corner_wide/green, +/obj/machinery/vending/wallmed2{ + pixel_x = -28 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/exam) +"btu" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/vending/cigarette, +/turf/simulated/floor/tiled/dark, +/area/horizon/hallway/primary/deck_3/starboard) +"btE" = ( +/obj/machinery/button/ignition{ + id = "turbine_igni"; + pixel_y = 26; + name = "Combustion Chamber Ignition" + }, +/obj/effect/floor_decal/corner/dark_blue{ + dir = 4 + }, +/obj/effect/floor_decal/corner/yellow{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/visible/cyan, +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/atmos/turbine) +"btI" = ( +/obj/machinery/door/firedoor, +/obj/structure/grille, +/obj/structure/window/shuttle/scc_space_ship/cardinal, +/obj/structure/cable/green, +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id = "bridge blast"; + name = "Bridge Blast Doors"; + opacity = 0 + }, +/obj/machinery/door/blast/shutters{ + dir = 4; + id = "shutters_deck3_captain"; + name = "Safety Shutter" + }, +/turf/simulated/floor/plating, +/area/horizon/command/heads/captain) +"btM" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/carpet/rubber, +/area/horizon/engineering/reactor/indra/monitoring) "btO" = ( /turf/simulated/floor/holofloor/beach/sand{ dir = 1; icon_state = "beachcorner" }, /area/horizon/holodeck/source_beach) -"btP" = ( -/obj/machinery/door/firedoor/multi_tile, -/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/multi_tile/glass{ - name = "Deck 3 Port Stairwell" - }, -/turf/simulated/floor/tiled/full, -/area/horizon/hallway/deck_three/primary/port) -"buc" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/structure/tank_wall/air{ - icon_state = "air10" - }, -/obj/machinery/atmospherics/pipe/manifold/visible, +"btS" = ( +/obj/structure/window/shuttle/scc_space_ship, +/obj/structure/grille, +/obj/machinery/door/firedoor, /turf/simulated/floor/plating, -/area/engineering/atmos/air) +/area/horizon/maintenance/deck_1/hangar/starboard) +"btW" = ( +/obj/structure/table/steel, +/obj/effect/floor_decal/corner/purple{ + dir = 5 + }, +/obj/item/stack/material/steel/full{ + pixel_x = -6; + pixel_y = 9 + }, +/turf/simulated/floor/tiled, +/area/horizon/maintenance/deck_2/wing/port) "bud" = ( /obj/machinery/camera/network/crescent{ c_tag = "Crescent Bar East"; @@ -10289,69 +10142,37 @@ /obj/structure/bed/stool/padded/beige, /turf/unsimulated/floor/wood, /area/centcom/bar) -"buf" = ( -/obj/machinery/atmospherics/portables_connector/fuel{ +"bue" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/starboard) +"bur" = ( +/obj/machinery/newscaster/east, +/obj/effect/floor_decal/corner/dark_green/full{ dir = 1 }, -/obj/machinery/portable_atmospherics/canister/phoron, -/obj/machinery/door/window/brigdoor{ - dir = 1; - name = "Fuel Access"; - req_access = null; - req_one_access = list(26,29,31,48,67,24,47,73) - }, -/obj/effect/floor_decal/industrial/outline/red, -/obj/machinery/alarm/west, -/turf/simulated/floor/reinforced, -/area/hangar/intrepid) -"bug" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/structure/disposalpipe/segment{ - icon_state = "pipe-c" - }, -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/turf/simulated/floor/tiled/white, -/area/medical/ors) -"bup" = ( -/obj/machinery/door/firedoor/multi_tile, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/airlock/multi_tile/glass{ - name = "Deck 1 Central Stairwell" - }, -/turf/simulated/floor/tiled/full, -/area/horizon/stairwell/central) -"bus" = ( -/obj/effect/floor_decal/corner/brown{ - dir = 9 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/operations/office_aux) -"buy" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 5 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ +/obj/machinery/light{ dir = 4 }, /turf/simulated/floor/tiled, -/area/security/checkpoint2) +/area/horizon/hallway/primary/deck_2/central) "buA" = ( /obj/machinery/porta_turret/crescent, /obj/effect/floor_decal/industrial/warning/full, /turf/unsimulated/floor/plating, /area/centcom/control) -"buB" = ( -/turf/simulated/wall/r_wall, -/area/lawoffice/representative_two) +"buC" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 9 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_2/central) "buD" = ( /obj/structure/lattice/catwalk/indoor/grate/dark, /obj/structure/railing/mapped{ @@ -10359,28 +10180,35 @@ }, /turf/simulated/floor/plating, /area/centcom/shared_dream) -"buF" = ( -/obj/effect/floor_decal/industrial/outline/medical, -/obj/structure/closet/secure_closet/personal, -/obj/machinery/light{ +"buH" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/simulated/floor/tiled/full, -/area/medical/washroom) -"buI" = ( -/obj/machinery/door/blast/shutters/open{ - dir = 2; - id = "shutters_hangarseccpexternal"; - name = "Security Checkpoint External Shutter" +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 }, -/obj/machinery/door/blast/regular/open{ - dir = 4; - id = "hangarlockdown"; - name = "Hangar Lockdown" +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 }, -/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, -/turf/simulated/floor/tiled/dark/full, -/area/storage/eva) +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner/dark_green{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/horizon/command/bridge/upperdeck) +"buJ" = ( +/obj/structure/tank_wall/nitrous_oxide{ + density = 0; + icon_state = "h5"; + opacity = 0 + }, +/obj/machinery/atmospherics/pipe/simple/visible/red{ + dir = 4 + }, +/turf/simulated/floor/reinforced/n20, +/area/horizon/engineering/atmos/air) "buL" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/generic, @@ -10401,21 +10229,10 @@ }, /turf/unsimulated/floor/wood, /area/centcom/bar) -"buS" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/effect/floor_decal/corner/brown{ - dir = 10 - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/effect/floor_decal/industrial/warning/corner, -/obj/structure/railing/mapped, +"buV" = ( +/obj/effect/floor_decal/corner_wide/yellow, /turf/simulated/floor/tiled, -/area/operations/loading) +/area/horizon/engineering/hallway/aft) "buW" = ( /obj/effect/floor_decal/corner/dark_blue{ dir = 9 @@ -10430,59 +10247,54 @@ icon_state = "dark_preview" }, /area/centcom/holding) -"bvb" = ( -/obj/machinery/atmospherics/pipe/simple/visible/universal{ - dir = 4 +"buY" = ( +/obj/structure/cable{ + icon_state = "4-8" }, -/obj/machinery/meter, -/turf/simulated/floor/plating, -/area/engineering/atmos/air) -"bvf" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/shuttle/scc_space_ship, -/turf/simulated/floor/plating, -/area/horizon/maintenance/deck_three/aft/starboard) -"bvg" = ( -/obj/structure/table/standard, -/obj/effect/floor_decal/corner_wide/green/full, -/obj/machinery/alarm/west, -/obj/item/storage/box/masks, -/obj/item/storage/box/masks, -/obj/item/storage/box/gloves{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/storage/box/gloves{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/structure/railing/mapped, -/obj/structure/stairs_lower/stairs_upper, -/turf/simulated/floor/tiled/white, -/area/hallway/medical) -"bvh" = ( -/obj/structure/foamedmetal, -/turf/simulated/floor/plating, -/area/rnd/xenobiology) -"bvl" = ( -/obj/machinery/camera/network/second_deck{ - c_tag = "Second Deck - Tech Storage Entrance"; +/obj/effect/floor_decal/corner/yellow/diagonal, +/obj/effect/floor_decal/industrial/warning{ dir = 1 }, -/obj/structure/sign/securearea{ - name = "\improper WARNING: SECURE AMMUNITION STORAGE sign"; - pixel_x = -32 - }, +/turf/simulated/floor/tiled, +/area/horizon/stairwell/engineering/deck_2) +"bvi" = ( /obj/machinery/light{ + dir = 1 + }, +/obj/effect/floor_decal/corner/yellow/full{ dir = 8 }, -/obj/effect/floor_decal/corner/dark_green/full, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/closet/secure_closet/engineering_welding, /turf/simulated/floor/tiled, -/area/operations/lobby) +/area/horizon/engineering/storage_eva) +"bvm" = ( +/obj/machinery/button/remote/airlock{ + dir = 4; + id = "hydro_hazard"; + name = "Hazardous Specimens Bolt Control"; + specialfunctions = 4; + pixel_x = 20; + pixel_y = -5; + req_access = list(35) + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/button/remote/airlock{ + id = "hydro_hazard"; + name = "Hazardous Specimens Door Control"; + pixel_y = 8; + req_access = list(35); + dir = 4; + pixel_x = 20 + }, +/obj/machinery/atmospherics/valve/open{ + name = "Tray Cutoff Valve" + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/service/hydroponics/lower) "bvo" = ( /obj/structure/closet/secure_closet/security_cadet, /obj/effect/floor_decal/corner/dark_blue/full{ @@ -10492,38 +10304,15 @@ /obj/machinery/light, /turf/simulated/floor/tiled, /area/horizon/security/equipment) +"bvp" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/port/far) "bvt" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/carpet/art, /area/shuttle/skipjack) -"bvv" = ( -/obj/machinery/door/firedoor, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/airlock/glass_command{ - dir = 1; - name = "Expedition EVA Storage"; - req_access = list(18) - }, -/turf/simulated/floor/tiled/full, -/area/storage/eva) -"bvx" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/white, -/area/medical/ors) -"bvy" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/random/dirt_75, -/obj/random/dirt_75, -/turf/simulated/floor/tiled/dark, -/area/maintenance/wing/port/far) "bvA" = ( /obj/effect/floor_decal/corner/green/diagonal, /obj/machinery/atmospherics/unary/vent_scrubber/on{ @@ -10532,43 +10321,30 @@ /obj/machinery/firealarm/north, /turf/simulated/floor/tiled/white, /area/horizon/security/washroom) -"bvB" = ( -/obj/machinery/atmospherics/binary/pump{ - dir = 8; - name = "Distro to Trays"; - use_power = 1 +"bvC" = ( +/obj/structure/flora/ausbushes/sparsegrass, +/obj/machinery/light{ + dir = 4 }, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology/xenoflora) -"bvL" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/structure/tank_wall/air, -/turf/simulated/floor/plating, -/area/engineering/atmos/air) -"bvN" = ( -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/visible/black, -/obj/structure/lattice/catwalk/indoor, -/turf/simulated/floor/plating, -/area/engineering/atmos/air) -"bvU" = ( -/obj/effect/floor_decal/corner/dark_blue{ +/turf/simulated/floor/grass/no_edge, +/area/horizon/service/hydroponics/lower) +"bvI" = ( +/obj/effect/floor_decal/corner/brown{ dir = 6 }, -/obj/structure/closet/secure_closet/guncabinet{ - name = "Bridge Defense Equipment"; - req_access = list(60) +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/light{ + dir = 4 }, -/obj/item/melee/baton/loaded, -/obj/item/melee/baton/loaded, -/obj/item/melee/baton/loaded, -/obj/effect/floor_decal/industrial/outline/red, /turf/simulated/floor/tiled, -/area/bridge/supply) +/area/horizon/operations/office_aux) +"bvK" = ( +/obj/machinery/power/breakerbox, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/cobweb, +/turf/simulated/floor/plating, +/area/horizon/maintenance/substation/wing_starboard) "bvX" = ( /obj/structure/coatrack{ pixel_x = 10; @@ -10580,28 +10356,17 @@ /obj/effect/floor_decal/spline/fancy/wood/corner, /turf/simulated/floor/wood/yew, /area/centcom/shared_dream) -"bwl" = ( -/obj/structure/table/wood, -/obj/item/device/flashlight/lamp/green{ - pixel_y = 9; - pixel_x = 5 +"bwh" = ( +/obj/random/loot, +/obj/structure/closet, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 }, -/obj/machinery/button/switch/windowtint{ - dir = 1; - id = "Bar_Private_Lounge"; - pixel_y = 24 +/obj/structure/railing/mapped{ + dir = 8 }, -/obj/item/lore_radio{ - pixel_x = 9; - pixel_y = 2 - }, -/obj/random/pottedplant_small{ - pixel_x = -7; - pixel_y = 3 - }, -/obj/machinery/power/outlet, -/turf/simulated/floor/carpet/red, -/area/horizon/bar) +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/wing/starboard) "bwn" = ( /obj/machinery/recharger/wallcharger{ pixel_x = 2; @@ -10624,119 +10389,66 @@ }, /turf/simulated/floor/tiled, /area/horizon/security/office) -"bwo" = ( -/obj/structure/grille, -/obj/structure/window/shuttle/scc_space_ship, -/obj/machinery/door/blast/shutters/open{ - dir = 8; - id = "bar_viewing_shutters"; - name = "Bar Viewing Shutters" +"bwu" = ( +/obj/structure/cable/green{ + icon_state = "1-2" }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/horizon/bar) -"bwp" = ( -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/plating, -/area/maintenance/engineering) +/turf/simulated/floor/wood, +/area/horizon/command/heads/captain) "bwv" = ( /obj/effect/floor_decal/carpet{ dir = 8 }, /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" }, /area/shuttle/legion) -"bwJ" = ( -/obj/machinery/button/remote/blast_door{ - dir = 8; - id = "exteriorpropulsionstarboard"; - name = "Exterior Blast Door"; - pixel_x = -22; - pixel_y = -3 - }, -/obj/machinery/button/remote/blast_door{ - dir = 8; - id = "interiorpropulsionstarboard"; - name = "Interior Blast Door"; - pixel_x = -22; - pixel_y = 8 - }, -/obj/machinery/button/remote/airlock{ - dir = 8; - id = "starboard_combustion"; - name = "Door Bolt Control"; - pixel_x = -28; - pixel_y = 7; - req_access = list(10); - specialfunctions = 4 - }, -/obj/effect/floor_decal/corner_wide/black{ - dir = 9 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/visible/black{ - dir = 1 - }, -/obj/machinery/meter, +"bwK" = ( +/obj/item/folder/blue, +/obj/item/pen, +/obj/structure/table/reinforced/wood, /turf/simulated/floor/tiled/dark, -/area/engineering/atmos/propulsion/starboard) -"bwN" = ( -/obj/effect/floor_decal/industrial/warning{ +/area/horizon/command/bridge/meeting_room) +"bwM" = ( +/obj/effect/floor_decal/corner/green/diagonal{ dir = 8 }, -/obj/structure/tank_wall/nitrous_oxide{ - icon_state = "n2o8" +/obj/structure/bed/stool/chair/plastic{ + dir = 8 }, -/turf/simulated/floor/plating, -/area/engineering/atmos/air) +/turf/simulated/floor/tiled/white, +/area/horizon/medical/ward) +"bwO" = ( +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/effect/floor_decal/corner/dark_blue/diagonal, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/weapons/longbow) "bwP" = ( /obj/effect/floor_decal/corner/green{ dir = 6 }, /turf/simulated/floor/holofloor/tiled/dark, /area/horizon/holodeck/source_boxingcourt) +"bwQ" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/chemistry) "bwS" = ( /obj/effect/floor_decal/industrial/warning{ dir = 8 }, /turf/simulated/floor/tiled/dark, /area/shuttle/mercenary) -"bwY" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 7 - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 1 - }, -/obj/machinery/disposal/small/north, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/machinery/keycard_auth{ - pixel_x = 1; - pixel_y = -26 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/heads/hop/xo) "bxa" = ( /obj/structure/closet/crate/secure/legion, /obj/item/storage/belt/security/tactical, @@ -10757,12 +10469,23 @@ /obj/item/melee/energy/sword/knife, /turf/unsimulated/floor, /area/centcom/legion) +"bxd" = ( +/obj/structure/bed/stool/chair/office/light, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/xenological) "bxi" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 4 }, /turf/simulated/floor/tiled, /area/horizon/security/brig) +"bxk" = ( +/obj/structure/platform/ledge, +/turf/simulated/open, +/area/horizon/operations/office) "bxn" = ( /obj/structure/closet/wardrobe/orange, /obj/machinery/light{ @@ -10772,82 +10495,75 @@ icon_state = "dark_preview" }, /area/centcom/specops) -"bxo" = ( -/obj/structure/cable{ - icon_state = "1-2" +"bxp" = ( +/obj/structure/cable/green{ + icon_state = "4-8" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/visible/green{ +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/lattice/catwalk/indoor, -/turf/simulated/floor/plating, -/area/engineering/atmos/air) -"bxw" = ( -/obj/structure/cable{ - icon_state = "1-2" +/obj/effect/floor_decal/corner_wide/yellow{ + dir = 5 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/lattice/catwalk/indoor, -/turf/simulated/floor/plating, -/area/engineering/atmos/air) -"bxB" = ( -/obj/structure/table/standard, -/obj/effect/floor_decal/corner_wide/paleblue/full, -/obj/machinery/button/switch/windowtint{ - dir = 8; - id = "surgery1"; - pixel_x = -21; - pixel_y = 10; - req_access = list(66) +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 }, -/obj/item/storage/box/gloves, -/obj/item/storage/box/masks{ - pixel_x = 4; - pixel_y = 4 +/obj/structure/noticeboard{ + pixel_y = 32 }, -/obj/machinery/button/switch/holosign{ - dir = 8; - id = 1; - pixel_x = -21 +/obj/structure/engineer_maintenance/pipe{ + dir = 8 }, -/obj/machinery/light, +/obj/structure/engineer_maintenance/electric{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/horizon/engineering/lobby) +"bxr" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/firealarm/north, +/obj/effect/floor_decal/corner/brown{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/horizon/operations/warehouse) +"bxt" = ( +/obj/effect/floor_decal/corner/grey/diagonal, /turf/simulated/floor/tiled/white, -/area/medical/ors) -"bxF" = ( -/obj/structure/cable/green{ - icon_state = "1-2" +/area/horizon/medical/reception) +"bxz" = ( +/obj/effect/floor_decal/corner_wide/yellow{ + dir = 9 }, -/turf/simulated/floor/tiled/full, -/area/engineering/rust_office) -"bxJ" = ( -/obj/machinery/atmospherics/unary/engine/scc_ship_engine, -/turf/simulated/floor/reinforced{ - blocks_air = 1; - density = 1; - name = "thruster mount" +/turf/simulated/floor/tiled, +/area/horizon/engineering/lobby) +"bxA" = ( +/obj/structure/platform_stairs/full/east_west_cap, +/obj/structure/platform{ + dir = 1 }, -/area/engineering/atmos/propulsion/starboard) -"bxK" = ( -/obj/machinery/door/blast/regular/open{ - id = "iso_c"; - name = "Safety Blast Door" +/obj/structure/railing/mapped, +/obj/effect/floor_decal/corner/lime{ + dir = 5 }, -/obj/effect/map_effect/window_spawner/full/borosilicate/reinforced/firedoor, -/obj/machinery/alarm/south{ - alarm_id = 1501; - breach_detection = 0; - dir = 4; - name = "Isolation A"; - pixel_x = -24; - rcon_setting = 3; - report_danger_level = 0; - req_one_access = list(7,47,24,11) +/turf/simulated/floor/tiled/white{ + name = "cooled white floor"; + temperature = 278.15 }, -/turf/simulated/floor/tiled/dark/full, -/area/rnd/isolation_a) +/area/horizon/medical/morgue) +"bxI" = ( +/obj/structure/table/steel, +/obj/random/dirt_75, +/obj/random/tech_supply{ + pixel_y = 2 + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/starboard/far) "bxL" = ( /obj/machinery/porta_turret/cannon, /obj/machinery/light/colored/red{ @@ -10856,27 +10572,19 @@ /obj/effect/floor_decal/industrial/warning/full, /turf/simulated/floor/reinforced, /area/shuttle/hapt) -"bxP" = ( -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/random/junk, -/obj/structure/platform{ - dir = 4 - }, -/turf/simulated/floor, -/area/maintenance/wing/port/far) -"bxQ" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 10 - }, -/obj/machinery/light, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/port) "bxS" = ( /obj/structure/flora/ausbushes/sparsegrass, /turf/simulated/floor/exoplanet/grass, /area/centcom/shared_dream) +"bxX" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 6 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_2/fore) "bxZ" = ( /obj/effect/floor_decal/corner, /turf/simulated/floor/holofloor/tiled, @@ -10888,14 +10596,16 @@ }, /turf/simulated/floor/tiled, /area/horizon/security/investigations_hallway) -"byd" = ( -/obj/machinery/atmospherics/pipe/simple/visible/black, -/obj/effect/floor_decal/corner/yellow, -/obj/effect/floor_decal/corner/dark_blue{ +"byc" = ( +/obj/effect/floor_decal/spline/fancy/wood{ dir = 4 }, -/turf/simulated/floor/tiled/dark, -/area/engineering/atmos) +/obj/structure/table/wood, +/obj/random/pottedplant_small{ + pixel_x = 9 + }, +/turf/simulated/floor/carpet, +/area/horizon/repoffice/representative_one) "byg" = ( /obj/structure/bed/stool/chair/shuttle{ dir = 4 @@ -10903,24 +10613,85 @@ /obj/effect/floor_decal/spline/fancy/wood/cee, /turf/simulated/floor/carpet, /area/shuttle/hapt) -"byj" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 +"byn" = ( +/obj/machinery/power/apc/low/north, +/obj/structure/cable/green{ + icon_state = "0-2" }, -/turf/simulated/floor/plating, -/area/engineering/drone_fabrication) -"byl" = ( -/obj/machinery/vending/snack, -/obj/effect/floor_decal/industrial/outline/grey, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/cafeteria) -"bys" = ( -/obj/effect/floor_decal/corner/purple{ +/obj/effect/floor_decal/corner/dark_green{ dir = 5 }, +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, /turf/simulated/floor/tiled, -/area/horizon/custodial/auxiliary) +/area/horizon/hallway/primary/deck_3/port) +"byp" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/machinery/door/airlock/external{ + dir = 4 + }, +/obj/effect/map_effect/marker_helper/airlock/interior, +/obj/effect/map_effect/marker/airlock/docking{ + landmark_tag = "nav_horizon_dock_deck_3_starboard_1"; + master_tag = "airlock_horizon_dock_deck_3_starboard_1"; + name = "airlock_horizon_dock_deck_3_starboard_1" + }, +/turf/simulated/floor/plating, +/area/horizon/hallway/primary/deck_3/port/docks) +"byt" = ( +/obj/machinery/atmospherics/binary/pump/fuel{ + name = "Fuel Tank to Thrusters" + }, +/obj/item/device/radio/intercom/east{ + pixel_y = 6 + }, +/obj/effect/floor_decal/corner/dark_blue/full{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/bed/handrail{ + dir = 8 + }, +/obj/machinery/embedded_controller/radio/simple_docking_controller{ + dir = 8; + frequency = 1386; + id_tag = "canary"; + name = "port docking controller"; + pixel_x = 22; + pixel_y = 12; + tag_door = "canary_out" + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/shuttle/canary) +"byv" = ( +/obj/effect/landmark/entry_point/aft{ + name = "aft, deck 1 port maintenance, starboard side" + }, +/turf/simulated/wall/shuttle/scc_space_ship/cardinal, +/area/horizon/engineering/bluespace_drive) +"byG" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/obj/random/pottedplant{ + pixel_y = 6 + }, +/obj/structure/platform{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/horizon/service/bar) "byJ" = ( /obj/machinery/door/blast/odin{ dir = 4; @@ -10944,14 +10715,17 @@ }, /turf/unsimulated/floor/plating, /area/antag/mercenary) -"byS" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 +"byN" = ( +/turf/simulated/wall/r_wall, +/area/horizon/stairwell/engineering/deck_1) +"byQ" = ( +/obj/machinery/door/blast/shutters{ + dir = 2; + id = "cargo_desk" }, -/obj/structure/closet, -/obj/random/loot, -/turf/simulated/floor/plating, -/area/maintenance/hangar/port) +/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/operations/office) "byV" = ( /obj/structure/railing/mapped, /obj/effect/floor_decal/industrial/warning{ @@ -10965,30 +10739,32 @@ }, /obj/structure/grille, /turf/simulated/floor/tiled/dark/full/airless, -/area/horizon/exterior) -"bzc" = ( -/obj/effect/floor_decal/industrial/warning/cee, -/obj/structure/ship_weapon_dummy/barrel, -/turf/simulated/floor/reinforced, -/area/shuttle/canary) -"bzs" = ( -/obj/structure/bed/stool/chair/office/dark, -/obj/effect/floor_decal/spline/plain{ - dir = 1 +/area/horizon/command/bridge/controlroom) +"byY" = ( +/obj/effect/floor_decal/corner/beige{ + dir = 9 }, -/turf/simulated/floor/tiled/dark, -/area/engineering/break_room) -"bzv" = ( -/obj/machinery/firealarm/east, -/obj/effect/floor_decal/corner/dark_green{ - dir = 6 - }, -/obj/effect/floor_decal/industrial/warning/corner, -/obj/structure/bed/stool/chair/padded/black{ - dir = 8 +/obj/machinery/light_switch{ + dir = 8; + pixel_x = -23; + pixel_y = 3 }, /turf/simulated/floor/tiled, -/area/hangar/intrepid) +/area/horizon/crew/vacantoffice) +"bzq" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/obj/machinery/firealarm/east, +/turf/simulated/floor/plating, +/area/horizon/engineering/bluespace_drive) +"bzw" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 5 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_3/port) "bzC" = ( /obj/effect/decal/fake_object{ name = "service ladder"; @@ -11003,42 +10779,93 @@ }, /turf/unsimulated/floor/plating, /area/centcom/bar) -"bzH" = ( +"bzD" = ( +/obj/structure/girder, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/port/nacelle) +"bzE" = ( +/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/operations/loading) +"bzG" = ( +/obj/structure/cable/green, +/obj/structure/bed/stool/chair/shuttle{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 10 + }, +/obj/machinery/power/apc/mining_shuttle/east{ + req_one_access = list(48,11,74) + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/shuttle/mining) +"bzL" = ( +/obj/effect/floor_decal/corner/brown/full{ + dir = 8 + }, +/obj/machinery/computer/shuttle_control/multi/lift/wall/operations{ + pixel_x = -8; + pixel_y = 26 + }, +/turf/simulated/floor/tiled, +/area/horizon/operations/loading) +"bzP" = ( +/obj/effect/floor_decal/corner/yellow/full{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/aft_airlock) +"bzY" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 9 + }, +/obj/structure/table/standard, +/obj/item/hand_tele, +/turf/simulated/floor/tiled/dark, +/area/horizon/command/teleporter) +"bzZ" = ( +/obj/machinery/button/remote/airlock{ + dir = 8; + id = "cryo_toilet_1"; + name = "Door Bolt Control"; + pixel_x = -24; + pixel_y = 6; + specialfunctions = 4 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/effect/floor_decal/corner/green/diagonal, +/obj/structure/toilet{ + dir = 1; + pixel_y = -1 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/crew/washroom/deck_3) +"bAb" = ( +/obj/effect/shuttle_landmark/lift/robotics_third_deck, +/turf/simulated/open, +/area/horizon/stairwell/port/deck_3) +"bAf" = ( +/obj/structure/platform{ + dir = 4 + }, +/obj/effect/floor_decal/corner/dark_blue{ + dir = 10 + }, /obj/structure/railing/mapped{ dir = 8 }, -/obj/effect/floor_decal/spline/fancy{ - dir = 10 - }, -/obj/item/tape_roll, -/obj/item/tape_roll, -/obj/item/tape_roll, -/obj/item/tape_roll, -/obj/item/storage/toolbox/mechanical, -/obj/machinery/camera/network/command{ - c_tag = "Bridge - Cockpit"; - dir = 4 - }, -/obj/item/device/multitool{ - pixel_x = 3; - pixel_y = 15 - }, -/obj/structure/table/reinforced/steel, -/turf/simulated/floor/carpet/rubber, -/area/bridge/controlroom) -"bzQ" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/structure/engineer_maintenance/pipe/wall, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/engine_room) +/turf/simulated/floor/reinforced, +/area/horizon/command/bridge/controlroom) "bAi" = ( /obj/effect/floor_decal/spline/plain{ dir = 4 @@ -11047,67 +10874,33 @@ dir = 4 }, /area/centcom/distress_prep) -"bAk" = ( -/obj/structure/table/rack{ - dir = 8 +"bAj" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 6 }, -/obj/item/device/multitool, -/obj/item/cell/high{ - charge = 100; - maxcharge = 15000 - }, -/obj/item/cell/high{ - charge = 100; - maxcharge = 15000 - }, -/obj/item/device/flash, -/obj/item/device/flash, -/turf/simulated/floor/plating, -/area/engineering/storage/lower) +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_3/port) "bAn" = ( /obj/structure/ship_weapon_dummy, /turf/simulated/open/airless, /area/template_noop) -"bAr" = ( -/obj/structure/bed/stool/chair/office/bridge{ - dir = 1 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/effect/floor_decal/corner/dark_blue/diagonal, +"bAp" = ( +/obj/machinery/atmospherics/pipe/manifold4w/visible/yellow, +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/atmos) +"bAq" = ( +/obj/effect/floor_decal/corner/grey/diagonal, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 + dir = 6 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 + dir = 6 }, -/obj/structure/cable{ - icon_state = "1-2" +/obj/structure/disposalpipe/segment{ + icon_state = "pipe-c" }, -/turf/simulated/floor/tiled/dark, -/area/turret_protected/ai_upload_foyer) -"bAs" = ( -/obj/structure/table/wood, -/obj/machinery/button/switch/windowtint{ - dir = 4; - id = "psych"; - pixel_x = 21; - pixel_y = -9 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/item/device/flashlight/lamp/lava/pink{ - pixel_x = 5; - pixel_y = 14 - }, -/obj/random/desktoy{ - pixel_x = -7; - pixel_y = 6 - }, -/turf/simulated/floor/carpet, -/area/medical/psych) +/turf/simulated/floor/tiled/white, +/area/horizon/service/kitchen) "bAt" = ( /obj/effect/floor_decal/snowdrift{ dir = 1 @@ -11124,33 +10917,40 @@ }, /turf/simulated/floor/tiled/dark, /area/supply/dock) -"bAy" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/structure/cable{ - icon_state = "1-8" +"bAC" = ( +/obj/machinery/door/firedoor/multi_tile, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 }, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard/far) -"bAG" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/structure/cable/green{ - icon_state = "4-8" +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/door/blast/shutters/open{ + dir = 2; + id = "shutters_deck2_portstairwellsec"; + name = "Security Shutter" }, -/obj/effect/floor_decal/corner/mauve{ - dir = 5 +/obj/machinery/door/airlock/multi_tile/glass{ + name = "Deck 1 Port Stairwell Auxiliary Hangar Elevator" }, -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/obj/structure/disposalpipe/sortjunction/flipped{ +/obj/machinery/door/blast/regular/open{ dir = 4; - name = "Research and Development"; - sortType = "Research and Development" + id = "hangarlockdown"; + name = "Hangar Lockdown" }, -/turf/simulated/floor/tiled, -/area/rnd/hallway) +/turf/simulated/floor/tiled/full, +/area/horizon/rnd/eva) +"bAD" = ( +/obj/machinery/telecomms/receiver/preset_right, +/turf/simulated/floor/bluegrid, +/area/horizon/tcommsat/chamber) +"bAI" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 10 + }, +/obj/structure/table/standard, +/obj/item/flora/pottedplant_small, +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/lab) "bAJ" = ( /obj/structure/shuttle/engine/heater{ icon_state = "router" @@ -11192,15 +10992,14 @@ }, /turf/unsimulated/floor/dark_monotile, /area/antag/actor) -"bBb" = ( -/obj/effect/map_effect/window_spawner/full/borosilicate/reinforced/firedoor, -/obj/machinery/door/blast/regular/open{ - dir = 4; - id = "r-ust_monitoring_blast"; - name = "INDRA Monitoring Blast Doors" +"bAY" = ( +/obj/structure/railing/mapped, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/structure/cable{ + icon_state = "4-8" }, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/engine_monitoring/rust) +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/aft) "bBe" = ( /obj/effect/decal/fake_object{ desc = "A sign."; @@ -11225,16 +11024,6 @@ }, /turf/simulated/floor/holofloor/snow, /area/horizon/holodeck/source_adhomai) -"bBj" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 10 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/railing/mapped, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/engine_room/rust) "bBl" = ( /obj/structure/table/wood, /obj/item/paper_bin{ @@ -11252,6 +11041,32 @@ }, /turf/simulated/floor/wood, /area/horizon/security/meeting_room) +"bBm" = ( +/turf/simulated/floor/tiled/dark, +/area/horizon/maintenance/deck_2/wing/port/nacelle) +"bBn" = ( +/obj/effect/floor_decal/corner_wide/paleblue{ + dir = 9 + }, +/obj/structure/closet/secure_closet/medical2, +/obj/machinery/firealarm/west, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/surgery) +"bBo" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/corner/white{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/storage/eva) "bBp" = ( /obj/structure/table/wood, /obj/random/coin, @@ -11260,48 +11075,25 @@ }, /turf/unsimulated/floor/wood, /area/antag/raider) -"bBq" = ( -/obj/machinery/atmospherics/pipe/tank/carbon_dioxide/scc_shuttle{ +"bBv" = ( +/turf/simulated/wall, +/area/horizon/maintenance/deck_1/hangar/port) +"bBz" = ( +/obj/effect/floor_decal/industrial/outline/medical, +/obj/structure/closet/walllocker/medical/firstaid{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/hallway/primary/deck_3/central) +"bBH" = ( +/obj/machinery/light/spot{ dir = 4 }, -/obj/item/device/gps/stationary/sccv_quark{ - pixel_x = -23 +/obj/effect/floor_decal/industrial/warning{ + dir = 5 }, /turf/simulated/floor/plating, -/area/shuttle/quark/cargo_hold) -"bBA" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 10 - }, -/obj/machinery/disposal/small/north, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/horizon/crew_quarters/cryo/living_quarters_lift) -"bBD" = ( -/obj/machinery/button/remote/blast_door{ - dir = 8; - id = "shutters_custodialgarage"; - name = "Custodial Garage Shutters"; - pixel_x = -22; - pixel_y = 7; - req_access = list(26) - }, -/obj/machinery/ringer_button{ - id = "ringers_custodial"; - name = "Custodial ringer button"; - pixel_x = -24; - pixel_y = -7 - }, -/obj/effect/floor_decal/corner/dark_green{ - dir = 9 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/aft) +/area/horizon/hangar/intrepid) "bBJ" = ( /obj/structure/flora/pottedplant{ icon_state = "plant-22"; @@ -11310,50 +11102,66 @@ }, /turf/unsimulated/floor/wood, /area/centcom/evac) +"bBK" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 10 + }, +/obj/machinery/atm{ + pixel_y = -8 + }, +/turf/simulated/floor/tiled, +/area/horizon/operations/lobby) "bBN" = ( /obj/effect/floor_decal/industrial/warning{ dir = 1 }, /turf/unsimulated/floor, /area/antag/mercenary) -"bBO" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/structure/window/shuttle/scc_space_ship/cardinal, -/obj/structure/cable/green, +"bBQ" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /obj/structure/cable/green{ - icon_state = "1-2" + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner/mauve{ + dir = 5 }, /obj/structure/cable/green{ icon_state = "1-4" }, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "bridge blast"; - name = "Bridge Blast Doors"; - opacity = 0 - }, -/obj/machinery/door/blast/shutters{ +/obj/structure/disposalpipe/sortjunction/flipped{ dir = 4; - id = "shutters_deck3_captain"; - name = "Safety Shutter" + name = "Research and Development"; + sortType = "Research and Development" }, -/turf/simulated/floor/plating, -/area/crew_quarters/captain) -"bBR" = ( -/obj/machinery/light{ +/turf/simulated/floor/tiled, +/area/horizon/rnd/hallway) +"bBU" = ( +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/structure/platform/ledge, +/obj/structure/platform/ledge{ + dir = 4 + }, +/obj/structure/platform_deco/ledge{ + dir = 5 + }, +/turf/simulated/open, +/area/horizon/hallway/primary/deck_3/central) +"bBX" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner/yellow/diagonal, +/obj/effect/floor_decal/industrial/warning/corner{ dir = 1 }, -/obj/machinery/computer/general_air_control/large_tank_control/terminal{ - sensors = list("ph_sensor"="Tank"); - output_tag = "ph_out"; - name = "Phoron Supply Console"; - input_tag = "ph_in" +/obj/machinery/camera/network/engineering{ + c_tag = "Engineering - Deck 2 - Engineering Substation Access" }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/atmos) +/turf/simulated/floor/tiled, +/area/horizon/stairwell/engineering/deck_2) "bBY" = ( /obj/effect/decal/cleanable/dirt, /obj/item/mop, @@ -11369,6 +11177,15 @@ /obj/structure/flora/ausbushes/ywflowers, /turf/unsimulated/floor/grass, /area/antag/actor) +"bCe" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 5 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/horizon/security/checkpoint2) "bCh" = ( /obj/effect/floor_decal/corner/grey{ dir = 8 @@ -11378,39 +11195,6 @@ }, /turf/unsimulated/floor, /area/antag/mercenary) -"bCi" = ( -/turf/simulated/wall, -/area/maintenance/hangar/port) -"bCj" = ( -/obj/structure/ladder{ - pixel_y = 10 - }, -/turf/simulated/open, -/area/horizon/maintenance/deck_two/fore/starboard) -"bCk" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/storage_eva) -"bCl" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/corner/brown{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/operations/office) "bCp" = ( /obj/structure/table/reinforced/steel, /obj/item/aicard, @@ -11419,16 +11203,6 @@ icon_state = "dark_preview" }, /area/centcom/control) -"bCr" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 5 - }, -/obj/structure/closet/walllocker/firecloset{ - pixel_y = 32 - }, -/obj/effect/floor_decal/industrial/outline/firefighting_closet, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/starboard) "bCu" = ( /obj/effect/floor_decal/corner/red{ dir = 9 @@ -11437,6 +11211,12 @@ /obj/item/flame/lighter/zippo/dominia, /turf/simulated/floor/marble/dark, /area/horizon/holodeck/source_tribunal) +"bCv" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_1/central) "bCA" = ( /obj/structure/table/wood, /obj/item/folder/sec, @@ -11450,6 +11230,22 @@ }, /turf/simulated/floor/carpet, /area/horizon/security/investigators_office) +"bCH" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_medical{ + dir = 1; + name = "Pharmacy"; + req_access = list(33) + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/full, +/area/horizon/medical/pharmacy) "bCI" = ( /obj/structure/table/rack, /obj/effect/floor_decal/industrial/outline/yellow, @@ -11461,6 +11257,20 @@ }, /turf/unsimulated/floor, /area/centcom/legion/hangar5) +"bCK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/obj/effect/decal/cleanable/cobweb2{ + icon_state = "cobweb1" + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/effect/landmark{ + name = "Revenant" + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/main/starboard) "bCO" = ( /obj/effect/floor_decal/corner/beige{ dir = 5 @@ -11474,70 +11284,39 @@ }, /turf/simulated/floor/tiled/white, /area/horizon/security/forensic_laboratory) -"bCP" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/effect/floor_decal/spline/plain{ - dir = 8 - }, -/obj/effect/floor_decal/spline/plain/corner{ +"bCR" = ( +/obj/machinery/camera/network/engineering{ + c_tag = "Engineering - Port Propulsion"; dir = 1 }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/white, -/area/horizon/kitchen) -"bCQ" = ( -/turf/simulated/wall, -/area/hallway/medical) -"bCU" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small/emergency{ - dir = 4 +/obj/effect/floor_decal/corner_wide/black{ + dir = 10 }, -/obj/structure/cable{ - icon_state = "1-2" +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 8 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/atmos/propulsion/starboard) +"bCW" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/random/junk, +/obj/structure/lattice/catwalk/indoor/grate, /turf/simulated/floor/plating, -/area/maintenance/hangar/starboard) -"bCV" = ( -/obj/effect/floor_decal/corner/brown{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/refinery) +/area/horizon/hallway/primary/deck_2/central) "bDa" = ( /turf/unsimulated/floor/wood, /area/antag/burglar) -"bDc" = ( -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/visible/black, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/dark, -/area/engineering/atmos) -"bDg" = ( -/obj/effect/floor_decal/industrial/outline/engineering, -/obj/machinery/atmospherics/pipe/manifold/hidden/fuel{ - dir = 4 - }, -/obj/machinery/atmospherics/binary/pump{ - dir = 8; - name = "Emergency Airlock Air Feed" - }, -/obj/effect/floor_decal/industrial/outline/operations, -/turf/simulated/floor/plating, -/area/shuttle/mining) -"bDh" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard) +"bDf" = ( +/obj/machinery/telecomms/server/presets/common, +/turf/simulated/floor/bluegrid, +/area/horizon/tcommsat/chamber) "bDi" = ( /obj/structure/bed/stool/chair, /obj/effect/floor_decal/corner/orange/diagonal, @@ -11546,18 +11325,6 @@ icon_state = "white" }, /area/tdome/tdomeadmin) -"bDj" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/machinery/alarm/west, -/obj/effect/floor_decal/industrial/outline_segment/yellow{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/maintenance/wing/port/far) -"bDl" = ( -/obj/item/stack/rods, -/turf/simulated/floor/plating, -/area/maintenance/operations) "bDq" = ( /obj/effect/floor_decal/corner/yellow, /obj/effect/floor_decal/corner{ @@ -11565,42 +11332,9 @@ }, /turf/simulated/floor/marble/dark, /area/horizon/holodeck/source_trinary) -"bDt" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/binary/pump{ - dir = 4; - name = "Mix to Waste" - }, -/obj/effect/floor_decal/corner/yellow{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/dark, -/area/engineering/atmos) "bDu" = ( /turf/unsimulated/floor, /area/centcom/ferry) -"bDv" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/effect/floor_decal/corner/dark_green/full, -/obj/structure/railing/mapped{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/aft) -"bDy" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/full, -/area/hallway/primary/central_two) "bDz" = ( /obj/effect/floor_decal/industrial/warning/full, /obj/machinery/porta_turret/crescent, @@ -11608,28 +11342,40 @@ icon_state = "dark_preview" }, /area/centcom/specops) -"bDE" = ( -/obj/item/modular_computer/console/preset/command{ +"bDD" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/horizon/operations/lobby) +"bDI" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 1 + }, +/turf/simulated/wall/shuttle/scc, +/area/horizon/shuttle/intrepid/engineering) +"bDM" = ( +/obj/effect/floor_decal/corner/purple/diagonal, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/machinery/air_sensor{ + frequency = 1441; + id_tag = "ph_sensor" + }, +/obj/effect/decal/fake_object/light_source/invisible, +/turf/simulated/floor/reinforced/phoron, +/area/horizon/engineering/atmos) +"bDN" = ( +/obj/effect/floor_decal/corner/dark_blue/diagonal, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/requests_console/west{ - announcementConsole = 1; - department = "Operations Manager"; - departmentType = 5; - name = "Operations Manager Request Console" - }, -/turf/simulated/floor/tiled/full, -/area/operations/qm) -"bDO" = ( -/obj/structure/reagent_dispensers/extinguisher, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/floor_decal/industrial/warning{ - dir = 9 - }, -/turf/simulated/floor/plating, -/area/maintenance/security_port) +/turf/simulated/floor/tiled, +/area/horizon/command/bridge/bridge_crew) "bDQ" = ( /obj/effect/floor_decal/industrial/warning{ dir = 10 @@ -11641,20 +11387,6 @@ /obj/random/backpack, /turf/simulated/floor/wood, /area/merchant_station) -"bDT" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/light/small/emergency, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard) "bDU" = ( /obj/machinery/light{ dir = 8 @@ -11664,36 +11396,14 @@ }, /turf/unsimulated/floor, /area/centcom/evac) -"bEa" = ( -/obj/effect/floor_decal/corner/green/full{ - dir = 4 +"bEf" = ( +/obj/effect/floor_decal/corner/lime/diagonal, +/obj/machinery/alarm/south{ + req_one_access = list(11, 24, 47, 65) }, -/obj/structure/sink{ - dir = 4; - pixel_x = 12 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/machinery/light/small, -/obj/structure/mirror{ - pixel_x = 25 - }, -/obj/machinery/firealarm/south, +/obj/structure/bed/roller, /turf/simulated/floor/tiled/white, -/area/horizon/crew_quarters/fitness/showers) -"bEb" = ( -/turf/simulated/floor/tiled/dark, -/area/horizon/hydroponics/garden) -"bEd" = ( -/obj/structure/sign/nosmoking_2{ - pixel_x = 32 - }, -/obj/effect/floor_decal/corner/pink/diagonal, -/obj/random/junk, -/obj/random/dirt_75, -/turf/simulated/floor/tiled/dark, -/area/maintenance/wing/port/far) +/area/horizon/shuttle/intrepid/medical) "bEh" = ( /obj/effect/decal/fake_object{ color = "#545c68"; @@ -11707,68 +11417,21 @@ density = 1 }, /area/antag/ninja) -"bEk" = ( -/obj/structure/disposalpipe/segment{ +"bEz" = ( +/obj/machinery/atmospherics/pipe/manifold/visible{ dir = 4 }, -/obj/effect/floor_decal/corner/purple{ - dir = 9 +/obj/effect/map_effect/marker/airlock{ + frequency = 1003; + master_tag = "airlock_horizon_deck_1_aft_port_1"; + name = "airlock_horizon_deck_1_aft_port_1" }, -/turf/simulated/floor/tiled, -/area/hallway/primary/aft) -"bEm" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/corner/brown{ - dir = 6 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/turf/simulated/floor/tiled, -/area/operations/loading) -"bEp" = ( -/obj/effect/floor_decal/corner_wide/green{ - dir = 6 - }, -/obj/machinery/vending/coffee, -/turf/simulated/floor/tiled/white, -/area/medical/ward) -"bEr" = ( -/obj/structure/flora/ausbushes/sparsegrass, -/obj/machinery/alarm/west, -/turf/simulated/floor/grass/no_edge, -/area/horizon/hydroponics/lower) -"bEx" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/full, -/area/horizon/hallway/deck_three/primary/starboard) +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/auxatmos) +"bEA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/lino, +/area/horizon/service/chapel/main) "bEB" = ( /obj/effect/floor_decal/corner/brown/diagonal, /obj/structure/cable/green{ @@ -11778,35 +11441,11 @@ /obj/machinery/power/apc/super/north, /turf/simulated/floor/tiled/dark, /area/horizon/holodeck_control/beta) -"bEJ" = ( -/obj/effect/floor_decal/corner/dark_blue/diagonal, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "0-8" - }, -/obj/machinery/power/apc/low/north, +"bES" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/random/junk, /turf/simulated/floor/tiled/dark, -/area/security/checkpoint) -"bEP" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/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/full{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/central) +/area/horizon/maintenance/deck_2/wing/starboard/nacelle) "bEU" = ( /obj/machinery/light/small{ brightness_power = 0.5; @@ -11815,38 +11454,27 @@ }, /turf/unsimulated/floor/plating, /area/centcom/spawning) -"bEY" = ( -/obj/structure/table/rack/retail_shelf, +"bEW" = ( +/obj/effect/floor_decal/corner/mauve/full{ + dir = 8 + }, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/machinery/light/floor{ + dir = 8 + }, /turf/simulated/floor/tiled, -/area/horizon/hydroponics) +/area/horizon/rnd/hallway/secondary) "bFb" = ( /turf/unsimulated/wall/steel, /area/antag/loner) -"bFd" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, +"bFg" = ( +/obj/structure/grille, +/obj/machinery/door/firedoor, +/obj/structure/window/shuttle/scc_space_ship/cardinal, /turf/simulated/floor/plating, -/area/maintenance/wing/starboard/deck1) -"bFh" = ( -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/structure/cable, -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/random/dirt_75, -/turf/simulated/floor/plating, -/area/maintenance/wing/port/far) -"bFk" = ( -/turf/simulated/floor/tiled/dark/full, -/area/maintenance/wing/port) +/area/horizon/stairwell/bridge/deck_2) "bFl" = ( /obj/structure/table/wood/yew, /obj/item/flora/pottedplant_small/woodyshrubbloom{ @@ -11861,69 +11489,103 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/unsimulated/floor, /area/centcom/legion/hangar5) -"bFv" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/aux, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel, +"bFt" = ( +/obj/machinery/power/apc/east, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green, /obj/structure/lattice/catwalk/indoor/grate/dark, /turf/simulated/floor/plating, -/area/maintenance/operations) -"bFw" = ( -/obj/effect/floor_decal/industrial/warning{ +/area/horizon/maintenance/deck_2/service/starboard) +"bFz" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 }, -/obj/structure/tank_wall/phoron{ - icon_state = "ph10" +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 }, -/turf/simulated/floor/airless, -/area/engineering/atmos) -"bFx" = ( -/obj/structure/table/wood, -/obj/item/reagent_containers/food/drinks/cans/root_beer{ - pixel_x = 6; - pixel_y = 4 +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/atmos) +"bFC" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 6 }, -/obj/item/reagent_containers/food/drinks/cans/root_beer, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard) +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/firealarm/east, +/obj/structure/platform_stairs/full/south_north_cap, +/turf/simulated/floor/tiled, +/area/horizon/command/bridge/controlroom) "bFI" = ( /obj/effect/floor_decal/corner/green/full{ dir = 4 }, /turf/unsimulated/floor, /area/centcom/bar) -"bFV" = ( -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/structure/sign/directions/prop{ - dir = 1; - pixel_y = 22 +"bFN" = ( +/obj/machinery/door/blast/regular/open{ + id = "iso_a"; + name = "Safety Blast Door" }, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 6 +/obj/effect/map_effect/window_spawner/full/borosilicate/reinforced/firedoor, +/obj/machinery/alarm/south{ + alarm_id = 1503; + breach_detection = 0; + dir = 4; + name = "Isolation C"; + pixel_x = -24; + rcon_setting = 3; + report_danger_level = 0; + req_one_access = list(7,47,24,11) }, -/obj/machinery/atmospherics/pipe/simple/hidden/aux{ - dir = 6 +/turf/simulated/floor/tiled/dark/full, +/area/horizon/rnd/xenoarch/isolation_c) +"bFS" = ( +/obj/effect/floor_decal/corner_wide/purple{ + dir = 5 }, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"bFY" = ( +/obj/effect/floor_decal/corner_wide/purple{ + dir = 8 + }, +/obj/structure/closet/walllocker/medical/firstaid{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/xenoarch/atrium) +"bFT" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/effect/floor_decal/spline/fancy/wood, +/turf/simulated/floor/wood, +/area/horizon/service/chapel/office) +"bFW" = ( +/obj/machinery/camera/network/engineering{ + c_tag = "Engineering - C-Goliath Drive Room 3"; dir = 1 }, -/turf/simulated/wall/shuttle/scc, -/area/shuttle/quark/cockpit) +/obj/structure/cable/orange{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner_wide/yellow{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/horizon/engineering/bluespace_drive) "bFZ" = ( /obj/effect/floor_decal/corner/brown{ dir = 5 @@ -11933,107 +11595,47 @@ }, /turf/unsimulated/floor, /area/antag/burglar) -"bGa" = ( -/obj/structure/bed/stool/chair/office/light{ - dir = 8 - }, -/obj/effect/landmark/start{ - name = "Xenoarchaeologist" - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 6 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ +"bGg" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/wood, -/area/rnd/conference) -"bGf" = ( -/obj/structure/tank_wall/carbon_dioxide{ - density = 0; - icon_state = "co2-6"; - opacity = 0 - }, -/turf/simulated/floor/reinforced/carbon_dioxide, -/area/engineering/atmos) -"bGl" = ( -/obj/machinery/power/breakerbox/activated{ - RCon_tag = "Operations Substation" - }, -/turf/simulated/floor/plating, -/area/maintenance/substation/supply) -"bGm" = ( -/obj/effect/floor_decal/corner_wide/green{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/corner/dark_green{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_3/central) +"bGp" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/full, +/area/horizon/command/bridge/upperdeck) +"bGy" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner/dark_green{ dir = 5 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - 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/white, -/area/hallway/medical/upper) -"bGq" = ( -/obj/structure/cable{ - icon_state = "1-2" +/turf/simulated/floor/tiled, +/area/horizon/hangar/auxiliary) +"bGE" = ( +/obj/effect/floor_decal/industrial/outline/research, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 }, -/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{ - icon_state = "0-2" - }, -/obj/structure/tranqcabinet{ - pixel_x = -32 - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 9 - }, -/obj/structure/table/standard, -/obj/machinery/recharger{ - pixel_y = 10; - pixel_x = -8 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/heads/hor) -"bGv" = ( -/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, -/area/maintenance/engineering_ladder) -"bGz" = ( -/obj/effect/floor_decal/corner/green/diagonal, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/hologram/holopad, -/obj/machinery/light_switch{ - dir = 8; - pixel_x = -23; - pixel_y = 7 - }, -/turf/simulated/floor/tiled/white, -/area/medical/ward/isolation) +/turf/simulated/floor/tiled/dark, +/area/horizon/shuttle/quark/cargo_hold) "bGF" = ( /obj/machinery/light{ dir = 4 @@ -12046,37 +11648,13 @@ /turf/simulated/floor/tiled, /area/horizon/security/investigations_hallway) "bGL" = ( -/obj/effect/floor_decal/spline/plain, -/obj/effect/floor_decal/spline/plain{ - dir = 1 +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance{ + dir = 4; + req_one_access = list(5,12) }, -/obj/machinery/camera/motion{ - network = list("Command","Security","Tcomsat"); - c_tag = "Telecommunications - Central Compartment Port" - }, -/turf/simulated/floor/carpet/rubber, -/area/tcommsat/chamber) -"bGM" = ( -/obj/effect/floor_decal/corner/dark_blue/full{ - dir = 4 - }, -/obj/item/device/radio/intercom/east, -/obj/machinery/button/remote/blast_door{ - dir = 1; - id = "hangarlockdown"; - name = "Hangar Lockdown"; - pixel_y = -25 - }, -/obj/machinery/light/small, -/obj/structure/filingcabinet/filingcabinet{ - pixel_x = 9; - pixel_y = 1 - }, -/obj/machinery/papershredder{ - pixel_x = -6 - }, -/turf/simulated/floor/tiled/dark, -/area/hangar/control) +/turf/simulated/floor, +/area/horizon/holodeck_control/beta) "bGN" = ( /obj/effect/decal/rolling_fog, /obj/item/device/flashlight/lamp/holodeck{ @@ -12087,140 +11665,86 @@ }, /turf/simulated/floor/holofloor/reinforced, /area/horizon/holodeck/source_jupiter) -"bGQ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable{ - icon_state = "1-2" +"bGO" = ( +/obj/structure/disposalpipe/junction{ + icon_state = "pipe-j2" }, -/obj/effect/floor_decal/corner/dark_green{ - dir = 1 +/obj/effect/floor_decal/corner/red/diagonal, +/obj/effect/floor_decal/spline/plain{ + dir = 8 }, -/turf/simulated/floor/tiled, -/area/hangar/auxiliary) +/obj/machinery/light/floor{ + dir = 8 + }, +/turf/simulated/floor/lino, +/area/horizon/service/cafeteria) +"bGP" = ( +/turf/simulated/wall, +/area/horizon/medical/reception) +"bGR" = ( +/obj/machinery/power/breakerbox, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/cobweb, +/turf/simulated/floor/plating, +/area/horizon/maintenance/substation/wing_port) "bGS" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 1 }, /turf/unsimulated/floor/wood, /area/antag/raider) -"bGT" = ( -/obj/effect/map_effect/window_spawner/full/borosilicate/reinforced, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/engine_room/rust) -"bGX" = ( +"bGW" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/door/airlock/atmos{ + name = "Drone Fabrication"; + req_one_access = list(11,24); + dir = 4 + }, +/turf/simulated/floor/plating, +/area/horizon/engineering/drone_fabrication) +"bHc" = ( +/obj/effect/floor_decal/corner/mauve/full{ + dir = 8 + }, +/obj/effect/floor_decal/corner/white, +/turf/simulated/floor/tiled/dark, +/area/horizon/rnd/xenobiology/xenoflora) +"bHd" = ( /obj/structure/cable/green{ icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/blast/shutters{ - density = 0; - icon_state = "shutter0"; - id = "LCKDshutters"; - name = "Medical Lockdown Shutters"; - opacity = 0 - }, -/obj/machinery/door/airlock/medical{ - dir = 1; - name = "Recovery"; - req_access = list(5); - id_tag = "RecoveryWard" - }, -/obj/machinery/door/firedoor, -/obj/effect/map_effect/door_helper/unres{ - dir = 1 - }, -/turf/simulated/floor/tiled/full, -/area/medical/ward) -"bGY" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/structure/platform_deco{ - icon_state = "ledge_deco" - }, -/obj/structure/lattice/catwalk/indoor/grate, -/turf/simulated/floor, -/area/bridge) -"bHe" = ( -/obj/effect/map_effect/window_spawner/full/reinforced/polarized/firedoor{ - id = "polarized_deck2_workshop" - }, -/turf/simulated/floor/tiled/dark/full, -/area/operations/lower/machinist) -"bHf" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 1 - }, -/obj/effect/floor_decal/spline/fancy/wood, -/obj/machinery/button/remote/airlock{ - dir = 1; - pixel_x = -5; - name = "Office Door"; - id = "hra_room"; - pixel_y = 39; - specialfunctions = 4 - }, -/obj/machinery/button/remote/blast_door{ - dir = 10; - pixel_x = -5; - pixel_y = 28; - id = "hra_room_bd" - }, -/obj/machinery/button/switch/windowtint{ - dir = 1; - id = "hra"; - pixel_x = 7; - pixel_y = 38 - }, -/obj/machinery/light_switch{ - dir = 1; - pixel_y = 26; - pixel_x = 7 - }, -/turf/simulated/floor/wood, -/area/bridge/cciaroom) -"bHj" = ( -/obj/structure/railing/mapped{ +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/atmospherics/pipe/simple/hidden/green, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/main/interstitial) +"bHl" = ( +/obj/machinery/power/terminal{ dir = 4 }, -/obj/structure/railing/mapped{ - dir = 1 +/obj/structure/cable{ + icon_state = "1-2" }, -/turf/simulated/open, -/area/maintenance/wing/starboard) -"bHp" = ( -/obj/effect/floor_decal/corner_wide/green{ - dir = 9 - }, -/obj/machinery/power/apc/low/west, -/obj/structure/cable/green{ +/obj/machinery/firealarm/west, +/obj/structure/cable{ icon_state = "0-2" }, -/turf/simulated/floor/tiled/white, -/area/medical/ward) -"bHs" = ( -/obj/item/modular_computer/console/preset/engineering{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/tiled/dark, -/area/engineering/gravity_gen) -"bHt" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 8 - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/wood, -/area/horizon/security/head_of_security) +/turf/simulated/floor/plating, +/area/horizon/maintenance/substation/engineering) "bHv" = ( /obj/effect/floor_decal/corner/red{ dir = 5 @@ -12233,29 +11757,6 @@ icon_state = "dark_preview" }, /area/centcom/holding) -"bHx" = ( -/obj/structure/closet/hazmat/custodial, -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/effect/floor_decal/corner/purple{ - dir = 5 - }, -/obj/effect/floor_decal/industrial/outline/custodial, -/turf/simulated/floor/tiled, -/area/horizon/custodial) -"bHy" = ( -/obj/structure/cable/orange{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/engineering/engine_room/rust) "bHA" = ( /obj/effect/floor_decal/corner/dark_blue{ dir = 6 @@ -12266,26 +11767,47 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled, /area/horizon/security/investigations_hallway) -"bHF" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/dark/full, -/area/maintenance/wing/port) -"bHI" = ( -/obj/structure/cable/green{ - icon_state = "1-8" +"bHC" = ( +/obj/structure/bed/stool/chair/office/light{ + dir = 8 + }, +/obj/effect/floor_decal/corner/mauve{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/chemistry) +"bHD" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/machinery/newscaster/east, +/obj/effect/floor_decal/corner/dark_green{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/horizon/hangar/intrepid) +"bHG" = ( +/obj/structure/platform, +/turf/simulated/floor/tiled/dark, +/area/horizon/maintenance/deck_2/wing/starboard/far) +"bHK" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 }, /obj/structure/cable/green{ icon_state = "4-8" }, /obj/effect/floor_decal/spline/fancy/wood{ - dir = 7 - }, -/obj/structure/engineer_maintenance/electric, -/obj/structure/engineer_maintenance/pipe{ - dir = 4 + dir = 1 }, /turf/simulated/floor/wood, -/area/crew_quarters/heads/hop/xo) +/area/horizon/command/bridge/minibar) "bHL" = ( /turf/unsimulated/wall/fakepdoor{ dir = 1; @@ -12311,16 +11833,6 @@ icon_state = "dark_preview" }, /area/centcom/control) -"bHP" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/engineering/gravity_gen) "bHU" = ( /obj/item/ore{ name = "meteor fragment"; @@ -12333,192 +11845,178 @@ /obj/structure/lattice/catwalk, /turf/space/dynamic, /area/template_noop) -"bHV" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/maintenance{ - dir = 1; - req_access = list(73) +"bHX" = ( +/turf/simulated/floor/reinforced/phoron, +/area/horizon/engineering/atmos) +"bIa" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/storage/secure) +"bId" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/corner/brown{ + dir = 9 }, -/turf/simulated/floor/tiled/full, -/area/hangar/control) -"bIe" = ( -/obj/effect/floor_decal/corner/dark_green{ +/obj/effect/floor_decal/industrial/warning/corner{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ +/obj/structure/table/standard, +/obj/machinery/camera/network/supply{ + c_tag = "Operations - Mail Sorting"; dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/cable/green{ - icon_state = "1-4" - }, /turf/simulated/floor/tiled, -/area/horizon/crew_quarters/fitness/changing) +/area/horizon/operations/mail_room) "bIh" = ( /turf/simulated/floor/beach/sand{ dir = 1; icon_state = "beachcorner" }, /area/centcom/shared_dream) -"bIm" = ( -/obj/structure/table/wood, -/obj/machinery/recharger{ - pixel_y = 8 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/item/stamp/denied{ - pixel_x = -9; - pixel_y = -1 - }, -/obj/item/stamp{ - name = "consular stamp"; - pixel_y = -1 - }, -/turf/simulated/floor/carpet, -/area/lawoffice/consular) -"bIn" = ( -/obj/effect/floor_decal/corner/lime{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora) -"bIA" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, +"bIp" = ( +/obj/structure/table/reinforced/glass, /turf/simulated/floor/carpet/rubber, -/area/tcommsat/entrance) -"bIC" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 2; - icon_state = "shutter0"; - id = "hop_office_desk"; - name = "XO Office Privacy Shutters"; - opacity = 0 - }, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "bridge blast"; - name = "Bridge Blast Doors"; - opacity = 0 - }, -/obj/structure/table/reinforced/steel, -/obj/machinery/ringer_button{ - id = "xo_ringer"; - pixel_x = 12; - pixel_y = 3 - }, -/obj/machinery/door/window/desk/southright{ - name = "Executive Officer's Desk"; - req_access = list(57) - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/heads/hop/xo) -"bID" = ( -/obj/structure/tank_wall/hydrogen{ - icon_state = "h4" - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/airless, -/area/engineering/atmos) -"bIF" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ +/area/horizon/rnd/lab) +"bIq" = ( +/obj/effect/floor_decal/corner/mauve/full, +/obj/machinery/camera/network/research{ + c_tag = "Research - Corridor Camera 4"; dir = 4 }, +/obj/machinery/light/floor{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/horizon/rnd/hallway/secondary) +"bIr" = ( +/obj/effect/floor_decal/industrial/warning/corner, +/obj/effect/floor_decal/spline/plain/corner, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/machinery/door/firedoor, -/obj/structure/cable/green{ - icon_state = "4-8" +/turf/simulated/floor/tiled, +/area/horizon/engineering/atmos/storage) +"bIs" = ( +/obj/machinery/light/small{ + dir = 8 }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/full, -/area/hallway/primary/central_two) -"bIJ" = ( -/obj/effect/floor_decal/industrial/warning/corner, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/structure/railing/mapped, -/obj/structure/railing/mapped{ +/obj/structure/closet/crate, +/obj/effect/floor_decal/corner/brown{ + dir = 9 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled, +/area/horizon/operations/warehouse) +"bIz" = ( +/obj/machinery/atmospherics/unary/vent_pump/siphon/on/atmos{ + id_tag = "n2o_out" + }, +/turf/simulated/floor/reinforced/n20, +/area/horizon/engineering/atmos/air) +"bIB" = ( +/obj/machinery/power/smes/buildable/horizon_shuttle{ + RCon_tag = "Spark" + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 9 + }, +/obj/machinery/light/small{ dir = 4 }, -/obj/structure/cable/green{ - icon_state = "2-4" +/obj/effect/floor_decal/industrial/outline/operations, +/turf/simulated/floor/tiled/dark, +/area/horizon/shuttle/mining) +"bIE" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 }, -/obj/structure/cable/green{ - icon_state = "2-8" +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/reactor/indra/mainchamber) +"bIG" = ( +/obj/structure/disposaloutlet{ + dir = 4 }, -/turf/simulated/floor/tiled/dark/full/airless, -/area/bridge/controlroom) -"bIV" = ( -/obj/effect/floor_decal/corner_wide/yellow{ - dir = 5 +/obj/structure/disposalpipe/trunk{ + dir = 4 }, -/obj/machinery/alarm/north, -/turf/simulated/floor/tiled, -/area/hallway/engineering/rust) +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/reinforced, +/area/horizon/rnd/xenobiology) "bIW" = ( /obj/effect/floor_decal/spline/plain, /obj/structure/flora/ausbushes/ppflowers, /turf/simulated/floor/exoplanet/grass/grove, /area/centcom/shared_dream) -"bJa" = ( -/turf/simulated/floor/plating, -/area/hangar/auxiliary) -"bJe" = ( -/obj/structure/cable/green{ - icon_state = "1-4" +"bIY" = ( +/obj/machinery/door/airlock{ + dir = 1; + id_tag = "central_stall_1"; + name = "Stall 1" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 +/obj/machinery/door/firedoor{ + dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/central) -"bJg" = ( +/turf/simulated/floor/tiled/full, +/area/horizon/crew/washroom/deck_2) +"bJc" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/obj/structure/cable/green{ - icon_state = "4-8" +/obj/effect/floor_decal/corner/dark_blue{ + dir = 8 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/simulated/floor/tiled/dark, +/area/horizon/storage/eva) +"bJm" = ( +/obj/structure/curtain/black{ + icon_state = "open"; + opacity = 0 }, -/obj/effect/floor_decal/corner/beige{ - dir = 9 +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 6 }, -/turf/simulated/floor/tiled, -/area/security/vacantoffice) -"bJj" = ( -/obj/effect/floor_decal/spline/fancy, -/obj/effect/map_effect/window_spawner/full/reinforced, -/turf/simulated/floor/carpet/rubber, -/area/bridge/controlroom) +/obj/machinery/door/firedoor, +/turf/simulated/floor/wood, +/area/horizon/service/dining_hall) "bJo" = ( /obj/effect/floor_decal/corner/red/full, /turf/unsimulated/floor{ icon_state = "dark_preview" }, /area/centcom/holding) +"bJr" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 8 + }, +/turf/simulated/floor/carpet/rubber, +/area/horizon/engineering/bluespace_drive/monitoring) +"bJt" = ( +/obj/machinery/disposal/deliveryChute{ + dir = 4 + }, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning/full, +/turf/simulated/floor/plating, +/area/horizon/operations/warehouse) +"bJx" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 10 + }, +/obj/machinery/light/floor, +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/conference) "bJC" = ( /obj/effect/floor_decal/industrial/warning{ dir = 1 @@ -12531,6 +12029,17 @@ }, /turf/unsimulated/floor, /area/antag/jockey) +"bJG" = ( +/obj/machinery/ringer_button{ + id = "pharmacy_ringer"; + pixel_x = -21; + pixel_y = 22 + }, +/obj/effect/floor_decal/corner_wide/orange{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/reception) "bJH" = ( /obj/machinery/meter, /obj/machinery/atmospherics/pipe/simple/hidden{ @@ -12539,61 +12048,86 @@ /obj/structure/lattice/catwalk/indoor/grate/dark, /turf/simulated/floor/plating, /area/shuttle/legion) -"bJK" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/engine_room) -"bJQ" = ( -/obj/machinery/door/airlock/maintenance{ - dir = 1; - name = "Examination Room Maintenance"; +"bJJ" = ( +/obj/structure/table/standard, +/obj/effect/floor_decal/corner/grey/diagonal, +/obj/machinery/door/window{ + name = "Reception Desk"; req_access = list(5) }, -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 2; - icon_state = "shutter0"; - id = "LCKDshutters"; - name = "Medical Lockdown Shutters"; - opacity = 0 +/obj/item/reagent_containers/spray/cleaner{ + pixel_x = -7; + pixel_y = 4 }, -/turf/simulated/floor/tiled/full, -/area/medical/exam) -"bJU" = ( -/obj/structure/flora/ausbushes/brflowers, -/obj/structure/flora/ausbushes/ppflowers, -/obj/structure/flora/ausbushes/ywflowers, -/obj/structure/flora/pottedplant/mysterious, -/turf/simulated/floor/grass/no_edge, -/area/rnd/hallway/secondary) -"bKa" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ +/obj/random/pottedplant_small{ + pixel_x = 9; + pixel_y = 4 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/reception) +"bJM" = ( +/obj/effect/floor_decal/industrial/warning{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 +/obj/structure/tank_wall/phoron{ + icon_state = "ph9" }, -/obj/structure/cable/green{ +/turf/simulated/floor/airless, +/area/horizon/engineering/atmos) +"bJS" = ( +/obj/structure/cable{ icon_state = "4-8" }, -/obj/structure/railing/mapped{ - dir = 1 +/obj/effect/floor_decal/corner/dark_green{ + dir = 5 }, -/obj/machinery/atmospherics/pipe/simple/hidden{ +/obj/structure/sign/emergency/evacuation{ dir = 4 }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/intrepid/main_compartment) +/turf/simulated/floor/tiled, +/area/horizon/hangar/auxiliary) +"bKf" = ( +/obj/machinery/shieldwallgen, +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/obj/effect/floor_decal/industrial/outline/security, +/turf/simulated/floor/plating, +/area/horizon/engineering/bluespace_drive) +"bKg" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/horizon/operations/warehouse) "bKj" = ( /obj/structure/foamedmetal, /turf/simulated/floor/plating, /area/horizon/security/brig) +"bKl" = ( +/obj/structure/trash_pile, +/obj/machinery/firealarm/north, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/starboard/nacelle) +"bKr" = ( +/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/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor, +/area/horizon/hallway/primary/deck_3/port) "bKv" = ( /obj/structure/bed/stool/chair/sofa/right/black{ desc = "A pew, how holy!"; @@ -12605,43 +12139,28 @@ }, /turf/simulated/floor/marble/dark, /area/horizon/holodeck/source_tribunal) -"bKx" = ( -/obj/effect/floor_decal/corner/dark_blue/diagonal, -/obj/structure/table/steel, -/obj/machinery/button/remote/blast_door{ - dir = 9; - id = "shutters_hangardeskcpstarboard"; - name = "Starboard Security Checkpoint Access Shutters"; - pixel_x = -6; - pixel_y = -1; - req_access = list(63) - }, -/obj/machinery/button/remote/blast_door{ - dir = 9; - id = "shutters_hangardeskcpport"; - name = "Port Security Checkpoint Access Shutters"; - pixel_x = 5; - pixel_y = -1; - req_access = list(63) - }, -/obj/machinery/button/remote/blast_door{ - dir = 9; - id = "shutters_hangarseccpdesk"; - name = "Desk Shutter"; - pixel_x = -6; - pixel_y = 10; - req_access = list(63) - }, -/obj/machinery/button/remote/blast_door{ - dir = 9; - id = "shutters_hangarseccpexternal"; - name = "External Security Checkpoint Shutters"; - pixel_x = 5; - pixel_y = 10; - req_access = list(63) +"bKz" = ( +/obj/machinery/computer/ship/navigation, +/obj/effect/floor_decal/corner/dark_blue/full{ + dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/security/checkpoint) +/area/horizon/weapons/grauwolf) +"bKA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_3/central) "bKB" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/door/window/westright, @@ -12651,25 +12170,10 @@ dir = 8 }, /area/antag/raider) -"bKC" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/structure/table/standard, -/turf/simulated/floor/tiled, -/area/operations/storage) "bKD" = ( /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) "bKJ" = ( /obj/item/flame/candle{ pixel_y = -9 @@ -12680,36 +12184,26 @@ }, /turf/unsimulated/floor/carpet, /area/antag/raider) -"bKX" = ( -/obj/effect/floor_decal/corner/green/diagonal, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 +"bKO" = ( +/turf/simulated/wall/shuttle/scc_space_ship/cardinal, +/area/horizon/stairwell/bridge) +"bKV" = ( +/obj/structure/shuttle_part/scc_space_ship{ + icon_state = "d3-6-f" }, -/obj/machinery/power/apc/south, +/turf/simulated/wall/shuttle/scc_space_ship/cardinal, +/area/horizon/maintenance/deck_2/wing/port/near) +"bLa" = ( /obj/structure/cable/green{ - icon_state = "0-8" + icon_state = "1-4" }, +/obj/structure/lattice/catwalk/indoor/grate/dark, /obj/structure/disposalpipe/segment{ - dir = 8; + dir = 4; icon_state = "pipe-c" }, -/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 - }, -/turf/simulated/floor/carpet/red, -/area/horizon/library) +/area/horizon/maintenance/deck_1/hangar/port) "bLh" = ( /obj/effect/floor_decal/corner/dark_blue/full, /obj/machinery/power/apc/critical/south, @@ -12719,15 +12213,10 @@ }, /turf/simulated/floor/tiled, /area/horizon/security/brig) -"bLl" = ( -/obj/effect/floor_decal/industrial/outline/red, -/obj/structure/table/rack, -/obj/item/warhead/longbow/bunker, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/secure_ammunition_storage) +"bLj" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/wall/shuttle/scc_space_ship/cardinal, +/area/horizon/weapons/grauwolf) "bLo" = ( /obj/effect/floor_decal/corner{ dir = 10 @@ -12737,15 +12226,6 @@ }, /turf/simulated/floor/marble/dark, /area/horizon/holodeck/source_tribunal) -"bLp" = ( -/obj/effect/floor_decal/corner_wide/green{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/equipment) "bLq" = ( /obj/effect/floor_decal/corner/green{ dir = 10 @@ -12760,178 +12240,48 @@ }, /turf/unsimulated/floor, /area/centcom/bar) -"bLt" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/smes/rust) -"bLu" = ( -/obj/effect/floor_decal/corner_wide/black{ - dir = 9 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/machinery/atmospherics/binary/pump/high_power{ - dir = 4; - name = "Phoron to Burn Mix" - }, -/turf/simulated/floor/tiled/dark, -/area/engineering/atmos/propulsion) "bLv" = ( /turf/simulated/open, /area/turbolift/primary/deck_2) +"bLw" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 6 + }, +/obj/random/pottedplant, +/obj/machinery/camera/network/engineering{ + c_tag = "Engineering - Hallway 1"; + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/horizon/engineering/hallway/fore) +"bLy" = ( +/obj/effect/floor_decal/corner/dark_green/diagonal, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/horizon/service/hydroponics) "bLB" = ( /obj/machinery/merchant_pad, /turf/simulated/floor/wood, /area/merchant_station/warehouse) -"bLE" = ( -/turf/simulated/wall/r_wall, -/area/engineering/locker_room) -"bLG" = ( -/obj/machinery/flasher{ - id = "AI"; - pixel_x = -30; - dir = 4; - pixel_y = 3 - }, -/turf/simulated/floor/bluegrid{ - name = "cooled mainframe floor"; - temperature = 278 - }, -/area/turret_protected/ai) -"bLI" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 5 - }, -/obj/structure/extinguisher_cabinet/east, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/engine_room) -"bLN" = ( -/obj/effect/floor_decal/corner/beige/full, -/obj/effect/floor_decal/industrial/loading/yellow{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/medical/gen_treatment) -"bLO" = ( -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/machinery/conveyor_switch/oneway{ - id = "cargo_1"; - pixel_x = 13; - pixel_y = 21 - }, -/obj/structure/disposaloutlet{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning/full, -/turf/simulated/floor/tiled, -/area/operations/loading) "bLQ" = ( /obj/structure/lattice/catwalk/indoor, /turf/simulated/floor/reinforced/airless, /area/horizon/exterior) -"bLS" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, +"bLZ" = ( /obj/machinery/door/firedoor, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/machinery/atmospherics/pipe/simple/visible/green{ + dir = 6 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/door/blast/shutters{ - dir = 4; - id = "engineering_storage"; - name = "Engineering Hard Storage" - }, -/turf/simulated/floor/tiled/full, -/area/engineering/storage_hard) -"bLV" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/corner/brown{ - dir = 9 - }, -/obj/effect/landmark/start{ - name = "Hangar Technician" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/operations/office) -"bLX" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/corner/dark_green/full{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/aft) -"bMa" = ( -/obj/structure/platform/ledge{ - dir = 4 - }, -/obj/structure/platform_deco/ledge, -/obj/structure/railing/mapped{ - dir = 8 - }, -/turf/simulated/open, -/area/operations/office) +/obj/structure/window/shuttle/scc_space_ship/cardinal, +/turf/simulated/floor/plating, +/area/horizon/engineering/atmos/turbine) "bMf" = ( /turf/simulated/floor/tiled/ramp/bottom{ dir = 8 }, /area/centcom/legion) -"bMg" = ( -/obj/structure/table/steel, -/obj/item/stack/material/glass/full, -/obj/item/stack/material/steel/full, -/obj/item/stack/material/wood/full, -/obj/item/stack/material/plastic/full, -/obj/machinery/light, -/obj/machinery/firealarm/south, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/effect/floor_decal/corner/purple{ - dir = 10 - }, -/obj/random/pottedplant_small{ - pixel_x = -12 - }, -/turf/simulated/floor/tiled, -/area/horizon/custodial) "bMi" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -12944,12 +12294,28 @@ }, /turf/simulated/floor/tiled, /area/horizon/security/brig) +"bMm" = ( +/obj/machinery/appliance/cooker/oven, +/obj/effect/floor_decal/industrial/outline/grey, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/service/kitchen) +"bMn" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/structure/table/rack, +/obj/random/loot, +/turf/simulated/floor, +/area/horizon/maintenance/deck_3/aft/holodeck) "bMp" = ( /obj/effect/floor_decal/snowdrift/large{ dir = 1 }, /turf/simulated/floor/exoplanet/snow, /area/centcom/shared_dream) +"bMq" = ( +/turf/simulated/wall/r_wall, +/area/horizon/engineering/break_room) "bMs" = ( /obj/structure/bed/stool/chair/office/dark{ dir = 8 @@ -12957,52 +12323,84 @@ /obj/effect/floor_decal/corner/red/diagonal, /turf/simulated/floor/tiled/dark, /area/shuttle/mercenary) -"bMx" = ( -/obj/effect/floor_decal/corner_wide/blue, -/obj/effect/floor_decal/corner_wide/yellow{ +"bMD" = ( +/obj/effect/floor_decal/corner/dark_blue{ dir = 4 }, -/obj/effect/floor_decal/industrial/warning, -/obj/effect/floor_decal/spline/plain{ - dir = 6 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ +/obj/effect/floor_decal/corner/dark_blue{ dir = 8 }, -/turf/simulated/floor/tiled, -/area/engineering/atmos/storage) -"bMz" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 9 +/obj/effect/floor_decal/corner/yellow{ + dir = 1 }, -/obj/effect/floor_decal/spline/plain/green{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/horizon/hydroponics/lower) -"bMO" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning/corner, /obj/effect/floor_decal/industrial/warning/corner{ dir = 4 }, -/turf/simulated/floor/tiled, -/area/assembly/chargebay) -"bMT" = ( -/obj/structure/cable/orange{ +/obj/machinery/atmospherics/pipe/simple/visible/purple{ + dir = 6 + }, +/obj/machinery/computer/general_air_control/large_tank_control/wall{ + input_tag = "turbine_fuel_in"; + name = "Combustion Fuel Control"; + output_tag = "turbine_fuel_out"; + sensors = list("turbine_sensor"="Turbine Combustion Sensor"); + pixel_y = 28; + frequency = 1443 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/atmos/turbine) +"bMG" = ( +/obj/structure/cable/green{ icon_state = "1-2" }, -/obj/machinery/atmospherics/portables_connector{ +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/corner/green/diagonal{ dir = 8 }, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/ward) +"bMK" = ( +/obj/structure/cable{ + icon_state = "11-2" + }, +/obj/machinery/atmospherics/pipe/zpipe/down/supply, +/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers, +/obj/structure/lattice/catwalk/indoor, +/turf/simulated/open, +/area/horizon/maintenance/deck_2/wing/starboard/far) +"bMS" = ( +/obj/structure/lattice/catwalk/indoor/grate/damaged{ + color = "#4c535b" + }, +/obj/item/stack/rods, +/obj/effect/decal/cleanable/cobweb2, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/aux{ + dir = 10 + }, /turf/simulated/floor/plating, -/area/engineering/bluespace_drive) +/area/horizon/maintenance/deck_1/main/starboard) +"bMU" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 6 + }, +/obj/structure/table/standard, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/horizon/engineering/lobby) +"bMX" = ( +/obj/machinery/portable_atmospherics/canister/empty/air, +/obj/effect/floor_decal/industrial/outline/grey, +/turf/simulated/floor/tiled/dark, +/area/horizon/maintenance/deck_3/aft/port/far) "bMZ" = ( /obj/effect/floor_decal/corner/red{ dir = 1 @@ -13012,46 +12410,76 @@ icon_state = "dark_preview" }, /area/centcom/holding) -"bNf" = ( -/obj/structure/extinguisher_cabinet/east, -/obj/effect/floor_decal/corner/dark_green{ - dir = 6 +"bNm" = ( +/obj/machinery/door/firedoor, +/obj/structure/table/stone/marble, +/obj/machinery/chemical_dispenser/coffeemaster/full{ + pixel_y = 16 }, -/obj/machinery/light/floor{ - dir = 4 +/obj/item/reagent_containers/glass/bottle/syrup/caramel{ + pixel_x = -15; + pixel_y = 4 }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"bNg" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 9 +/obj/item/reagent_containers/glass/bottle/syrup/chocolate{ + pixel_x = -7; + pixel_y = 4 }, -/turf/simulated/floor/wood, -/area/horizon/cafeteria) -"bNi" = ( -/obj/structure/disposalpipe/segment{ +/obj/item/reagent_containers/glass/bottle/syrup/pumpkin{ + pixel_x = 1; + pixel_y = 4 + }, +/obj/item/reagent_containers/glass/bottle/syrup/vanilla{ + pixel_x = 9; + pixel_y = 4 + }, +/obj/machinery/door/blast/shutters{ + id = "bar_shutter"; + name = "Bar Shutter" + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/service/bar) +"bNp" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/engineering{ dir = 4; - icon_state = "pipe-c" + name = "Deck 2 and 3 Security Substation"; + req_one_access = list(11,24) }, -/turf/simulated/wall/shuttle/scc_space_ship/cardinal, -/area/horizon/grauwolf) +/turf/simulated/floor/tiled/full, +/area/horizon/maintenance/substation/security) "bNr" = ( /obj/effect/floor_decal/corner/green{ dir = 6 }, /turf/unsimulated/floor, /area/centcom/holding) -"bNt" = ( +"bNs" = ( +/obj/structure/platform_deco{ + dir = 8 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/horizon/command/heads/rd) +"bNv" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/structure/tank_wall/air{ + icon_state = "air7" + }, +/turf/simulated/floor/plating, +/area/horizon/engineering/atmos/air) +"bNz" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, /turf/simulated/wall, -/area/storage/primary) -"bNx" = ( -/obj/effect/landmark/entry_point/starboard{ - name = "starboard, compartment" - }, -/turf/simulated/wall/shuttle/unique/scc/scout{ - icon_state = "2,7" - }, -/area/shuttle/canary) +/area/horizon/medical/ward) "bNE" = ( /obj/structure/platform_stairs/south_north_solo, /obj/structure/platform{ @@ -13059,6 +12487,13 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/security/meeting_room) +"bNF" = ( +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/machinery/alarm/east, +/turf/simulated/floor/plating, +/area/horizon/maintenance/substation/civ_d2) "bNG" = ( /obj/structure/table/standard, /obj/item/reagent_containers/food/drinks/bottle{ @@ -13074,70 +12509,6 @@ }, /turf/unsimulated/floor, /area/centcom/legion) -"bNH" = ( -/obj/machinery/camera/network/medbay{ - c_tag = "Medical - Secondary Storage" - }, -/obj/structure/table/standard, -/obj/item/clothing/accessory/stethoscope{ - pixel_x = -4 - }, -/obj/item/clothing/accessory/stethoscope{ - pixel_x = -4 - }, -/obj/item/clothing/accessory/stethoscope{ - pixel_x = -4 - }, -/obj/item/clothing/accessory/stethoscope{ - pixel_x = -4 - }, -/obj/item/clothing/accessory/stethoscope{ - pixel_x = -4 - }, -/obj/item/clothing/accessory/stethoscope{ - pixel_x = -4 - }, -/obj/item/clothing/accessory/stethoscope{ - pixel_x = -4 - }, -/obj/item/clothing/accessory/stethoscope{ - pixel_x = -4 - }, -/obj/effect/floor_decal/corner_wide/green{ - dir = 5 - }, -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/item/device/gps/medical{ - pixel_x = 10; - pixel_y = 2 - }, -/obj/item/device/gps/medical{ - pixel_x = 10; - pixel_y = 2 - }, -/obj/item/device/gps/medical{ - pixel_x = 10; - pixel_y = 2 - }, -/turf/simulated/floor/tiled/white, -/area/medical/equipment) -"bNI" = ( -/obj/effect/floor_decal/corner/mauve/full{ - dir = 4 - }, -/obj/machinery/light, -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/biogenerator, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology/xenoflora) "bNJ" = ( /obj/structure/bed, /obj/item/bedsheet/syndie, @@ -13149,48 +12520,38 @@ }, /turf/unsimulated/floor/wood, /area/antag/mercenary) -"bNR" = ( -/obj/structure/cable/orange{ - icon_state = "0-8" +"bNK" = ( +/obj/structure/table/standard, +/obj/item/gun/energy/mousegun/xenofauna, +/obj/item/melee/baton/stunrod, +/obj/effect/floor_decal/corner/mauve/full{ + dir = 1 }, -/obj/machinery/power/smes/buildable/substation{ - name = "C-Goliath Drive - Inner Shield Circuit" +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/xenobiology/hazardous) +"bNO" = ( +/obj/effect/floor_decal/corner/green/diagonal{ + dir = 8 }, -/obj/structure/sign/electricshock{ - pixel_x = 32 - }, -/obj/machinery/light, -/obj/effect/floor_decal/industrial/warning{ - dir = 10 - }, -/turf/simulated/floor/plating, -/area/engineering/bluespace_drive) -"bNW" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/effect/floor_decal/corner/mauve{ - dir = 6 +/obj/machinery/hologram/holopad, +/obj/structure/disposalpipe/segment{ + icon_state = "pipe-c" }, /turf/simulated/floor/tiled/white, -/area/storage/eva) -"bNX" = ( -/obj/structure/grille, -/obj/structure/window/shuttle/scc_space_ship, -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/shutters{ - dir = 2; - id = "shutters_deck3_shieldwindows"; - name = "Viewing Shutter" - }, -/turf/simulated/floor/plating, -/area/storage/shields) +/area/horizon/medical/ward) "bOb" = ( /obj/effect/map_effect/window_spawner/full/reinforced/polarized/firedoor{ id = "holodecktint_a" }, /turf/simulated/floor/tiled/full, /area/horizon/holodeck_control) +"bOf" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/effect/floor_decal/spline/plain, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/horizon/engineering/atmos/storage) "bOj" = ( /obj/structure/cable/green{ icon_state = "1-8" @@ -13203,82 +12564,75 @@ }, /turf/simulated/floor/tiled, /area/horizon/security/hallway) -"bOr" = ( -/obj/effect/floor_decal/corner/yellow, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 8 +"bOl" = ( +/obj/structure/shuttle_part/scc_space_ship{ + icon_state = "d3-5-f" }, -/obj/structure/dispenser, -/turf/simulated/floor/tiled/dark, -/area/engineering/atmos) -"bOs" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/structure/lattice/catwalk/indoor/grate, -/turf/simulated/floor/plating, -/area/hallway/primary/aft) -"bOv" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/structure/closet/emcloset, -/obj/effect/floor_decal/industrial/outline/emergency_closet, -/turf/simulated/floor/tiled/dark/full, -/area/rnd/xenoarch_atrium) -"bOx" = ( -/obj/machinery/button/remote/airlock/screamer{ - channel = "Command"; - dir = 8; - id = "Vault_Airlock"; - message = "The vault door bolts have been toggled."; - name = "Door Bolt Control"; - pixel_x = -19; - pixel_y = 29; - req_one_access = list(20,41); - specialfunctions = 4; - desiredstate = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/lattice/catwalk/indoor, -/obj/structure/railing/mapped, -/turf/simulated/open, -/area/operations/office) -"bOH" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 +/turf/simulated/wall, +/area/horizon/maintenance/deck_2/wing/port/near) +"bOq" = ( +/obj/machinery/door/airlock/maintenance{ + dir = 1; + name = "Maintenance Passthrough"; + req_one_access = list(12,31,48,67) }, +/obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment{ - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology/xenological) -"bOI" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable{ icon_state = "1-2" }, -/obj/machinery/door/airlock/engineering{ - dir = 1; - name = "Engineering Substation"; - req_one_access = list(11,24) - }, -/obj/machinery/door/firedoor, /turf/simulated/floor/tiled/full, -/area/maintenance/substation/engineering) +/area/horizon/stairwell/starboard/deck_1) +"bOt" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/light/small/emergency{ + dir = 4 + }, +/turf/simulated/floor, +/area/horizon/maintenance/deck_3/aft/holodeck) +"bOw" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/structure/table/wood, +/obj/random/pottedplant_small{ + pixel_x = 7; + pixel_y = 2 + }, +/turf/simulated/floor/carpet/art, +/area/horizon/crew/lounge) +"bOy" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/horizon/crew/journalistoffice) +"bOA" = ( +/obj/structure/tank_wall/carbon_dioxide{ + density = 0; + icon_state = "co2-5"; + opacity = 0 + }, +/turf/simulated/floor/reinforced/carbon_dioxide, +/area/horizon/engineering/atmos) +"bOB" = ( +/obj/structure/cable/orange{ + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/horizon/engineering/bluespace_drive) +"bOF" = ( +/turf/simulated/wall/shuttle/scc_space_ship/cardinal, +/area/horizon/command/heads/xo) +"bOK" = ( +/obj/effect/floor_decal/corner/dark_green, +/turf/simulated/floor/tiled/dark, +/area/horizon/hangar/intrepid) "bOL" = ( /obj/structure/shuttle_part/scc_space_ship{ icon_state = "d2-3-f" @@ -13290,49 +12644,40 @@ }, /turf/simulated/floor/reinforced/airless, /area/horizon/exterior) -"bOO" = ( -/obj/effect/shuttle_landmark/horizon/dock/deck_3/port_2{ - dir = 1 +"bON" = ( +/obj/structure/cable{ + icon_state = "4-8" }, -/obj/machinery/door/airlock/external, -/obj/effect/map_effect/marker/airlock/docking{ - landmark_tag = "nav_horizon_dock_deck_3_port_4"; - master_tag = "airlock_horizon_dock_deck_3_port_4"; - name = "airlock_horizon_dock_deck_3_port_4" +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 }, -/obj/effect/map_effect/marker_helper/airlock/exterior, -/obj/machinery/access_button{ - pixel_x = 28 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/lattice/catwalk/indoor/grate/damaged{ + color = "#4c535b" }, /turf/simulated/floor/plating, -/area/horizon/hallway/deck_three/primary/port/docks) -"bOR" = ( -/obj/machinery/atmospherics/pipe/simple/visible, -/turf/simulated/floor/tiled/dark, -/area/engineering/atmos) -"bOY" = ( -/turf/simulated/wall/shuttle/unique/scc/scout{ - icon_state = "3,10" +/area/horizon/maintenance/deck_1/wing/port/far) +"bOT" = ( +/obj/machinery/chemical_dispenser/full{ + dir = 1 }, -/area/shuttle/canary) -"bOZ" = ( -/obj/machinery/power/apc/low/west, -/obj/structure/cable/green{ - icon_state = "0-4" - }, -/obj/effect/floor_decal/industrial/warning/cee{ - dir = 8 - }, -/turf/simulated/floor/tiled/full, -/area/engineering/storage_hard) -"bPg" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" +/obj/effect/floor_decal/spline/plain{ + dir = 6 }, /turf/simulated/floor/carpet/rubber, -/area/rnd/lab) +/area/horizon/medical/pharmacy) +"bPb" = ( +/obj/structure/grille/diagonal{ + dir = 8 + }, +/obj/structure/window/shuttle/scc_space_ship, +/obj/effect/floor_decal/spline/plain{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/service/bar) "bPi" = ( /obj/effect/floor_decal/carpet{ dir = 4 @@ -13343,50 +12688,6 @@ }, /turf/simulated/floor/holofloor/carpet, /area/horizon/holodeck/source_dininghall) -"bPj" = ( -/obj/item/storage/belt/medical/paramedic{ - pixel_y = 4 - }, -/obj/item/storage/belt/medical/paramedic{ - pixel_y = 4 - }, -/obj/item/storage/belt/medical{ - pixel_y = -4 - }, -/obj/item/storage/belt/medical{ - pixel_y = -4 - }, -/obj/item/storage/belt/medical{ - pixel_y = -4 - }, -/obj/item/storage/belt/medical{ - pixel_y = -4 - }, -/obj/item/storage/belt/medical{ - pixel_y = -4 - }, -/obj/item/storage/belt/medical{ - pixel_y = -4 - }, -/obj/item/storage/belt/medical{ - pixel_y = -4 - }, -/obj/item/storage/belt/medical{ - pixel_y = -4 - }, -/obj/structure/table/rack, -/obj/effect/floor_decal/corner_wide/green{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/medical/equipment) -"bPn" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 5 - }, -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) "bPp" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -13403,24 +12704,50 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/holodeck_control/beta) +"bPs" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/effect/floor_decal/corner/brown{ + dir = 10 + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/effect/floor_decal/industrial/warning/corner, +/obj/structure/railing/mapped, +/turf/simulated/floor/tiled, +/area/horizon/operations/loading) +"bPt" = ( +/obj/machinery/camera/network/engineering{ + c_tag = "Engineering - Turbine Combustion Chamber"; + dir = 1; + pixel_x = -11 + }, +/obj/machinery/atmospherics/pipe/simple/visible/purple, +/turf/simulated/floor/reinforced/airless, +/area/horizon/engineering/atmos/turbine) +"bPv" = ( +/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/machinery/door/firedoor, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/full, +/area/horizon/maintenance/deck_2/wing/port/far) "bPx" = ( /obj/structure/shuttle_part/ert{ icon_state = "10,0" }, /turf/unsimulated/floor/plating, /area/shuttle/specops) -"bPB" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/corner/red/diagonal, -/obj/effect/floor_decal/spline/plain{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor/lino, -/area/horizon/cafeteria) "bPE" = ( /obj/structure/grille, /turf/template_noop, @@ -13431,106 +12758,64 @@ }, /turf/simulated/floor/holofloor/tiled, /area/horizon/holodeck/source_thunderdomecourt) -"bPK" = ( -/obj/machinery/door/airlock/external, -/obj/machinery/access_button{ - pixel_x = 28 +"bPI" = ( +/obj/structure/cable/green{ + icon_state = "2-8" }, -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/effect/map_effect/marker_helper/airlock/interior, -/obj/effect/map_effect/marker/airlock{ - master_tag = "airlock_horizon_deck_3_aft_1"; - name = "airlock_horizon_deck_3_aft_1"; - frequency = 1001 - }, -/turf/simulated/floor, -/area/horizon/maintenance/deck_three/aft/starboard) -"bPN" = ( -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/structure/disposalpipe/junction/yjunction{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor, -/area/maintenance/engineering_ladder) -"bPT" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/effect/floor_decal/corner/dark_blue/diagonal, -/obj/structure/extinguisher_cabinet/south, -/obj/effect/floor_decal/spline/plain/black{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/intrepid/junction_compartment) -"bPX" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 +/obj/structure/disposalpipe/segment{ + icon_state = "pipe-c" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 10 }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard) -"bQb" = ( -/obj/machinery/alarm/east, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/engineering/atmos/propulsion) -"bQh" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/hangar/operations) -"bQj" = ( -/obj/machinery/camera/network/engineering{ - c_tag = "Engineering - Atmospherics Stairwell" - }, -/obj/effect/floor_decal/corner/yellow/full{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/engineering) -"bQk" = ( -/obj/structure/table/standard, -/obj/effect/floor_decal/corner/black{ +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 10 }, -/obj/structure/platform{ +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_3/starboard) +"bPJ" = ( +/obj/machinery/atmospherics/pipe/simple/visible/universal, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor, +/area/horizon/maintenance/deck_3/aft/port/far) +"bPS" = ( +/obj/structure/bed/handrail{ dir = 8 }, -/obj/structure/platform{ - dir = 1 +/obj/effect/map_effect/marker/airlock/shuttle{ + cycle_to_external_air = 1; + master_tag = "airlock_shuttle_intrepid"; + name = "airlock_shuttle_intrepid"; + req_one_access = null; + shuttle_tag = "Intrepid" }, -/obj/structure/platform_deco/ledge{ - dir = 6 +/obj/machinery/embedded_controller/radio/airlock/docking_port{ + dir = 8; + pixel_x = 21; + pixel_y = 6 }, -/obj/effect/floor_decal/spline/plain{ - dir = 6 +/obj/machinery/airlock_sensor{ + dir = 8; + pixel_x = 22; + pixel_y = -6 }, -/obj/machinery/cell_charger, -/turf/simulated/floor/carpet/rubber, -/area/operations/lower/machinist) +/obj/machinery/atmospherics/unary/vent_pump/high_volume, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/shuttle/intrepid/main_compartment) +"bQf" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 5 + }, +/obj/structure/cable/green{ + icon_state = "0-8" + }, +/obj/machinery/power/apc/north, +/turf/simulated/floor/tiled, +/area/horizon/stairwell/port/deck_2) +"bQm" = ( +/turf/simulated/wall, +/area/horizon/hallway/primary/deck_3/port) "bQq" = ( /obj/machinery/door/blast/odin{ _wifi_id = "odin_arrivals_lockdown"; @@ -13543,33 +12828,48 @@ /obj/effect/floor_decal/industrial/hatch/yellow, /turf/unsimulated/floor, /area/centcom/checkpoint/aft) -"bQB" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/shutters/open{ - dir = 4; - id = "lounge_window_shutters"; - name = "Lounge Window Shutter" - }, -/obj/structure/grille, -/obj/structure/window/shuttle/scc_space_ship, -/turf/simulated/floor/plating, -/area/horizon/crew_quarters/lounge/bar) -"bQC" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 1 - }, +"bQr" = ( /obj/machinery/light{ dir = 1 }, -/obj/item/device/radio/intercom/north, -/turf/simulated/floor/wood, -/area/horizon/bar) -"bQD" = ( -/obj/structure/stairs_lower/stairs_upper{ +/obj/effect/floor_decal/corner/dark_blue/full{ + dir = 1 + }, +/obj/machinery/camera/network/command{ + c_tag = "Bridge - Aft"; + dir = 8 + }, +/obj/machinery/papershredder{ + pixel_x = 7 + }, +/obj/structure/filingcabinet{ + pixel_x = -9 + }, +/turf/simulated/floor/tiled, +/area/horizon/command/bridge/controlroom) +"bQs" = ( +/obj/machinery/computer/general_air_control/large_tank_control/wall{ + input_tag = "o2_in"; + name = "Oxygen Supply Monitor"; + output_tag = "o2_out"; + pixel_x = -32; + sensors = list("o2_sensor"="Tank") + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/lattice/catwalk/indoor, +/turf/simulated/floor/plating, +/area/horizon/engineering/atmos/air) +"bQA" = ( +/obj/structure/tank_wall{ + icon_state = "m-9" + }, +/obj/effect/floor_decal/industrial/warning{ dir = 4 }, -/turf/simulated/wall, -/area/engineering/atmos/storage) +/turf/simulated/floor/plating, +/area/horizon/engineering/atmos) "bQG" = ( /obj/machinery/door/airlock/centcom{ name = "Advanced Interrogation"; @@ -13577,38 +12877,37 @@ }, /turf/unsimulated/floor, /area/centcom/specops) -"bQI" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/structure/platform, -/obj/machinery/door/firedoor{ - dir = 4 - }, -/obj/structure/engineer_maintenance/electric/wall, -/turf/simulated/floor/tiled, -/area/bridge/upperdeck) "bQN" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/table/steel, /turf/unsimulated/floor/monotile, /area/antag/raider) -"bQQ" = ( -/obj/structure/bed/stool/chair/padded/red{ +"bQO" = ( +/obj/effect/floor_decal/sign/cmo, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/effect/floor_decal/corner_wide/green{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/machinery/light/small{ - dir = 8 +/turf/simulated/floor/tiled/white, +/area/horizon/medical/hallway/upper) +"bRc" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 }, -/turf/simulated/floor/carpet/red, -/area/horizon/crew_quarters/lounge/bar) +/obj/effect/floor_decal/corner/green/full, +/turf/simulated/floor/tiled/white, +/area/horizon/operations/break_room) "bRd" = ( /turf/simulated/wall/shuttle/unique/tcfl{ icon_state = "2,1" @@ -13624,153 +12923,59 @@ }, /turf/space/dynamic, /area/horizon/exterior) -"bRm" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/green, -/turf/simulated/floor/plating, -/area/engineering/engine_room) +"bRl" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/platform_deco{ + dir = 4 + }, +/obj/structure/platform_deco{ + dir = 1 + }, +/turf/simulated/floor/lino, +/area/horizon/service/chapel/main) "bRn" = ( /obj/structure/railing/mapped, /turf/unsimulated/floor/plating, /area/centcom/spawning) -"bRq" = ( -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/corner/brown{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/operations/mail_room) "bRs" = ( /turf/simulated/wall/r_wall, /area/horizon/security/firing_range) -"bRt" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/loading/yellow{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 6 - }, -/obj/machinery/door/window, -/turf/simulated/floor/tiled/freezer{ - name = "cooled tiles"; - temperature = 253.15 - }, -/area/horizon/kitchen/freezer) -"bRu" = ( -/obj/machinery/door/airlock/hatch{ - dir = 1; - name = "Port Propulsion"; - req_one_access = list(11,24) - }, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/engineering/atmos/propulsion) "bRw" = ( /obj/structure/flora/tree/grove, /obj/effect/floor_decal/spline/plain, /turf/simulated/floor/exoplanet/grass/grove, /area/centcom/shared_dream) -"bRz" = ( -/obj/machinery/door/blast/regular{ - id = "turbineexterior"; - dir = 4 - }, -/turf/simulated/floor/reinforced/airless, -/area/engineering/engine_room/turbine) -"bRC" = ( -/obj/machinery/door/airlock/glass_research{ - name = "Xenological Studies"; - req_access = list(7); - dir = 4 - }, -/obj/effect/map_effect/door_helper/unres{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8" +"bRy" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 1 }, /obj/structure/disposalpipe/segment{ - dir = 4 + dir = 8; + icon_state = "pipe-c" }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/firedoor{ - dir = 4 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + icon_state = "1-2" }, -/turf/simulated/floor/tiled/dark/full, -/area/rnd/xenobiology/xenological) -"bRE" = ( -/obj/effect/floor_decal/corner_wide/yellow{ - dir = 9 - }, -/obj/machinery/power/apc/super/critical/west, -/obj/structure/cable/orange{ - icon_state = "0-2" - }, -/obj/machinery/power/sensor{ - name = "Powernet Sensor - INDRA Reactor Containment"; - name_tag = "INDRA Reactor Containment" - }, -/turf/simulated/floor/tiled, -/area/engineering/engine_room/rust) -"bRG" = ( -/obj/effect/floor_decal/corner_wide/yellow{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/engineering) +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/telesci) "bRI" = ( /obj/effect/floor_decal/corner/grey{ dir = 5 }, /turf/unsimulated/floor/dark, /area/antag/actor) -"bRQ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ +"bRO" = ( +/obj/machinery/door/firedoor{ dir = 4 }, -/obj/structure/cable{ - icon_state = "4-8" +/obj/machinery/door/airlock/glass{ + dir = 4 }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/turf/simulated/floor/plating, -/area/maintenance/wing/port/far) -"bRT" = ( -/obj/structure/bed/stool/chair/office/bridge{ - dir = 8 - }, -/turf/simulated/floor/carpet/purple, -/area/crew_quarters/heads/hor) -"bRU" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/conveyor{ - dir = 9; - id = "QMLoad"; - reversed = 1 - }, -/obj/machinery/status_display/supply_display{ - pixel_y = 32 - }, -/turf/simulated/floor/tiled, -/area/operations/loading) +/turf/simulated/floor/tiled/full, +/area/horizon/hallway/primary/deck_2/starboard) "bRV" = ( /obj/structure/filingcabinet/chestdrawer, /obj/structure/noticeboard{ @@ -13780,29 +12985,54 @@ icon_state = "wood" }, /area/centcom/control) -"bRY" = ( +"bRW" = ( +/obj/effect/map_effect/window_spawner/full/shuttle/scc{ + spawn_firedoor = 1; + spawn_grille = 1 + }, /obj/structure/cable{ icon_state = "4-8" }, -/obj/machinery/alarm/north, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 +/obj/machinery/door/blast/shutters/open{ + dir = 8; + id = "intrepid_bay_windows"; + name = "Intrepid Shutter" }, /turf/simulated/floor/plating, -/area/maintenance/wing/starboard) -"bSb" = ( -/turf/simulated/floor/wood, -/area/crew_quarters/heads/chief) -"bSh" = ( -/turf/simulated/wall/shuttle/scc, -/area/shuttle/intrepid/medical) -"bSl" = ( -/turf/simulated/wall, -/area/horizon/hydroponics/garden) +/area/horizon/shuttle/intrepid/port_compartment) +"bSc" = ( +/obj/effect/floor_decal/corner_wide/purple{ + dir = 8 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/corner_wide/purple, +/obj/effect/floor_decal/corner_wide/purple{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/xenoarch/atrium) +"bSf" = ( +/obj/structure/disposalpipe/sortjunction/flipped{ + dir = 1; + name = "Operations"; + sortType = "Cargo" + }, +/obj/effect/floor_decal/corner/brown{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/horizon/operations/office) "bSm" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 @@ -13818,86 +13048,34 @@ }, /turf/unsimulated/floor/plating, /area/shuttle/syndicate_elite) -"bSo" = ( -/obj/effect/floor_decal/corner_wide/purple{ +"bSp" = ( +/obj/effect/floor_decal/spline/plain{ dir = 4 }, -/obj/effect/floor_decal/corner_wide/purple{ - dir = 10 +/obj/structure/table/stone/marble, +/obj/random/pottedplant_small{ + pixel_x = 9; + pixel_y = 11 + }, +/turf/simulated/floor/marble/dark, +/area/horizon/command/bridge/minibar) +"bSu" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan, +/turf/simulated/floor/plating, +/area/horizon/engineering/atmos/air) +"bSv" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 4 + }, +/obj/effect/floor_decal/corner/yellow{ + dir = 1 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/white, -/area/rnd/xenoarch_atrium) -"bSr" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/material/shard, /obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/engineering) -"bSx" = ( -/obj/machinery/light/spot{ - dir = 8; - must_start_working = 1 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/table/steel, -/obj/item/storage/bag/inflatable{ - pixel_y = 10; - pixel_x = 2 - }, -/obj/item/device/gps/science{ - pixel_x = 3 - }, -/obj/item/device/gps{ - pixel_x = -6 - }, -/obj/item/device/gps/mining{ - pixel_x = 12 - }, -/obj/item/device/gps{ - pixel_x = -6 - }, -/obj/item/device/gps/science{ - pixel_x = 3 - }, -/obj/item/device/gps/mining{ - pixel_x = 12 - }, -/turf/simulated/floor/plating, -/area/hangar/intrepid) -"bSA" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 8 - }, -/obj/structure/bed/stool/chair/padded/beige{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/horizon/bar) -"bSB" = ( -/obj/effect/floor_decal/corner_wide/blue{ dir = 1 }, -/obj/effect/floor_decal/corner_wide/yellow{ - dir = 4 - }, -/obj/effect/floor_decal/spline/plain/corner{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/red{ - dir = 8 - }, -/obj/machinery/door/airlock/glass_atmos{ - dir = 4; - name = "Atmospherics Locker Room"; - req_access = list(24) - }, -/turf/simulated/floor/tiled/full, -/area/engineering/atmos/storage) +/obj/machinery/atmospherics/pipe/simple/visible/yellow, +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/atmos/turbine) "bSE" = ( /obj/effect/floor_decal/spline/plain{ dir = 1 @@ -13908,9 +13086,6 @@ /obj/structure/table/standard, /turf/simulated/floor/holofloor/tiled, /area/horizon/holodeck/source_gym) -"bSF" = ( -/turf/simulated/wall, -/area/horizon/crew_quarters/cryo/washroom) "bSN" = ( /obj/machinery/embedded_controller/radio/simple_docking_controller{ frequency = 1337; @@ -13924,38 +13099,52 @@ }, /turf/unsimulated/floor, /area/antag/mercenary) -"bSX" = ( -/obj/machinery/photocopier, -/obj/machinery/light{ - dir = 8 +"bSR" = ( +/obj/structure/cable/green{ + icon_state = "4-8" }, -/turf/simulated/floor/carpet, -/area/lawoffice/consular) -"bSZ" = ( -/obj/effect/floor_decal/corner_wide/paleblue{ +/obj/effect/floor_decal/corner/mauve{ dir = 5 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/white, -/area/hallway/medical) -"bTa" = ( -/obj/machinery/shield_capacitor/multiz{ - anchored = 1 +/obj/structure/cable/green{ + icon_state = "2-4" }, -/obj/machinery/power/sensor{ - long_range = 1; - name = "Powernet Sensor - Shield Subgrid"; - name_tag = "Shield Subgrid" +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 }, -/obj/structure/cable/cyan, -/obj/effect/floor_decal/corner_wide/yellow{ - dir = 9 +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/dark/full, -/area/storage/shields) +/obj/structure/disposalpipe/junction/yjunction, +/turf/simulated/floor/tiled, +/area/horizon/rnd/hallway) +"bSS" = ( +/turf/simulated/wall/shuttle/scc_space_ship/cardinal, +/area/horizon/security/checkpoint2) +"bSU" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 4; + icon_state = "shutter0"; + id = "LCKDshutters"; + name = "MedBay Lockdown Shutters"; + opacity = 0 + }, +/obj/machinery/door/airlock/glass_medical{ + dir = 4; + name = "Paramedic Quarters"; + req_access = list(67) + }, +/turf/simulated/floor/tiled/full, +/area/horizon/medical/paramedic) +"bSV" = ( +/obj/machinery/light/small/emergency, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/main/port) "bTb" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -13990,25 +13179,6 @@ }, /turf/unsimulated/floor, /area/centcom/evac) -"bTm" = ( -/obj/machinery/computer/security/engineering/terminal, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/engine_monitoring/rust) -"bTo" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/corner/dark_green{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/security/checkpoint2) "bTp" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/machinery/door/airlock/external{ @@ -14022,25 +13192,24 @@ }, /turf/simulated/floor/tiled/dark, /area/supply/dock) -"bTr" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, +"bTq" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 9 + }, +/obj/machinery/firealarm/south, +/obj/effect/floor_decal/corner/yellow/full, /turf/simulated/floor/tiled/dark, -/area/maintenance/wing/port/far) -"bTu" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/maintenance_hatch{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden, -/turf/simulated/floor/tiled/full, -/area/maintenance/hangar/starboard) -"bTx" = ( -/obj/structure/bed/stool/chair/office/light, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 +/area/horizon/engineering/aft_airlock) +"bTv" = ( +/obj/structure/shuttle_part/scc_space_ship{ + icon_state = "d3-6" }, +/obj/structure/girder, /turf/simulated/floor/plating, -/area/engineering/drone_fabrication) +/area/horizon/maintenance/deck_2/wing/starboard/far) "bTD" = ( /obj/item/deck/cards, /obj/structure/table/wood, @@ -14049,94 +13218,19 @@ icon_state = "wood" }, /area/centcom/distress_prep) -"bTE" = ( -/obj/machinery/door/firedoor, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/door/airlock/command{ - id_tag = "consular_office_a"; - name = "Consular Office A"; - req_access = list(72) - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/wood, -/area/lawoffice/consular) -"bTF" = ( -/obj/structure/table/reinforced/steel, -/obj/item/paper_bin{ - pixel_x = 4; - pixel_y = 8 - }, -/obj/item/pen{ - pixel_x = 5; - pixel_y = 9 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/engine_monitoring/rust) -"bTI" = ( -/obj/effect/floor_decal/corner/mauve{ - dir = 9 - }, -/obj/structure/table/standard, -/obj/item/storage/box/botanydisk{ - pixel_x = 2; - pixel_y = 8 - }, -/obj/item/disk/botany, -/obj/item/disk/botany{ - pixel_y = -2 - }, -/obj/item/disk/botany{ - pixel_y = -4 - }, -/obj/item/disk/botany{ - pixel_y = -6 - }, -/obj/item/disk/botany{ - pixel_x = -8 - }, -/obj/item/disk/botany{ - pixel_x = -8; - pixel_y = -2 - }, -/obj/item/disk/botany{ - pixel_x = -8; - pixel_y = -4 - }, -/obj/item/disk/botany{ - pixel_x = -8; - pixel_y = -6 - }, -/obj/item/device/hand_labeler, -/obj/machinery/alarm/west, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology/xenoflora) -"bTK" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/cable/green, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/landmark/latejoinmedbayrecovery, -/obj/effect/floor_decal/corner_wide/green{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/medical/ward) "bTL" = ( /obj/effect/map_effect/window_spawner/full/reinforced/indestructible, /turf/unsimulated/floor{ icon_state = "plating" }, /area/centcom/control) +"bTM" = ( +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/structure/railing/mapped, +/turf/simulated/open, +/area/horizon/operations/office) "bTP" = ( /obj/structure/closet/secure_closet/security, /obj/effect/floor_decal/corner/dark_blue{ @@ -14149,52 +13243,49 @@ /obj/structure/lattice, /turf/space/dynamic, /area/centcom/distress_prep) -"bTS" = ( -/obj/machinery/firealarm/north, -/obj/effect/floor_decal/corner/mauve/full{ - dir = 1 +"bTV" = ( +/obj/machinery/alarm/east{ + req_one_access = list(24,11,55) }, -/obj/machinery/light_switch{ - dir = 4; - pixel_x = 23 - }, -/obj/structure/engineer_maintenance/pipe{ - dir = 1 - }, -/obj/structure/engineer_maintenance/electric{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/conference) -"bUc" = ( -/obj/structure/railing/mapped, -/obj/machinery/firealarm/east, -/obj/machinery/camera/network/service{ - c_tag = "Service - Deck 2 - Dining Hall 3"; - dir = 8 - }, -/obj/random/pottedplant, -/turf/simulated/floor/lino, -/area/horizon/crew_quarters/lounge/bar) -"bUi" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable/green{ - icon_state = "2-4" - }, -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/obj/effect/floor_decal/corner/dark_green{ +/obj/structure/lattice/catwalk/indoor, +/turf/simulated/floor/plating, +/area/horizon/engineering/reactor/indra/smes) +"bTW" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 9 }, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/central) -"bUk" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 1 +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/reactor/supermatter/waste) +"bTZ" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 5 }, -/turf/simulated/floor/wood, -/area/rnd/hallway) +/obj/structure/table/steel, +/obj/machinery/cell_charger, +/turf/simulated/floor/tiled, +/area/horizon/operations/mining_main/refinery) +"bUb" = ( +/obj/structure/reagent_dispensers/extinguisher, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_3/security/starboard) +"bUn" = ( +/obj/machinery/light, +/obj/effect/floor_decal/corner/dark_green/full{ + dir = 4 + }, +/obj/machinery/computer/guestpass{ + pixel_y = -32 + }, +/obj/structure/railing/mapped{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_1/central) "bUo" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on, /obj/machinery/status_display{ @@ -14218,14 +13309,40 @@ }, /turf/unsimulated/floor, /area/centcom/bar) -"bUA" = ( -/obj/effect/floor_decal/corner/dark_blue/diagonal, -/obj/effect/floor_decal/industrial/outline/medical, -/obj/structure/closet/walllocker/medical/firstaid{ - pixel_y = 32 +"bUy" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/storage/eva/expedition) +"bUB" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/map_effect/door_helper/unres, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id = "bridge blast"; + name = "Bridge Blast Doors"; + opacity = 0 + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/airlock/glass_command{ + dir = 1; + id_tag = "bridge_foyer"; + name = "Bridge"; + req_one_access = list(19) }, /turf/simulated/floor/tiled, -/area/bridge) +/area/horizon/command/bridge/controlroom) "bUD" = ( /obj/structure/table/standard, /obj/item/trash/plate, @@ -14243,6 +13360,17 @@ }, /turf/unsimulated/floor, /area/centcom/legion/hangar5) +"bUG" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plating, +/area/horizon/engineering/reactor/supermatter/mainchamber) "bUH" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, @@ -14258,16 +13386,26 @@ icon_state = "white" }, /area/centcom/legion) -"bUN" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 +"bUM" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 10 }, -/obj/machinery/newscaster/east, -/obj/effect/floor_decal/corner/dark_green{ - dir = 6 +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/window/reinforced{ + dir = 8 }, +/obj/machinery/light/spot, +/obj/machinery/portable_atmospherics/canister/air, /turf/simulated/floor/tiled, -/area/hangar/intrepid) +/area/horizon/hangar/operations) +"bUQ" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/ore_box, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/operations/mining_main/refinery) "bUW" = ( /obj/machinery/iv_drip, /obj/effect/floor_decal/corner/lime/diagonal, @@ -14275,27 +13413,22 @@ icon_state = "dark_preview" }, /area/centcom/holding) -"bVc" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/platform_stairs/full/east_west_cap, -/turf/simulated/floor/plating, -/area/maintenance/engineering) -"bVd" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, +"bUX" = ( /obj/machinery/door/firedoor, -/obj/effect/floor_decal/corner/dark_green{ - dir = 10 +/turf/simulated/floor/tiled/dark, +/area/horizon/crew/fitness/gym) +"bVa" = ( +/obj/machinery/door/airlock/maintenance{ + dir = 4; + name = "Xenobotany Maintenance"; + req_access = list(52) + }, +/obj/machinery/door/firedoor{ + dir = 4 }, /obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/full, -/area/horizon/hallway/deck_three/primary/central) +/turf/simulated/floor/tiled, +/area/horizon/rnd/xenobiology/xenoflora) "bVf" = ( /obj/machinery/atmospherics/pipe/simple/visible/red{ dir = 4 @@ -14305,94 +13438,174 @@ }, /turf/space/dynamic, /area/horizon/exterior) +"bVg" = ( +/obj/effect/landmark{ + name = "Revenant" + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/port/near) +"bVi" = ( +/obj/machinery/disposal/small/east{ + pixel_x = -16 + }, +/obj/effect/floor_decal/corner/grey/diagonal, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_3/port) "bVl" = ( /obj/effect/floor_decal/industrial/warning{ dir = 1 }, /turf/simulated/floor/reinforced, /area/shuttle/mercenary) -"bVm" = ( -/obj/structure/table/standard, -/obj/effect/floor_decal/corner/mauve{ - dir = 9 - }, -/obj/machinery/power/apc/west, -/obj/structure/cable/green{ - icon_state = "0-4" - }, -/turf/simulated/floor/tiled/white, -/area/rnd/lab) "bVn" = ( /obj/structure/table/rack, /obj/random/melee, /obj/item/stack/material/steel/full, /turf/simulated/floor/plating, /area/shuttle/skipjack) -"bVo" = ( -/obj/effect/floor_decal/industrial/warning/corner{ +"bVu" = ( +/obj/effect/floor_decal/industrial/warning{ dir = 1 }, -/turf/simulated/floor/plating, -/area/hangar/intrepid) -"bVs" = ( -/obj/structure/cable/green{ - icon_state = "1-2" +/mob/living/silicon/robot/shell, +/obj/machinery/mech_recharger, +/turf/simulated/floor/tiled/dark, +/area/horizon/command/bridge/aibunker) +"bVv" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 1 }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 +/obj/effect/floor_decal/spline/plain{ + dir = 1 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/corner/dark_green{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/starboard) +/obj/effect/floor_decal/spline/plain, +/turf/simulated/floor/carpet/rubber, +/area/horizon/tcommsat/chamber) "bVC" = ( /obj/effect/floor_decal/spline/plain{ dir = 1 }, /turf/simulated/floor/exoplanet/grass, /area/centcom/shared_dream) +"bVE" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 10 + }, +/obj/item/device/flash, +/obj/structure/table/steel, +/turf/simulated/floor/tiled/dark, +/area/horizon/security/checkpoint2) +"bVG" = ( +/obj/structure/sign/nosmoking_1{ + pixel_y = 32 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/aux{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 8 + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/auxatmos) +"bVJ" = ( +/obj/effect/floor_decal/corner_wide/yellow{ + dir = 9 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/turf/simulated/floor/tiled, +/area/horizon/engineering/hallway/aft) +"bVK" = ( +/turf/simulated/wall/shuttle/scc_space_ship/cardinal, +/area/horizon/engineering/reactor/supermatter/waste) "bVM" = ( /obj/structure/flora/ausbushes/ywflowers, /obj/effect/floor_decal/spline/fancy/wood/cee, /turf/simulated/floor/holofloor/grass, /area/horizon/holodeck/source_picnicarea) -"bVV" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, +"bVN" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/horizon/crew/resdeck/living_quarters_lift) +"bVO" = ( /obj/structure/cable/green{ icon_state = "1-2" }, -/turf/simulated/floor/tiled/dark, -/area/teleporter) -"bVW" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable{ +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance{ + dir = 1; + req_one_access = list(26,29,31,48,67) + }, +/turf/simulated/floor/tiled/full, +/area/horizon/operations/loading) +"bVR" = ( +/obj/effect/floor_decal/corner_wide/yellow/diagonal, +/obj/structure/table/steel, +/obj/item/storage/box/fancy/donut{ + pixel_y = 5 + }, +/obj/machinery/newscaster/east, +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/break_room) +"bVT" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 6 + }, +/obj/structure/cable/green{ 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{ +/obj/structure/disposalpipe/trunk{ dir = 1 }, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenoarch_atrium) +/obj/machinery/disposal/small/west, +/obj/item/device/radio/intercom/east{ + pixel_y = 1 + }, +/turf/simulated/floor/tiled, +/area/horizon/command/bridge/controlroom) "bVZ" = ( /obj/effect/map_effect/window_spawner/full/reinforced/indestructible, /turf/unsimulated/floor/plating, /area/centcom/distress_prep) -"bWh" = ( -/obj/effect/floor_decal/corner/red/diagonal, -/obj/effect/floor_decal/spline/plain{ +"bWg" = ( +/obj/effect/landmark/entry_point/starboard{ + name = "starboard, ballast aft" + }, +/turf/simulated/wall/shuttle/scc_space_ship/cardinal, +/area/horizon/maintenance/deck_2/wing/port/nacelle) +"bWj" = ( +/obj/effect/floor_decal/corner_wide/paleblue/full{ + dir = 1 + }, +/obj/machinery/light{ dir = 4 }, -/obj/random/junk, -/turf/simulated/floor/tiled, -/area/horizon/maintenance/deck_three/aft/starboard) +/obj/structure/engineer_maintenance/pipe{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/surgery) "bWn" = ( /obj/effect/floor_decal/corner/dark_blue{ dir = 5 @@ -14418,6 +13631,17 @@ /obj/item/material/ashtray/bronze, /turf/simulated/floor/holofloor/lino, /area/horizon/holodeck/source_theatre) +"bWq" = ( +/obj/structure/bed/stool/chair/shuttle{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/outline/security, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/extinguisher_cabinet/north, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/shuttle/intrepid/flight_deck) "bWr" = ( /obj/structure/closet/wardrobe/suit, /obj/random/colored_jumpsuit, @@ -14432,12 +13656,18 @@ /obj/item/clothing/accessory/offworlder/bracer, /turf/simulated/floor/wood, /area/merchant_station) -"bWz" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/fuel, -/obj/machinery/atmospherics/portables_connector/scrubber, -/obj/machinery/portable_atmospherics/canister/empty, -/turf/simulated/floor/tiled/dark, -/area/shuttle/intrepid/engineering) +"bWv" = ( +/obj/structure/girder, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/starboard) +"bWB" = ( +/obj/structure/closet/secure_closet/engineering_personal, +/obj/effect/floor_decal/corner/yellow{ + dir = 9 + }, +/obj/effect/floor_decal/industrial/outline/operations, +/turf/simulated/floor/tiled, +/area/horizon/engineering/locker_room) "bWC" = ( /obj/structure/table/reinforced/steel, /obj/item/paper_bin{ @@ -14455,29 +13685,17 @@ icon_state = "dark_preview" }, /area/centcom/control) -"bWE" = ( -/obj/structure/tank_wall/nitrous_oxide{ - density = 0; - icon_state = "h11"; - opacity = 0 - }, -/obj/machinery/atmospherics/pipe/simple/visible/red{ - dir = 5 - }, -/turf/simulated/floor/reinforced/n20, -/area/engineering/atmos/air) -"bWK" = ( -/obj/structure/railing/mapped{ +"bWF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 8 }, -/obj/machinery/computer/rdconsole/core{ - dir = 4 - }, -/obj/machinery/light/floor{ - dir = 8 - }, -/turf/simulated/floor/carpet/rubber, -/area/rnd/lab) +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled, +/area/horizon/operations/machinist) +"bWH" = ( +/obj/effect/decal/cleanable/cobweb, +/turf/simulated/floor/tiled/dark, +/area/horizon/maintenance/deck_2/wing/port/nacelle) "bWM" = ( /obj/item/device/paicard, /obj/item/device/paicard, @@ -14491,54 +13709,17 @@ /obj/effect/floor_decal/spline/plain, /turf/unsimulated/floor/rubber_carpet, /area/centcom/specops) -"bWR" = ( -/obj/effect/floor_decal/spline/plain/cee{ +"bWN" = ( +/obj/machinery/light/small{ dir = 1 }, -/turf/simulated/floor/carpet/rubber, -/area/hallway/primary/central_one) -"bWT" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 +/obj/effect/map_effect/marker/airlock/docking{ + landmark_tag = "nav_horizon_dock_deck_3_starboard_1"; + master_tag = "airlock_horizon_dock_deck_3_starboard_1"; + name = "airlock_horizon_dock_deck_3_starboard_1" }, -/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, -/obj/effect/floor_decal/corner/dark_green{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/starboard) -"bWZ" = ( -/obj/machinery/smartfridge/chemistry{ - density = 0; - pixel_y = 24 - }, -/obj/effect/floor_decal/corner_wide/orange/full{ - dir = 8 - }, -/obj/machinery/alarm/west, -/obj/structure/sign/nosmoking_2{ - pixel_x = -32; - pixel_y = 32 - }, -/turf/simulated/floor/tiled/white, -/area/medical/pharmacy) -"bXf" = ( -/obj/effect/floor_decal/corner_wide/yellow{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/engineering/engine_room/rust) +/turf/simulated/floor/plating, +/area/horizon/hallway/primary/deck_3/port/docks) "bXh" = ( /obj/structure/shuttle/engine/propulsion/burst/right{ dir = 8 @@ -14550,9 +13731,6 @@ /obj/structure/flora/ausbushes/sparsegrass, /turf/simulated/floor/grass/no_edge, /area/centcom/bar) -"bXk" = ( -/turf/simulated/wall/r_wall, -/area/rnd/conference) "bXm" = ( /obj/effect/floor_decal/corner/paleblue{ dir = 5 @@ -14587,44 +13765,19 @@ }, /turf/unsimulated/floor/plating, /area/centcom/legion) -"bXr" = ( -/obj/structure/bed/stool/chair/office/bridge/generic{ - dir = 8 +"bXx" = ( +/obj/structure/cable{ + icon_state = "4-8" }, -/obj/machinery/button/remote/airlock{ - dir = 4; - id = "consular_office_b"; - name = "consular door bolts"; - pixel_x = 57; - specialfunctions = 4 - }, -/obj/machinery/light_switch{ - dir = 4; - pixel_x = 52; - pixel_y = 2 - }, -/obj/machinery/button/remote/airlock{ - dir = 4; - id = "consular_office_b"; - name = "consular door control"; - pixel_x = 57; - pixel_y = 11 - }, -/obj/machinery/button/switch/windowtint{ - dir = 4; - id = "consularB"; - pixel_x = 52; - pixel_y = -7 - }, -/obj/effect/landmark/start{ - name = "Consular Officer" - }, -/obj/item/storage/secure/safe{ - pixel_y = 43; - pixel_x = 60 - }, -/turf/simulated/floor/carpet, -/area/lawoffice/consular_two) +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor/plating, +/area/horizon/hangar/auxiliary) +"bXy" = ( +/obj/structure/grille, +/obj/machinery/door/firedoor, +/obj/structure/window/shuttle/scc_space_ship/cardinal, +/turf/simulated/floor/plating, +/area/horizon/hallway/primary/deck_3/starboard/docks) "bXG" = ( /obj/effect/floor_decal/corner/paleblue{ dir = 5 @@ -14635,28 +13788,27 @@ }, /turf/unsimulated/floor, /area/centcom/holding) -"bXK" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 +"bXH" = ( +/obj/structure/flora/pottedplant/dead, +/obj/structure/sign/nosmoking_1{ + pixel_y = -32 }, -/obj/structure/sink{ - dir = 8; - pixel_x = -12 - }, -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/machinery/shower{ - dir = 4; - pixel_y = 1 - }, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/engine_monitoring/rust) +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/auxatmos) "bXM" = ( /turf/unsimulated/floor{ dir = 8; icon_state = "ramptop" }, /area/centcom/holding) +"bXN" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/random/dirt_75, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark, +/area/horizon/maintenance/deck_2/wing/starboard/nacelle) "bXS" = ( /obj/effect/floor_decal/corner/white/diagonal, /obj/machinery/door/airlock{ @@ -14665,123 +13817,65 @@ }, /turf/unsimulated/floor, /area/centcom/spawning) +"bXW" = ( +/obj/machinery/atmospherics/portables_connector, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/atmos) "bXZ" = ( /obj/machinery/light/small/emergency{ dir = 1 }, /turf/unsimulated/floor, /area/centcom/legion/hangar5) -"bYa" = ( -/obj/effect/floor_decal/corner/lime/diagonal, -/obj/machinery/power/apc/east{ - req_access = null; - req_one_access = list(11, 24, 47, 65) - }, -/obj/machinery/sleeper{ - dir = 8 - }, -/obj/structure/cable/green{ - icon_state = "0-8" - }, -/turf/simulated/floor/tiled/white, -/area/shuttle/intrepid/medical) -"bYb" = ( -/obj/machinery/meter{ - name = "Air Reserve" - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/aux{ - dir = 8 - }, -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor, -/area/bridge/aibunker) -"bYk" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/structure/lattice/catwalk/indoor/grate, +"bYd" = ( +/obj/structure/grille, +/obj/structure/window/shuttle/scc_space_ship, +/obj/machinery/door/firedoor, /turf/simulated/floor/plating, -/area/hallway/engineering) -"bYo" = ( -/obj/machinery/door/airlock/external{ - dir = 1; - frequency = 1337; - icon_state = "door_locked"; - id_tag = "merchant_shuttle_dock_inner"; - locked = 1; - req_access = list(13) - }, -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/machinery/access_button{ - command = "cycle_interior"; - frequency = 1337; - master_tag = "merchant_shuttle_dock"; - name = "interior access button"; - pixel_x = 32; - req_access = list(13) - }, -/turf/simulated/floor/plating, -/area/security/checkpoint2) -"bYq" = ( -/obj/machinery/atmospherics/unary/vent_pump/siphon/on/atmos{ - id_tag = "o2_out" - }, -/turf/simulated/floor/reinforced/oxygen, -/area/engineering/atmos/air) -"bYz" = ( -/obj/structure/disposalpipe/segment, -/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/full, -/area/hangar/intrepid/interstitial) +/area/horizon/service/chapel/office) "bYE" = ( /obj/effect/shuttle_landmark/escape_pod/transit/pod2, /turf/space/transit/east, /area/template_noop) -"bYL" = ( -/obj/item/folder, -/obj/structure/table/glass{ - table_reinf = "glass" - }, -/obj/structure/curtain/open/medical, -/obj/effect/floor_decal/corner_wide/green{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/medical/ward) -"bYM" = ( -/obj/machinery/light/small/emergency{ +"bYI" = ( +/obj/effect/floor_decal/spline/fancy/wood/corner{ dir = 4 }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 5 + }, +/turf/simulated/floor/wood, +/area/horizon/service/cafeteria) +"bYO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/cable{ + icon_state = "1-8" + }, /obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, /turf/simulated/floor/plating, -/area/maintenance/wing/port/far) +/area/horizon/maintenance/deck_1/wing/starboard) "bYQ" = ( /obj/structure/bed/stool/chair/shuttle{ dir = 8 }, /turf/simulated/floor/shuttle/black, /area/centcom/specops) +"bYY" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/effect/decal/cleanable/dirt, +/obj/structure/railing/mapped, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/wing/starboard) "bZb" = ( /obj/effect/floor_decal/corner/dark_blue/full{ dir = 8 @@ -14814,205 +13908,127 @@ }, /turf/unsimulated/floor, /area/centcom/holding) -"bZn" = ( -/obj/structure/cable/green{ - icon_state = "4-8" +"bZq" = ( +/obj/structure/table/standard, +/obj/item/storage/box/gloves, +/obj/item/storage/box/masks{ + pixel_x = 4; + pixel_y = 4 }, -/obj/structure/cable/green{ - icon_state = "1-8" +/obj/item/reagent_containers/spray/cleaner{ + desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; + icon_state = "sterilesprayblue"; + name = "surgery cleaner"; + pixel_y = 3; + pixel_x = -11 }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/hangar/port) -"bZp" = ( -/obj/machinery/atmospherics/pipe/simple/visible/cyan{ - dir = 10 - }, -/turf/simulated/floor/plating, -/area/engineering/atmos/air) +/turf/simulated/floor/tiled/dark, +/area/horizon/rnd/xenobiology/dissection) "bZr" = ( /obj/structure/disposalpipe/segment, /obj/effect/decal/fake_object/light_source/invisible, /turf/simulated/floor, /area/tdome) -"bZx" = ( -/obj/structure/window/shuttle/scc_space_ship, -/obj/structure/grille, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/hallway/engineering/rust) -"bZz" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/lounge/secondary) -"bZC" = ( -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/obj/machinery/access_button{ - pixel_x = -25; - pixel_y = 20 - }, -/obj/machinery/airlock_sensor/airlock_interior{ - pixel_x = -25; - pixel_y = 27 - }, -/obj/effect/map_effect/marker_helper/airlock/interior, -/obj/machinery/atmospherics/pipe/manifold/hidden{ - dir = 4 - }, -/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/tiled/dark, -/area/shuttle/mining) -"bZG" = ( -/obj/structure/cable/green{ +"bZt" = ( +/obj/structure/cable{ icon_state = "4-8" }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 7 +/obj/structure/extinguisher_cabinet/north, +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor/plating, +/area/horizon/hangar/auxiliary) +"bZw" = ( +/turf/simulated/wall, +/area/horizon/medical/emergency_storage) +"bZA" = ( +/obj/machinery/atmospherics/unary/freezer{ + dir = 4; + icon_state = "freezer" + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/rnd/xenobiology/xenoflora) +"bZE" = ( +/obj/effect/floor_decal/spline/fancy/wood/corner{ + dir = 8 }, /obj/effect/floor_decal/spline/fancy/wood/corner{ dir = 1 }, -/obj/machinery/light_switch{ - pixel_y = -19 +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/simulated/floor/wood, -/area/crew_quarters/heads/hop/xo) -"bZK" = ( -/obj/structure/cable/green{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ +/obj/structure/platform_deco{ dir = 8 }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/effect/floor_decal/spline/fancy/wood, -/obj/structure/bed/stool/bar/padded/red, /turf/simulated/floor/wood, -/area/horizon/bar) -"bZO" = ( -/obj/machinery/requests_console/east{ - department = "Science Conference Room"; - departmentType = 2; - name = "Science Conference Room" - }, -/obj/effect/floor_decal/corner/mauve/full{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/conference) -"bZR" = ( -/obj/effect/landmark/entry_point/port{ - name = "port, compartment" - }, -/turf/simulated/wall/shuttle/unique/scc/mining{ - icon_state = "7,4" - }, -/area/shuttle/mining) -"bZU" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/purple, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/engineering/atmos/propulsion) -"bZV" = ( +/area/horizon/service/dining_hall) +"bZF" = ( /obj/effect/floor_decal/corner/dark_green{ - dir = 9 + dir = 10 }, -/obj/effect/floor_decal/spline/plain/corner/lime{ - dir = 4 +/obj/machinery/status_display{ + pixel_y = -32 }, /turf/simulated/floor/tiled, -/area/horizon/hallway/deck_two/fore) -"bZY" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small/emergency{ +/area/horizon/engineering/hallway/fore) +"bZI" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 5 + }, +/obj/effect/floor_decal/corner/lime{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 1 }, -/obj/effect/floor_decal/industrial/warning{ +/turf/simulated/floor/tiled, +/area/horizon/rnd/xenobiology/xenoflora) +"bZJ" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/reactor/supermatter/waste) +"bZQ" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/full, +/turf/simulated/floor/tiled, +/area/horizon/command/bridge/cciaroom/lounge) +"cac" = ( +/obj/effect/floor_decal/corner/dark_blue{ dir = 6 }, -/turf/simulated/floor, -/area/horizon/maintenance/deck_three/aft/starboard) +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/weapons/longbow) +"cae" = ( +/obj/machinery/light/small, +/obj/machinery/atmospherics/pipe/manifold/hidden, +/obj/effect/map_effect/marker/airlock/docking{ + landmark_tag = "nav_horizon_dock_deck_3_port_5"; + master_tag = "airlock_horizon_dock_deck_3_port_5"; + name = "airlock_horizon_dock_deck_3_port_5" + }, +/turf/simulated/floor/plating, +/area/horizon/hallway/primary/deck_3/starboard/docks) +"cah" = ( +/turf/simulated/floor/grass/no_edge, +/area/horizon/service/cafeteria) "cak" = ( /obj/effect/floor_decal/corner/full{ dir = 1 }, /turf/simulated/floor/marble/dark, /area/horizon/holodeck/source_trinary) -"cal" = ( -/obj/effect/floor_decal/corner_wide/yellow/diagonal, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/machinery/disposal/small/north, -/turf/simulated/floor/tiled/dark, -/area/engineering/break_room) -"cao" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled/dark/full, -/area/storage/secure) -"caq" = ( -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/door/airlock/medical{ - dir = 1; - name = "Psychiatric Office"; - req_access = list(64) - }, -/obj/effect/map_effect/door_helper/unres, -/turf/simulated/floor/tiled/full, -/area/medical/psych) -"cas" = ( -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/structure/cable/green{ - icon_state = "2-4" - }, -/obj/structure/lattice/catwalk/indoor/grate, -/turf/simulated/floor/plating, -/area/operations/lobby) -"cat" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/green{ - dir = 8 - }, -/obj/machinery/meter, -/turf/simulated/floor/plating, -/area/engineering/engine_room) +"cav" = ( +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor, +/area/horizon/maintenance/deck_3/aft/port/far) "caw" = ( /obj/structure/table/wood, /obj/item/trash/cigbutt, @@ -15025,64 +14041,60 @@ icon_state = "wood" }, /area/centcom/distress_prep) -"caF" = ( -/obj/structure/cable/green{ - icon_state = "1-2" +"cay" = ( +/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/maintenance/deck_2/wing/port/far) +"caC" = ( +/obj/effect/floor_decal/corner/black{ + dir = 8 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/dark, +/area/horizon/hangar/auxiliary) +"caH" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 6 + }, /turf/simulated/floor/tiled, -/area/operations/lobby) +/area/horizon/stairwell/starboard/deck_2) "caI" = ( /obj/effect/floor_decal/industrial/warning{ dir = 6 }, /turf/simulated/floor/tiled/dark/full, /area/turbolift/scc_ship/morgue_lift) -"caN" = ( -/obj/structure/table/rack, -/obj/effect/floor_decal/corner/lime/full, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 +"caK" = ( +/obj/structure/table/standard, +/obj/effect/floor_decal/corner_wide/green/full, +/obj/machinery/alarm/west, +/obj/item/storage/box/masks, +/obj/item/storage/box/masks, +/obj/item/storage/box/gloves{ + pixel_x = 4; + pixel_y = 4 }, -/obj/structure/platform{ - dir = 4 +/obj/item/storage/box/gloves{ + pixel_x = 4; + pixel_y = 4 }, -/obj/structure/railing/mapped{ - dir = 8 - }, -/turf/simulated/floor/tiled/white{ - name = "cooled white floor"; - temperature = 278.15 - }, -/area/medical/morgue/lower) +/obj/structure/railing/mapped, +/obj/structure/stairs_lower/stairs_upper, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/hallway) "caO" = ( /obj/effect/floor_decal/industrial/loading/yellow{ dir = 1 }, /turf/simulated/floor/tiled, /area/merchant_station/warehouse) -"caV" = ( -/obj/effect/floor_decal/corner/mauve{ - dir = 9 +"caQ" = ( +/obj/machinery/light/small/emergency{ + dir = 4 }, -/obj/machinery/alarm/west, -/turf/simulated/floor/tiled/white, -/area/rnd/conference) -"caW" = ( -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/central) -"caZ" = ( -/obj/effect/floor_decal/corner_wide/grey/diagonal, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/effect/floor_decal/spline/plain, -/turf/simulated/floor/tiled/white, -/area/operations/break_room) -"cbc" = ( -/obj/machinery/portable_atmospherics/canister/empty, -/obj/effect/floor_decal/industrial/outline/grey, -/obj/random/dirt_75, -/turf/simulated/floor, -/area/maintenance/security_port) +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/port/near) "cbh" = ( /obj/effect/decal/cleanable/dirt, /obj/item/device/taperecorder, @@ -15109,6 +14121,66 @@ icon_state = "white" }, /area/centcom/legion) +"cbu" = ( +/obj/effect/floor_decal/corner_wide/black{ + dir = 6 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/atmos/propulsion/starboard) +"cbw" = ( +/obj/structure/table/reinforced/wood, +/obj/machinery/light{ + dir = 1 + }, +/obj/random/pottedplant_small{ + pixel_x = 5; + pixel_y = -1 + }, +/turf/simulated/floor/carpet, +/area/horizon/command/heads/xo) +"cbz" = ( +/obj/machinery/keycard_auth{ + pixel_x = -5; + pixel_y = -24 + }, +/obj/machinery/button/remote/blast_door{ + desc = "A remote control-switch for engine core."; + id = "sat_blast"; + name = "Scuttling Device Blast Doors Control"; + pixel_x = 10; + pixel_y = -20; + req_access = list(20) + }, +/obj/effect/floor_decal/spline/fancy/wood, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/horizon/command/heads/captain) +"cbA" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/reactor/indra/mainchamber) "cbB" = ( /obj/effect/floor_decal/corner/dark_blue{ dir = 10 @@ -15120,23 +14192,50 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, /area/horizon/security/hallway) -"cbC" = ( -/obj/structure/bed/stool/chair/padded/red{ - dir = 8 +"cbK" = ( +/obj/effect/landmark/entry_point/port{ + name = "port, weapons range" }, -/turf/simulated/floor/wood, -/area/horizon/crew_quarters/lounge/bar) -"cbR" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/closet/secure_closet/medical_para, -/obj/item/defibrillator/compact/loaded, -/turf/simulated/floor/tiled, -/area/medical/paramedic) +/turf/simulated/wall/shuttle/scc_space_ship/cardinal, +/area/horizon/rnd/test_range) "cbU" = ( /turf/unsimulated/floor/plating, /area/centcom/spawning) +"cca" = ( +/obj/machinery/door/airlock{ + dir = 4; + name = "Public Office" + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/horizon/crew/vacantoffice) +"ccb" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/full, +/area/horizon/hallway/primary/deck_2/central) "ccc" = ( /obj/effect/floor_decal/industrial/warning, /obj/effect/floor_decal/industrial/warning{ @@ -15150,29 +14249,6 @@ }, /turf/unsimulated/floor/dark, /area/antag/actor) -"ccg" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/hallway/medical) -"cch" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/structure/tank_wall/nitrous_oxide{ - icon_state = "n2o15" - }, -/obj/machinery/atmospherics/pipe/simple/visible/red, -/turf/simulated/floor/plating, -/area/engineering/atmos/air) "ccn" = ( /obj/machinery/atmospherics/unary/vent_pump/high_volume{ dir = 4; @@ -15184,29 +14260,41 @@ }, /turf/simulated/floor/tiled/dark, /area/shuttle/mercenary) -"ccs" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 1 +"ccq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 }, -/turf/simulated/floor/reinforced, -/area/rnd/test_range) -"ccv" = ( -/turf/simulated/wall/r_wall, -/area/maintenance/substation/command) -"ccx" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/structure/cable/green{ - icon_state = "1-8" +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 }, /obj/structure/cable/green{ - icon_state = "1-4" + icon_state = "4-8" }, -/turf/simulated/floor/tiled, -/area/operations/lobby) +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/horizon/service/dining_hall) +"ccy" = ( +/turf/simulated/wall/shuttle/unique/scc/mining{ + icon_state = "1,6" + }, +/area/horizon/shuttle/mining) +"ccz" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/horizon/command/heads/chief) +"ccB" = ( +/obj/structure/railing/mapped, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/green{ + icon_state = "0-8" + }, +/obj/machinery/power/apc/north, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/port/near) "ccE" = ( /obj/structure/grille, /obj/structure/window/reinforced/crescent{ @@ -15218,51 +14306,6 @@ }, /turf/unsimulated/floor/plating, /area/centcom/legion/hangar5) -"ccF" = ( -/obj/structure/table/stone/marble, -/obj/item/reagent_containers/food/condiment/enzyme{ - pixel_x = -9; - pixel_y = 9 - }, -/obj/item/reagent_containers/food/condiment/enzyme{ - pixel_x = -9; - pixel_y = 5 - }, -/obj/item/reagent_containers/food/condiment/shaker/peppermill{ - pixel_x = -4; - pixel_y = 11 - }, -/obj/item/reagent_containers/food/condiment/shaker/peppermill{ - pixel_x = -4; - pixel_y = 7 - }, -/obj/item/reagent_containers/food/condiment/shaker/spacespice{ - pixel_x = 3; - pixel_y = 7 - }, -/obj/item/reagent_containers/food/condiment/shaker/spacespice{ - pixel_x = 3; - pixel_y = 1 - }, -/obj/item/reagent_containers/food/condiment/shaker/salt{ - pixel_x = 8; - pixel_y = 11 - }, -/obj/item/reagent_containers/food/condiment/shaker/salt{ - pixel_x = 8; - pixel_y = 7 - }, -/obj/item/reagent_containers/food/condiment/shaker/sprinkles{ - pixel_x = -3 - }, -/obj/item/reagent_containers/food/condiment/shaker/sprinkles{ - pixel_x = 9 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/kitchen) "ccJ" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 6 @@ -15274,27 +14317,6 @@ icon_state = "wood" }, /area/centcom/specops) -"ccM" = ( -/obj/structure/table/reinforced/wood, -/obj/item/pen, -/obj/item/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge/meeting_room) -"ccO" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/bridge/controlroom) "ccP" = ( /obj/structure/closet/gimmick{ name = "emergency response team wardrobe" @@ -15310,37 +14332,45 @@ icon_state = "dark_preview" }, /area/centcom/specops) -"ccV" = ( -/obj/machinery/light/floor, -/obj/structure/disposalpipe/segment{ +"ccQ" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 10 + }, +/obj/structure/cable/green, +/obj/structure/engineer_maintenance/pipe, +/obj/structure/engineer_maintenance/electric{ dir = 4 }, +/obj/machinery/power/apc/south, /turf/simulated/floor/tiled, -/area/bridge) -"ccZ" = ( -/obj/item/material/shard{ - icon_state = "small" +/area/horizon/operations/lobby) +"ccR" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 1 }, -/obj/structure/cable/green{ - icon_state = "1-2" +/obj/effect/map_effect/marker/airlock{ + frequency = 1003; + master_tag = "airlock_horizon_deck_1_aft_port_1"; + name = "airlock_horizon_deck_1_aft_port_1" }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plating, -/area/maintenance/research_port) -"cda" = ( -/obj/structure/cable/green{ - icon_state = "2-4" +/area/horizon/maintenance/deck_1/auxatmos) +"ccS" = ( +/obj/effect/shuttle_landmark/horizon/dock/deck_3/starboard_3{ + dir = 1 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 +/obj/machinery/door/airlock/external, +/obj/machinery/access_button{ + pixel_x = 28 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 +/obj/effect/map_effect/marker_helper/airlock/exterior, +/obj/effect/map_effect/marker/airlock/docking{ + landmark_tag = "nav_horizon_dock_deck_3_starboard_3"; + master_tag = "airlock_horizon_dock_deck_3_starboard_3"; + name = "airlock_horizon_dock_deck_3_starboard_3" }, -/turf/simulated/floor/tiled/dark, -/area/engineering/gravity_gen) +/turf/simulated/floor/plating, +/area/horizon/hallway/primary/deck_3/port/docks) "cdb" = ( /obj/effect/floor_decal/corner/grey{ dir = 1 @@ -15350,33 +14380,37 @@ }, /turf/unsimulated/floor, /area/antag/mercenary) +"cdc" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/weapons/longbow) "cdd" = ( /turf/simulated/floor/holofloor/carpet, /area/horizon/holodeck/source_dininghall) -"cde" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 6 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/mining) -"cdh" = ( -/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, -/turf/simulated/floor/tiled/dark/full, -/area/medical/icu) -"cdi" = ( -/obj/random/junk, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, +"cdf" = ( +/obj/structure/bed/stool/bar/padded/red, +/obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, -/area/maintenance/research_port) +/area/horizon/maintenance/deck_2/wing/port) +"cdm" = ( +/turf/simulated/floor/tiled/dark, +/area/horizon/maintenance/deck_2/wing/starboard/far) +"cdp" = ( +/turf/simulated/wall/shuttle/scc_space_ship/cardinal, +/area/horizon/engineering/reactor/supermatter/mainchamber) +"cdq" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 5 + }, +/obj/machinery/door/airlock/glass{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_3/central) "cdt" = ( /turf/simulated/floor/holofloor/reinforced, /area/horizon/holodeck/source_biesel) @@ -15392,25 +14426,41 @@ }, /turf/simulated/floor/holofloor/wood, /area/horizon/holodeck/source_sauna) -"cdG" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 10 +"cdE" = ( +/obj/effect/floor_decal/corner/brown/diagonal, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ +/obj/effect/floor_decal/industrial/warning{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden{ +/obj/machinery/door/airlock/multi_tile/glass{ + autoclose = 0; + dir = 2; + name = "Warehouse Elevator"; + req_one_access = list(26,29,31,48,67,70) + }, +/obj/machinery/door/firedoor/multi_tile{ + dir = 2 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/operations/office) +"cdF" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ dir = 4 }, -/obj/structure/closet/walllocker/emerglocker{ - pixel_y = -32 +/obj/structure/cable{ + icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 +/obj/structure/cable/green{ + icon_state = "4-8" }, -/obj/machinery/firealarm/south, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/port/docks) +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/lattice/catwalk/indoor, +/turf/simulated/floor/plating, +/area/horizon/engineering/atmos/air) "cdO" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 9 @@ -15450,6 +14500,21 @@ icon_state = "wood" }, /area/centcom/specops) +"cdU" = ( +/obj/machinery/door/window/northleft, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/computer/shuttle_control/multi/lift/operations{ + pixel_x = -27; + pixel_y = 16 + }, +/turf/simulated/floor/tiled, +/area/horizon/operations/office_aux) "cdX" = ( /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled/dark, @@ -15472,28 +14537,25 @@ /obj/structure/window/reinforced/holowindow, /turf/simulated/floor/holofloor/wood, /area/horizon/holodeck/source_courtroom) -"cem" = ( -/obj/effect/floor_decal/spline/plain, -/obj/structure/table/reinforced/steel, -/obj/item/storage/toolbox/electrical{ - pixel_y = 8 - }, -/obj/item/storage/toolbox/mechanical{ - pixel_y = 1 - }, -/turf/simulated/floor/carpet/rubber, -/area/engineering/bluespace_drive/monitoring) -"cen" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/maintenance{ +"ceg" = ( +/turf/simulated/wall/r_wall, +/area/horizon/rnd/xenoarch/isolation_b) +"cej" = ( +/obj/structure/disposalpipe/segment{ dir = 4; - req_one_access = list(26,29,31,48,67,70) + icon_state = "pipe-c" }, -/turf/simulated/floor/tiled/full, -/area/operations/storage) +/turf/simulated/wall/shuttle/scc_space_ship/cardinal, +/area/horizon/weapons/grauwolf) +"cek" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor, +/area/horizon/maintenance/deck_3/aft/starboard/far) "cet" = ( /obj/machinery/power/apc/north, /obj/structure/cable/green{ @@ -15504,62 +14566,44 @@ }, /turf/simulated/floor/wood, /area/horizon/security/meeting_room) -"cev" = ( -/obj/item/modular_computer/console/preset/security{ - dir = 8 - }, -/obj/structure/railing/mapped{ +"ceu" = ( +/obj/machinery/computer/message_monitor{ dir = 4 }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 6 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge/aibunker) -"ceC" = ( -/obj/effect/floor_decal/corner_wide/paleblue{ - dir = 6 - }, -/obj/machinery/disposal/small/west, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/machinery/camera/network/medbay{ - c_tag = "Medical - Operating Room 2"; - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/medical/ors) -"ceF" = ( -/obj/machinery/door/airlock/glass{ - dir = 1; - name = "Tool Storage" - }, -/obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - icon_state = "1-2" +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/carpet/rubber, +/area/horizon/command/bridge/controlroom) +"ceE" = ( +/obj/machinery/cryopod/living_quarters{ + pixel_y = 8 + }, +/obj/effect/floor_decal/corner/dark_green/full{ + dir = 8 + }, +/obj/structure/sign/directions/civ{ + desc = "A sign pointing out that a lift leads to the ship's residential deck."; + dir = 1; + name = "\improper Lift to Residential Deck sign"; + pixel_y = -10 + }, +/obj/machinery/light{ + dir = 8 }, /turf/simulated/floor/tiled, -/area/storage/primary) -"ceG" = ( -/obj/structure/bed/stool/chair/shuttle{ - dir = 8 - }, -/obj/item/device/radio/intercom/south, -/turf/simulated/floor/shuttle/dark_blue, -/area/shuttle/escape_pod/pod3) -"ceJ" = ( -/obj/effect/floor_decal/spline/plain{ +/area/horizon/crew/resdeck/living_quarters_lift) +"ceH" = ( +/obj/structure/railing/mapped{ dir = 1 }, -/obj/effect/floor_decal/spline/plain, -/obj/machinery/atmospherics/pipe/simple/hidden/black{ - dir = 4 - }, -/turf/simulated/floor/carpet/rubber, -/area/tcommsat/chamber) +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/reactor/supermatter/mainchamber) +"ceK" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/seed_storage/garden/xenobotany, +/turf/simulated/floor/tiled/dark, +/area/horizon/rnd/xenobiology/xenoflora) "ceO" = ( /obj/effect/floor_decal/spline/fancy/wood/cee{ dir = 1 @@ -15567,17 +14611,24 @@ /obj/structure/flora/ausbushes/ppflowers, /turf/simulated/floor/holofloor/grass, /area/horizon/holodeck/source_battlemonsters) -"ceP" = ( -/obj/structure/tank_wall/air{ - density = 0; - icon_state = "air11"; - opacity = 0 +"ceR" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/highsecurity{ + dir = 4; + icon_state = "door_locked"; + id_tag = "airlocks_deck2_ammostorage"; + locked = 1; + name = "Secure Ammunition Storage"; + req_one_access = list(75) }, -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 4 +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/blast/regular{ + dir = 2; + id = "shutters_deck1_ammostorage"; + name = "Secure Ammunition Storage Blast Door" }, -/turf/simulated/floor/reinforced/airmix, -/area/engineering/atmos/air) +/turf/simulated/floor/tiled/full, +/area/horizon/operations/secure_ammunition_storage) "ceT" = ( /obj/vehicle/droppod/legion{ connected_blastdoor = "tcfl_droppod_3" @@ -15586,18 +14637,19 @@ icon_state = "panelscorched" }, /area/centcom/legion/hangar5) -"ceV" = ( -/obj/structure/closet/secure_closet/scientist, -/obj/item/storage/box/masks, -/obj/item/storage/box/gloves, -/obj/item/clothing/glasses/safety/goggles/science, -/obj/item/clothing/glasses/safety/goggles/science, -/obj/effect/floor_decal/corner/mauve{ - dir = 10 +"ceW" = ( +/obj/machinery/power/terminal{ + dir = 1 }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/white, -/area/rnd/chemistry) +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/machinery/camera/network/engineering{ + c_tag = "Engineering - Deck 3 - Civilian Substation"; + dir = 1 + }, +/turf/simulated/floor, +/area/horizon/maintenance/substation/civ_d3) "ceY" = ( /obj/effect/floor_decal/corner/red{ dir = 5 @@ -15619,16 +14671,6 @@ }, /turf/unsimulated/floor, /area/centcom/spawning) -"cfa" = ( -/obj/machinery/door/airlock/atmos{ - dir = 4; - name = "Atmospherics Maintenance"; - req_one_access = list(11,24) - }, -/obj/machinery/door/firedoor, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/engineering/atmos/air) "cfb" = ( /obj/structure/cable/green{ icon_state = "1-2" @@ -15640,91 +14682,50 @@ }, /turf/simulated/floor/tiled, /area/horizon/security/investigations_hallway) -"cfc" = ( -/obj/machinery/door/airlock/glass_mining{ - dir = 1; - name = "Operations Bay"; - req_one_access = list(26,29,31,48,67,70) - }, -/obj/machinery/door/firedoor, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/obj/effect/map_effect/door_helper/unres{ - dir = 1 +"cfk" = ( +/obj/machinery/firealarm/west, +/obj/effect/floor_decal/corner/dark_green{ + dir = 9 }, +/obj/machinery/portable_atmospherics/powered/pump/filled, +/obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled, -/area/operations/office) -"cfg" = ( -/obj/structure/dispenser/oxygen, -/obj/effect/floor_decal/corner/dark_blue/full{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/hatch/yellow, +/area/horizon/hangar/intrepid) +"cfl" = ( +/obj/structure/table/stone/marble, /turf/simulated/floor/tiled/dark/full, -/area/storage/eva) +/area/horizon/service/kitchen) "cfm" = ( /turf/simulated/open, /area/turbolift/research/deck_2) -"cfo" = ( -/obj/structure/table/wood, -/obj/structure/window/reinforced{ - dir = 8 +"cfr" = ( +/obj/machinery/door/airlock/glass_research{ + dir = 4; + name = "Hazardous Containment"; + req_access = list(55); + id_tag = "hazardous_access"; + locked = 1 }, -/obj/machinery/door/window/southleft{ - req_access = list(37) +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 }, -/obj/item/paper_bin{ - pixel_x = -1; - pixel_y = 4 +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 }, -/obj/item/pen/fountain/black{ - pixel_x = -1; - pixel_y = 6 +/obj/structure/cable/green{ + icon_state = "4-8" }, -/turf/simulated/floor/lino/diamond, -/area/horizon/library) -"cfu" = ( -/obj/item/modular_computer/console/preset/command{ - dir = 8 +/obj/machinery/door/blast/regular/open{ + dir = 2; + fail_secure = 1; + id = "hazardous_lockdown"; + name = "Hazardous Containment Lockdown" }, -/obj/machinery/button/remote/blast_door{ - dir = 10; - id = "bridge blast"; - name = "Bridge Lockdown"; - pixel_x = -5; - pixel_y = -23; - req_access = list(19) +/obj/machinery/door/firedoor{ + dir = 4 }, -/obj/machinery/button/remote/blast_door{ - dir = 6; - id = "shutters_deck3_bridgesafety"; - name = "Bridge Safety Shutters"; - pixel_x = 6; - pixel_y = -23 - }, -/obj/machinery/button/remote/blast_door{ - dir = 10; - id = "hangarlockdown"; - name = "Hangar Lockdoor"; - pixel_y = -33; - pixel_x = 1 - }, -/obj/effect/floor_decal/corner/dark_blue/full{ - dir = 1 - }, -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/platform, -/obj/structure/platform_deco{ - dir = 9 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge/controlroom) +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/xenobiology/foyer) "cfy" = ( /obj/effect/floor_decal/corner/lime/full{ dir = 1 @@ -15780,50 +14781,140 @@ }, /turf/simulated/floor/tiled/white, /area/centcom/shared_dream) -"cgf" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 +"cfX" = ( +/obj/machinery/alarm/east, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 }, -/obj/effect/floor_decal/industrial/warning/corner, -/obj/structure/railing/mapped{ - dir = 1; - pixel_y = 8 +/turf/simulated/floor/wood, +/area/horizon/crew/lounge) +"cfY" = ( +/obj/effect/decal/cleanable/ash, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 }, /turf/simulated/floor/plating, -/area/hangar/intrepid) +/area/horizon/maintenance/deck_1/auxatmos) +"cga" = ( +/obj/effect/floor_decal/spline/fancy/wood, +/turf/simulated/floor/wood, +/area/horizon/service/library) +"cgb" = ( +/obj/structure/table/wood, +/obj/item/reagent_containers/glass/beaker/teapot{ + pixel_x = 2; + pixel_y = 7 + }, +/turf/simulated/floor/wood, +/area/horizon/maintenance/deck_2/wing/port) +"cgc" = ( +/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/horizon/hangar/auxiliary) "cgg" = ( /turf/unsimulated/floor{ name = "staircase" }, /area/antag/mercenary) +"cgh" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/full, +/area/horizon/hallway/primary/deck_2/fore) "cgj" = ( /obj/structure/bed/stool/chair{ dir = 8 }, /turf/unsimulated/floor/monotile, /area/antag/mercenary) -"cgp" = ( -/obj/structure/bed/stool/chair/padded/brown{ - dir = 4 +"cgk" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/structure/extinguisher_cabinet/east, +/turf/simulated/floor/plating, +/area/horizon/operations/machinist) +"cgo" = ( +/obj/effect/floor_decal/industrial/outline/red, +/obj/structure/table/rack, +/obj/item/ship_ammunition/francisca{ + pixel_y = 8 }, -/turf/simulated/floor/carpet/art, -/area/crew_quarters/lounge/secondary) -"cgt" = ( -/obj/structure/stairs/west, -/turf/simulated/floor/tiled/white, -/area/hallway/medical) -"cgw" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/binary/pump/on{ - dir = 4; - name = "Distro to Airlock"; - target_pressure = 200 +/obj/item/ship_ammunition/francisca{ + pixel_y = 8 }, -/turf/simulated/floor, -/area/maintenance/wing/port/far) -"cgG" = ( -/turf/simulated/floor/wood, -/area/maintenance/wing/starboard) +/obj/item/ship_ammunition/francisca/ap, +/obj/item/ship_ammunition/francisca/ap, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/item/ship_ammunition/francisca{ + pixel_y = 8 + }, +/obj/item/ship_ammunition/francisca{ + pixel_y = 8 + }, +/obj/item/ship_ammunition/francisca{ + pixel_y = 8 + }, +/obj/item/ship_ammunition/francisca{ + pixel_y = 8 + }, +/obj/item/ship_ammunition/francisca/ap, +/obj/item/ship_ammunition/francisca/ap, +/obj/item/ship_ammunition/francisca/ap, +/obj/item/ship_ammunition/francisca/ap, +/obj/item/ship_ammunition/francisca/frag{ + pixel_y = 4 + }, +/obj/item/ship_ammunition/francisca/frag{ + pixel_y = 4 + }, +/obj/item/ship_ammunition/francisca/frag{ + pixel_y = 4 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/operations/secure_ammunition_storage) +"cgr" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/cargo_compartment) +"cgu" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/loading/yellow{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/reactor/indra/mainchamber) "cgH" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -15837,15 +14928,26 @@ }, /turf/unsimulated/floor, /area/centcom/bar) -"cgP" = ( +"cgO" = ( +/obj/structure/closet/crate, +/obj/random/loot, +/obj/random/junk, +/obj/effect/decal/cleanable/dirt, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor, +/area/horizon/maintenance/deck_3/aft/port/far) +"cgS" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, /obj/structure/cable/green{ - icon_state = "2-4" + icon_state = "4-8" }, -/obj/effect/floor_decal/corner/yellow{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/engineering/locker_room) +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/xenobiology) "cgW" = ( /obj/structure/table/rack, /obj/item/storage/belt/security/tactical{ @@ -15868,67 +14970,84 @@ }, /turf/unsimulated/floor, /area/centcom/legion/hangar5) -"cgX" = ( -/obj/machinery/door/window/southright{ - req_access = list(47); - name = "Secure Storage" +"cgY" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 9 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/carpet/rubber, -/area/rnd/lab) +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/reactor/indra/mainchamber) "cgZ" = ( /obj/structure/holostool{ dir = 4 }, /turf/simulated/floor/holofloor/lino, /area/horizon/holodeck/source_theatre) -"che" = ( +"chb" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/port/far) +"chh" = ( +/obj/structure/table/wood, +/obj/random/pottedplant_small{ + spawn_nothing_percentage = 25; + name = "random potted plant, small (25% nothing)"; + pixel_y = -2 + }, +/obj/machinery/power/outlet, +/turf/simulated/floor/carpet/red, +/area/horizon/service/dining_hall) +"chl" = ( /obj/structure/disposalpipe/segment{ + dir = 8; icon_state = "pipe-c" }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor/plating, +/area/horizon/hallway/primary/deck_2/starboard) +"chn" = ( +/obj/structure/platform_stairs/south_north_solo, +/turf/simulated/floor/wood, +/area/horizon/command/bridge/meeting_room) +"chr" = ( +/obj/machinery/door/blast/regular{ + id = "iso_c_purge"; + name = "Exterior Blast Door" + }, +/turf/simulated/floor/reinforced, +/area/horizon/rnd/xenoarch/isolation_a) +"chs" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black{ dir = 4 }, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/smes/rust) -"chp" = ( -/obj/effect/floor_decal/industrial/hatch/red, /obj/effect/floor_decal/industrial/warning{ dir = 1 }, -/turf/simulated/floor/reinforced/reactor, -/area/engineering/engine_room) +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/atmos/propulsion/starboard) "cht" = ( /obj/effect/floor_decal/spline/plain{ dir = 4 }, /turf/unsimulated/floor, /area/antag/mercenary) -"chv" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/corner_wide/yellow{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 - }, -/obj/structure/closet/walllocker/medical/firstaid{ - pixel_y = 32 - }, -/obj/effect/floor_decal/industrial/outline/medical, -/turf/simulated/floor/tiled, -/area/engineering/lobby) "chw" = ( /obj/effect/floor_decal/carpet{ dir = 1 @@ -15941,55 +15060,44 @@ }, /turf/simulated/floor/holofloor/carpet, /area/horizon/holodeck/source_dininghall) -"chD" = ( -/obj/machinery/door/airlock/glass_research{ - dir = 1; - id_tag = "xeno_entrance_ext"; - name = "Xenobiology Foyer"; - req_access = list(55); - locked = 1 +"chG" = ( +/obj/effect/floor_decal/corner/lime/diagonal, +/obj/machinery/power/apc/east{ + req_access = null; + req_one_access = list(11, 24, 47, 65) + }, +/obj/machinery/sleeper{ + dir = 8 }, -/obj/effect/map_effect/door_helper/unres, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/firedoor, /obj/structure/cable/green{ - icon_state = "1-2" + icon_state = "0-8" }, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/white, -/area/rnd/xenobiology/foyer) +/area/horizon/shuttle/intrepid/medical) +"chI" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/wing/port/far) +"chK" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/horizon/operations/mining_main/refinery) "chL" = ( /obj/structure/sign/electricshock, /turf/unsimulated/wall/darkshuttlewall, /area/centcom/legion) -"chM" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor, -/area/horizon/maintenance/deck_three/aft/starboard) -"chN" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/effect/floor_decal/corner/dark_blue/diagonal, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, +"chP" = ( +/obj/structure/window/reinforced, +/obj/structure/table/reinforced/steel, +/obj/item/paper_bin, +/obj/item/pen, /turf/simulated/floor/tiled/dark, -/area/turret_protected/ai_upload_foyer) +/area/horizon/rnd/xenoarch/atrium) "chT" = ( /obj/structure/closet/secure_closet{ name = "equipment locker" @@ -15998,17 +15106,6 @@ icon_state = "dark_preview" }, /area/centcom/holding) -"chW" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/machinery/camera/network/engineering{ - c_tag = "Engineering - Gravity Generator"; - dir = 1 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/reinforced, -/area/engineering/gravity_gen) "chX" = ( /obj/machinery/light{ dir = 8 @@ -16017,111 +15114,83 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/unsimulated/floor/monotile, /area/antag/mercenary) -"chY" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ +"chZ" = ( +/obj/item/device/radio/intercom/south, +/obj/effect/floor_decal/corner/purple/full{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ +/obj/structure/engineer_maintenance/pipe{ + dir = 1 + }, +/obj/structure/engineer_maintenance/electric{ dir = 4 }, -/obj/structure/cable/green{ - icon_state = "4-8" +/obj/structure/sink/kitchen{ + dir = 8; + name = "sink"; + pixel_x = 21 }, -/obj/structure/table/steel, -/obj/item/device/healthanalyzer{ - pixel_y = 4 - }, -/obj/item/device/healthanalyzer, -/obj/item/device/analyzer/plant_analyzer{ - pixel_y = -4 - }, -/turf/simulated/floor/tiled/dark, -/area/engineering/storage/tech) -"cif" = ( -/obj/structure/cable/orange{ - icon_state = "0-2" - }, -/obj/structure/cable/orange, -/obj/machinery/power/emitter{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 10 - }, -/turf/simulated/floor/plating, -/area/engineering/bluespace_drive) -"cij" = ( -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/random/junk, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel, -/obj/machinery/atmospherics/pipe/simple/hidden/aux, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"cir" = ( -/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, -/turf/simulated/floor/tiled/dark/full, -/area/maintenance/hangar/starboard) -"ciz" = ( +/turf/simulated/floor/tiled, +/area/horizon/service/custodial) +"cie" = ( /obj/machinery/light, -/obj/machinery/newscaster/security_unit/south, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/suit_cycler/hos/prepared, -/obj/item/device/suit_cooling_unit, -/obj/item/tank/oxygen, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/security/head_of_security) -"ciA" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/computer/general_air_control/supermatter_core{ - frequency = 1439; - input_tag = "cooling_in"; - name = "Supermatter Monitoring Terminal"; - output_tag = "cooling_out"; - sensors = list("supermatter_sensor"="Supermatter Core") - }, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/engine_monitoring) -"ciC" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 5 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/engineering) -"ciE" = ( -/obj/effect/map_effect/window_spawner/full/reinforced/polarized/grille/firedoor{ - id = "hra" - }, -/obj/structure/cable/green{ - icon_state = "0-4" - }, -/turf/simulated/floor, -/area/bridge/cciaroom) -"ciK" = ( /obj/effect/floor_decal/corner/dark_green{ dir = 10 }, -/obj/structure/extinguisher_cabinet/south, /turf/simulated/floor/tiled, -/area/hallway/primary/central_two) +/area/horizon/engineering/hallway/fore) +"cio" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/effect/floor_decal/corner/dark_green{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_1/central) +"ciH" = ( +/obj/structure/table/wood, +/obj/item/paper_bin, +/obj/item/folder/sec, +/obj/item/pen/blue{ + pixel_x = -2; + pixel_y = -3 + }, +/obj/item/pen/black, +/obj/item/pen/red{ + pixel_y = 3; + pixel_x = 2 + }, +/obj/item/stamp/hos, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/carpet, +/area/horizon/command/heads/hos) +"ciL" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/horizon/operations/lobby) +"ciS" = ( +/obj/structure/table/stone/marble, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/obj/item/device/radio/intercom/west, +/turf/simulated/floor/wood, +/area/horizon/service/chapel/main) "ciT" = ( /obj/effect/floor_decal/spline/plain, /turf/unsimulated/floor/stairs, /area/antag/mercenary) -"ciY" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ - dir = 4 - }, -/obj/machinery/door/blast/regular{ - dir = 2; - id = "EngineEmitterPortWest"; - name = "Supermatter Reactor Waste Management Blast Door" - }, -/turf/simulated/floor/tiled/full, -/area/engineering/engine_waste) "ciZ" = ( /obj/structure/shuttle_part/ert{ icon_state = "3,4"; @@ -16139,19 +15208,34 @@ /obj/item/storage/belt/utility/full, /turf/simulated/floor/tiled, /area/merchant_station/warehouse) -"cjf" = ( -/obj/structure/platform_stairs/full/east_west_cap{ - dir = 8 +"cjg" = ( +/obj/machinery/portable_atmospherics/powered/scrubber/huge/stationary, +/turf/simulated/floor/tiled/dark, +/area/horizon/rnd/xenobiology/xenoflora) +"cji" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 1 }, -/turf/simulated/floor, -/area/maintenance/wing/port/far) -"cjs" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/effect/floor_decal/corner/brown{ - dir = 9 +/obj/machinery/light/floor, +/turf/simulated/floor/tiled/dark, +/area/horizon/service/bar) +"cjp" = ( +/obj/effect/floor_decal/corner/yellow/full, +/obj/structure/sign/nosmoking_1{ + pixel_y = -32 }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/table/standard, +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/storage/tech) +"cju" = ( +/obj/effect/floor_decal/corner/dark_blue/full{ + dir = 1 + }, +/obj/structure/closet/secure_closet/bridge_crew, +/obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled, -/area/operations/lobby) +/area/horizon/command/bridge/supply) "cjv" = ( /obj/effect/floor_decal/corner/dark_blue{ dir = 9 @@ -16163,13 +15247,6 @@ /obj/machinery/alarm/west, /turf/simulated/floor/tiled, /area/horizon/security/investigations_hallway) -"cjw" = ( -/obj/structure/table/stone/marble, -/obj/machinery/appliance/mixer/candy{ - pixel_y = 8 - }, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/kitchen) "cjx" = ( /obj/structure/railing/mapped{ dir = 4 @@ -16197,43 +15274,12 @@ }, /turf/simulated/floor/tiled/dark, /area/shuttle/legion) -"cjB" = ( -/obj/machinery/light/small/red{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/outline_segment/yellow{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/maintenance/wing/starboard/far) -"cjE" = ( -/obj/effect/floor_decal/industrial/outline_straight/service{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/outline_straight/service{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold4w/hidden, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/hydroponics/lower) -"cjF" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 +"cjA" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 6 }, /turf/simulated/floor/tiled, -/area/maintenance/wing/starboard/far) -"cjG" = ( -/obj/machinery/atmospherics/pipe/simple/visible/green{ - dir = 4 - }, -/obj/machinery/door/airlock/glass_engineering{ - dir = 4; - name = "Supermatter Reactor External Access"; - req_one_access = list(11,24) - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/full, -/area/engineering/engine_room) +/area/horizon/hallway/primary/deck_3/central) "cjL" = ( /obj/machinery/light{ dir = 8 @@ -16243,35 +15289,33 @@ }, /turf/unsimulated/floor, /area/centcom/holding) -"cjO" = ( -/obj/machinery/door/airlock/maintenance{ - dir = 1; - name = "Bar Maintenance"; - req_one_access = list(12, 25) - }, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +"cjP" = ( +/obj/effect/floor_decal/industrial/outline/operations, +/obj/machinery/pipedispenser, /obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/full, -/area/horizon/bar) -"cjQ" = ( -/obj/structure/cable{ icon_state = "4-8" }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor, -/area/maintenance/engineering_ladder) -"ckb" = ( -/obj/structure/stairs/south, -/obj/structure/stairs_railing{ - dir = 8 +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/atmos/storage) +"cjU" = ( +/obj/effect/floor_decal/corner/dark_blue/full{ + dir = 1 }, -/turf/simulated/floor/plating, -/area/horizon/stairwell/central) +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/platform, +/turf/simulated/floor/tiled/dark, +/area/horizon/command/bridge/controlroom) +"cjX" = ( +/obj/structure/closet/crate, +/obj/random/loot, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark, +/area/horizon/maintenance/deck_2/wing/port/near) "ckd" = ( /obj/machinery/atmospherics/pipe/simple/visible/red{ dir = 4 @@ -16313,13 +15357,34 @@ /obj/item/ammo_magazine/a556/carbine/polymer, /turf/simulated/floor/tiled/dark/full, /area/horizon/security/armoury) -"ckj" = ( -/obj/effect/floor_decal/corner/mauve/full, +"ckm" = ( +/obj/structure/table/wood, +/obj/item/device/flashlight/lamp{ + pixel_x = 3; + pixel_y = 10 + }, +/turf/simulated/floor/carpet, +/area/horizon/service/chapel/office) +"cko" = ( +/obj/structure/table/standard, +/obj/item/storage/toolbox/mechanical{ + pixel_y = 6 + }, /obj/machinery/light{ dir = 8 }, +/obj/effect/floor_decal/corner/mauve{ + dir = 10 + }, +/obj/item/stack/material/phoron{ + amount = 15 + }, +/obj/item/storage/box/slides{ + pixel_x = -5; + pixel_y = 5 + }, /turf/simulated/floor/tiled/white, -/area/rnd/telesci) +/area/horizon/rnd/lab) "ckp" = ( /obj/machinery/atmospherics/pipe/simple/heat_exchanging{ dir = 5 @@ -16327,10 +15392,32 @@ /obj/structure/lattice, /turf/simulated/open/airless, /area/horizon/exterior) -"cku" = ( -/obj/machinery/newscaster/east, -/turf/simulated/floor/carpet, -/area/hallway/primary/central_two) +"ckq" = ( +/obj/effect/floor_decal/corner_wide/yellow{ + dir = 6 + }, +/obj/structure/cable/orange{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/horizon/engineering/reactor/indra/mainchamber) +"ckr" = ( +/obj/structure/bed/stool/chair/sofa/corner/concave/brown, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/carpet/art, +/area/horizon/crew/lounge) +"cks" = ( +/obj/structure/cable/green{ + icon_state = "0-8" + }, +/obj/machinery/power/apc/high/north, +/obj/effect/floor_decal/corner_wide/green/full{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/icu) "cky" = ( /obj/machinery/vending/cola{ name = "Free Robust Softdrinks"; @@ -16340,139 +15427,120 @@ icon_state = "dark_preview" }, /area/centcom/specops) -"ckz" = ( -/turf/simulated/floor/tiled/dark/full, -/area/operations/lower/machinist) -"ckB" = ( -/turf/simulated/floor/reinforced/phoron, -/area/engineering/atmos) -"ckC" = ( -/obj/effect/floor_decal/spline/plain, -/obj/effect/floor_decal/spline/plain{ - dir = 1 +"ckG" = ( +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" }, -/obj/structure/engineer_maintenance/pipe/wall, -/turf/simulated/floor/carpet/rubber, -/area/tcommsat/chamber) -"ckL" = ( -/obj/structure/closet/excavation, -/obj/effect/floor_decal/corner/mauve{ - dir = 5 +/obj/machinery/power/apc/super/east, +/obj/machinery/atmospherics/pipe/simple/visible/black, +/turf/simulated/floor/plating, +/area/horizon/engineering/atmos/air) +"ckN" = ( +/obj/effect/floor_decal/corner/dark_green, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_3/port) +"ckQ" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 9 }, -/obj/effect/floor_decal/industrial/outline/research, -/turf/simulated/floor/tiled/white, -/area/storage/eva) -"ckV" = ( -/obj/effect/floor_decal/corner/black{ - dir = 5 +/obj/effect/floor_decal/spline/fancy/wood/corner{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_3/port) +"ckS" = ( +/obj/effect/floor_decal/corner/dark_green/full{ + dir = 4 }, /obj/effect/floor_decal/industrial/warning{ - dir = 1 + dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/hangar/intrepid) -"ckY" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/floor_decal/industrial/warning, -/obj/structure/bed/stool/chair/folding, -/turf/simulated/floor/plating, -/area/maintenance/wing/port/deck1) -"ckZ" = ( -/obj/effect/floor_decal/industrial/outline/grey, -/obj/structure/closet/crate/plastic{ - name = "flags crate" - }, -/obj/item/flag/scc, -/obj/item/flag/scc, -/obj/item/flag/scc, -/obj/item/flag/scc, -/obj/item/flag/scc/l, -/obj/item/flag/scc/l, -/obj/item/flag/scc, -/obj/item/flag/scc, -/turf/simulated/floor/plating, -/area/hangar/intrepid) +/area/horizon/hangar/intrepid) "clb" = ( /obj/machinery/light/small{ dir = 8 }, /turf/simulated/floor/plating, /area/turbolift/research/deck_1) -"clf" = ( -/obj/structure/stairs_railing{ - dir = 4; - pixel_x = -32 +"clg" = ( +/obj/structure/bed/stool/chair/padded/brown{ + dir = 4 }, -/turf/simulated/floor/tiled, -/area/operations/storage) -"clm" = ( +/turf/simulated/floor/carpet, +/area/horizon/command/heads/xo) +"clj" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 4 + }, +/obj/machinery/meter, +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/atmos/propulsion/starboard) +"clp" = ( +/obj/structure/closet/crate, +/obj/random/loot, +/obj/random/loot, +/obj/random/loot, +/obj/random/loot, +/obj/machinery/light/small/emergency{ + dir = 4 + }, +/turf/simulated/floor, +/area/horizon/maintenance/deck_3/aft/starboard) +"cls" = ( +/obj/item/trap/animal/large, +/obj/item/trap/animal/large, +/obj/machinery/light, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/rnd/xenobiology/foyer) +"clu" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, /obj/effect/floor_decal/industrial/warning{ - dir = 10 + dir = 4 }, -/obj/machinery/atmospherics/unary/outlet_injector{ - frequency = 1441; - id = "fusion_injector_air"; - injecting = 1; - use_power = 1 - }, -/obj/effect/floor_decal/industrial/outline/red, -/turf/simulated/floor/reinforced/airless, -/area/engineering/engine_room/rust) -"clA" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/vending/actor, -/obj/machinery/light/small{ +/obj/effect/floor_decal/industrial/warning{ dir = 8 }, -/turf/unsimulated/floor/dark_monotile, -/area/antag/actor) -"clE" = ( -/obj/effect/floor_decal/corner/dark_blue/full{ - dir = 1 - }, -/obj/machinery/light{ +/turf/simulated/floor/tiled/full, +/area/horizon/rnd/eva) +"clw" = ( +/obj/machinery/vending/cigarette, +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/closet/walllocker/medical/firstaid{ - pixel_y = 32 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 }, -/obj/effect/floor_decal/industrial/outline/medical, -/turf/simulated/floor/tiled/dark, -/area/horizon/longbow) -"clF" = ( -/obj/effect/floor_decal/corner/brown{ - dir = 9 - }, -/obj/structure/weightlifter, -/turf/simulated/floor/tiled, -/area/operations/break_room) -"clG" = ( -/turf/simulated/floor/grass/no_edge, -/area/horizon/hydroponics/lower) -"clH" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 9 - }, -/obj/machinery/hologram/holopad/long_range, -/obj/structure/bed/stool/chair/office/bridge{ +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/obj/effect/landmark/start{ - name = "Bridge Crew" +/obj/effect/floor_decal/industrial/hatch/operations, +/turf/simulated/floor/tiled/full, +/area/horizon/operations/commissary) +"clz" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/obj/structure/coatrack{ + pixel_x = 3; + pixel_y = 24 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 }, -/turf/simulated/floor/tiled/dark, -/area/bridge/meeting_room) -"clN" = ( /obj/structure/platform{ - dir = 4 + dir = 8 }, -/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/operations/lower/machinist/surgicalbay) +/turf/simulated/floor/wood, +/area/horizon/service/dining_hall) "clQ" = ( /obj/effect/floor_decal/corner/lime/diagonal, /obj/structure/bed/stool/chair/padded/teal, @@ -16483,23 +15551,6 @@ 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, @@ -16510,12 +15561,6 @@ }, /turf/simulated/floor/holofloor/wood, /area/horizon/holodeck/source_sauna) -"clX" = ( -/obj/structure/bed/stool/chair/padded/beige{ - dir = 8 - }, -/turf/simulated/floor/carpet, -/area/hallway/primary/central_two) "cma" = ( /obj/effect/decal/fake_object{ color = "#545c68"; @@ -16528,18 +15573,16 @@ /obj/effect/floor_decal/spline/plain, /turf/unsimulated/floor, /area/centcom/specops) -"cmd" = ( -/obj/structure/disposalpipe/segment{ +"cmb" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/corner_wide/green{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/hallway/medical/upper) +/turf/simulated/floor/tiled/dark, +/area/horizon/operations/loading) "cmj" = ( /obj/effect/floor_decal/corner/paleblue/full{ dir = 8 @@ -16555,67 +15598,16 @@ }, /turf/unsimulated/floor, /area/centcom/holding) -"cmo" = ( -/obj/structure/cable/green{ - icon_state = "1-4" +"cmn" = ( +/obj/structure/cable{ + icon_state = "1-2" }, -/obj/effect/floor_decal/corner/dark_green{ - dir = 4 - }, -/obj/effect/floor_decal/spline/plain/corner/green{ - dir = 4 - }, -/obj/effect/floor_decal/spline/plain/corner/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/spline/plain/corner/red, -/turf/simulated/floor/tiled, -/area/horizon/hydroponics/lower) -"cmp" = ( -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/machinery/light/small/emergency, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard/deck1) -"cmq" = ( -/obj/structure/table/standard, -/obj/machinery/firealarm/south, -/obj/effect/floor_decal/corner/mauve{ - dir = 10 - }, -/obj/structure/closet/crate/drop/grey{ - desc = "A large, sturdy crate, that stores grenade components."; - name = "grenade crate"; - pixel_y = -4; - tablestatus = -1 - }, -/obj/item/storage/box/syringegun, -/obj/item/gun/launcher/syringe, -/obj/item/grenade/chem_grenade, -/obj/item/grenade/chem_grenade, -/obj/item/grenade/chem_grenade, -/obj/item/grenade/chem_grenade, -/obj/item/device/assembly/igniter, -/obj/item/device/assembly/igniter, -/obj/item/device/assembly/igniter, -/obj/item/device/assembly/igniter, -/obj/item/device/assembly/timer, -/obj/item/device/assembly/timer, -/obj/item/device/assembly/timer, -/obj/item/device/assembly/timer, -/turf/simulated/floor/tiled/white, -/area/rnd/chemistry) +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/hallway/fore) "cmr" = ( /obj/machinery/door/airlock/hatch{ icon_state = "door_locked"; @@ -16625,48 +15617,48 @@ }, /turf/unsimulated/floor/plating, /area/centcom/distress_prep) -"cmt" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 +"cmx" = ( +/obj/machinery/light/small/emergency{ + dir = 1 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 +/obj/item/circuitboard/ghettosmes{ + pixel_x = -4; + pixel_y = 3 }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/structure/cable{ - icon_state = "1-8" +/obj/item/stack/cable_coil/orange{ + pixel_x = -7; + pixel_y = -6 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/green{ + icon_state = "4-8" }, /turf/simulated/floor/plating, -/area/maintenance/wing/port/far) -"cmz" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/firedoor, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/machinery/door/airlock/maintenance_hatch{ - dir = 1 +/area/horizon/maintenance/substation/wing_starboard) +"cmD" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/structure/disposalpipe/junction/yjunction{ + dir = 4 }, /obj/structure/cable{ icon_state = "1-2" }, -/turf/simulated/floor/plating, -/area/maintenance/wing/port/far) -"cmC" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/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/hallway/engineering/rust) +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor, +/area/horizon/maintenance/deck_3/aft/port) +"cmF" = ( +/obj/random/loot, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark, +/area/horizon/maintenance/deck_2/wing/starboard/nacelle) "cmI" = ( /obj/structure/shuttle_part/tcfl{ icon_state = "16,1" @@ -16688,62 +15680,64 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/holodeck_control/beta) -"cmK" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 +"cmO" = ( +/obj/structure/bed/stool/chair/office/bridge/generic{ + dir = 8 }, -/obj/structure/cable/green{ - icon_state = "1-8" +/obj/machinery/button/remote/airlock{ + dir = 4; + id = "consular_office_b"; + name = "consular door bolts"; + pixel_x = 57; + specialfunctions = 4 }, -/turf/simulated/floor/tiled, -/area/operations/office_aux) -"cmP" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 +/obj/machinery/light_switch{ + dir = 4; + pixel_x = 52; + pixel_y = 2 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 +/obj/machinery/button/remote/airlock{ + dir = 4; + id = "consular_office_b"; + name = "consular door control"; + pixel_x = 57; + pixel_y = 11 }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" +/obj/machinery/button/switch/windowtint{ + dir = 4; + id = "consularB"; + pixel_x = 52; + pixel_y = -7 }, -/obj/structure/cable/green{ - icon_state = "4-8" +/obj/effect/landmark/start{ + name = "Consular Officer" }, -/obj/structure/cable{ - icon_state = "1-2" +/obj/item/storage/secure/safe{ + pixel_y = 43; + pixel_x = 60 }, +/turf/simulated/floor/carpet, +/area/horizon/repoffice/consular_two) +"cmU" = ( /obj/structure/lattice/catwalk/indoor/grate/dark, /turf/simulated/floor, -/area/maintenance/engineering_ladder) -"cmZ" = ( -/obj/structure/closet/wardrobe/xenos, -/obj/item/clothing/shoes/footwraps, -/obj/item/clothing/shoes/footwraps, -/obj/item/clothing/shoes/workboots/toeless, -/obj/item/clothing/shoes/workboots/toeless, -/obj/item/clothing/shoes/jackboots/toeless, -/obj/item/clothing/shoes/jackboots/toeless, -/obj/effect/floor_decal/corner/dark_green/full, -/turf/simulated/floor/tiled, -/area/horizon/crew_quarters/fitness/changing) -"cnb" = ( -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/effect/floor_decal/corner/black{ - dir = 9 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 +/area/horizon/maintenance/deck_3/aft/starboard) +"cmW" = ( +/obj/structure/bed/stool/chair/office/bridge{ + dir = 1 }, +/obj/effect/floor_decal/corner/dark_blue/diagonal, /turf/simulated/floor/tiled/dark, -/area/hangar/intrepid) +/area/horizon/command/bridge/aibunker) +"cmX" = ( +/obj/effect/floor_decal/corner/lime{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/horizon/rnd/xenobiology/xenoflora) "cnc" = ( /obj/structure/table/reinforced/steel, /obj/effect/floor_decal/industrial/warning{ @@ -16766,12 +15760,6 @@ icon_state = "wood" }, /area/centcom/legion) -"cne" = ( -/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ - dir = 9 - }, -/turf/simulated/floor/reinforced/airless, -/area/engineering/atmos/propulsion) "cnf" = ( /obj/machinery/vending/assist{ random_itemcount = 0 @@ -16782,28 +15770,52 @@ }, /turf/unsimulated/floor, /area/centcom/legion/hangar5) -"cnj" = ( -/obj/effect/floor_decal/industrial/hatch/red, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 +"cnm" = ( +/obj/item/reagent_containers/blood/OMinus, +/obj/item/reagent_containers/blood/sbs, +/obj/item/reagent_containers/blood/OMinus, +/obj/item/reagent_containers/blood/OMinus, +/obj/structure/closet/walllocker/medical/secure{ + name = "O- Blood Locker"; + pixel_y = 32 }, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 +/obj/structure/cable/green{ + icon_state = "0-2" }, -/obj/machinery/door/blast/regular{ +/obj/machinery/power/apc/west, +/turf/simulated/floor/tiled/freezer{ + name = "cold storage tiles"; + temperature = 278 + }, +/area/horizon/medical/surgery/storage) +"cnr" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/window/southright{ + name = "Bar Access"; + req_access = list(25) + }, +/obj/machinery/button/remote/blast_door{ dir = 4; - id = "EngineVent"; - name = "Supermatter Emergency Ventilatory Blast Door" + id = "bar_shutter"; + name = "Desk Shutters"; + pixel_x = 19; + pixel_y = 13; + req_access = list(25) }, -/turf/simulated/floor/reinforced/airless, -/area/engineering/engine_room) -"cnq" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 +/obj/machinery/door/blast/shutters{ + dir = 2; + id = "bar_shutter"; + name = "Bar Shutter" }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor, -/area/horizon/maintenance/deck_three/aft/starboard) +/obj/machinery/button/remote/blast_door{ + dir = 4; + id = "bar_viewing_shutters"; + name = "Viewing Shutters"; + pixel_x = 19; + pixel_y = -9 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/service/bar) "cnx" = ( /obj/machinery/atmospherics/pipe/simple/visible/red, /obj/machinery/atmospherics/pipe/simple/visible/purple{ @@ -16835,22 +15847,17 @@ name = "\improper DANGER: MASS EJECTOR PATH sign" }, /turf/space/dynamic, -/area/template_noop) -"cnG" = ( -/obj/machinery/conveyor{ +/area/horizon/exterior) +"cnJ" = ( +/obj/structure/curtain/open/medical, +/obj/structure/bed/stool/padded/red{ dir = 8 }, -/obj/structure/railing/mapped{ +/obj/effect/floor_decal/corner/green/diagonal{ dir = 8 }, -/obj/random/dirt_75, -/turf/simulated/floor/carpet/rubber, -/area/horizon/crew_quarters/fitness/gym) -"cnH" = ( -/obj/effect/floor_decal/industrial/outline/service, -/obj/machinery/vending/hydronutrients/hydroponics, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/hydroponics/lower) +/turf/simulated/floor/tiled/white, +/area/horizon/medical/ward) "cnN" = ( /obj/machinery/light/small/emergency{ dir = 1 @@ -16858,30 +15865,6 @@ /obj/effect/decal/cleanable/dirt, /turf/unsimulated/floor/monotile, /area/antag/jockey) -"cnS" = ( -/obj/machinery/door/firedoor, -/obj/effect/landmark/entry_point/fore{ - name = "fore, dining hall" - }, -/obj/machinery/door/blast/shutters/open{ - dir = 2; - id = "lounge_window_shutters"; - name = "Lounge Window Shutter" - }, -/obj/structure/grille, -/obj/structure/window/shuttle/scc_space_ship, -/turf/simulated/floor/plating, -/area/horizon/crew_quarters/lounge/bar) -"cnV" = ( -/obj/structure/cable/green{ - icon_state = "0-2" - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 10 - }, -/obj/machinery/power/apc/low/north, -/turf/simulated/floor/plating, -/area/maintenance/hangar/port) "cob" = ( /obj/machinery/door/airlock/glass_security{ dir = 1; @@ -16899,12 +15882,10 @@ }, /turf/simulated/floor/tiled/full, /area/horizon/security/brig) -"cof" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/effect/floor_decal/spline/plain, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/engineering/atmos/storage) +"coi" = ( +/obj/effect/floor_decal/spline/fancy/wood/cee, +/turf/simulated/floor/wood, +/area/horizon/command/heads/rd) "coj" = ( /obj/machinery/light, /obj/machinery/porta_turret/ballistic{ @@ -16920,55 +15901,24 @@ /obj/structure/railing/mapped, /turf/simulated/floor/holofloor/lino, /area/horizon/holodeck/source_theatre) -"con" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/bed/handrail{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/shuttle/intrepid/buffet) -"coo" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/visible/cyan{ +"coA" = ( +/turf/simulated/wall, +/area/horizon/maintenance/deck_1/wing/starboard) +"coE" = ( +/obj/machinery/computer/security/engineering/terminal{ dir = 4 }, -/obj/structure/lattice/catwalk/indoor, -/turf/simulated/floor/plating, -/area/engineering/atmos/air) -"coB" = ( +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/bluespace_drive/monitoring) +"coF" = ( /obj/effect/floor_decal/industrial/warning{ dir = 1 }, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 8 +/obj/machinery/atmospherics/binary/pump{ + dir = 4 }, -/turf/simulated/floor/reinforced, -/area/rnd/test_range) -"coC" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/corner/dark_green{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/horizon/stairwell/central) +/turf/simulated/floor/plating, +/area/horizon/rnd/xenoarch/atrium) "coO" = ( /obj/structure/table/rack, /obj/effect/floor_decal/industrial/outline/security, @@ -16991,6 +15941,19 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/security/armoury) +"coP" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/horizon/rnd/hallway/secondary) "coS" = ( /obj/effect/floor_decal/corner/dark_blue{ dir = 6 @@ -17009,30 +15972,14 @@ }, /turf/simulated/floor/tiled, /area/horizon/security/hallway) -"coY" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 10 +"coW" = ( +/obj/machinery/door/firedoor/multi_tile, +/obj/machinery/door/airlock/multi_tile/glass{ + id_tag = "dinerbolt"; + name = "Kitchen" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"cpa" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 9 - }, -/obj/machinery/light/small/emergency{ - dir = 8; - pixel_x = 16 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/railing/mapped, -/turf/simulated/floor, -/area/maintenance/bridge) +/turf/simulated/floor/tiled/full, +/area/horizon/hallway/primary/deck_2/fore) "cpe" = ( /obj/structure/table/rack, /obj/item/device/suit_cooling_unit, @@ -17043,80 +15990,84 @@ /obj/item/rig_module/cooling_unit, /turf/unsimulated/floor, /area/centcom/distress_prep) -"cpf" = ( -/obj/effect/floor_decal/corner/brown/diagonal, -/turf/simulated/floor/tiled, -/area/operations/loading) -"cpg" = ( -/obj/structure/platform_deco{ - icon_state = "ledge_deco" - }, -/obj/structure/platform_deco{ - dir = 8 - }, -/obj/effect/floor_decal/spline/fancy/wood{ +"cph" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/turf/simulated/floor/wood, -/area/crew_quarters/heads/hor) -"cpp" = ( -/obj/structure/railing/mapped{ - dir = 4 +/obj/effect/decal/cleanable/dirt, +/obj/structure/table/standard, +/obj/item/deck/cards, +/obj/item/storage/box/fancy/cigarettes{ + pixel_y = 10; + pixel_x = -6 }, -/obj/structure/railing/mapped, -/obj/structure/platform/ledge{ - dir = 1 - }, -/obj/structure/platform/ledge{ - dir = 8 - }, -/obj/structure/platform_deco/ledge{ - dir = 6 - }, -/turf/simulated/open, -/area/horizon/hallway/deck_three/primary/central) -"cpt" = ( -/obj/effect/floor_decal/corner/yellow{ - dir = 1 - }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 8 - }, -/obj/machinery/atmospherics/portables_connector{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/extinguisher_cabinet/west, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/atmos) -"cpz" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 5 - }, -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/starboard/docks) -"cpC" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/effect/floor_decal/industrial/warning, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/machinery/door/airlock/multi_tile/glass{ - autoclose = 0; - name = "Warehouse Elevator"; - req_one_access = list(26,29,31,48,67) - }, -/obj/machinery/door/firedoor/multi_tile, +/obj/random/contraband, /turf/simulated/floor/tiled/dark, -/area/operations/loading) -"cpD" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 +/area/horizon/maintenance/deck_3/aft/port/far) +"cpn" = ( +/obj/machinery/atmospherics/unary/engine/scc_ship_engine, +/turf/simulated/floor/reinforced{ + blocks_air = 1; + density = 1; + name = "thruster mount" }, -/obj/structure/trash_pile, -/turf/simulated/floor, -/area/horizon/maintenance/deck_three/aft/starboard) +/area/horizon/engineering/atmos/propulsion) +"cpq" = ( +/obj/structure/sign/staff_only{ + pixel_x = -31 + }, +/obj/item/storage/box/fancy/tray/machinist, +/obj/structure/table/standard, +/turf/simulated/floor/tiled/white, +/area/horizon/operations/machinist/surgicalbay) +"cpr" = ( +/obj/structure/bed/stool/chair{ + name = "uncomfortable chair" + }, +/turf/simulated/floor/carpet, +/area/horizon/command/heads/hos) +"cpu" = ( +/obj/structure/tank_wall/carbon_dioxide{ + density = 0; + icon_state = "co2-11"; + opacity = 0 + }, +/obj/machinery/atmospherics/pipe/simple/visible/black, +/turf/simulated/floor/reinforced/carbon_dioxide, +/area/horizon/engineering/atmos) +"cpA" = ( +/obj/structure/window/shuttle/scc_space_ship, +/obj/structure/grille, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id = "bridge blast"; + name = "Bridge Blast Doors"; + opacity = 0 + }, +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/cable/green{ + icon_state = "0-8" + }, +/obj/machinery/door/blast/shutters/open{ + dir = 2; + id = "shutters_deck3_bridgesafety"; + name = "Safety Shutter" + }, +/obj/effect/landmark/entry_point/fore{ + name = "fore, command conference rooom" + }, +/obj/machinery/door/blast/shutters/open{ + dir = 2; + id = "conferencesafetyshutters"; + name = "Safety Shutter" + }, +/turf/simulated/floor/plating, +/area/horizon/command/bridge/meeting_room) "cpE" = ( /obj/effect/floor_decal/corner/dark_blue{ dir = 10 @@ -17128,12 +16079,6 @@ /obj/structure/grille/diagonal, /turf/space/dynamic, /area/horizon/exterior) -"cpI" = ( -/turf/simulated/wall, -/area/horizon/hydroponics) -"cpJ" = ( -/turf/simulated/wall/shuttle/scc_space_ship/cardinal, -/area/engineering/engine_waste) "cpL" = ( /obj/item/clothing/glasses/welding/superior{ pixel_x = -5 @@ -17145,24 +16090,23 @@ /obj/structure/table/reinforced/steel, /turf/unsimulated/floor, /area/centcom/legion/hangar5) +"cpP" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/light/small/emergency, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/research) "cpS" = ( /obj/effect/floor_decal/industrial/loading/security{ dir = 8 }, /turf/simulated/floor/tiled/dark/full, /area/horizon/security/firing_range) -"cpV" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/structure/sink/kitchen{ - dir = 4; - pixel_x = -21 - }, -/obj/effect/floor_decal/spline/plain{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/shuttle/intrepid/buffet) "cpX" = ( /obj/structure/curtain/open/shower, /obj/machinery/shower{ @@ -17170,17 +16114,35 @@ }, /turf/unsimulated/floor, /area/centcom/legion/hangar5) -"cqd" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled, -/area/maintenance/wing/starboard/deck1) -"cqe" = ( -/obj/effect/floor_decal/industrial/warning{ +"cqb" = ( +/obj/structure/railing/mapped{ dir = 8 }, -/obj/structure/trash_pile, -/turf/simulated/floor, -/area/horizon/maintenance/deck_three/aft/starboard) +/obj/effect/floor_decal/corner/dark_blue/full{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/item/device/radio/intercom/north, +/obj/structure/table/reinforced/steel, +/obj/item/folder/blue{ + pixel_y = 7; + pixel_x = 5 + }, +/obj/item/clipboard{ + pixel_x = -4; + pixel_y = 2 + }, +/obj/item/pen/blue{ + pixel_x = 5 + }, +/obj/item/pen/red{ + pixel_x = 7; + pixel_y = 3 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/command/bridge/controlroom) "cqg" = ( /obj/machinery/airlock_sensor{ dir = 4; @@ -17197,230 +16159,169 @@ }, /turf/simulated/floor/tiled/dark/full, /area/shuttle/skipjack) -"cqi" = ( -/obj/structure/flora/ausbushes/lavendergrass, -/turf/simulated/floor/grass/no_edge, -/area/horizon/cafeteria) -"cqk" = ( -/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/hallway/primary/central_one) -"cqn" = ( -/obj/structure/bed/stool, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard/far) -"cqu" = ( -/obj/effect/spider/stickyweb, -/turf/simulated/floor/plating, -/area/maintenance/operations) -"cqz" = ( -/obj/machinery/smartfridge/secure, -/obj/machinery/door/firedoor, -/obj/machinery/door/window/desk/northright{ - name = "Hydroponics"; - req_access = list(35) - }, -/obj/machinery/door/window/desk/southright{ - name = "Kitchen"; - req_access = list(28) - }, +"cqj" = ( +/obj/structure/platform_stairs, /turf/simulated/floor/tiled/dark/full, -/area/horizon/kitchen) -"cqA" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12 - }, -/obj/structure/mirror{ - pixel_x = -28 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ +/area/horizon/rnd/telesci) +"cqp" = ( +/obj/effect/floor_decal/corner/green/full{ dir = 4 }, -/obj/effect/floor_decal/corner/blue/diagonal, +/obj/machinery/alarm/east, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, /turf/simulated/floor/tiled/white, -/area/bridge/bridge_crew) -"cqD" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/random/dirt_75, -/obj/random/dirt_75, -/turf/simulated/floor/plating, -/area/maintenance/wing/port/far) -"cqE" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/red{ - dir = 9 - }, -/turf/simulated/floor/tiled/dark, -/area/horizon/custodial/disposals) -"cqK" = ( -/obj/structure/table/standard, -/obj/machinery/light{ - dir = 8 - }, -/obj/item/paper_bin, -/obj/item/pen, -/obj/item/pen/multi{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/effect/floor_decal/corner/beige/full{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/security/vacantoffice) -"cqL" = ( -/obj/structure/table/stone/marble, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/blast/shutters{ - dir = 2; - id = "bar_shutter"; - name = "Bar Shutter" - }, -/turf/simulated/floor/tiled/dark, -/area/horizon/bar) -"cqQ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ +/area/horizon/crew/washroom/deck_3) +"cqr" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ dir = 1 }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/structure/cable{ - icon_state = "1-2" +/obj/effect/map_effect/marker/airlock{ + frequency = 1004; + master_tag = "airlock_horizon_deck_1_fore_1"; + name = "airlock_horizon_deck_1_fore_1" }, -/turf/simulated/floor, -/area/maintenance/security_port) +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/hangar/starboard) +"cqt" = ( +/obj/machinery/camera/network/first_deck{ + c_tag = "First Deck - Hangar 1"; + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/mech_recharger, +/turf/simulated/floor/plating, +/area/horizon/crew/chargebay) +"cqx" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/simulated/floor/tiled/dark, +/area/horizon/maintenance/deck_2/wing/starboard/nacelle) +"cqy" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/structure/railing/mapped, +/obj/machinery/light/small/emergency, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/research) +"cqM" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 9 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/table/wood, +/obj/machinery/power/outlet, +/turf/simulated/floor/wood, +/area/horizon/service/bar) +"cqO" = ( +/obj/effect/floor_decal/corner/yellow/full{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/reactor/supermatter/waste) "cqS" = ( +/obj/machinery/alarm/north, +/obj/effect/floor_decal/corner/dark_blue{ + dir = 4 + }, +/obj/effect/floor_decal/corner/yellow{ + dir = 1 + }, +/obj/machinery/atmospherics/portables_connector{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/atmos/turbine) +"cqT" = ( +/obj/effect/floor_decal/corner/lime{ + dir = 10 + }, +/obj/machinery/door/airlock/multi_tile/glass{ + dir = 2; + name = "Emergency Supplies Storage" + }, +/obj/machinery/door/firedoor/multi_tile{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/full, +/area/horizon/medical/morgue) +"cqV" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/structure/cable/green{ - icon_state = "4-8" + icon_state = "4-8"; + d1 = 4; + d2 = 8 }, -/obj/effect/floor_decal/spline/plain/lime{ - dir = 9 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/horizon/service/library) +"crk" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 8 + }, +/obj/effect/floor_decal/corner/dark_blue{ + dir = 4 + }, +/obj/effect/floor_decal/corner/dark_blue{ + dir = 8 + }, +/obj/effect/floor_decal/corner/yellow, +/obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled/dark, -/area/horizon/hydroponics/garden) -"cqU" = ( -/obj/effect/floor_decal/industrial/hatch_door/red{ - dir = 1 - }, -/obj/machinery/door/airlock/external, -/obj/effect/map_effect/marker/airlock/shuttle{ - cycle_to_external_air = 1; - master_tag = "airlock_shuttle_intrepid"; - name = "airlock_shuttle_intrepid"; - req_one_access = null; - shuttle_tag = "Intrepid" - }, -/obj/effect/map_effect/marker_helper/airlock/interior, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 5 - }, -/turf/simulated/floor/tiled/dark/full, -/area/shuttle/intrepid/main_compartment) -"cqY" = ( -/obj/machinery/disposal/small/east{ - pixel_x = -16 - }, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/white, -/area/medical/pharmacy) -"crb" = ( -/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/machinery/door/blast/shutters/open{ - dir = 8; - id = "shutters_hangardeskcpstarboard"; - name = "Security Checkpoint Shutter" - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled, -/area/security/checkpoint) -"crh" = ( -/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/lattice/catwalk/indoor/grate/dark, -/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/engineering) -"crr" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 9 - }, -/obj/effect/floor_decal/spline/plain{ - dir = 8 - }, -/obj/structure/bed/stool/chair/office/light{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/horizon/hydroponics) +/area/horizon/engineering/atmos/turbine) "crs" = ( /obj/machinery/atmospherics/pipe/simple/heat_exchanging{ dir = 9 }, /turf/simulated/open/airless, /area/horizon/exterior) -"crK" = ( -/obj/machinery/door/window/northright, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 +"crB" = ( +/obj/structure/table/standard{ + no_cargo = 1 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 +/obj/random/glowstick{ + pixel_x = 20; + pixel_y = 4 }, -/obj/structure/disposalpipe/segment{ - icon_state = "pipe-c" +/obj/item/bikehorn/rubberducky{ + pixel_y = 5 }, -/obj/structure/cable/green{ - icon_state = "2-4" +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/auxatmos) +"crD" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 }, -/turf/simulated/floor/tiled, -/area/operations/office_aux) -"crL" = ( -/obj/machinery/firealarm/south, -/turf/simulated/floor/tiled, -/area/operations/storage) +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 7 + }, +/turf/simulated/floor/wood, +/area/horizon/repoffice/representative_two) +"crM" = ( +/obj/machinery/power/supermatter, +/obj/machinery/mass_driver{ + dir = 1; + id = "enginecore" + }, +/obj/effect/floor_decal/industrial/warning/full, +/turf/simulated/floor/reinforced/reactor, +/area/horizon/engineering/reactor/supermatter/mainchamber) "crN" = ( /obj/effect/floor_decal/spline/plain{ dir = 1 @@ -17437,14 +16338,78 @@ }, /turf/simulated/floor/tiled/dark/full, /area/turbolift/scc_ship/operations_lift) +"csb" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/aux, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/main/port) "csd" = ( /turf/unsimulated/floor/linoleum, /area/antag/actor) +"csf" = ( +/obj/random/pottedplant, +/obj/machinery/light{ + dir = 4 + }, +/obj/item/device/radio/intercom/east, +/obj/effect/floor_decal/corner_wide/green/full{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/hallway) +"csg" = ( +/obj/structure/bed/stool/chair/office/dark, +/obj/effect/floor_decal/corner/brown{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/horizon/operations/office) +"csk" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/sink{ + dir = 4; + pixel_x = 5 + }, +/obj/structure/railing/mapped, +/turf/simulated/floor/tiled/dark, +/area/horizon/rnd/xenoarch/atrium) "csl" = ( /obj/machinery/portable_atmospherics/canister/oxygen, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/unsimulated/floor, /area/antag/mercenary) +"csn" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 4 + }, +/obj/effect/floor_decal/corner/yellow, +/obj/machinery/atmospherics/binary/pump{ + dir = 8; + name = "Cooling Array to Turbine" + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/atmos/turbine) +"csp" = ( +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/structure/railing/mapped, +/obj/structure/railing/mapped{ + dir = 4 + }, +/turf/simulated/open, +/area/horizon/maintenance/deck_2/wing/port) "csq" = ( /obj/effect/floor_decal/corner{ dir = 5 @@ -17459,6 +16424,26 @@ }, /turf/simulated/floor/marble/dark, /area/horizon/holodeck/source_tribunal) +"csr" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 6 + }, +/obj/structure/platform{ + dir = 8 + }, +/obj/machinery/camera/network/command{ + c_tag = "Bridge - Atrium Starboard"; + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/structure/cable/green{ + icon_state = "0-8" + }, +/obj/machinery/power/apc/east, +/turf/simulated/floor/tiled, +/area/horizon/command/bridge/upperdeck) "cst" = ( /obj/effect/floor_decal/corner/paleblue/full, /obj/effect/floor_decal/corner/paleblue{ @@ -17552,6 +16537,19 @@ }, /turf/unsimulated/floor, /area/centcom/legion/hangar5) +"csw" = ( +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/hallway) +"csy" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 1 + }, +/obj/machinery/light/spot{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/horizon/engineering/reactor/supermatter/mainchamber) "csz" = ( /obj/item/gun/projectile/automatic/rifle/w556{ pixel_y = 6 @@ -17567,18 +16565,31 @@ /obj/structure/table/wood, /turf/unsimulated/floor/wood, /area/centcom/specops) -"csG" = ( -/obj/structure/cable{ - icon_state = "1-2" +"csH" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 +/obj/structure/cable/green{ + icon_state = "4-8" }, -/obj/structure/lattice/catwalk/indoor/grate, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/weapons/longbow) +"csL" = ( +/obj/machinery/atmospherics/omni/mixer{ + active_power_usage = 7500; + name = "air mixer"; + tag_east = 2; + tag_north = 1; + tag_north_con = 0.21; + tag_west = 1; + tag_west_con = 0.79 + }, +/obj/effect/floor_decal/industrial/hatch/red, /turf/simulated/floor/plating, -/area/engineering/lobby) +/area/horizon/engineering/atmos/air) "csN" = ( /obj/effect/floor_decal/industrial/warning{ dir = 10 @@ -17593,100 +16604,145 @@ }, /turf/unsimulated/floor/plating, /area/antag/mercenary) -"csO" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/structure/sink/kitchen{ - dir = 4; - pixel_x = -21 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/white, -/area/horizon/kitchen) -"cta" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 6 - }, -/turf/simulated/floor/tiled/full, -/area/engineering/storage_hard) -"ctc" = ( -/obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction{ +"csR" = ( +/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, +/turf/simulated/floor/plating, +/area/horizon/rnd/xenobiology) +"csS" = ( +/obj/machinery/mineral/processing_unit{ + id = "horizon_processing_3"; dir = 8 }, -/turf/simulated/floor/reinforced/airless, -/area/engineering/atmos/propulsion/starboard) -"cti" = ( +/obj/effect/floor_decal/industrial/warning/full, +/turf/simulated/floor/plating, +/area/horizon/operations/mining_main/refinery) +"csV" = ( +/obj/machinery/atmospherics/unary/freezer{ + dir = 1; + icon_state = "freezer" + }, +/obj/effect/floor_decal/corner/yellow, +/obj/effect/floor_decal/corner/dark_blue{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/atmos) +"csW" = ( +/obj/structure/bed/stool/chair/shuttle, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 + 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" }, -/obj/machinery/light/small, /turf/simulated/floor/tiled, -/area/maintenance/aux_atmospherics/deck_2/starboard/wing) -"ctl" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/lattice/catwalk/indoor/grate, -/turf/simulated/floor, -/area/bridge/upperdeck) -"ctm" = ( -/obj/structure/sign/securearea{ - pixel_y = 32 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 5 - }, -/obj/machinery/light/small/emergency{ +/area/horizon/shuttle/quark/cockpit) +"ctg" = ( +/obj/effect/floor_decal/industrial/hatch_door/red, +/obj/machinery/door/airlock/external{ dir = 8 }, -/obj/machinery/camera/network/command{ - c_tag = "Bridge - CIC Foyer"; +/obj/machinery/atmospherics/pipe/manifold/hidden, +/obj/effect/map_effect/marker_helper/airlock/interior, +/obj/effect/map_effect/marker/airlock{ + master_tag = "sccv_intrepid_starboard"; + name = "sccv_intrepid_starboard"; + req_one_access = null + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/shuttle/intrepid/starboard_compartment) +"ctj" = ( +/obj/structure/platform_stairs/south_north_solo, +/obj/structure/platform{ dir = 4 }, -/turf/simulated/floor, -/area/maintenance/security_port) +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/port/near) +"cto" = ( +/obj/effect/floor_decal/corner/dark_blue/full{ + dir = 1 + }, +/obj/structure/table/rack, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/light{ + dir = 1 + }, +/obj/item/device/radio/beacon{ + pixel_x = -4; + pixel_y = -4 + }, +/obj/item/device/radio/beacon{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/device/radio/beacon, +/turf/simulated/floor/tiled/dark, +/area/horizon/command/teleporter) +"ctv" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/railing/mapped{ + dir = 1; + pixel_y = 8 + }, +/turf/simulated/floor/plating, +/area/horizon/hangar/intrepid) "ctw" = ( /obj/effect/floor_decal/spline/plain/corner, /turf/unsimulated/floor, /area/antag/mercenary) -"ctz" = ( -/obj/structure/lattice/catwalk, -/turf/space, -/area/template_noop) -"ctA" = ( -/obj/machinery/alarm/east, -/obj/random/pottedplant, -/turf/simulated/floor/wood, -/area/medical/psych) +"ctx" = ( +/obj/machinery/sparker{ + id = "turbine_igni"; + pixel_x = -15 + }, +/obj/machinery/atmospherics/unary/outlet_injector{ + frequency = 1443; + id = "turbine_fuel_in"; + name = "fuel injector"; + tag = "turbine_fuel_in" + }, +/turf/simulated/floor/reinforced/airless, +/area/horizon/engineering/atmos/turbine) +"ctF" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/lattice/catwalk/indoor, +/obj/structure/railing/mapped{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/horizon/engineering/bluespace_drive) "ctH" = ( /obj/effect/floor_decal/industrial/loading/security{ dir = 4 }, /turf/simulated/floor/tiled/dark/full, /area/horizon/security/firing_range) -"ctI" = ( +"ctK" = ( /obj/structure/railing/mapped{ dir = 8 }, -/obj/effect/floor_decal/corner/black/full{ +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/structure/platform/ledge{ dir = 8 }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 +/obj/structure/platform/ledge{ + dir = 4 }, -/turf/simulated/floor/tiled/dark, -/area/hangar/intrepid) -"ctM" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_mining{ - dir = 1; - name = "Mining"; - req_one_access = list(31,48,67) - }, -/obj/effect/map_effect/door_helper/unres{ - dir = 1 - }, -/turf/simulated/floor/tiled/full, -/area/outpost/mining_main/refinery) +/turf/simulated/open, +/area/horizon/hallway/primary/deck_3/central) "ctR" = ( /obj/effect/floor_decal/spline/plain{ dir = 10 @@ -17695,67 +16751,83 @@ density = 1 }, /area/centcom/shared_dream) -"ctX" = ( -/obj/structure/disposalpipe/junction{ - dir = 8; - icon_state = "pipe-j2" +"ctW" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 4 }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ +/obj/structure/fuel_port/phoron/scc{ + pixel_x = 5; + pixel_y = 23 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/shuttle/quark/cargo_hold) +"cug" = ( +/obj/effect/floor_decal/corner_wide/green/diagonal, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/equipment) +"cuh" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/structure/tank_wall/carbon_dioxide{ + icon_state = "co2-15" + }, +/obj/machinery/atmospherics/pipe/simple/visible/black, +/turf/simulated/floor/airless, +/area/horizon/engineering/atmos) +"cui" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/turf/simulated/floor/reinforced/airless, +/area/horizon/engineering/reactor/indra/mainchamber) +"cum" = ( +/obj/effect/shuttle_landmark/intrepid/hangar{ dir = 1 }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 +/obj/structure/lattice/catwalk/indoor, +/turf/simulated/floor/plating, +/area/horizon/hangar/intrepid) +"cun" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 10 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/green{ icon_state = "1-2" }, -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/turf/simulated/floor/tiled/full, -/area/hallway/primary/aft) -"cua" = ( -/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/brown{ +/turf/simulated/floor/tiled, +/area/horizon/operations/lobby) +"cuq" = ( +/obj/effect/floor_decal/spline/fancy/wood{ dir = 5 }, -/obj/machinery/light/spot{ - dir = 1 +/obj/machinery/light{ + dir = 4 }, -/turf/simulated/floor/tiled, -/area/hangar/operations) -"cuk" = ( -/turf/simulated/floor/carpet/purple, -/area/crew_quarters/heads/hor) +/turf/simulated/floor/wood, +/area/horizon/command/bridge/meeting_room) "cus" = ( /obj/effect/map_effect/window_spawner/full/reinforced/firedoor, /turf/simulated/floor/tiled/dark/full, /area/horizon/security/firing_range) -"cuz" = ( -/obj/machinery/photocopier, -/turf/simulated/floor/carpet, -/area/lawoffice/consular_two) -"cuA" = ( -/obj/effect/floor_decal/corner/lime{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 +"cuw" = ( +/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, -/turf/simulated/floor/tiled, -/area/medical/morgue/lower) +/obj/effect/floor_decal/industrial/warning/cee, +/turf/simulated/floor/tiled/full, +/area/horizon/engineering/storage_hard) +"cuB" = ( +/obj/machinery/atmospherics/pipe/simple/visible/green{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible/supply, +/turf/simulated/floor/plating, +/area/horizon/engineering/atmos/air) "cuD" = ( /obj/machinery/light{ dir = 4 @@ -17767,15 +16839,43 @@ icon_state = "wood" }, /area/centcom/holding) -"cuI" = ( +"cuK" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/black, +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/atmos/propulsion) +"cuN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/wood, +/area/horizon/crew/lounge) +"cuO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, /obj/structure/cable{ - icon_state = "1-4" + icon_state = "4-8" }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/random/dirt_75, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/starboard/far) +"cuP" = ( +/obj/structure/table/steel, +/obj/effect/floor_decal/corner/dark_blue{ + dir = 6 }, -/turf/simulated/floor, -/area/horizon/crew_quarters/fitness/changing) +/obj/machinery/camera/network/first_deck{ + c_tag = "First Deck - EVA Storage 1"; + dir = 8 + }, +/obj/structure/closet/walllocker/medical/firstaid{ + pixel_x = 32 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/storage/eva) "cuQ" = ( /obj/vehicle/droppod/syndie{ connected_blastdoor = "merc_droppod_6" @@ -17784,26 +16884,63 @@ icon_state = "dark_preview" }, /area/antag/mercenary) -"cuV" = ( -/obj/machinery/chemical_dispenser/full{ - req_access = list(7) +"cuT" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 5 }, -/obj/effect/floor_decal/spline/plain/cee, -/turf/simulated/floor/carpet/rubber, -/area/rnd/chemistry) -"cuY" = ( -/obj/machinery/light, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/structure/platform, +/obj/structure/engineer_maintenance/pipe, /turf/simulated/floor/tiled/dark, -/area/engineering/atmos/propulsion) -"cuZ" = ( -/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, -/obj/machinery/door/blast/shutters/open{ - id = "mech_bay_shutter"; - name = "Mech Bay Shutters"; +/area/horizon/command/bridge/controlroom) +"cuU" = ( +/obj/machinery/door/airlock/maintenance{ + req_one_access = list(12,26,29,31,48,67); + dir = 4 + }, +/obj/machinery/door/firedoor{ dir = 4 }, /turf/simulated/floor/tiled/dark/full, -/area/operations/lower/machinist) +/area/horizon/maintenance/deck_2/cargo_compartment) +"cuX" = ( +/obj/effect/floor_decal/spline/fancy/wood/cee, +/obj/structure/flora/ausbushes/brflowers, +/turf/simulated/floor/grass/no_edge, +/area/horizon/hallway/primary/deck_3/central) +"cvc" = ( +/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/horizon/hangar/intrepid) +"cvd" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/substation/research) +"cve" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 6 + }, +/obj/effect/floor_decal/industrial/warning/corner, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/railing/mapped{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/horizon/operations/loading) "cvf" = ( /turf/unsimulated/wall/darkshuttlewall, /area/centcom/checkpoint/aft) @@ -17813,17 +16950,80 @@ }, /turf/unsimulated/floor/plating, /area/centcom/specops) -"cvv" = ( -/obj/effect/floor_decal/corner/red/diagonal, -/obj/structure/closet/walllocker/firecloset{ - pixel_y = 32 +"cvl" = ( +/obj/structure/closet/secure_closet/guncabinet/sci, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark, +/area/horizon/rnd/lab) +"cvn" = ( +/obj/machinery/alarm/east, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 }, -/obj/effect/floor_decal/industrial/hatch/red, +/obj/machinery/firealarm/south, +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/smes) +"cvr" = ( +/obj/effect/floor_decal/corner/green/diagonal, +/obj/structure/bed/stool, +/obj/structure/curtain/open, +/obj/structure/window/reinforced, +/turf/simulated/floor/tiled/white, +/area/horizon/crew/fitness/changing) +"cvt" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 9 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/firealarm/west, /turf/simulated/floor/tiled, -/area/storage/primary) -"cvH" = ( -/turf/simulated/wall/shuttle/scc_space_ship/cardinal, -/area/medical/equipment) +/area/horizon/hallway/primary/deck_3/central) +"cvw" = ( +/obj/structure/table/reinforced/wood, +/obj/item/storage/box/fancy/cookiesnack, +/obj/item/storage/box/fancy/cookiesnack{ + pixel_y = 9 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 10 + }, +/turf/simulated/floor/wood, +/area/horizon/command/heads/xo) +"cvx" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/structure/tank_wall/nitrogen{ + icon_state = "n16" + }, +/turf/simulated/floor/plating, +/area/horizon/engineering/atmos/air) +"cvA" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/corner/dark_green{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_3/starboard) +"cvG" = ( +/obj/machinery/door/airlock/glass_engineering{ + dir = 4; + name = "INDRA Reactor Bay"; + req_access = list(11) + }, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/horizon/engineering/reactor/indra/mainchamber) "cvL" = ( /obj/structure/table/rack, /obj/item/ammo_magazine/c762{ @@ -17847,15 +17047,123 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/unsimulated/floor, /area/antag/mercenary) +"cvS" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/cyan{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/horizon/engineering/reactor/supermatter/mainchamber) "cvT" = ( /obj/effect/floor_decal/spline/plain{ dir = 1 }, /turf/simulated/floor/wood, /area/centcom/shared_dream) -"cvZ" = ( -/obj/structure/cable/green{ - icon_state = "4-8" +"cvV" = ( +/obj/machinery/button/remote/airlock{ + dir = 5; + id = "rep_office_b"; + name = "representative door bolts"; + pixel_x = 25; + pixel_y = -25; + specialfunctions = 4 + }, +/obj/machinery/button/remote/airlock{ + dir = 5; + id = "rep_office_b"; + name = "representative door control"; + pixel_x = 35; + pixel_y = -25 + }, +/obj/machinery/button/switch/windowtint{ + dir = 9; + id = "repb"; + pixel_x = 35; + pixel_y = -35; + req_access = list(38) + }, +/obj/machinery/light_switch{ + dir = 9; + pixel_x = 25; + pixel_y = -35 + }, +/obj/effect/landmark/start{ + name = "Corporate Liaison" + }, +/obj/structure/bed/stool/chair/office/bridge/generic{ + dir = 4 + }, +/turf/simulated/floor/carpet, +/area/horizon/repoffice/representative_two) +"cwg" = ( +/obj/structure/grille, +/obj/machinery/door/firedoor, +/obj/structure/window/shuttle/scc_space_ship/cardinal, +/obj/machinery/door/blast/shutters/open{ + dir = 2; + id = "kitchen_window_shutters"; + name = "Viewing Shutter" + }, +/turf/simulated/floor/plating, +/area/horizon/service/kitchen/freezer) +"cwh" = ( +/obj/structure/toilet{ + dir = 8 + }, +/turf/unsimulated/floor/freezer, +/area/antag/mercenary) +"cwl" = ( +/turf/simulated/wall/shuttle/unique/scc/mining{ + icon_state = "2,1" + }, +/area/horizon/shuttle/mining) +"cwr" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/horizon/command/bridge/upperdeck) +"cwt" = ( +/obj/structure/platform_deco{ + dir = 8 + }, +/obj/effect/floor_decal/corner/dark_blue/diagonal{ + dir = 8 + }, +/obj/machinery/firealarm/east, +/turf/simulated/floor/tiled, +/area/horizon/command/bridge/upperdeck) +"cwu" = ( +/obj/effect/floor_decal/corner/red{ + dir = 9 + }, +/turf/simulated/floor/holofloor/tiled/dark, +/area/horizon/holodeck/source_boxingcourt) +"cwx" = ( +/obj/machinery/optable, +/turf/simulated/floor/tiled/white, +/area/horizon/operations/machinist/surgicalbay) +"cwy" = ( +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/effect/floor_decal/corner/black{ + dir = 9 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/hangar/intrepid) +"cwC" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 9 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -17863,140 +17171,33 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/aux{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 9 - }, -/obj/structure/sign/directions/prop{ - dir = 8; - pixel_y = -22 - }, -/obj/structure/sign/directions/prop{ - pixel_y = -28 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/green{ - dir = 9 - }, -/obj/structure/lattice/catwalk/indoor/grate, -/turf/simulated/floor/plating, -/area/hallway/engineering) -"cwa" = ( -/obj/machinery/atmospherics/pipe/simple/visible/purple{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/engineering/atmos/propulsion/starboard) -"cwb" = ( -/obj/structure/disposalpipe/sortjunction/flipped{ - dir = 1; - name = "Operations"; - sortType = "Cargo" - }, -/obj/effect/floor_decal/corner/brown{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/operations/office) -"cwc" = ( -/obj/effect/floor_decal/corner_wide/purple/diagonal, -/turf/simulated/floor/tiled/white, -/area/rnd/test_range) -"cwh" = ( -/obj/structure/toilet{ - dir = 8 - }, -/turf/unsimulated/floor/freezer, -/area/antag/mercenary) -"cwi" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/bridge/upperdeck) -"cws" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 5 - }, -/turf/simulated/floor/reinforced/airless, -/area/template_noop) -"cwu" = ( -/obj/effect/floor_decal/corner/red{ - dir = 9 - }, -/turf/simulated/floor/holofloor/tiled/dark, -/area/horizon/holodeck/source_boxingcourt) -"cwA" = ( -/obj/effect/floor_decal/corner_wide/green{ - dir = 10 - }, -/obj/machinery/light/floor, -/obj/structure/railing/mapped, -/turf/simulated/floor/tiled/white, -/area/hallway/medical/upper) -"cwK" = ( -/obj/structure/table/steel, -/obj/effect/floor_decal/corner/lime{ - dir = 9 - }, -/obj/item/device/radio/med{ - pixel_x = -6; - pixel_y = 12 - }, -/obj/item/device/radio/med{ - pixel_x = -6; - pixel_y = 12 - }, -/obj/item/device/radio/med{ - pixel_x = 6; - pixel_y = 12 - }, -/obj/item/device/radio/med{ - pixel_x = 6; - pixel_y = 12 - }, -/obj/item/device/radio/med{ - pixel_x = -6; - pixel_y = 6 - }, -/obj/item/device/radio/med{ - pixel_x = -6; - pixel_y = 6 - }, -/obj/item/device/radio/med{ - pixel_x = 6; - pixel_y = 6 - }, -/obj/item/device/radio/med{ - pixel_x = 6; - pixel_y = 6 - }, -/turf/simulated/floor/tiled, -/area/medical/emergency_storage) -"cwL" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 5 - }, /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, /obj/structure/cable/green{ icon_state = "4-8" }, /turf/simulated/floor/tiled, -/area/horizon/hydroponics/garden) -"cwP" = ( -/obj/machinery/portable_atmospherics/powered/scrubber, -/turf/simulated/floor/tiled/dark, -/area/engineering/atmos/propulsion) +/area/horizon/rnd/hallway/secondary) +"cwN" = ( +/obj/random/loot, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/structure/closet, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/port) +"cwS" = ( +/obj/structure/table/reinforced/steel, +/obj/machinery/door/window/westleft{ + req_one_access = list(26,29,31,48,67,35,25,28,37) + }, +/obj/machinery/door/blast/shutters{ + dir = 4; + id = "horizon_commissary_desk" + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/operations/commissary) "cwT" = ( /obj/effect/floor_decal/corner/paleblue{ dir = 9 @@ -18009,90 +17210,209 @@ }, /turf/unsimulated/floor, /area/centcom/spawning) -"cxc" = ( -/obj/structure/shuttle_part/scc/scout{ - icon_state = "2,10"; - opacity = 1; - outside_part = 0 +"cwV" = ( +/obj/structure/cable/green{ + icon_state = "4-8" }, -/obj/structure/shuttle_part/scc/scout{ - icon = 'icons/obj/spaceship/scc/ship_engine.dmi'; - icon_state = "nozzle"; - opacity = 1; - outside_part = 0 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel, -/turf/simulated/floor/reinforced{ - blocks_air = 1; - density = 1; - name = "thruster mount"; - opacity = 1 +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 }, -/area/shuttle/canary) -"cxe" = ( -/obj/structure/shuttle_part/scc/scout{ - icon_state = "1,2" +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_research{ + dir = 4; + name = "Test Range"; + req_access = list(47) }, -/turf/simulated/floor/plating, -/area/shuttle/canary) -"cxl" = ( -/obj/machinery/door/blast/regular{ - dir = 2; - id = "EngineEmitterPortWest"; - name = "Supermatter Reactor Waste Management Blast Door" +/obj/structure/disposalpipe/segment{ + dir = 4 }, +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/xenoarch/atrium) +"cwW" = ( /turf/simulated/floor/tiled/full, -/area/engineering/engine_waste) -"cxz" = ( -/obj/structure/railing/mapped{ +/area/horizon/stairwell/starboard/deck_2) +"cwX" = ( +/obj/effect/floor_decal/corner/beige/full{ dir = 8 }, -/turf/simulated/open, -/area/operations/office) -"cxG" = ( -/obj/effect/floor_decal/corner/purple{ - dir = 10 +/obj/effect/floor_decal/industrial/warning{ + dir = 9 }, -/obj/effect/floor_decal/industrial/outline/custodial, -/obj/structure/janitorialcart, -/turf/simulated/floor/tiled, -/area/horizon/custodial) -"cxZ" = ( -/obj/structure/window/shuttle/unique/scc/scout{ - icon_state = "3,4" +/turf/simulated/floor/tiled/dark, +/area/horizon/command/bridge/aibunker) +"cxa" = ( +/obj/structure/bed/stool/chair/office/bridge{ + dir = 8 }, -/obj/structure/window/shuttle/unique/scc/scout/over{ - icon_state = "3,4" +/obj/effect/floor_decal/corner/dark_blue/diagonal, +/obj/item/device/radio/intercom/west{ + pixel_y = 36 }, -/turf/simulated/floor/plating, -/area/shuttle/canary) -"cya" = ( -/obj/machinery/embedded_controller/radio/simple_docking_controller/escape_pod_berth{ - dir = 4; - frequency = 1380; - id_tag = "escape_pod_3_berth"; - pixel_x = -25; - tag_door = "escape_pod_3_berth_hatch" +/obj/machinery/keycard_auth{ + pixel_x = -31; + pixel_y = 26 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/command/bridge/aibunker) +"cxd" = ( +/obj/machinery/atmospherics/binary/pump{ + name = "Mix to Connectors" + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/atmos) +"cxf" = ( +/obj/effect/floor_decal/corner/dark_blue/diagonal, +/obj/effect/floor_decal/industrial/outline/medical, +/obj/structure/closet/walllocker/medical/firstaid{ + pixel_y = 32 }, /turf/simulated/floor/tiled, -/area/hangar/operations) -"cye" = ( -/obj/structure/ladder/up{ - pixel_y = 13 +/area/horizon/command/bridge/upperdeck) +"cxm" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/corner/brown{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/horizon/hangar/operations) +"cxu" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/corner/dark_green{ + dir = 6 + }, +/turf/simulated/floor/tiled/full, +/area/horizon/hangar/intrepid) +"cxv" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 6 }, -/obj/structure/lattice/catwalk/indoor, -/turf/simulated/floor/plating, -/area/maintenance/wing/port/deck1) -"cyh" = ( /obj/machinery/light{ dir = 4 }, -/obj/effect/floor_decal/corner/dark_green/full{ +/turf/simulated/floor/tiled/dark, +/area/horizon/security/checkpoint2) +"cxD" = ( +/obj/machinery/disposal/small/south, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 5 + }, +/obj/machinery/alarm/east, +/turf/simulated/floor/wood, +/area/horizon/crew/lounge) +"cxH" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 8 + }, +/obj/effect/floor_decal/spline/plain{ dir = 4 }, -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/tiled/dark, -/area/hangar/intrepid) +/obj/machinery/atmospherics/unary/vent_pump{ + external_pressure_bound = 140; + external_pressure_bound_default = 140; + icon_state = "map_vent_out"; + pressure_checks = 0; + pressure_checks_default = 0; + use_power = 1 + }, +/obj/machinery/firealarm/west, +/turf/simulated/floor/carpet/rubber, +/area/horizon/tcommsat/chamber) +"cxJ" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/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/horizon/maintenance/deck_1/main/port) +"cxN" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/power/apc/north, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/maintenance/deck_2/cargo_compartment) +"cxO" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_3/port) +"cxQ" = ( +/obj/item/modular_computer/console/preset/engineering{ + dir = 4 + }, +/obj/machinery/light, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/bluespace_drive/monitoring) +"cxS" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_3/central) +"cxV" = ( +/obj/effect/floor_decal/corner_wide/green{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/icu) +"cyc" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor, +/area/horizon/hallway/primary/deck_3/central) +"cyf" = ( +/obj/effect/landmark/entry_point/aft{ + name = "aft engines, port 2" + }, +/turf/space/dynamic, +/area/horizon/engineering/atmos/propulsion/starboard) +"cyi" = ( +/obj/machinery/door/blast/shutters{ + density = 0; + id = "RnDDesk"; + name = "Research and Development"; + opacity = 0 + }, +/obj/structure/table/reinforced/steel, +/obj/machinery/door/window/desk/northright{ + req_access = list(7); + name = "Research and Development" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/shutters/open{ + id = "RnDShutters" + }, +/turf/simulated/floor/tiled, +/area/horizon/rnd/lab) "cyj" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 4 @@ -18100,6 +17420,24 @@ /obj/structure/table/wood, /turf/simulated/floor/holofloor/wood, /area/horizon/holodeck/source_sauna) +"cyl" = ( +/obj/machinery/power/apc/super/east, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/effect/floor_decal/corner_wide/yellow/full{ + dir = 4 + }, +/obj/machinery/light/small, +/obj/machinery/firealarm/south, +/obj/structure/engineer_maintenance/electric{ + dir = 4 + }, +/obj/structure/engineer_maintenance/pipe{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/shields) "cyn" = ( /turf/unsimulated/wall/fakeairlock{ icon = 'icons/obj/doors/basic/single/external/door.dmi'; @@ -18111,6 +17449,47 @@ pixel_y = -16 }, /area/antag/raider) +"cyq" = ( +/obj/effect/floor_decal/corner_wide/green{ + dir = 6 + }, +/obj/effect/floor_decal/industrial/warning, +/obj/structure/closet/walllocker/medical/secure{ + name = "Medication Closet"; + pixel_x = 31 + }, +/obj/item/storage/pill_bottle/mortaphenyl, +/obj/item/storage/pill_bottle/mortaphenyl, +/obj/item/storage/pill_bottle/ryetalyn, +/obj/item/reagent_containers/syringe/antiparasitic, +/obj/item/reagent_containers/syringe/antiparasitic, +/obj/item/reagent_containers/inhaler/pneumalin, +/obj/item/reagent_containers/inhaler/pneumalin, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/gen_treatment) +"cyy" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/effect/floor_decal/corner/red/diagonal, +/obj/effect/floor_decal/spline/plain{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/turf/simulated/floor/lino, +/area/horizon/service/cafeteria) +"cyz" = ( +/obj/effect/floor_decal/corner/green/diagonal, +/obj/structure/table/standard, +/obj/item/deck/cards, +/obj/structure/engineer_maintenance/electric/wall, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/ward/isolation) "cyK" = ( /obj/structure/reagent_dispensers/water_cooler, /obj/effect/floor_decal/corner/dark_blue/full{ @@ -18119,137 +17498,91 @@ /obj/effect/floor_decal/industrial/outline/grey, /turf/simulated/floor/tiled, /area/horizon/security/brig) -"cyL" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 9 - }, -/obj/machinery/light/small/emergency{ +"cyM" = ( +/obj/effect/floor_decal/corner/paleblue/diagonal, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/obj/structure/trash_pile, -/turf/simulated/floor, -/area/horizon/maintenance/deck_three/aft/starboard) -"cyS" = ( -/obj/machinery/power/smes/buildable/substation{ - RCon_tag = "Substation - Hangar" - }, -/obj/structure/cable, -/obj/structure/cable/green{ - icon_state = "0-2" - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/effect/floor_decal/industrial/warning{ - dir = 10 - }, -/turf/simulated/floor/plating, -/area/maintenance/substation/hangar) -"cyU" = ( -/obj/effect/floor_decal/corner_wide/purple{ - dir = 9 - }, -/obj/effect/floor_decal/corner_wide/purple{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/camera/network/research{ - c_tag = "Research - Xenoarchaeology 3"; - dir = 4 - }, -/obj/machinery/requests_console/west{ - department = "Xenoarchaeology"; - departmentType = 2; - name = "Xenoarchaeology Requests Console" - }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 + dir = 5 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 +/obj/structure/cable/green{ + icon_state = "1-4" }, /turf/simulated/floor/tiled/white, -/area/rnd/xenoarch_atrium) -"cyV" = ( -/obj/structure/table/standard, -/obj/machinery/photocopier/faxmachine{ - department = "Chief Engineer's Office" - }, -/obj/machinery/button/remote/airlock{ - desc = "A remote control-switch for the engine core airlock hatch bolts."; - id = "engine_access_hatch"; - name = "Supermatter Reactor Crystal Access Bolts Control"; - pixel_x = -6; - pixel_y = 28; - req_access = list(10); - specialfunctions = 4; +/area/horizon/command/heads/cmo) +"cyO" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/light/small/emergency{ dir = 1 }, -/obj/machinery/button/remote/blast_door{ - desc = "A remote control-switch for engine core."; - id = "EngineVent"; - name = "Supermatter Reactor Emergency Ventilatory Control"; - pixel_x = 6; - pixel_y = 28; - req_access = list(10); - dir = 1 +/obj/structure/cable/green{ + icon_state = "4-8" }, -/obj/machinery/button/remote/driver{ - id = "enginecore"; - name = "Supermatter Reactor Emergency Crystal Ejection"; - pixel_y = 38; - req_access = list(10); - pixel_x = -7 +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 4 }, -/turf/simulated/floor/wood, -/area/crew_quarters/heads/chief) +/obj/machinery/atmospherics/pipe/simple/hidden/aux{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/main/starboard) "cyX" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 }, /turf/simulated/floor/tiled/dark/full, /area/horizon/security/armoury) -"cza" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/structure/trash_pile, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"czn" = ( +"cyY" = ( /obj/structure/cable/green{ - icon_state = "0-4" + icon_state = "4-8" }, -/obj/machinery/power/apc/low/west, +/obj/effect/floor_decal/corner_wide/yellow{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/horizon/engineering/hallway/aft) +"czb" = ( /obj/effect/floor_decal/spline/fancy/wood{ - dir = 8 - }, -/obj/structure/engineer_maintenance/pipe{ - dir = 8 - }, -/obj/structure/engineer_maintenance/electric, -/turf/simulated/floor/wood, -/area/chapel/office) -"czo" = ( -/obj/effect/landmark/entry_point/port{ - name = "port, compartment" - }, -/turf/simulated/wall/shuttle/unique/scc/scout{ - icon_state = "6,7" - }, -/area/shuttle/canary) -"czp" = ( -/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/railing/mapped{ - dir = 8 +/obj/structure/disposalpipe/segment{ + icon_state = "pipe-c" }, +/obj/structure/bed/stool/chair/padded/black{ + dir = 1 + }, +/turf/simulated/floor/carpet, +/area/horizon/repoffice/representative_one) +"czg" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 9 + }, +/obj/machinery/light/small/emergency{ + dir = 8; + pixel_x = 16 + }, +/obj/effect/decal/cleanable/dirt, /obj/structure/railing/mapped, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 +/turf/simulated/floor, +/area/horizon/maintenance/deck_3/bridge) +"czj" = ( +/obj/effect/floor_decal/industrial/outline/emergency_closet, +/obj/structure/closet/emcloset, +/turf/simulated/floor/tiled/dark, +/area/horizon/hallway/primary/deck_3/central) +"czl" = ( +/obj/machinery/door/airlock/external{ + dir = 4; + frequency = 1380; + icon_state = "door_locked"; + id_tag = "escape_pod_2_hatch"; + locked = 1; + name = "Escape Pod Hatch"; + req_access = list(13) }, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard/deck1) +/turf/simulated/floor/shuttle/dark_blue, +/area/horizon/shuttle/escape_pod/pod1) "czr" = ( /obj/structure/window/shuttle/unique/mercenary/small{ icon_state = "6,12"; @@ -18263,57 +17596,114 @@ }, /turf/unsimulated/floor, /area/antag/mercenary) +"czt" = ( +/obj/effect/floor_decal/corner/purple{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/purple{ + dir = 8 + }, +/obj/structure/sign/kiddieplaque/janitor{ + name = "wooden plaque"; + pixel_x = -32 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/service/custodial/disposals/deck_1) +"czv" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/corner_wide/yellow{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/horizon/engineering/reactor/indra/mainchamber) +"czz" = ( +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/effect/floor_decal/corner/dark_green{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/horizon/hangar/intrepid) +"czE" = ( +/turf/simulated/wall/r_wall, +/area/horizon/command/bridge/bridge_crew) +"czG" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/reactor/indra/smes) +"czI" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/bluegrid/server, +/area/horizon/rnd/server) +"czL" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/horizon/operations/lobby) +"czO" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 6 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/junction{ + dir = 1 + }, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/turf/simulated/floor/tiled, +/area/horizon/command/bridge/controlroom) "czP" = ( /obj/effect/floor_decal/corner/dark_blue{ dir = 5 }, /turf/simulated/floor/tiled/dark, /area/horizon/security/evidence_storage) -"czS" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/closet/crate/freezer/rations, -/obj/item/storage/box/produce, -/obj/item/storage/box/produce, -/obj/item/reagent_containers/food/snacks/koisbar_clean, -/obj/item/reagent_containers/food/snacks/koisbar_clean, -/obj/item/storage/box/fancy/egg_box, -/obj/item/reagent_containers/food/drinks/carton/milk, -/obj/machinery/power/apc/west{ - req_access = null; - req_one_access = list(11, 24, 47, 65) - }, -/obj/structure/cable/green{ - icon_state = "0-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/camera/network/intrepid{ - dir = 1; - c_tag = "Intrepid - Buffet" - }, -/turf/simulated/floor/tiled/dark/full, -/area/shuttle/intrepid/buffet) -"czY" = ( -/obj/effect/map_effect/window_spawner/full/reinforced/polarized/firedoor{ - id = "psych" - }, -/turf/simulated/floor/tiled/dark/full, -/area/medical/psych) -"czZ" = ( -/obj/effect/floor_decal/corner/dark_green{ +"czV" = ( +/obj/effect/floor_decal/industrial/warning{ dir = 10 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 +/obj/machinery/alarm/north, +/obj/structure/cable/green{ + icon_state = "0-2" }, -/obj/machinery/newscaster/south, -/obj/machinery/camera/network/second_deck{ - c_tag = "Second Deck - Central Stairwell"; - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/horizon/stairwell/central) +/obj/machinery/power/apc/east, +/turf/simulated/floor, +/area/horizon/maintenance/deck_3/aft/port) +"czX" = ( +/obj/effect/shuttle_landmark/escape_pod/start/pod2, +/turf/simulated/floor/shuttle/dark_blue, +/area/horizon/shuttle/escape_pod/pod1) "cAa" = ( /obj/effect/floor_decal/industrial/warning{ dir = 1 @@ -18321,12 +17711,30 @@ /obj/effect/floor_decal/industrial/warning, /turf/simulated/floor/reinforced/airless, /area/horizon/exterior) -"cAe" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 9 +"cAb" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 }, -/turf/simulated/floor/plating, -/area/maintenance/wing/port/far) +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/effect/floor_decal/corner/dark_blue/diagonal, +/obj/structure/extinguisher_cabinet/south, +/obj/effect/floor_decal/spline/plain/black{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/shuttle/intrepid/junction_compartment) +"cAc" = ( +/obj/effect/floor_decal/corner_wide/paleblue/full{ + dir = 1 + }, +/obj/machinery/papershredder, +/obj/machinery/camera/network/medbay{ + c_tag = "Medical - CMO's Office" + }, +/turf/simulated/floor/tiled/white, +/area/horizon/command/heads/cmo) "cAg" = ( /turf/simulated/wall/shuttle/unique/ert{ icon_state = "0,3" @@ -18342,109 +17750,117 @@ }, /turf/simulated/floor/tiled/dark, /area/supply/dock) -"cAn" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 +"cAl" = ( +/obj/structure/disposalpipe/sortjunction{ + name = "Machinist Workshop"; + sortType = "Machinist Workshop" }, -/obj/structure/table/standard, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology/xenoflora) +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/horizon/operations/machinist) "cAo" = ( /obj/structure/bed/stool/chair/office/bridge/pilot, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/tiled/dark/full, /area/shuttle/skipjack) -"cAq" = ( +"cAs" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/disposal/small/south, +/obj/structure/disposalpipe/trunk, /obj/structure/cable/green{ icon_state = "4-8" }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ - dir = 4 +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/xenobiology/foyer) +"cAt" = ( +/obj/effect/floor_decal/corner_wide/green/diagonal, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment{ + icon_state = "pipe-c" }, -/turf/simulated/floor/plating, -/area/maintenance/engineering) -"cAA" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 +/turf/simulated/floor/tiled/white, +/area/horizon/medical/equipment) +"cAx" = ( +/obj/machinery/hologram/holopad, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, -/turf/simulated/floor/tiled, -/area/storage/primary) -"cAD" = ( -/obj/structure/table/reinforced/steel, -/obj/machinery/door/window/southleft{ - name = "Auxiliary Custodial Closet Desk Interior"; - req_access = list(26) - }, -/obj/machinery/door/blast/shutters{ - id = "shutters_deck2_auxcustdesk"; - name = "Desk Shutter" +/turf/simulated/floor/carpet, +/area/horizon/command/heads/xo) +"cAB" = ( +/obj/machinery/door/airlock/maintenance{ + dir = 4; + name = "Atmospherics Locker Room Maintenance"; + req_access = list(24) }, /obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/custodial/auxiliary) -"cAG" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard/deck1) -"cAI" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/aux{ +/obj/effect/floor_decal/spline/plain/corner{ dir = 4 }, -/obj/structure/cable{ - icon_state = "2-4" +/obj/effect/floor_decal/spline/plain/corner{ + dir = 8 }, +/turf/simulated/floor/tiled/full, +/area/horizon/engineering/atmos/storage) +"cAF" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 5 + }, +/obj/structure/disposalpipe/segment{ + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/horizon/operations/lobby) +"cAH" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/turf/simulated/floor/reinforced, +/area/horizon/rnd/xenobiology) +"cAL" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/light/small, +/obj/machinery/power/apc/west{ + req_access = null; + req_one_access = list(11, 24, 47, 65) + }, +/obj/structure/cable/green, /turf/simulated/floor/tiled/dark/full, -/area/bridge/aibunker) +/area/horizon/shuttle/intrepid/junction_compartment) "cAM" = ( /obj/effect/floor_decal/corner/green{ dir = 5 }, /turf/unsimulated/floor, /area/centcom/holding) -"cAW" = ( -/obj/effect/floor_decal/corner_wide/blue/diagonal, -/obj/effect/floor_decal/corner_wide/yellow{ +"cAS" = ( +/obj/structure/bed/roller, +/obj/effect/floor_decal/industrial/warning/corner{ dir = 4 }, -/obj/effect/floor_decal/spline/plain{ - dir = 4 - }, -/obj/structure/disposalpipe/trunk{ +/obj/effect/floor_decal/industrial/outline/medical, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/gen_treatment) +"cAX" = ( +/obj/machinery/firealarm/north, +/obj/structure/engineer_maintenance/pipe{ dir = 8 }, -/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) +/turf/simulated/floor/lino, +/area/horizon/service/chapel/main) "cBc" = ( /obj/machinery/light, /turf/unsimulated/floor{ @@ -18462,36 +17878,57 @@ }, /turf/simulated/floor/holofloor/tiled/dark, /area/tdome/tdome1) -"cBm" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 10 +"cBn" = ( +/obj/structure/table/stone/marble, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 }, -/obj/machinery/disposal/small/north, -/obj/structure/disposalpipe/trunk{ - dir = 1 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) +/obj/item/material/kitchen/rollingpin{ + pixel_x = 6; + pixel_y = 10 + }, +/obj/item/material/knife{ + pixel_x = -9 + }, +/obj/item/storage/box/produce, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/service/kitchen) "cBp" = ( /obj/structure/flora/bush/adhomai, /turf/simulated/floor/holofloor/snow, /area/horizon/holodeck/source_adhomai) -"cBr" = ( -/obj/machinery/suit_cycler/science/prepared, -/obj/item/tank/jetpack/carbondioxide, -/obj/item/tank/oxygen, +"cBt" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/surgery) +"cBu" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + icon_state = "2-8" + }, /turf/simulated/floor/tiled/dark/full, -/area/rnd/telesci) -"cBs" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/fuel, +/area/horizon/shuttle/intrepid/main_compartment) +"cBy" = ( /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) +/area/horizon/maintenance/deck_1/main/interstitial) "cBz" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 4 @@ -18507,102 +17944,92 @@ }, /turf/simulated/floor/tiled/dark/full, /area/shuttle/mercenary) -"cBA" = ( -/turf/simulated/floor/plating, -/area/maintenance/wing/port) -"cBE" = ( -/obj/structure/grille/diagonal{ - dir = 8 +"cBI" = ( +/obj/machinery/atmospherics/pipe/manifold4w/hidden, +/obj/effect/map_effect/marker/airlock{ + frequency = 1001; + master_tag = "airlock_horizon_deck_3_aft_1"; + name = "airlock_horizon_deck_3_aft_1" }, -/obj/structure/window/shuttle/scc_space_ship, -/obj/effect/floor_decal/spline/fancy/wood/cee{ - dir = 4 +/turf/simulated/floor, +/area/horizon/maintenance/deck_3/aft/port/far) +"cBJ" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 6 }, -/turf/simulated/floor/wood, -/area/horizon/bar) -"cBF" = ( /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/dark_green{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/hangar/intrepid) -"cBH" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable{ icon_state = "1-2" }, -/obj/machinery/door/airlock/engineering{ - name = "C-Goliath Drive Control Room"; - req_one_access = list(11,24) +/obj/structure/railing/mapped{ + dir = 4 }, -/turf/simulated/floor/plating, -/area/engineering/bluespace_drive) +/turf/simulated/floor/tiled, +/area/horizon/operations/loading) "cBK" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 10 }, /turf/unsimulated/floor/wood, /area/antag/raider) -"cBW" = ( -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 2; - icon_state = "shutter0"; - id = "LCKDshutters"; - name = "MedBay Lockdown Shutters"; - opacity = 0 +"cBN" = ( +/obj/structure/cable/orange{ + icon_state = "1-2" }, -/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, -/turf/simulated/floor/tiled/dark/full, -/area/medical/reception) -"cBX" = ( -/obj/machinery/light{ - dir = 1 +/obj/machinery/atmospherics/portables_connector{ + dir = 8 }, -/obj/structure/extinguisher_cabinet/west, -/obj/machinery/portable_atmospherics/hydroponics, -/obj/effect/floor_decal/industrial/outline/service, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/hydroponics) -"cCb" = ( -/obj/structure/table/reinforced/steel, -/obj/item/roller{ - pixel_x = -6 +/turf/simulated/floor/plating, +/area/horizon/engineering/bluespace_drive) +"cBO" = ( +/obj/effect/floor_decal/corner/grey/diagonal, +/obj/effect/floor_decal/spline/plain, +/obj/effect/landmark/start{ + name = "Chef" }, -/obj/item/storage/box/bodybags{ - pixel_x = 7; - pixel_y = 10 - }, -/obj/item/storage/box/gloves{ - pixel_x = 7; - pixel_y = 1 - }, -/obj/item/reagent_containers/spray/cleaner{ - pixel_x = -7; - pixel_y = 15 - }, -/obj/item/roller{ - pixel_x = -6 - }, -/obj/effect/floor_decal/corner/lime/diagonal, -/obj/machinery/firealarm/north, /turf/simulated/floor/tiled/white, -/area/shuttle/intrepid/medical) +/area/horizon/service/kitchen) "cCd" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 1 }, /turf/simulated/floor/tiled, /area/horizon/security/equipment) +"cCe" = ( +/obj/structure/table/stone/marble, +/obj/item/material/kitchen/rollingpin{ + pixel_x = 6; + pixel_y = 10 + }, +/obj/item/material/knife{ + pixel_x = -9 + }, +/obj/item/storage/box/produce, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/service/kitchen) +"cCi" = ( +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/turf/simulated/floor/carpet, +/area/horizon/repoffice/consular_two) +"cCm" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/effect/floor_decal/corner/brown{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/shuttle/intrepid/main_compartment) "cCo" = ( /obj/effect/floor_decal/corner/paleblue{ dir = 10 @@ -18615,44 +18042,15 @@ }, /turf/unsimulated/floor, /area/centcom/holding) -"cCt" = ( -/obj/effect/floor_decal/industrial/outline/grey, -/obj/structure/table/steel, -/obj/item/device/flashlight{ - pixel_x = -4; - pixel_y = 20 +"cCz" = ( +/obj/effect/landmark/start{ + name = "Chief Medical Officer" }, -/obj/item/device/flashlight{ - pixel_x = 4; - pixel_y = 12 - }, -/obj/item/device/flashlight{ - pixel_x = -4; - pixel_y = 4 - }, -/turf/simulated/floor/plating, -/area/hangar/intrepid) -"cCv" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/corner/brown/diagonal, -/obj/machinery/camera/network/supply{ - c_tag = "Operations - Warehouse Entrance"; +/obj/structure/bed/stool/chair/office/bridge/generic{ dir = 4 }, -/turf/simulated/floor/tiled, -/area/operations/loading) -"cCy" = ( -/obj/machinery/alarm/south, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/spiderling_remains, -/turf/simulated/floor/plating, -/area/maintenance/wing/port/far) +/turf/simulated/floor/tiled/white, +/area/horizon/medical/hallway/upper) "cCA" = ( /obj/structure/sign/directions/cryo{ dir = 8; @@ -18660,55 +18058,47 @@ }, /turf/unsimulated/wall/darkshuttlewall, /area/centcom/holding) -"cCB" = ( -/obj/effect/map_effect/window_spawner/full/reinforced/grille/firedoor, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "bridge blast"; - name = "Bridge Blast Doors"; - opacity = 0 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/cable/green{ - icon_state = "0-4" - }, -/turf/simulated/floor, -/area/bridge/supply) "cCD" = ( /obj/effect/floor_decal/corner/green/full{ dir = 8 }, /turf/simulated/floor/holofloor/tiled, /area/horizon/holodeck/source_emptycourt) -"cCL" = ( -/obj/structure/sign/fire{ - desc = "A caution sign which reads 'PORT PROPULSION'."; - name = "\improper PORT PROPULSION sign"; - pixel_y = -32 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ +"cCH" = ( +/obj/effect/floor_decal/industrial/warning{ dir = 5 }, -/obj/machinery/atmospherics/pipe/simple/hidden/aux{ - dir = 4 - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/engineering/atmos/air) -"cCQ" = ( -/obj/structure/bed/stool/chair/shuttle{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ +/turf/simulated/floor/tiled/dark, +/area/horizon/maintenance/deck_2/wing/port/nacelle) +"cCI" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/item/bedsheet/mime, +/obj/structure/bed/padded, +/obj/machinery/light{ dir = 1 }, -/obj/machinery/firealarm/south, -/turf/simulated/floor/tiled/dark, -/area/shuttle/quark/cockpit) +/turf/simulated/floor/carpet, +/area/horizon/service/bar/backroom) +"cCN" = ( +/turf/simulated/wall/r_wall, +/area/horizon/command/bridge/controlroom) +"cCR" = ( +/obj/effect/map_effect/marker/airlock/docking{ + landmark_tag = "nav_horizon_dock_deck_3_starboard_2"; + master_tag = "airlock_horizon_dock_deck_3_starboard_2"; + name = "airlock_horizon_dock_deck_3_starboard_2" + }, +/obj/machinery/light/small/emergency{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/horizon/hallway/primary/deck_3/port/docks) +"cCU" = ( +/obj/effect/floor_decal/spline/plain/cee{ + dir = 8 + }, +/turf/simulated/floor/carpet/rubber, +/area/horizon/hallway/primary/deck_2/central) "cCW" = ( /obj/item/modular_computer/console/preset/command{ dir = 4 @@ -18717,12 +18107,48 @@ icon_state = "dark_preview" }, /area/centcom/spawning) +"cCX" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 6 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/alarm/north{ + dir = 4; + pixel_y = 0; + pixel_x = 10 + }, +/turf/simulated/floor/tiled, +/area/horizon/command/bridge/controlroom) "cCY" = ( /turf/unsimulated/wall/fakepdoor{ dir = 1; name = "shuttle bay blast door" }, /area/centcom/suppy) +"cDa" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/light/small/emergency, +/turf/simulated/floor, +/area/horizon/maintenance/deck_3/aft/port/far) +"cDb" = ( +/obj/structure/window/shuttle/scc_space_ship, +/obj/structure/grille, +/obj/machinery/door/firedoor, +/obj/effect/landmark/entry_point/fore{ + name = "fore, civilian lounges, port" + }, +/turf/simulated/floor/plating, +/area/horizon/crew/lounge) "cDc" = ( /obj/structure/bed/stool/chair/office/bridge/generic{ desc = "Looks suspiciously comfortable."; @@ -18731,6 +18157,13 @@ }, /turf/simulated/floor/carpet, /area/shuttle/skipjack) +"cDd" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 6 + }, +/obj/structure/reagent_dispensers/water_cooler, +/turf/simulated/floor/carpet/rubber, +/area/horizon/engineering/reactor/indra/monitoring) "cDe" = ( /obj/structure/bed/stool/padded/brown{ dir = 4 @@ -18743,13 +18176,6 @@ }, /turf/unsimulated/floor/carpet, /area/centcom/bar) -"cDf" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/corner_wide/green{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/hallway/medical) "cDj" = ( /obj/structure/table/wood/gamblingtable, /obj/item/trash/plate, @@ -18758,16 +18184,6 @@ icon_state = "wood" }, /area/centcom/legion/hangar5) -"cDk" = ( -/obj/structure/cable/green, -/obj/structure/cable{ - icon_state = "0-2" - }, -/obj/machinery/power/smes/buildable/substation{ - RCon_tag = "Substation - Engineering Lower Deck" - }, -/turf/simulated/floor/plating, -/area/maintenance/substation/engineering/lower) "cDp" = ( /obj/effect/floor_decal/corner/paleblue{ dir = 5 @@ -18776,12 +18192,46 @@ icon_state = "dark_preview" }, /area/centcom/ferry) +"cDE" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/structure/bed/handrail{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 8 + }, +/obj/machinery/meter{ + name = "Air Reserve" + }, +/turf/simulated/floor/plating, +/area/horizon/shuttle/intrepid/engineering) "cDF" = ( /obj/effect/floor_decal/corner/lime{ dir = 6 }, /turf/unsimulated/floor, /area/antag/jockey) +"cDG" = ( +/obj/structure/cable/green{ + icon_state = "0-8" + }, +/obj/machinery/power/apc/high/south, +/obj/machinery/atmospherics/pipe/manifold/hidden, +/turf/simulated/floor/plating, +/area/horizon/medical/cryo) +"cDJ" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/visible/green, +/obj/structure/lattice/catwalk/indoor, +/turf/simulated/floor/plating, +/area/horizon/engineering/atmos/air) "cDK" = ( /obj/effect/floor_decal/industrial/warning, /obj/structure/railing/mapped{ @@ -18790,77 +18240,78 @@ /obj/item/hullbeacon/red, /turf/simulated/floor/reinforced/airless, /area/horizon/exterior) -"cDN" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 5 +"cDL" = ( +/obj/machinery/door/airlock/glass_engineering{ + dir = 4; + name = "Engineering EVA Storage"; + req_one_access = list(11,24) }, -/turf/simulated/floor/tiled/dark, -/area/maintenance/wing/port/far) -"cDR" = ( -/obj/effect/floor_decal/corner/green/full, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 +/obj/machinery/door/firedoor, +/obj/effect/map_effect/door_helper/unres{ + dir = 8 }, -/obj/item/device/radio/intercom/west, -/turf/simulated/floor/tiled/white, -/area/horizon/crew_quarters/cryo/washroom) -"cDU" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/chem_heater, -/obj/effect/floor_decal/spline/plain{ - dir = 10 - }, -/turf/simulated/floor/lino, -/area/horizon/cafeteria) +/turf/simulated/floor/tiled/full, +/area/horizon/engineering/lobby) +"cDO" = ( +/turf/simulated/floor/carpet, +/area/horizon/repoffice/consular_two) +"cDT" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/closet/crate, +/obj/random/loot, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/maintenance/deck_2/cargo_compartment) "cDW" = ( /obj/effect/floor_decal/corner/lime/diagonal{ dir = 8 }, /turf/simulated/floor/tiled/dark, /area/shuttle/mercenary) -"cEc" = ( -/obj/effect/floor_decal/corner/green/diagonal, -/turf/simulated/floor/tiled/white, -/area/horizon/crew_quarters/fitness/showers) -"cEf" = ( -/obj/effect/floor_decal/corner/lime/diagonal, -/obj/machinery/camera/network/intrepid{ - dir = 1; - c_tag = "Intrepid - Infirmary" - }, -/obj/machinery/iv_drip, -/obj/item/clothing/mask/breath/medical, -/obj/item/tank/oxygen, -/obj/item/device/radio/intercom/expedition/east, -/turf/simulated/floor/tiled/white, -/area/shuttle/intrepid/medical) -"cEh" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 5 - }, -/obj/structure/sign/directions/com{ - dir = 4; - pixel_y = 32 - }, -/obj/machinery/light/floor{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/starboard) -"cEl" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled, -/area/horizon/custodial) -"cEy" = ( -/obj/machinery/body_scanconsole{ +"cDX" = ( +/obj/effect/floor_decal/corner/mauve/full{ dir = 8 }, -/obj/effect/floor_decal/corner_wide/purple/diagonal, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/structure/table/rack{ + dir = 8 + }, +/obj/item/device/suit_cooling_unit, +/obj/item/device/suit_cooling_unit, +/obj/item/tank/jetpack/carbondioxide, +/obj/item/tank/jetpack/carbondioxide, /turf/simulated/floor/tiled/white, -/area/rnd/test_range) +/area/horizon/storage/eva/expedition) +"cEb" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/xenological) +"cEg" = ( +/turf/simulated/floor/wood, +/area/horizon/service/dining_hall) +"cEt" = ( +/obj/effect/floor_decal/corner_wide/yellow/full{ + dir = 4 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/horizon/engineering/hallway/aft) +"cEx" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/turf/simulated/wall, +/area/horizon/maintenance/deck_3/aft/starboard) +"cEz" = ( +/obj/effect/map_effect/window_spawner/full/reinforced/polarized/grille/firedoor{ + id = "rdoffice" + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/command/heads/rd) "cEA" = ( /obj/structure/table/reinforced/wood, /obj/effect/floor_decal/spline/fancy/wood{ @@ -18876,15 +18327,6 @@ icon_state = "wood" }, /area/centcom/control) -"cEC" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/machinery/camera/network/service{ - c_tag = "Dinner - Kitchen Stairwell" - }, -/turf/simulated/floor/tiled/dark, -/area/horizon/stairwell/bridge) "cED" = ( /obj/effect/floor_decal/corner/brown{ dir = 10 @@ -18892,58 +18334,15 @@ /obj/structure/railing/mapped, /turf/simulated/floor/tiled/dark, /area/horizon/holodeck_control/beta) -"cEG" = ( -/obj/effect/floor_decal/corner/mauve{ - dir = 9 +"cEI" = ( +/obj/machinery/camera/network/third_deck{ + c_tag = "Third Deck - Central Ring Port"; + dir = 8 }, -/obj/machinery/button/remote/blast_door{ - dir = 8; - id = "xenobio_b"; - name = "Cell Containment Blast Doors"; - pixel_x = -21; - req_access = list(47) - }, -/obj/structure/sink{ - dir = 8; - pixel_x = -12 - }, -/obj/effect/floor_decal/industrial/outline_corner/security{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology) -"cEH" = ( -/obj/structure/bed/stool/chair/office/bridge, -/turf/simulated/floor/carpet/rubber, -/area/bridge/controlroom) -"cEK" = ( -/obj/structure/table/glass{ - table_reinf = "glass" - }, -/obj/structure/curtain/open/medical, -/obj/item/folder, -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/floor_decal/corner_wide/green{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/medical/ward) -"cEL" = ( -/obj/machinery/door/airlock/glass_command{ - dir = 1; - id_tag = "server_door_lock"; - name = "Server Room"; - req_access = list(30) - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/firedoor, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/dark, -/area/server) +/obj/machinery/vending/cola, +/obj/effect/floor_decal/industrial/outline/grey, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/service/cafeteria) "cEN" = ( /obj/structure/bed/stool/chair/padded/brown{ can_buckle = 0; @@ -18955,69 +18354,89 @@ }, /turf/unsimulated/floor/wood, /area/antag/raider) -"cES" = ( -/obj/effect/floor_decal/corner_wide/yellow{ - dir = 9 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/structure/extinguisher_cabinet/west, +"cEU" = ( +/obj/effect/floor_decal/corner/red/diagonal, +/obj/structure/reagent_dispensers/extinguisher, +/obj/effect/floor_decal/industrial/outline/red, /turf/simulated/floor/tiled, -/area/hallway/engineering/rust) +/area/horizon/maintenance/deck_2/research) "cEV" = ( /obj/structure/shuttle_part/ert{ icon_state = "10,4" }, /turf/unsimulated/floor/plating, /area/shuttle/specops) +"cEW" = ( +/obj/effect/floor_decal/corner_wide/purple{ + dir = 5 + }, +/obj/effect/floor_decal/corner_wide/purple{ + dir = 8 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/xenoarch/atrium) "cEX" = ( /obj/machinery/computer/cryopod{ pixel_y = 32 }, /turf/unsimulated/floor, /area/centcom/legion) -"cFh" = ( -/obj/machinery/chem_heater, +"cFg" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 9 + }, +/obj/machinery/alarm/west, +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/conference) +"cFp" = ( +/obj/structure/platform_stairs, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + icon_state = "1-2" + }, /obj/machinery/light{ dir = 4 }, -/obj/effect/floor_decal/corner_wide/orange{ - dir = 6 +/turf/simulated/floor/tiled, +/area/horizon/operations/machinist) +"cFq" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 10 }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/white, -/area/medical/pharmacy) -"cFo" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/random/contraband, -/turf/simulated/floor/plating, -/area/maintenance/wing/port/deck1) -"cFy" = ( -/obj/structure/grille, -/obj/structure/window/shuttle/scc_space_ship, -/obj/machinery/door/firedoor, -/obj/effect/landmark/entry_point/starboard{ - name = "starboard, operations office aux" +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/machinery/light, +/turf/simulated/floor/tiled, +/area/horizon/crew/fitness/changing) +"cFr" = ( +/obj/machinery/portable_atmospherics/canister/air, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/light/small/emergency{ + dir = 8 }, /turf/simulated/floor/plating, -/area/operations/office_aux) -"cFB" = ( -/obj/structure/disposalpipe/segment{ +/area/horizon/maintenance/deck_2/wing/starboard/nacelle) +"cFu" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 10 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/obj/effect/floor_decal/corner_wide/green/full, -/turf/simulated/floor/tiled/white, -/area/medical/ward) +/obj/machinery/firealarm/south, +/turf/simulated/floor/tiled, +/area/horizon/engineering/reactor/indra/office) +"cFv" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/horizon/engineering/storage_eva) "cFC" = ( /obj/structure/filingcabinet{ pixel_x = -10 @@ -19030,45 +18449,35 @@ icon_state = "dark_preview" }, /area/centcom/control) -"cFD" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 1 - }, -/obj/effect/floor_decal/spline/plain, -/obj/machinery/atmospherics/pipe/simple/hidden/black{ +"cFK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/obj/effect/floor_decal/sign/a{ - pixel_x = -10; - pixel_y = 4 +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/effect/floor_decal/corner/white{ + dir = 10 }, -/turf/simulated/floor/carpet/rubber, -/area/tcommsat/chamber) -"cFF" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 9 +/turf/simulated/floor/tiled/dark, +/area/horizon/storage/eva) +"cFN" = ( +/obj/effect/floor_decal/corner_wide/lime{ + dir = 10 }, -/turf/simulated/floor/plating, -/area/hangar/intrepid) -"cFI" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/structure/window/shuttle/scc_space_ship/cardinal, -/obj/effect/landmark/entry_point/aft{ - name = "aft, deck 3 port docks" +/obj/machinery/alarm/south, +/obj/machinery/camera/network/medbay{ + c_tag = "Medical - Lobby"; + dir = 1 }, -/turf/simulated/floor/plating, -/area/horizon/hallway/deck_three/primary/port/docks) -"cFO" = ( -/obj/effect/floor_decal/corner/grey/diagonal, +/obj/machinery/light/floor, /turf/simulated/floor/tiled/white, -/area/medical/reception) -"cFS" = ( -/obj/effect/map_effect/window_spawner/full/reinforced/polarized/grille/firedoor{ - id = "rdoffice" +/area/horizon/medical/reception) +"cFR" = ( +/obj/machinery/light/floor, +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/simulated/floor/tiled/dark/full, -/area/crew_quarters/heads/hor) +/turf/simulated/floor/tiled, +/area/horizon/command/bridge/upperdeck) "cFU" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/effect/floor_decal/industrial/warning, @@ -19077,29 +18486,11 @@ }, /turf/simulated/floor/reinforced/airless, /area/horizon/exterior) -"cFV" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/bed/handrail{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark/full, -/area/shuttle/intrepid/port_compartment) -"cFW" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Xenobiology Maintenance"; - req_access = list(55) - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology) +"cFY" = ( +/obj/machinery/portable_atmospherics/hydroponics/soil, +/obj/machinery/alarm/east, +/turf/simulated/floor/grass/no_edge, +/area/horizon/rnd/xenobiology/xenoflora) "cFZ" = ( /obj/structure/bed/stool/padded, /obj/effect/ghostspawpoint{ @@ -19113,42 +18504,67 @@ icon_state = "dark_preview" }, /area/centcom/specops) +"cGa" = ( +/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/operations/break_room) "cGb" = ( /obj/machinery/atmospherics/pipe/simple/visible/fuel{ dir = 10 }, /turf/space/dynamic, /area/horizon/exterior) -"cGp" = ( -/obj/effect/floor_decal/corner/dark_green{ +"cGc" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/visible/green{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 8 + }, +/obj/structure/grille, +/obj/structure/window/shuttle/scc_space_ship, +/turf/simulated/floor/plating, +/area/horizon/engineering/atmos/propulsion/starboard) +"cGe" = ( +/obj/structure/sink/kitchen{ + dir = 8; + name = "surgical sink"; + pixel_x = 20 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/surgery) +"cGn" = ( +/obj/machinery/atmospherics/pipe/simple/visible/green, +/obj/structure/tank_wall/nitrogen{ + density = 0; + icon_state = "n11"; + opacity = 0 + }, +/turf/simulated/floor/reinforced/nitrogen, +/area/horizon/engineering/atmos/air) +"cGo" = ( +/obj/effect/floor_decal/industrial/hatch/red, +/obj/effect/floor_decal/industrial/warning{ dir = 9 }, -/obj/structure/bed/stool/chair{ +/turf/simulated/floor/tiled/dark/full, +/area/horizon/service/custodial/disposals/deck_1) +"cGr" = ( +/obj/structure/closet/emcloset, +/obj/effect/floor_decal/industrial/outline/emergency_closet, +/obj/machinery/camera/network/supply{ + c_tag = "Operations - Hangar Starboard Fore"; dir = 4 }, /turf/simulated/floor/tiled, -/area/horizon/hallway/deck_two/fore) -"cGs" = ( -/obj/structure/platform/cutout{ - dir = 8 - }, -/obj/structure/platform_stairs/full/east_west_cap, -/turf/simulated/floor/tiled/dark/full, -/area/operations/lower/machinist) -"cGu" = ( -/obj/effect/map_effect/window_spawner/full/reinforced/grille/firedoor, -/obj/structure/cable/green{ - icon_state = "0-8" - }, -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/obj/machinery/door/blast/regular/open{ - id = "AICore"; - name = "AI Core Blast Door" - }, -/turf/simulated/floor/tiled/dark/full, -/area/turret_protected/ai_upload) +/area/horizon/hangar/operations) "cGx" = ( /obj/structure/flora/grass/green, /obj/effect/floor_decal/spline/plain{ @@ -19156,62 +18572,204 @@ }, /turf/simulated/floor/exoplanet/snow, /area/centcom/shared_dream) -"cHi" = ( -/obj/machinery/atmospherics/pipe/simple/visible/universal{ +"cGA" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 }, -/obj/effect/floor_decal/industrial/warning/cee{ +/obj/effect/floor_decal/corner/dark_blue{ + dir = 6 + }, +/obj/structure/closet/secure_closet/bridge_crew, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled, +/area/horizon/command/bridge/supply) +"cGG" = ( +/obj/machinery/power/apc/east, +/obj/structure/cable/green{ + icon_state = "0-8" + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/photocopier, +/turf/simulated/floor/tiled/full, +/area/horizon/command/bridge/cciaroom) +"cGM" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/coatrack{ + pixel_x = -11; + pixel_y = 19 + }, +/turf/simulated/floor/wood, +/area/horizon/service/library) +"cGN" = ( +/obj/structure/table/standard, +/obj/machinery/recharger{ + pixel_y = 6; + pixel_x = 8 + }, +/obj/machinery/button/remote/airlock{ + id = "xeno_dissection"; + name = "Dissection access"; + req_access = list(55); + specialfunctions = 4; + dir = 10; + pixel_x = -6; + pixel_y = 1; + desiredstate = 1 + }, +/obj/effect/floor_decal/corner/mauve/full{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/machinery/firealarm/west, +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/xenobiology/hazardous) +"cGS" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/effect/floor_decal/corner/dark_blue/full{ dir = 4 }, -/obj/machinery/firealarm/north, -/obj/structure/lattice/catwalk/indoor/grate, -/turf/simulated/floor/plating, -/area/horizon/hallway/deck_three/primary/starboard/docks) -"cHp" = ( -/obj/structure/cable{ - icon_state = "1-4" +/obj/structure/platform{ + dir = 1 }, -/obj/machinery/light/small/emergency{ +/obj/structure/platform{ dir = 8 }, -/turf/simulated/floor/plating, -/area/maintenance/wing/port/far) +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/machinery/light/floor, +/turf/simulated/floor/tiled, +/area/horizon/command/bridge/upperdeck) +"cGW" = ( +/obj/structure/table/rack, +/obj/item/reagent_containers/hypospray{ + pixel_y = 4 + }, +/obj/item/reagent_containers/hypospray{ + pixel_y = 4 + }, +/obj/item/reagent_containers/hypospray{ + pixel_y = 4 + }, +/obj/item/reagent_containers/hypospray{ + pixel_y = 4 + }, +/obj/item/reagent_containers/hypospray{ + pixel_y = -4 + }, +/obj/item/reagent_containers/hypospray{ + pixel_y = -4 + }, +/obj/item/reagent_containers/hypospray{ + pixel_y = -4 + }, +/obj/item/reagent_containers/hypospray{ + pixel_y = -4 + }, +/obj/effect/floor_decal/corner_wide/green/full, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/equipment) +"cHc" = ( +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/reinforced, +/area/horizon/engineering/gravity_gen) +"cHe" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/turf/simulated/floor/reinforced/reactor, +/area/horizon/engineering/reactor/supermatter/mainchamber) +"cHg" = ( +/obj/machinery/button/remote/blast_door{ + dir = 8; + id = "shutters_custodialgarage"; + name = "Custodial Garage Shutters"; + pixel_x = -22; + pixel_y = 7; + req_access = list(26) + }, +/obj/machinery/ringer_button{ + id = "ringers_custodial"; + name = "Custodial ringer button"; + pixel_x = -24; + pixel_y = -7 + }, +/obj/effect/floor_decal/corner/dark_green{ + dir = 9 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_1/central) +"cHj" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 9 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/atmospherics/omni/filter{ + tag_east = 2; + tag_north = 1; + tag_south = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/reactor/supermatter/waste) "cHu" = ( /obj/effect/floor_decal/corner/green{ dir = 10 }, /turf/unsimulated/floor, /area/centcom/holding) -"cHx" = ( -/obj/machinery/artifact_scanpad, -/obj/effect/floor_decal/spline/plain{ +"cHw" = ( +/obj/structure/sink{ + pixel_y = 1; + dir = 8; + pixel_x = -15 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/operations/machinist/surgicalbay) +"cHA" = ( +/obj/structure/cable/green{ + icon_state = "0-8" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/obj/machinery/power/apc/low/south, +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ dir = 9 }, -/obj/effect/floor_decal/spline/plain{ - dir = 6 +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/xenoarch/isolation_b) +"cHC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/yellow{ + icon_state = "1-2" }, -/turf/simulated/floor/greengrid, -/area/rnd/xenoarch_atrium) -"cHy" = ( -/obj/structure/bed/stool/chair/padded/brown{ - dir = 4 +/obj/structure/cable/yellow{ + icon_state = "1-8" }, -/obj/effect/floor_decal/spline/fancy/wood/cee{ - dir = 8 +/obj/machinery/button/remote/airlock{ + dir = 1; + id = "r-ust_electrical_maintenance"; + name = "Door Bolt Control"; + pixel_x = -28; + pixel_y = 32; + req_one_access = list(11,24); + specialfunctions = 4 }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 +/obj/structure/cable/yellow, +/obj/machinery/power/sensor{ + name = "Powernet Sensor - INDRA Reactor Output"; + name_tag = "INDRA Reactor Output" }, -/obj/machinery/firealarm/west{ - dir = 2; - pixel_x = 0; - pixel_y = -22 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/wood, -/area/bridge/upperdeck) +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/reactor/indra/smes) "cHH" = ( /obj/effect/floor_decal/industrial/warning{ dir = 1 @@ -19222,6 +18780,11 @@ }, /turf/simulated/floor/plating, /area/merchant_station/warehouse) +"cHI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/port) "cHK" = ( /obj/structure/lattice, /obj/machinery/atmospherics/pipe/simple/visible/black, @@ -19230,112 +18793,119 @@ }, /turf/space/dynamic, /area/horizon/exterior) -"cHV" = ( -/obj/machinery/atmospherics/pipe/simple/visible/black{ - dir = 6 - }, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"cHW" = ( -/obj/machinery/computer/telecomms/traffic, -/turf/simulated/floor/tiled/dark/full, -/area/tcommsat/entrance) -"cIa" = ( -/obj/structure/sink/kitchen{ - name = "water fountain"; - pixel_y = 26 - }, -/obj/effect/floor_decal/corner/dark_green{ - dir = 5 - }, -/obj/effect/floor_decal/industrial/outline/grey, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/central) -"cIj" = ( -/obj/effect/floor_decal/corner/dark_blue/full{ +"cHN" = ( +/obj/effect/floor_decal/spline/plain{ dir = 1 }, -/obj/effect/floor_decal/industrial/warning{ +/obj/effect/floor_decal/spline/plain, +/obj/machinery/atmospherics/pipe/simple/hidden/black{ dir = 4 }, -/obj/structure/sign/crush{ - pixel_x = 16; - pixel_y = 32 +/obj/effect/floor_decal/sign/a{ + pixel_x = -10; + pixel_y = 4 }, -/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 +/turf/simulated/floor/carpet/rubber, +/area/horizon/tcommsat/chamber) +"cHZ" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 }, -/obj/structure/cable{ - icon_state = "1-2" +/obj/effect/floor_decal/spline/fancy/wood/corner{ + dir = 8 }, -/obj/machinery/access_button{ - pixel_x = 28 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + 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/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/wood, +/area/horizon/command/heads/om) +"cIc" = ( +/obj/structure/window/shuttle/scc_space_ship, +/obj/structure/grille, +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 8; + icon_state = "shutter0"; + id = "LCKDshutters"; + name = "MedBay Lockdown Shutters"; + opacity = 0 + }, +/obj/machinery/door/firedoor, +/obj/effect/landmark/entry_point/starboard{ + name = "starboard, medical equipment room" }, -/obj/effect/map_effect/marker_helper/airlock/interior, -/obj/machinery/atmospherics/pipe/simple/hidden/aux, /turf/simulated/floor/plating, -/area/shuttle/quark/cargo_hold) +/area/horizon/medical/equipment) +"cIe" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/shuttle/intrepid/port_compartment) +"cIf" = ( +/obj/machinery/newscaster/east{ + pixel_y = 10 + }, +/obj/effect/floor_decal/corner_wide/green{ + dir = 6 + }, +/obj/effect/landmark/start{ + name = "Pharmacist" + }, +/obj/structure/bed/stool/chair{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/hallway/upper) "cIn" = ( /obj/effect/floor_decal/corner/lime{ dir = 10 }, /turf/simulated/floor/tiled/white, /area/shuttle/hapt) -"cIs" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/random/dirt_75, -/turf/simulated/floor/tiled/dark, -/area/maintenance/wing/port/far) -"cIu" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 5 - }, -/obj/machinery/light{ - dir = 1 +"cIx" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 6 }, /turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/port/docks) +/area/horizon/rnd/xenobiology) +"cIy" = ( +/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/horizon/shuttle/quark/cargo_hold) +"cIG" = ( +/obj/effect/floor_decal/corner/mauve/full, +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/conference) "cII" = ( /obj/machinery/light/small/emergency, /obj/effect/floor_decal/corner/black/diagonal, /turf/simulated/floor/tiled/dark, /area/shuttle/burglar) -"cIK" = ( +"cIJ" = ( /obj/effect/floor_decal/industrial/warning{ - dir = 5 + dir = 6 }, -/obj/machinery/power/portgen/basic{ - anchored = 1 - }, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/obj/machinery/light/spot, -/turf/simulated/floor/carpet/rubber, -/area/engineering/engine_room/rust) -"cIL" = ( -/obj/machinery/light/small/emergency{ - dir = 1 - }, -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard/far) +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/reactor/indra/mainchamber) "cIM" = ( /obj/structure/railing/mapped{ dir = 8 @@ -19348,42 +18918,70 @@ name = "staircase" }, /area/centcom/spawning) -"cIO" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/portable_atmospherics/hydroponics/soil, -/turf/simulated/floor/grass/no_edge, -/area/rnd/xenobiology/xenoflora) -"cIU" = ( -/obj/machinery/atmospherics/pipe/simple/visible/black, -/obj/machinery/door/airlock/hatch{ +"cIN" = ( +/obj/machinery/door/airlock/maintenance{ dir = 1; - name = "Propulsion"; - req_one_access = list(11,24) + name = "Research and Development Maintenance"; + req_access = list(7) }, /obj/machinery/door/firedoor, /turf/simulated/floor/tiled/dark, -/area/engineering/atmos/propulsion) -"cIW" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/machinery/atmospherics/binary/pump{ +/area/horizon/rnd/lab) +"cIR" = ( +/obj/machinery/power/apc/low/north, +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/horizon/command/bridge/minibar) +"cIV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/alarm/north, /turf/simulated/floor/plating, -/area/rnd/xenoarch_atrium) +/area/horizon/maintenance/deck_2/wing/starboard/far) "cIX" = ( /turf/simulated/floor/tiled/dark, /area/shuttle/legion) -"cJf" = ( -/obj/effect/floor_decal/corner/black{ - dir = 8 +"cIZ" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 10 + }, +/obj/structure/extinguisher_cabinet/south, +/turf/simulated/floor/tiled, +/area/horizon/engineering/hallway/fore) +"cJa" = ( +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 6 + }, +/turf/simulated/floor, +/area/horizon/ai/upload_foyer) +"cJd" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 5 + }, +/obj/structure/bed/stool/chair/padded/brown{ + dir = 4 + }, +/obj/effect/landmark/start{ + name = "Assistant" }, /turf/simulated/floor/tiled, -/area/operations/lower/machinist) +/area/horizon/operations/lobby) "cJi" = ( /obj/structure/table/rack, /obj/item/storage/box/zipties, @@ -19395,15 +18993,6 @@ icon_state = "dark_preview" }, /area/centcom/control) -"cJj" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/machinery/air_sensor{ - frequency = 1441; - id_tag = "fusion_sensor" - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/reinforced/airless, -/area/engineering/engine_room/rust) "cJl" = ( /turf/simulated/floor/holofloor/grass{ dir = 10; @@ -19412,78 +19001,33 @@ name = "overgrowth" }, /area/horizon/holodeck/source_moghes) -"cJm" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/effect/floor_decal/industrial/hatch_door/yellow, -/obj/machinery/door/firedoor{ - req_one_access = list(24,11,67,73); - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/obj/item/device/radio/intercom/expedition/north, -/turf/simulated/floor/tiled/dark/full, -/area/shuttle/intrepid/port_compartment) -"cJn" = ( -/obj/structure/table/stone/marble, -/obj/machinery/door/firedoor, -/obj/item/material/ashtray/bronze{ - pixel_x = 8; - pixel_y = -8 - }, -/obj/machinery/door/blast/shutters{ - id = "shutters_deck2_kitchendesk"; - name = "Kitchen Desk Shutter" - }, -/turf/simulated/floor/tiled/dark, -/area/horizon/kitchen) "cJo" = ( /obj/structure/bed/stool/chair/padded/blue{ dir = 8 }, /turf/unsimulated/floor/wood, /area/centcom/evac) -"cJr" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, +"cJq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/fuel, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/effect/floor_decal/corner/brown{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/operations/office) -"cJs" = ( -/obj/machinery/portable_atmospherics/canister/air/airlock, -/obj/machinery/atmospherics/portables_connector, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/aft_airlock) -"cJt" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ - icon_state = "2-8" + d1 = 1; + d2 = 2; + icon_state = "1-2" }, -/turf/simulated/floor/wood, -/area/lawoffice/representative) +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/shuttle/intrepid/port_compartment) +"cJv" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/structure/tank_wall/nitrogen{ + icon_state = "n8" + }, +/turf/simulated/floor/plating, +/area/horizon/engineering/atmos/air) "cJw" = ( /obj/machinery/door/blast/regular{ id = "thunderdome"; @@ -19491,27 +19035,6 @@ }, /turf/simulated/floor, /area/tdome/tdome1) -"cJx" = ( -/obj/machinery/door/firedoor{ - req_one_access = list(24,11,67,73); - dir = 4 - }, -/obj/effect/floor_decal/industrial/hatch_door/yellow, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/door/airlock/glass_service{ - dir = 8; - name = "Buffet" - }, -/turf/simulated/floor/tiled/dark/full, -/area/shuttle/intrepid/buffet) "cJy" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 1 @@ -19522,55 +19045,78 @@ /obj/structure/window/reinforced, /turf/simulated/floor/tiled/dark, /area/horizon/holodeck_control/beta) -"cJz" = ( -/obj/structure/window/shuttle/scc_space_ship, -/obj/structure/grille, -/obj/machinery/atmospherics/pipe/simple/hidden/yellow, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/hallway/engineering) -"cJB" = ( -/obj/effect/floor_decal/corner/lime/diagonal, -/obj/machinery/light/small, -/turf/simulated/floor/tiled/white, -/area/shuttle/intrepid/medical) -"cJJ" = ( -/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, -/obj/machinery/door/blast/shutters/open{ - dir = 4; - id = "shutters_deck2_portstairwellsec"; - name = "Security Shutter" +"cJC" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 10 }, -/obj/machinery/door/blast/regular/open{ - id = "hangarlockdown"; - name = "Hangar Lockdown" +/turf/simulated/floor/tiled/dark, +/area/horizon/maintenance/deck_2/wing/starboard/nacelle) +"cJE" = ( +/obj/machinery/light, +/obj/effect/floor_decal/spline/plain, +/obj/item/stock_parts/subspace/treatment, +/obj/item/stock_parts/subspace/treatment, +/obj/item/stock_parts/subspace/treatment, +/obj/structure/table/standard, +/turf/simulated/floor/carpet/rubber, +/area/horizon/tcommsat/entrance) +"cJF" = ( +/obj/random/pottedplant_small{ + pixel_y = -11; + pixel_x = -9 }, -/turf/simulated/floor/tiled/dark/full, -/area/hangar/auxiliary) +/turf/simulated/wall/shuttle/scc, +/area/horizon/shuttle/intrepid/buffet) "cJL" = ( /obj/structure/shuttle_part/mercenary/small{ icon_state = "0,2" }, /turf/unsimulated/floor/plating, /area/shuttle/syndicate_elite) -"cJW" = ( -/obj/machinery/light{ +"cJN" = ( +/obj/structure/platform_stairs/south_north_solo{ + dir = 1 + }, +/obj/structure/platform{ dir = 8 }, -/obj/effect/floor_decal/corner/dark_blue/full, -/obj/machinery/atmospherics/unary/vent_pump/on{ +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/port/far) +"cJR" = ( +/obj/machinery/camera/network/reactor{ + c_tag = "Engineering - INDRA Room 3" + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/reactor/indra/mainchamber) +"cJV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/turf/simulated/floor/tiled/dark, -/area/turret_protected/ai_upload_foyer) -"cKd" = ( -/obj/machinery/atmospherics/binary/pump/high_power{ - dir = 1; - name = "Aux Tanks Inlet" +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/dark, -/area/maintenance/aux_atmospherics/deck_2/starboard/wing) +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/full, +/area/horizon/command/bridge/upperdeck) +"cJX" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/chemistry) +"cKc" = ( +/obj/effect/floor_decal/corner_wide/green/diagonal, +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/equipment) "cKi" = ( /obj/structure/sign/greencross{ name = "Infirmary"; @@ -19587,34 +19133,23 @@ dir = 4 }, /area/horizon/holodeck/source_pool) -"cKn" = ( -/obj/item/storage/photo_album, -/obj/item/device/camera_film, -/obj/item/device/camera, -/obj/structure/closet/secure_closet{ - name = "\improper Journalist's closet"; - req_access = list(70) - }, -/obj/item/paper_scanner, -/obj/item/folder/white, -/obj/item/storage/secure/briefcase, -/obj/item/clipboard, -/obj/item/folder/red, -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/floor_decal/spline/fancy/wood{ +"cKl" = ( +/obj/effect/floor_decal/industrial/warning{ dir = 5 }, -/obj/item/device/radio/microphone, -/turf/simulated/floor/wood, -/area/journalistoffice) -"cKo" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/random/loot, -/obj/structure/closet, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard) +/turf/simulated/floor, +/area/horizon/maintenance/deck_3/aft/starboard/far) +"cKs" = ( +/obj/effect/floor_decal/industrial/outline/security, +/obj/machinery/computer/shuttle_control/explore/terminal/intrepid{ + dir = 1 + }, +/obj/machinery/camera/network/intrepid{ + dir = 8; + c_tag = "Intrepid - Flight Deck" + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/shuttle/intrepid/flight_deck) "cKu" = ( /turf/simulated/floor/reinforced/airless, /area/horizon/exterior) @@ -19647,78 +19182,49 @@ }, /turf/simulated/floor/holofloor/lino, /area/horizon/holodeck/source_meetinghall) -"cKK" = ( -/obj/effect/floor_decal/industrial/hatch_door/red, -/obj/machinery/door/airlock/external{ - dir = 8 - }, -/obj/effect/map_effect/marker_helper/airlock/exterior, -/obj/machinery/access_button{ - pixel_y = -29; - pixel_x = 7; - dir = 4 - }, -/obj/machinery/door/blast/shutters/open{ - dir = 8; - id = "intrepid_bay_outer"; - name = "Intrepid Shutter" - }, -/obj/effect/map_effect/marker/airlock{ - master_tag = "sccv_intrepid_port"; - name = "sccv_intrepid_port"; - req_one_access = null - }, -/turf/simulated/floor/tiled/dark/full, -/area/shuttle/intrepid/port_compartment) -"cKM" = ( -/turf/simulated/wall/r_wall, -/area/crew_quarters/heads/cmo) +"cKI" = ( +/obj/machinery/hologram/holopad, +/turf/simulated/floor/carpet/purple, +/area/horizon/command/heads/rd) "cKN" = ( /turf/simulated/floor/exoplanet/water/shallow, /area/centcom/shared_dream) -"cKQ" = ( -/obj/machinery/alarm/east{ - req_one_access = list(24,11,55) +"cKO" = ( +/obj/machinery/door/firedoor{ + dir = 4 }, -/obj/structure/filingcabinet/filingcabinet{ - pixel_x = 10; - pixel_y = 1 +/obj/machinery/door/airlock/maintenance{ + dir = 4; + req_one_access = list(12) }, -/obj/machinery/papershredder{ - pixel_x = -6 +/turf/simulated/floor/tiled/dark, +/area/horizon/crew/fitness/gym) +"cKS" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/structure/tank_wall/air{ + icon_state = "air16" }, -/obj/machinery/power/apc/low/north, -/obj/structure/cable/green{ - icon_state = "0-2" - }, -/turf/simulated/floor/wood, -/area/crew_quarters/heads/chief) +/turf/simulated/floor/plating, +/area/horizon/engineering/atmos/air) "cKV" = ( /obj/structure/flora/ausbushes/ppflowers, /turf/simulated/floor/exoplanet/grass/grove, /area/centcom/shared_dream) -"cKY" = ( -/obj/effect/landmark/entry_point/starboard{ - name = "starboard, escape pods" - }, -/turf/simulated/wall/shuttle/scc_space_ship/cardinal, -/area/hangar/auxiliary) -"cLg" = ( -/turf/simulated/floor/tiled/full, -/area/horizon/hallway/deck_three/primary/port) -"cLh" = ( -/obj/effect/floor_decal/corner_wide/purple{ - dir = 10 - }, -/obj/effect/floor_decal/corner_wide/purple{ - dir = 4 - }, -/obj/structure/disposalpipe/trunk{ +"cLa" = ( +/obj/effect/floor_decal/corner/green/diagonal, +/obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 }, -/obj/machinery/disposal/small/north, +/obj/structure/closet/secure_closet/personal/patient, /turf/simulated/floor/tiled/white, -/area/rnd/xenoarch_atrium) +/area/horizon/medical/ward/isolation) +"cLf" = ( +/obj/effect/floor_decal/corner_wide/yellow{ + dir = 10 + }, +/obj/machinery/bluespace_beacon, +/turf/simulated/floor/tiled, +/area/horizon/engineering/break_room) "cLi" = ( /obj/structure/flora/ausbushes/sparsegrass, /obj/structure/flora/ausbushes/leafybush, @@ -19729,178 +19235,63 @@ /obj/structure/flora/ausbushes/ppflowers, /turf/simulated/floor/holofloor/grass, /area/horizon/holodeck/source_picnicarea) -"cLn" = ( -/obj/effect/floor_decal/corner_wide/purple{ - dir = 8 - }, -/obj/effect/floor_decal/corner_wide/purple{ +"cLj" = ( +/obj/effect/floor_decal/corner/dark_blue{ dir = 6 }, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 +/obj/effect/floor_decal/corner/yellow{ + dir = 1 }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/button/remote/blast_door{ - dir = 4; - id = "iso_c_purge"; - name = "PURGE Atmosphere"; - pixel_x = 28; - pixel_y = -26; - req_access = list(65) - }, -/obj/machinery/button/remote/blast_door{ - dir = 4; - id = "iso_c"; - name = "Blast Door Control"; - pixel_x = 22; - pixel_y = -36; - req_access = list(65) - }, -/obj/machinery/button/remote/airlock{ - dir = 4; - id = "riso3"; - name = "Door Bolt Control"; - pixel_x = 22; - pixel_y = -25; - req_access = list(65); - specialfunctions = 4 - }, -/obj/machinery/atmospherics/valve/digital/open{ - dir = 4; - name = "Isolation A" - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenoarch_atrium) -"cLq" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/hatch{ - dir = 4; - name = "Deck 2 Port Pod"; - req_access = list(12) - }, -/obj/structure/plasticflaps/airtight, -/obj/item/tape/engineering{ - icon_state = "engineering_door" - }, -/obj/effect/decal/cleanable/cobweb, -/obj/effect/decal/cleanable/cobweb2, +/turf/simulated/floor/tiled/dark, +/area/horizon/storage/eva) +"cLl" = ( +/turf/simulated/floor/tiled, +/area/horizon/engineering/reactor/indra/office) +"cLx" = ( /obj/structure/cable{ icon_state = "4-8" }, -/turf/simulated/floor/tiled/dark, -/area/maintenance/wing/port/far) +/obj/structure/platform_stairs/full/east_west_cap, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/main/port) +"cLz" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/obj/structure/extinguisher_cabinet/west, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/reactor/supermatter/mainchamber) "cLC" = ( /obj/structure/window/reinforced, /obj/structure/anomaly_container, /turf/simulated/floor/tiled/dark, -/area/outpost/research/anomaly_storage) -"cLE" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 5 - }, -/obj/random/junk, -/obj/structure/closet/crate/trashcart, -/obj/random/junk, -/obj/random/junk, -/turf/simulated/floor/plating, -/area/maintenance/research_port) +/area/horizon/rnd/xenoarch/anomaly_storage) "cLG" = ( /obj/structure/dueling_table{ icon_state = "center_center" }, /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{ +"cLH" = ( +/obj/machinery/door/airlock/maintenance{ 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 - }, -/turf/simulated/floor/shuttle/dark_blue, -/area/shuttle/escape_pod/pod1) -"cLR" = ( /obj/machinery/door/firedoor, -/obj/machinery/smartfridge/secure/medbay, -/turf/simulated/floor/tiled/dark/full, -/area/medical/pharmacy) -"cLU" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, -/turf/simulated/floor/tiled/full, -/area/bridge/upperdeck) -"cLV" = ( -/turf/unsimulated/wall/fakepdoor{ - dir = 4 - }, -/area/hangar/intrepid) -"cLW" = ( -/turf/simulated/floor/wood, -/area/lawoffice/consular_two) +/turf/simulated/floor/tiled, +/area/horizon/maintenance/deck_1/wing/starboard/far) "cLX" = ( /obj/effect/map_effect/window_spawner/full/reinforced/firedoor, /turf/simulated/floor/tiled/dark/full, /area/horizon/security/meeting_room) -"cLY" = ( -/obj/structure/shuttle_part/scc/scout{ - icon_state = "2,4"; - outside_part = 0 - }, -/obj/structure/ship_weapon_dummy, -/turf/simulated/floor/reinforced{ - blocks_air = 1; - density = 1; - name = "thruster mount"; - opacity = 1 - }, -/area/shuttle/canary) "cLZ" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 10 +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/floor_decal/corner/dark_blue{ + dir = 5 }, /turf/simulated/floor/tiled, -/area/horizon/commissary) -"cMa" = ( -/obj/effect/decal/cleanable/dirt, -/obj/random/junk, -/obj/machinery/atmospherics/pipe/manifold4w/hidden, -/turf/simulated/floor, -/area/maintenance/bridge) +/area/horizon/hallway/primary/deck_3/port/docks) "cMd" = ( /obj/effect/decal/fake_object{ icon = 'icons/misc/beach.dmi'; @@ -19913,6 +19304,16 @@ icon_state = "desert4" }, /area/horizon/holodeck/source_beach) +"cMj" = ( +/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/horizon/maintenance/deck_2/wing/port/near) "cMk" = ( /obj/effect/floor_decal/corner/grey/full{ dir = 8 @@ -19922,51 +19323,61 @@ }, /turf/unsimulated/floor, /area/centcom/control) -"cMq" = ( -/obj/machinery/light, -/obj/effect/floor_decal/corner/dark_green/full{ - dir = 4 - }, -/obj/machinery/computer/guestpass{ - pixel_y = -32 - }, -/obj/structure/railing/mapped{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/aft) -"cMu" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_mining{ - dir = 1; - name = "Cargo Bay"; - req_one_access = list(26,29,31,48,67,70) - }, -/obj/effect/map_effect/door_helper/unres{ +"cMx" = ( +/obj/random/junk, +/obj/effect/floor_decal/industrial/loading/yellow{ dir = 1 }, -/turf/simulated/floor/tiled, -/area/operations/loading) -"cMw" = ( +/obj/structure/platform{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/port/far) +"cMB" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, /obj/effect/floor_decal/industrial/warning{ dir = 8 }, -/turf/simulated/wall, -/area/horizon/maintenance/deck_three/aft/starboard) -"cMy" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/maintenance{ - dir = 1; - req_one_access = list(12,26,29,31,48,67) +/turf/simulated/floor/plating, +/area/horizon/engineering/storage/lower) +"cMD" = ( +/obj/effect/floor_decal/corner_wide/blue{ + dir = 10 }, -/turf/simulated/floor/tiled/full, -/area/maintenance/wing/starboard) -"cMI" = ( -/obj/structure/closet/crate, -/obj/random/loot, +/obj/structure/table/reinforced/steel, +/obj/random/bad_ai{ + pixel_x = 5 + }, +/obj/random/bad_ai{ + pixel_y = 9; + pixel_x = 5 + }, +/obj/machinery/door/window/northright{ + name = "Storage"; + req_access = list(20) + }, +/obj/random/bad_ai{ + pixel_x = -6; + pixel_y = 9 + }, +/obj/random/bad_ai{ + pixel_x = -6 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/storage/secure) +"cMG" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/portable_atmospherics/hydroponics, +/obj/machinery/atmospherics/portables_connector{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled/dark, -/area/maintenance/wing/port) +/area/horizon/rnd/xenobiology/xenoflora) "cMK" = ( /turf/simulated/floor, /area/tdome/tdome1) @@ -20000,13 +19411,17 @@ }, /turf/simulated/floor/tiled, /area/horizon/security/warden) -"cMU" = ( -/obj/machinery/light/small/emergency{ - dir = 1 +"cMS" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 9 }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/maintenance/aft) +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/r_n_d/circuit_imprinter, +/obj/structure/railing/mapped{ + dir = 8 + }, +/turf/simulated/floor/carpet/rubber, +/area/horizon/rnd/lab) "cMX" = ( /obj/machinery/vending/snack{ name = "hacked Getmore Chocolate Corp"; @@ -20014,28 +19429,23 @@ }, /turf/unsimulated/floor/marble, /area/antag/wizard) -"cNa" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/maintenance/wing/port/far) "cNb" = ( /obj/machinery/computer/aiupload, /turf/unsimulated/floor{ icon_state = "dark_preview" }, /area/centcom/control) +"cNe" = ( +/obj/machinery/air_sensor{ + frequency = 1442; + id_tag = "port_prop_sensor"; + output = 31 + }, +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 10 + }, +/turf/simulated/floor/reinforced/airless, +/area/horizon/engineering/atmos/propulsion/starboard) "cNg" = ( /obj/effect/floor_decal/corner/green{ dir = 9 @@ -20048,63 +19458,60 @@ icon_state = "dark_preview" }, /area/centcom/control) -"cNn" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 +"cNk" = ( +/obj/effect/floor_decal/corner_wide/paleblue{ + dir = 9 + }, +/obj/structure/table/glass{ + table_reinf = "glass" + }, +/obj/item/device/flashlight/lamp, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 }, -/obj/effect/floor_decal/corner/green/full, /turf/simulated/floor/tiled/white, -/area/operations/break_room) -"cNo" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/floor_decal/industrial/warning{ +/area/horizon/command/heads/cmo) +"cNu" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 8 }, -/obj/structure/closet/crate, -/obj/random/loot, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"cNp" = ( -/obj/structure/disposalpipe/segment{ +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4 }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/disposalpipe/junction, +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor/plating, +/area/horizon/hallway/primary/deck_2/fore) +"cNA" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/random/junk, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/port/far) +"cNB" = ( +/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/effect/floor_decal/corner_wide/yellow{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/horizon/engineering/hallway/aft) +"cNU" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, /obj/structure/cable/green{ icon_state = "4-8" }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/hangar/intrepid/interstitial) -"cNr" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/operations/lobby) -"cNt" = ( -/turf/simulated/wall, -/area/maintenance/substation/research) -"cNL" = ( -/obj/structure/lattice, -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/structure/railing/mapped{ - dir = 1 - }, -/turf/simulated/open, -/area/horizon/hallway/deck_three/primary/starboard) -"cNX" = ( -/obj/machinery/door/firedoor, /turf/simulated/floor/tiled/full, -/area/horizon/hallway/deck_three/primary/starboard/docks) +/area/horizon/engineering/storage_hard) "cNY" = ( /obj/effect/floor_decal/corner/yellow{ dir = 1 @@ -20119,46 +19526,26 @@ /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 +"cOe" = ( +/obj/structure/window/shuttle/scc_space_ship, +/obj/structure/grille, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/visible/purple, +/turf/simulated/floor/plating, +/area/horizon/engineering/atmos) +"cOf" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 10 }, -/turf/simulated/floor/tiled/dark/full, -/area/rnd/xenoarch_atrium) +/obj/structure/reagent_dispensers/watertank, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/service/starboard) "cOk" = ( /obj/effect/floor_decal/spline/fancy/wood/cee{ dir = 4 }, /turf/simulated/floor/wood, /area/horizon/holodeck/source_pool) -"cOl" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/warning/corner, -/obj/machinery/firealarm/south, -/obj/effect/floor_decal/industrial/outline/security, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"cOm" = ( -/obj/effect/floor_decal/corner_wide/purple{ - dir = 8 - }, -/obj/effect/floor_decal/corner_wide/purple{ - dir = 6 - }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/platform{ - dir = 8 - }, -/obj/machinery/camera/network/research{ - c_tag = "Research - Xenoarchaeology Suits"; - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenoarch_atrium) "cOo" = ( /obj/machinery/embedded_controller/radio/simple_docking_controller{ frequency = 1380; @@ -20170,77 +19557,75 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/unsimulated/floor/monotile, /area/antag/mercenary) -"cOs" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/effect/floor_decal/corner/yellow{ - dir = 5 - }, -/obj/effect/floor_decal/corner/dark_green{ - dir = 8 - }, -/obj/machinery/alarm/west, +"cOw" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/effect/large_stock_marker, +/obj/machinery/firealarm/south, /turf/simulated/floor/tiled, -/area/engineering/lobby) -"cOx" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/white, -/area/medical/ors) -"cOy" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "0-2" - }, -/obj/effect/floor_decal/corner/brown{ - dir = 6 - }, -/obj/machinery/power/apc/high/east, -/turf/simulated/floor/tiled, -/area/operations/storage) -"cOC" = ( -/obj/structure/cable/orange{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 - }, -/obj/structure/lattice/catwalk/indoor, +/area/horizon/operations/warehouse) +"cOz" = ( +/obj/structure/table/rack, +/obj/random/contraband, /turf/simulated/floor/plating, -/area/engineering/engine_room/rust) +/area/horizon/maintenance/deck_2/wing/starboard/far) +"cOB" = ( +/turf/simulated/floor/tiled/dark/full, +/area/horizon/maintenance/deck_1/auxatmos) +"cOD" = ( +/obj/effect/map_effect/window_spawner/full/reinforced/polarized/grille/firedoor{ + id = "cap" + }, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id = "bridge blast"; + name = "Bridge Blast Doors"; + opacity = 0 + }, +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/turf/simulated/floor, +/area/horizon/command/heads/captain) "cOI" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 10 }, /turf/simulated/floor/holofloor/wood, /area/horizon/holodeck/source_theatre) -"cOR" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 9 +"cOM" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 }, -/obj/machinery/light{ - dir = 8 +/obj/structure/cable/green{ + icon_state = "4-8" }, -/turf/simulated/floor/tiled/dark, -/area/security/checkpoint2) -"cPk" = ( -/turf/simulated/wall, -/area/medical/ward) +/obj/machinery/atmospherics/pipe/manifold/visible/yellow, +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/xenoarch/isolation_c) +"cOY" = ( +/obj/structure/table/wood, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/carpet, +/area/horizon/repoffice/representative_two) +"cPi" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_3/port) "cPq" = ( /obj/effect/shuttle_landmark/horizon/exterior/deck_1/starboard_propulsion, /turf/template_noop, @@ -20255,18 +19640,25 @@ }, /turf/simulated/open/airless, /area/horizon/exterior) -"cPs" = ( -/obj/machinery/porta_turret, -/obj/effect/floor_decal/industrial/warning/full, -/obj/machinery/alarm/west, -/turf/simulated/floor/tiled/dark/full, -/area/turret_protected/ai_upload) -"cPt" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 1 +"cPu" = ( +/obj/structure/cable{ + icon_state = "4-8" }, -/turf/simulated/wall/shuttle/unique/scc/mining, -/area/shuttle/mining) +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/turf/simulated/floor/tiled/full, +/area/horizon/engineering/hallway/fore) "cPv" = ( /obj/effect/floor_decal/industrial/warning{ dir = 1 @@ -20299,95 +19691,23 @@ /obj/structure/closet/cabinet, /turf/simulated/floor/wood, /area/shuttle/skipjack) -"cPE" = ( -/obj/machinery/atmospherics/pipe/manifold4w/visible/yellow, -/obj/structure/lattice/catwalk/indoor, -/obj/structure/cable/green{ - icon_state = "4-8" +"cPM" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 }, -/obj/machinery/door/window/southleft{ - dir = 4; - name = "Atmospheric Tanks"; - req_access = list(24) +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/visible/supply{ - dir = 5 - }, -/turf/simulated/floor/plating, -/area/engineering/atmos/air) -"cPH" = ( -/obj/effect/floor_decal/corner_wide/paleblue{ - dir = 6 - }, -/obj/structure/table/standard, -/obj/item/reagent_containers/spray/cleaner{ - desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; - icon_state = "sterilesprayblue"; - name = "surgery cleaner" - }, -/turf/simulated/floor/tiled/white, -/area/medical/ors) -"cPI" = ( -/obj/machinery/door/window/holowindoor{ - req_access = list(55) - }, -/obj/machinery/door/window/holowindoor{ +/obj/machinery/conveyor{ dir = 1; - req_access = list(55) + id = "QMLoad" }, -/obj/machinery/door/blast/regular/open{ - dir = 8; - fail_secure = 1; - id = "xenobio_e"; - name = "Cell Containment Blast Door" - }, -/turf/simulated/floor/tiled/dark/full, -/area/rnd/xenobiology) -"cPL" = ( /turf/simulated/floor/tiled, -/area/maintenance/aux_atmospherics/deck_2/starboard/wing) -"cPP" = ( -/obj/effect/floor_decal/corner_wide/green/diagonal, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment{ - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/white, -/area/medical/equipment) -"cPQ" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/structure/disposalpipe/sortjunction/flipped{ - name = "Kitchen"; - sortType = "Kitchen" - }, -/turf/simulated/floor/tiled/white, -/area/horizon/kitchen) +/area/horizon/hangar/operations) "cPS" = ( /obj/structure/flora/ausbushes/leafybush, /turf/simulated/floor/exoplanet/grass, /area/centcom/shared_dream) -"cPU" = ( -/obj/effect/landmark{ - name = "Revenant" - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard) -"cPV" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/bridge/bridge_crew) -"cPY" = ( -/turf/simulated/open, -/area/maintenance/research_port) "cQb" = ( /obj/structure/grille, /obj/machinery/door/firedoor, @@ -20399,6 +19719,19 @@ /obj/structure/window/shuttle/scc_space_ship/cardinal, /turf/simulated/floor/plating, /area/shuttle/merchant) +"cQe" = ( +/obj/machinery/atmospherics/pipe/simple/visible/purple{ + dir = 10 + }, +/obj/effect/floor_decal/corner_wide/black/full{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/obj/structure/engineer_maintenance/pipe/wall, +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/atmos/propulsion) "cQf" = ( /obj/structure/table/standard, /obj/item/storage/firstaid/adv{ @@ -20416,14 +19749,63 @@ icon_state = "white" }, /area/centcom/legion) -"cQv" = ( -/obj/machinery/fusion_fuel_injector/mapped{ - dir = 8; - initial_id_tag = "horizon_fusion" +"cQh" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 1 }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/carpet/rubber, -/area/engineering/engine_room/rust) +/turf/simulated/wall/shuttle/unique/scc/mining, +/area/horizon/shuttle/mining) +"cQj" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/disposalpipe/junction{ + dir = 8 + }, +/obj/structure/cable/green{ + icon_state = "4-8"; + d1 = 4; + d2 = 8 + }, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/wood, +/area/horizon/service/library) +"cQl" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/turretid/stun{ + check_synth = 1; + name = "\improper AI Chamber Turret Control Console"; + pixel_x = -34; + pixel_y = 31 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/dark, +/area/horizon/command/bridge/aibunker) +"cQo" = ( +/obj/structure/window/shuttle/scc_space_ship, +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/simple/hidden/yellow, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/horizon/stairwell/engineering/deck_1) +"cQp" = ( +/obj/effect/floor_decal/corner/black{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/hangar/intrepid) "cQw" = ( /obj/effect/floor_decal/corner/green/diagonal, /obj/machinery/flasher{ @@ -20435,6 +19817,30 @@ }, /turf/simulated/floor/tiled/white, /area/horizon/security/brig) +"cQy" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/obj/machinery/button/remote/blast_door{ + dir = 4; + id = "engineering_storage"; + name = "Engineering Hard Storage"; + pixel_x = 21; + pixel_y = 34; + req_one_access = list(11,24) + }, +/turf/simulated/floor/tiled/full, +/area/horizon/engineering/storage_hard) +"cQz" = ( +/obj/structure/foamedmetal, +/obj/structure/shuttle_part/scc_space_ship{ + icon_state = "d2-1" + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/port/far) "cQA" = ( /obj/structure/table/wood, /obj/item/device/flashlight/lamp/green{ @@ -20442,164 +19848,219 @@ }, /turf/simulated/floor/holofloor/lino, /area/horizon/holodeck/source_theatre) -"cQT" = ( -/obj/structure/railing/mapped{ - dir = 8 +"cQI" = ( +/obj/machinery/door/blast/regular/open{ + dir = 2; + fail_secure = 1; + id = "xenobio_d"; + name = "Cell Containment Blast Door" }, -/obj/structure/railing/mapped{ +/obj/structure/window/reinforced{ dir = 4 }, -/obj/structure/platform/ledge, -/obj/structure/platform/ledge{ +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/disposal/deliveryChute{ dir = 8 }, -/obj/structure/platform_deco/ledge{ - dir = 9 - }, -/obj/structure/platform/ledge{ +/obj/structure/disposalpipe/trunk{ dir = 4 }, -/obj/structure/platform_deco/ledge{ - dir = 5 +/obj/machinery/door/window/westleft{ + req_access = list(55) }, -/turf/simulated/open, -/area/horizon/hallway/deck_three/primary/central) +/obj/machinery/door/firedoor{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/rnd/xenobiology) +"cQS" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_3/starboard/docks) "cQV" = ( /obj/structure/bed/stool/chair/sofa/corner/concave/brown{ dir = 4 }, /turf/simulated/floor/carpet/purple, /area/centcom/shared_dream) -"cQY" = ( -/obj/effect/floor_decal/corner/mauve{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology/foyer) "cQZ" = ( /obj/structure/stairs/north, /turf/simulated/floor/tiled, /area/horizon/security/investigations_hallway) +"cRa" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/operations/starboard/amidships) "cRb" = ( /obj/structure/window/shuttle/unique/mercenary/small{ icon_state = "2,11" }, /turf/simulated/floor/plating, /area/shuttle/syndicate_elite) -"cRf" = ( -/obj/structure/foamedmetal, -/obj/structure/shuttle_part/scc_space_ship{ - icon_state = "d2-2-f" +"cRh" = ( +/obj/structure/table/steel, +/obj/effect/floor_decal/corner/mauve{ + dir = 5 }, -/turf/simulated/floor/plating, -/area/maintenance/wing/port) -"cRg" = ( -/obj/structure/shuttle/engine/propulsion/burst/right{ - dir = 4 +/obj/item/device/radio/sci{ + pixel_y = 12; + pixel_x = 6 }, -/turf/simulated/floor/plating, -/area/shuttle/escape_pod/pod3) +/obj/item/device/radio/sci{ + pixel_y = 12; + pixel_x = 6 + }, +/obj/item/device/radio/sci{ + pixel_y = 12; + pixel_x = 6 + }, +/obj/item/device/radio/sci{ + pixel_y = 12; + pixel_x = 6 + }, +/obj/item/device/radio/sci{ + pixel_y = 12; + pixel_x = -6 + }, +/obj/item/device/radio/sci{ + pixel_y = 12; + pixel_x = -6 + }, +/obj/item/device/radio/sci{ + pixel_y = 12; + pixel_x = -6 + }, +/obj/item/device/radio/sci{ + pixel_y = 12; + pixel_x = -6 + }, +/obj/item/stack/material/steel/full, +/obj/item/stack/material/steel/full, +/obj/item/stack/material/steel/full, +/obj/item/stack/rods/full, +/obj/item/stack/rods/full, +/obj/item/storage/toolbox/mechanical, +/turf/simulated/floor/tiled/white, +/area/horizon/storage/eva/expedition) "cRi" = ( /obj/structure/bed/stool/padded/brown, /turf/simulated/floor/lino, /area/merchant_station) -"cRn" = ( +"cRj" = ( +/obj/effect/floor_decal/industrial/warning/cee, +/obj/structure/ship_weapon_dummy/barrel, +/turf/simulated/floor/reinforced, +/area/horizon/shuttle/canary) +"cRl" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, /obj/effect/floor_decal/corner/dark_green{ - dir = 10 + dir = 5 }, -/obj/effect/floor_decal/spline/plain, -/obj/structure/table/reinforced, -/obj/machinery/button/remote/blast_door{ - id = "shutters_deck2_hydroponicsdesk"; - name = "Desk Shutters"; - pixel_y = 8; - pixel_x = 6 - }, -/obj/machinery/button/remote/blast_door{ - id = "shutters_deck2_hydroponicswindows"; - name = "Window Shutters"; - pixel_y = 8; - pixel_x = -7 +/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/horizon/hydroponics) -"cRo" = ( -/obj/effect/floor_decal/corner_wide/green{ - dir = 9 - }, -/obj/structure/table/standard, -/obj/item/storage/box/masks{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/storage/box/gloves, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/medical/gen_treatment) -"cRp" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/engineering) +/area/horizon/hangar/auxiliary) "cRs" = ( /obj/effect/landmark/start{ name = "wizard" }, /turf/unsimulated/floor/blue_circuit, /area/antag/wizard) -"cRt" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" +"cRv" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"cRx" = ( -/obj/structure/table/standard, -/obj/machinery/chemical_dispenser/bar_soft/full{ +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor, +/area/horizon/maintenance/deck_3/aft/starboard/far) +"cRy" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 10 + }, +/obj/item/device/radio/intercom/south, +/obj/machinery/camera/network/second_deck{ + c_tag = "Second Deck - Auxiliary Custodial Closet Entrance"; + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/horizon/operations/lobby) +"cRz" = ( +/obj/machinery/conveyor{ dir = 8; - pixel_y = 4; - pixel_x = 3 + id = "warehousetomail" }, -/obj/machinery/light{ +/obj/machinery/door/firedoor, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/structure/plasticflaps{ + dir = 4; + name = "Delivery Chute to Mail Room" + }, +/turf/simulated/floor/tiled, +/area/horizon/operations/warehouse) +"cRC" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 6 + }, +/obj/structure/bed/stool/chair/padded/red{ dir = 4 }, -/turf/simulated/floor/tiled/full, -/area/bridge/cciaroom) -"cRA" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/cable/green{ - icon_state = "2-4" - }, -/obj/effect/floor_decal/corner/dark_green/full{ +/turf/simulated/floor/wood, +/area/horizon/hallway/primary/deck_2/fore) +"cRD" = ( +/obj/machinery/newscaster/east, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 }, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_two/fore) -"cRP" = ( -/obj/structure/cable/green{ - icon_state = "4-8" +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 }, -/obj/effect/floor_decal/corner/yellow, +/turf/simulated/floor/wood, +/area/horizon/crew/lounge) +"cRG" = ( +/obj/structure/closet/secure_closet/machinist, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/operations/machinist/surgicalbay) +"cRO" = ( +/obj/effect/floor_decal/corner/red/diagonal, +/obj/structure/closet/walllocker/firecloset{ + pixel_y = 32 + }, +/obj/effect/floor_decal/industrial/hatch/red, /turf/simulated/floor/tiled, -/area/engineering/storage_eva) +/area/horizon/maintenance/deck_2/wing/port) "cRR" = ( /obj/structure/table/reinforced/wood, /obj/item/reagent_containers/food/condiment/shaker/salt{ @@ -20612,36 +20073,42 @@ }, /turf/unsimulated/floor/wood, /area/centcom/bar) +"cRW" = ( +/obj/machinery/light/small{ + 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/structure/lattice/catwalk/indoor, +/turf/simulated/floor/plating, +/area/horizon/shuttle/mining) "cRX" = ( /obj/machinery/computer/security/nuclear, /turf/simulated/floor/tiled/dark/full, /area/shuttle/syndicate_elite) -"cSa" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ +"cSc" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/obj/effect/map_effect/marker/airlock{ - frequency = 2001; - master_tag = "airlock_horizon_deck_2_starboard_aft"; - name = "airlock_horizon_deck_2_starboard_aft" +/obj/effect/floor_decal/corner/dark_blue{ + dir = 6 }, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard) -"cSb" = ( -/obj/random/loot, -/obj/structure/table/rack, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard) -"cSf" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 10 - }, -/obj/structure/extinguisher_cabinet/south, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/central) +/turf/simulated/floor/tiled/dark, +/area/horizon/storage/eva) +"cSi" = ( +/obj/structure/table/standard, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/gravity_gen) "cSk" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/simple/hidden{ @@ -20650,6 +20117,22 @@ /obj/structure/lattice/catwalk/indoor/grate/dark, /turf/simulated/floor/plating, /area/shuttle/skipjack) +"cSl" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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/horizon/operations/lobby) "cSm" = ( /obj/structure/window/shuttle/unique/mercenary/small{ icon_state = "3,13"; @@ -20668,74 +20151,71 @@ icon_state = "wood" }, /area/centcom/legion/hangar5) -"cSo" = ( -/obj/machinery/atmospherics/binary/pump/fuel{ - max_pressure_setting = 5000; - name = "Phoron Pump"; - req_one_access = list(26,29,31,48,67,24,47,73) +"cSv" = ( +/obj/machinery/light/small{ + dir = 1 }, -/obj/effect/floor_decal/corner/black/full, -/obj/effect/floor_decal/industrial/warning{ - dir = 10 - }, -/obj/machinery/light/spot{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hangar/intrepid) -"cSp" = ( -/obj/structure/girder, -/turf/simulated/floor/plating, -/area/maintenance/wing/port) -"cSq" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/firealarm/west, -/obj/effect/floor_decal/corner/dark_green/full{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/assembly/chargebay) -"cSs" = ( -/obj/effect/floor_decal/corner/mauve{ - dir = 10 - }, -/obj/machinery/light, -/turf/simulated/floor/tiled, -/area/rnd/hallway) -"cSt" = ( /obj/structure/cable{ + icon_state = "2-4" + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/substation/engineering) +"cSx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/structure/cable/green{ d1 = 1; d2 = 2; icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/engineering/storage/lower) -"cSw" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/effect/floor_decal/corner/purple{ - dir = 9 - }, -/obj/item/modular_computer/telescreen/preset/trashcompactor{ - pixel_x = -32 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/green{ +/obj/effect/floor_decal/industrial/hatch/red, +/obj/effect/floor_decal/industrial/warning/corner{ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/horizon/custodial/disposals) +/area/horizon/command/bridge/selfdestruct) "cSA" = ( /obj/item/material/shard, /turf/unsimulated/floor, /area/antag/raider) +"cSD" = ( +/obj/machinery/button/remote/blast_door{ + id = "seconddeckdockint"; + name = "Interior Checkpoint Shutters"; + pixel_x = 5; + pixel_y = 7 + }, +/obj/machinery/button/remote/blast_door{ + id = "seconddeckdockext"; + name = "Exterior Checkpoint Shutters"; + pixel_x = 5; + pixel_y = -2 + }, +/obj/effect/floor_decal/corner/dark_blue{ + dir = 6 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/structure/table/steel, +/obj/machinery/button/remote/blast_door{ + id = "seconddeckdocksaf"; + name = "Checkpoint Safety Shutters"; + pixel_x = -5; + pixel_y = 7 + }, +/obj/machinery/button/remote/blast_door{ + id = "seconddeckdockdesk"; + name = "Checkpoint Desk Shutter"; + pixel_x = -5; + pixel_y = -2 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/security/checkpoint2) "cSE" = ( /obj/structure/shuttle_part/tcfl{ icon_state = "16,5" @@ -20755,6 +20235,15 @@ }, /turf/simulated/floor/tiled/dark/full, /area/shuttle/mercenary) +"cSH" = ( +/obj/effect/floor_decal/corner/purple{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/red{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/service/custodial/disposals/deck_1) "cSI" = ( /obj/effect/floor_decal/corner/grey{ dir = 6 @@ -20764,174 +20253,58 @@ }, /turf/unsimulated/floor/dark, /area/antag/actor) -"cSJ" = ( -/obj/structure/platform/ledge{ - dir = 8 +"cSK" = ( +/obj/machinery/door/blast/shutters/open{ + dir = 2; + id = "shutters_deck2_hydroponicswindows"; + name = "Window Shutter" }, -/obj/structure/platform/ledge{ - dir = 1 +/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/service/hydroponics) +"cSN" = ( +/obj/structure/cable/yellow{ + icon_state = "1-8" }, -/obj/structure/platform_deco/ledge{ - dir = 6 - }, -/turf/simulated/open, -/area/horizon/hallway/deck_three/primary/central) -"cSM" = ( -/obj/effect/floor_decal/corner/mauve{ - dir = 6 - }, -/obj/machinery/button/remote/blast_door{ - dir = 4; - id = "xenobio_c"; - name = "Cell Containment Blast Doors"; - pixel_x = 21; - req_access = list(47) - }, -/obj/structure/sink{ - dir = 4; - pixel_x = 12 - }, -/obj/effect/floor_decal/industrial/outline_corner/security{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology) -"cSO" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 10 - }, -/obj/machinery/power/apc/south{ - is_critical = 1 - }, -/obj/structure/cable/green, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_two) -"cSP" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 5 - }, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/corner/black{ - dir = 5 +/obj/structure/cable/yellow{ + icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/smes) +"cSY" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 9 + }, +/obj/machinery/alarm/west, /turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"cSQ" = ( -/obj/structure/disposalpipe/segment, +/area/horizon/operations/warehouse) +"cTb" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/starboard/nacelle) +"cTc" = ( /obj/structure/cable/green{ icon_state = "1-2" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/corner/dark_green{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/hangar/intrepid) -"cSR" = ( -/obj/machinery/atmospherics/pipe/simple/visible/black, -/obj/effect/floor_decal/corner/yellow, -/turf/simulated/floor/tiled/dark, -/area/engineering/engine_waste) -"cSZ" = ( -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/warning{ +/obj/effect/floor_decal/corner_wide/green{ dir = 10 }, -/turf/simulated/floor/plating, -/area/maintenance/engineering) -"cTa" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor, -/area/horizon/maintenance/deck_three/aft/starboard) -"cTg" = ( -/obj/effect/floor_decal/corner_wide/paleblue{ - dir = 10 - }, -/obj/machinery/computer/operating, /turf/simulated/floor/tiled/white, -/area/medical/ors) -"cTj" = ( -/turf/simulated/floor/tiled/dark, -/area/maintenance/research_port) -"cTk" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/effect/floor_decal/corner_wide/yellow/diagonal, -/obj/machinery/light_switch{ - dir = 1; - pixel_y = 26 - }, -/turf/simulated/floor/tiled, -/area/engineering/bluespace_drive) -"cTm" = ( -/obj/machinery/portable_atmospherics/canister/air/airlock, -/obj/machinery/atmospherics/portables_connector{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, +/area/horizon/medical/ward) +"cTn" = ( +/obj/structure/bed/stool, /turf/simulated/floor/plating, -/area/maintenance/research_port) -"cTo" = ( -/obj/item/modular_computer/console/preset/command/account, -/obj/machinery/requests_console/north{ - announcementConsole = 1; - department = "Executive Officer's Desk"; - departmentType = 5; - name = "Executive Officer RC"; - pixel_y = 32 - }, -/turf/simulated/floor/carpet, -/area/crew_quarters/heads/hop/xo) +/area/horizon/maintenance/deck_2/wing/starboard) "cTp" = ( /obj/effect/floor_decal/spline/plain{ dir = 1 }, /turf/simulated/floor/exoplanet/barren, /area/centcom/shared_dream) -"cTs" = ( -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/turf/simulated/floor/tiled/dark, -/area/engineering/gravity_gen) -"cTB" = ( -/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/structure/cable/green{ - icon_state = "2-8" - }, -/obj/machinery/bluespace_beacon, -/obj/structure/lattice/catwalk/indoor/grate, -/turf/simulated/floor/plating, -/area/hallway/primary/central_one) "cTH" = ( /obj/structure/closet{ icon_door = "blue"; @@ -21009,102 +20382,125 @@ /obj/item/clothing/head/beret/corporate/idris, /turf/unsimulated/floor, /area/antag/mercenary) -"cTL" = ( -/obj/machinery/porta_turret/stationary, -/obj/effect/floor_decal/industrial/warning/full, -/obj/machinery/camera/motion{ - c_tag = "Scuttling Device"; - network = list("Command","Security") +"cTK" = ( +/obj/machinery/atmospherics/valve{ + dir = 8 }, -/turf/simulated/floor/reinforced, -/area/bridge/selfdestruct) +/obj/effect/floor_decal/corner/lime{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/horizon/rnd/xenobiology/xenoflora) +"cTO" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/corner/mauve{ + dir = 5 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/horizon/rnd/hallway) "cTS" = ( /obj/effect/floor_decal/industrial/warning, /turf/simulated/floor/tiled/dark, /area/supply/dock) -"cTT" = ( -/obj/structure/bed/stool/chair/padded/beige{ - dir = 1 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/carpet, -/area/crew_quarters/captain) -"cTY" = ( +"cTW" = ( +/obj/structure/table/reinforced, /obj/machinery/door/firedoor, -/obj/machinery/door/blast/shutters/open{ - dir = 2; - id = "lounge_window_shutters"; - name = "Lounge Window Shutter" +/obj/structure/window/borosilicate/reinforced, +/obj/structure/window/borosilicate/reinforced{ + dir = 4 }, -/obj/structure/grille, -/obj/structure/window/shuttle/scc_space_ship/cardinal, -/turf/simulated/floor/plating, -/area/horizon/crew_quarters/lounge/bar) +/obj/item/clothing/glasses/safety/goggles, +/turf/simulated/floor/reinforced, +/area/horizon/rnd/test_range) +"cUf" = ( +/obj/effect/floor_decal/corner/grey/diagonal, +/turf/simulated/floor/tiled/white, +/area/horizon/shuttle/intrepid/buffet) "cUg" = ( /obj/effect/floor_decal/corner/red/full{ dir = 1 }, /turf/simulated/floor/holofloor/tiled, /area/horizon/holodeck/source_thunderdomecourt) -"cUz" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 5 +"cUh" = ( +/obj/effect/floor_decal/industrial/outline/grey, +/obj/structure/table/steel, +/obj/item/stack/material/glass/full{ + pixel_x = -1; + pixel_y = 6 }, -/obj/machinery/firealarm/north, -/obj/structure/sign/directions/security{ - dir = 1; - pixel_y = 41 +/obj/item/stack/rods/full{ + pixel_y = 2; + pixel_x = 7 }, -/obj/machinery/light/floor{ +/turf/simulated/floor/plating, +/area/horizon/hangar/intrepid) +"cUo" = ( +/obj/effect/floor_decal/corner_wide/lime{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/reception) +"cUq" = ( +/obj/effect/floor_decal/industrial/loading/yellow{ dir = 1 }, +/obj/effect/landmark/start{ + name = "Cyborg" + }, +/obj/effect/floor_decal/spline/plain/cee{ + dir = 1 + }, +/turf/simulated/floor/carpet/rubber, +/area/horizon/crew/chargebay) +"cUv" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 10 + }, /turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/port) -"cUB" = ( -/obj/structure/railing/mapped{ - dir = 8 +/area/horizon/hangar/operations) +"cUw" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/effect/floor_decal/corner_wide/yellow{ + dir = 5 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/dark, -/area/horizon/stairwell/bridge) -"cUC" = ( -/obj/structure/table/rack, -/obj/random/loot, +/turf/simulated/floor/tiled, +/area/horizon/engineering/bluespace_drive) +"cUG" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 10 + }, +/turf/simulated/floor/plating, +/area/horizon/engineering/atmos/air) +"cUH" = ( /obj/effect/floor_decal/industrial/warning{ - dir = 1 + dir = 10 }, -/turf/simulated/floor, -/area/horizon/maintenance/deck_three/aft/starboard) -"cUF" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - dir = 4 - }, -/obj/machinery/door/firedoor{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/wing/port/far) -"cUI" = ( -/obj/structure/table/standard, -/obj/effect/floor_decal/corner/mauve/full{ - dir = 8 - }, -/obj/item/tape_roll{ - pixel_y = 10 - }, -/obj/item/device/paicard, -/turf/simulated/floor/tiled/white, -/area/rnd/lab) -"cUJ" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/cyan, -/obj/machinery/meter, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/engineering/atmos/air) +/turf/simulated/floor/tiled/dark, +/area/horizon/maintenance/deck_2/wing/port/nacelle) "cUM" = ( /obj/machinery/door/airlock/glass_security{ autoclose = 0; @@ -21127,27 +20523,68 @@ }, /turf/simulated/floor/tiled/full, /area/horizon/security/brig) -"cVd" = ( -/obj/effect/floor_decal/corner/dark_blue{ +"cUW" = ( +/obj/effect/floor_decal/corner_wide/purple{ dir = 10 }, +/obj/effect/floor_decal/corner_wide/purple{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 4 + }, /obj/structure/cable/green{ icon_state = "4-8" }, -/turf/simulated/floor/tiled/dark, -/area/bridge/aibunker) -"cVi" = ( -/turf/simulated/wall/r_wall, -/area/bridge/supply) -"cVj" = ( -/obj/structure/cable/green{ - icon_state = "4-8" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/effect/floor_decal/industrial/warning{ +/obj/structure/platform{ dir = 1 }, +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/xenoarch/atrium) +"cUY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/bed/handrail{ + dir = 8 + }, +/obj/machinery/power/apc/east{ + req_access = null; + req_one_access = list(11, 24, 47, 65) + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, /turf/simulated/floor/tiled/dark/full, -/area/engineering/bluespace_drive) +/area/horizon/shuttle/intrepid/starboard_compartment) +"cVc" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/obj/structure/platform_stairs/full/east_west_cap/half{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/main/port) +"cVg" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 10 + }, +/obj/machinery/alarm/south, +/obj/machinery/light, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_3/port) "cVl" = ( /obj/machinery/door/airlock/centcom{ name = "Arrival Hangar Maintenance"; @@ -21155,45 +20592,75 @@ }, /turf/unsimulated/floor/plating, /area/centcom/holding) -"cVA" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/full, -/area/operations/office_aux) -"cVC" = ( -/obj/machinery/door/firedoor, +"cVn" = ( /obj/structure/cable/green{ - icon_state = "1-2" + icon_state = "1-4" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/machinery/door/airlock/maintenance{ +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ dir = 1; - req_one_access = list(5,12) + icon_state = "pipe-c" }, -/turf/simulated/floor, -/area/horizon/maintenance/deck_three/aft/starboard) -"cVG" = ( -/obj/effect/floor_decal/corner/mauve{ +/turf/simulated/floor/tiled/white, +/area/horizon/medical/surgery) +"cVs" = ( +/obj/effect/floor_decal/industrial/warning/corner, +/turf/simulated/floor/reinforced/airless, +/area/horizon/engineering/reactor/indra/mainchamber) +"cVv" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/light, +/obj/effect/floor_decal/corner/dark_green{ dir = 10 }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_3/central) +"cVw" = ( +/obj/machinery/computer/general_air_control/large_tank_control/terminal{ + sensors = list("starboard_prop_sensor"="Starboard Propulsion Sensor"); + output_tag = "starboard_prop_out"; + frequency = 1442; + name = "Starboard Propulsion Control Console"; + input_tag = "starboard_prop_in" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/purple{ + dir = 10 + }, +/obj/effect/floor_decal/industrial/outline/emergency_closet, +/obj/structure/sign/nosmoking_1{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/atmos/propulsion) +"cVx" = ( +/obj/structure/shuttle/engine/propulsion/burst/right{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/horizon/shuttle/escape_pod/pod3) +"cVN" = ( +/obj/machinery/newscaster/east, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, /obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1; - level = 2 + dir = 8 }, -/turf/simulated/floor/tiled, -/area/rnd/hallway) -"cVM" = ( -/obj/machinery/alarm/north, -/obj/effect/floor_decal/corner/brown{ - dir = 5 - }, -/obj/random/pottedplant, -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled, -/area/operations/office) +/turf/simulated/floor/wood, +/area/horizon/crew/lounge) "cVO" = ( /obj/structure/window/reinforced/crescent{ dir = 8 @@ -21212,51 +20679,43 @@ }, /turf/unsimulated/floor/wood, /area/antag/burglar) -"cWa" = ( -/obj/structure/window/shuttle/unique/scc/mining, -/obj/machinery/door/firedoor, +"cVW" = ( +/obj/structure/closet/secure_closet/engineering_welding, /turf/simulated/floor/plating, -/area/shuttle/mining) +/area/horizon/engineering/storage/lower) +"cVX" = ( +/obj/structure/table/standard, +/obj/item/modular_computer/laptop/preset/engineering/ce{ + pixel_y = 3 + }, +/obj/item/storage/slide_projector{ + pixel_y = 12 + }, +/turf/simulated/floor/wood, +/area/horizon/command/heads/chief) "cWe" = ( /obj/structure/bed/stool/chair/office/bridge/pilot, /turf/simulated/floor/shuttle/dark_red, /area/shuttle/hapt) -"cWk" = ( -/obj/effect/floor_decal/corner_wide/purple{ - dir = 9 - }, -/obj/effect/floor_decal/corner_wide/purple{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/visible/yellow, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenoarch_atrium) -"cWo" = ( -/obj/effect/floor_decal/corner_wide/purple, -/obj/effect/floor_decal/corner_wide/purple{ - dir = 4 - }, -/obj/effect/floor_decal/corner_wide/purple{ +"cWf" = ( +/turf/simulated/floor/tiled/dark, +/area/horizon/hangar/auxiliary) +"cWg" = ( +/obj/structure/platform{ dir = 8 }, -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 5 - }, -/obj/structure/disposalpipe/segment{ +/obj/effect/floor_decal/corner/mauve/full{ dir = 4 }, -/obj/structure/platform_deco, -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/obj/structure/cable/green{ - icon_state = "2-4" - }, /turf/simulated/floor/tiled/white, -/area/rnd/xenoarch_atrium) +/area/horizon/rnd/lab) +"cWh" = ( +/obj/effect/floor_decal/corner_wide/paleblue{ + dir = 10 + }, +/obj/machinery/computer/operating, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/surgery) "cWp" = ( /obj/structure/closet/secure_closet/guncabinet{ name = "legion weapon cabinet"; @@ -21272,6 +20731,34 @@ /obj/item/gun/projectile/gauss, /turf/unsimulated/floor, /area/centcom/legion) +"cWq" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/tank_wall/phoron{ + icon_state = "ph2" + }, +/obj/machinery/atmospherics/pipe/simple/visible/purple, +/turf/simulated/floor/airless, +/area/horizon/engineering/atmos) +"cWr" = ( +/obj/effect/floor_decal/corner/green/diagonal, +/obj/structure/toilet{ + dir = 1; + pixel_y = -1 + }, +/obj/machinery/button/remote/airlock{ + dir = 8; + id = "central_stall_1"; + name = "Stall Door Lock"; + pixel_x = -24; + specialfunctions = 4 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/crew/washroom/deck_2) "cWv" = ( /obj/machinery/door/blast/regular/open{ dir = 4; @@ -21280,29 +20767,29 @@ }, /turf/unsimulated/floor, /area/centcom/legion) -"cWw" = ( -/obj/machinery/newscaster/north, -/obj/effect/floor_decal/spline/plain{ +"cWx" = ( +/turf/simulated/floor/plating, +/area/horizon/engineering/reactor/supermatter/mainchamber) +"cWz" = ( +/obj/effect/landmark/entry_point/port{ + name = "port, ballast fore" + }, +/turf/simulated/wall/shuttle/scc_space_ship/cardinal, +/area/horizon/maintenance/deck_2/wing/starboard/nacelle) +"cWD" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12 + }, +/obj/structure/mirror{ + pixel_x = -28 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 }, -/obj/structure/engineer_maintenance/electric{ - dir = 8 - }, -/obj/structure/engineer_maintenance/electric{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/hallway/primary/central_one) -"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) +/obj/effect/floor_decal/corner/blue/diagonal, +/turf/simulated/floor/tiled/white, +/area/horizon/command/bridge/supply) "cWF" = ( /obj/machinery/shower{ pixel_y = 20 @@ -21341,58 +20828,116 @@ }, /turf/simulated/floor/tiled, /area/horizon/security/equipment) -"cWX" = ( -/obj/effect/floor_decal/corner_wide/black{ - dir = 9 +"cWK" = ( +/obj/machinery/alarm/east{ + req_one_access = list(11, 24, 47, 65) }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 +/obj/machinery/light/small{ + dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/visible/black{ - dir = 9 +/obj/structure/table/reinforced/steel, +/obj/machinery/recharger{ + pixel_x = 6 + }, +/obj/machinery/recharger{ + pixel_x = -5 + }, +/obj/item/storage/toolbox/mechanical{ + pixel_x = 6; + pixel_y = 14 + }, +/obj/item/device/binoculars{ + pixel_x = -4; + pixel_y = 10 + }, +/obj/effect/floor_decal/corner/dark_blue/diagonal, +/obj/effect/floor_decal/spline/plain/black{ + dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/engineering/atmos/propulsion/starboard) -"cXh" = ( -/obj/structure/filingcabinet/chestdrawer{ - pixel_x = 8 +/area/horizon/shuttle/intrepid/junction_compartment) +"cWM" = ( +/obj/machinery/door/airlock/external, +/obj/effect/floor_decal/industrial/hatch/red, +/obj/effect/floor_decal/industrial/warning/cee{ + dir = 8 }, -/obj/structure/filingcabinet{ - pixel_x = -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 }, -/turf/simulated/floor/carpet, -/area/lawoffice/consular) -"cXl" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/aux, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/effect/map_effect/marker_helper/airlock/interior, /turf/simulated/floor/plating, -/area/maintenance/engineering) -"cXn" = ( -/obj/effect/map_effect/window_spawner/full/reinforced/polarized/grille/firedoor{ - id = "XO" +/area/horizon/shuttle/quark/cargo_hold) +"cWS" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/visible/green, +/obj/structure/window/shuttle/scc_space_ship/cardinal, +/turf/simulated/floor/plating, +/area/horizon/engineering/atmos/turbine) +"cWV" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/corner/red/diagonal, +/obj/effect/floor_decal/spline/plain{ + dir = 8 }, -/obj/structure/cable/green{ - icon_state = "0-8" +/turf/simulated/floor/lino, +/area/horizon/service/cafeteria) +"cWY" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/maintenance/deck_2/wing/port/nacelle) +"cXa" = ( +/obj/structure/noticeboard, +/turf/simulated/wall/r_wall, +/area/horizon/repoffice/consular_two) +"cXe" = ( +/obj/effect/floor_decal/spline/plain/green{ + dir = 1 + }, +/obj/effect/floor_decal/spline/plain/blue, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/horizon/service/hydroponics/lower) +"cXf" = ( +/obj/structure/platform{ + dir = 1 }, -/turf/simulated/floor, -/area/crew_quarters/heads/hop/xo) -"cXq" = ( -/obj/structure/table/standard, -/obj/item/paper_bin, -/obj/item/pen, /obj/structure/railing/mapped, -/turf/simulated/floor/tiled/white, -/area/hallway/medical) +/turf/simulated/floor/tiled, +/area/horizon/operations/machinist/surgicalbay) +"cXo" = ( +/obj/machinery/portable_atmospherics/powered/pump/filled, +/obj/effect/floor_decal/industrial/outline/grey, +/turf/simulated/floor/plating, +/area/horizon/hangar/auxiliary) +"cXx" = ( +/obj/structure/railing/mapped, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/tiled/ramp/bottom{ + dir = 8 + }, +/area/horizon/maintenance/deck_1/wing/starboard) +"cXB" = ( +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/machinery/computer/ship/navigation{ + dir = 1 + }, +/obj/structure/railing/mapped, +/turf/simulated/floor/tiled/dark, +/area/horizon/command/bridge/aibunker) "cXC" = ( /obj/machinery/cryopod{ dir = 4 @@ -21405,6 +20950,18 @@ }, /turf/simulated/floor/holofloor/tiled, /area/template_noop) +"cXF" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/wing/starboard/far) +"cXG" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/effect/floor_decal/spline/plain{ + dir = 1 + }, +/obj/machinery/vending/mredispenser, +/turf/simulated/floor/tiled/dark, +/area/horizon/hallway/primary/deck_2/central) "cXM" = ( /obj/machinery/light{ dir = 8 @@ -21418,33 +20975,21 @@ /obj/item/device/radio/intercom/west, /turf/simulated/floor/tiled, /area/horizon/security/brig) -"cXO" = ( +"cXS" = ( /obj/effect/floor_decal/industrial/warning{ - dir = 5 - }, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/engine_room/rust) -"cXX" = ( -/obj/machinery/camera/network/third_deck{ - c_tag = "Third Deck - Starboard Dock Starboard"; - dir = 1 - }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ dir = 4 }, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/starboard/docks) -"cYa" = ( -/obj/machinery/portable_atmospherics/hydroponics, -/obj/machinery/atmospherics/portables_connector{ - dir = 1 +/obj/structure/cable/yellow{ + icon_state = "4-8" }, -/obj/machinery/alarm/south, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology/xenoflora) +/turf/simulated/floor/reinforced/airless, +/area/horizon/engineering/reactor/indra/mainchamber) +"cXW" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/black{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/horizon/engineering/reactor/supermatter/mainchamber) "cYb" = ( /obj/effect/floor_decal/spline/plain/cee{ dir = 8 @@ -21461,30 +21006,6 @@ }, /turf/space/dynamic, /area/horizon/exterior) -"cYe" = ( -/obj/machinery/embedded_controller/radio/airlock/airlock_controller{ - dir = 8; - pixel_x = 20 - }, -/obj/effect/map_effect/marker/airlock{ - frequency = 2005; - master_tag = "airlock_horizon_deck_2_aft_sm"; - name = "airlock_horizon_deck_2_aft_sm" - }, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"cYf" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/visible/universal{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/engineering/engine_room/turbine) "cYg" = ( /obj/structure/table/reinforced/steel, /obj/item/paper_bin, @@ -21494,71 +21015,21 @@ icon_state = "dark_preview" }, /area/centcom/control) -"cYi" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard/far) -"cYl" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/structure/disposalpipe/junction{ - dir = 4; - icon_state = "pipe-j2" - }, -/turf/simulated/floor/tiled/white, -/area/hallway/medical/upper) -"cYn" = ( -/obj/structure/railing/mapped, -/turf/simulated/open, -/area/engineering/break_room) -"cYq" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 9 - }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/button/remote/blast_door{ - dir = 8; - id = "holodeck_beta_shutters"; - name = "Holodeck Privacy Shutters"; - pixel_x = -23; - req_one_access = list(38) - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/central) -"cYr" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/item/bedsheet/mime, -/obj/structure/bed/padded, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/carpet, -/area/horizon/bar/backroom) -"cYs" = ( -/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, +"cYm" = ( +/obj/machinery/alarm/north, +/obj/machinery/suit_cycler/engineering/prepared/atmos, +/obj/effect/floor_decal/industrial/outline/firefighting_closet, /turf/simulated/floor/tiled/dark/full, -/area/horizon/custodial/disposals) +/area/horizon/storage/eva) +"cYo" = ( +/obj/machinery/door/airlock/service{ + dir = 1; + name = "Auxiliary Custodial Closet"; + req_access = list(26) + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/full, +/area/horizon/service/custodial/auxiliary) "cYv" = ( /obj/machinery/door/airlock/glass_security{ name = "Security Disarmament Point"; @@ -21568,18 +21039,6 @@ icon_state = "dark_preview" }, /area/centcom/holding) -"cYz" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor, -/area/maintenance/engineering_ladder) "cYA" = ( /obj/structure/sign/flag/nanotrasen/large/north, /obj/structure/bed/stool/chair/office/dark{ @@ -21587,78 +21046,131 @@ }, /turf/unsimulated/floor/wood, /area/centcom/specops) -"cYC" = ( -/obj/random/dirt_75, -/obj/random/dirt_75, -/turf/simulated/floor, -/area/maintenance/security_port) -"cYE" = ( -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/full, -/area/hallway/primary/central_two) -"cYR" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 10 +"cYI" = ( +/obj/structure/shuttle_part/scc/mining{ + icon_state = "1,3" }, -/turf/simulated/floor/tiled/dark, -/area/maintenance/wing/port/far) -"cYS" = ( -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/manifold/visible/yellow, -/obj/effect/floor_decal/corner/yellow{ - dir = 1 - }, -/obj/effect/floor_decal/corner/dark_blue{ +/turf/simulated/floor/plating, +/area/horizon/shuttle/mining) +"cYM" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/security_port) +"cYN" = ( +/obj/effect/floor_decal/corner/dark_blue/full{ dir = 8 }, -/obj/machinery/meter, -/turf/simulated/floor/tiled/dark, -/area/engineering/atmos) -"cZh" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 5 +/obj/machinery/light{ + dir = 8 }, -/obj/machinery/door/airlock/external, -/obj/effect/map_effect/marker/airlock/docking{ - landmark_tag = "nav_horizon_dock_deck_3_port_2"; - master_tag = "airlock_horizon_dock_deck_3_port_2"; - name = "airlock_horizon_dock_deck_3_port_2" +/turf/simulated/floor/tiled, +/area/horizon/command/bridge/supply) +"cYU" = ( +/obj/structure/platform, +/obj/machinery/papershredder{ + pixel_x = 7 }, -/obj/effect/map_effect/marker_helper/airlock/interior, -/turf/simulated/floor/plating, -/area/horizon/hallway/deck_three/primary/port/docks) -"cZi" = ( +/obj/structure/filingcabinet/filingcabinet{ + pixel_x = -7 + }, +/turf/simulated/floor/wood, +/area/horizon/command/heads/rd) +"cYV" = ( +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_2/starboard) +"cZe" = ( +/turf/simulated/floor/tiled, +/area/horizon/hangar/auxiliary) +"cZf" = ( /obj/structure/cable{ icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/aux, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel, -/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/structure/platform_stairs/south_north_solo, /turf/simulated/floor/plating, -/area/maintenance/engineering) +/area/horizon/maintenance/deck_1/main/starboard) +"cZg" = ( +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/horizon/operations/lobby) "cZj" = ( /obj/structure/railing/mapped{ dir = 4 }, /turf/simulated/floor/reinforced/airless, -/area/template_noop) -"cZs" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ +/area/horizon/exterior) +"cZk" = ( +/obj/machinery/disposal/small/north, +/obj/structure/disposalpipe/trunk{ dir = 8 }, -/obj/effect/floor_decal/corner/dark_blue{ +/obj/structure/sign/flag/idris{ + pixel_y = -32 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/spline/fancy/wood{ dir = 6 }, -/obj/structure/closet/secure_closet/bridge_crew, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled, -/area/bridge/bridge_crew) +/turf/simulated/floor/wood, +/area/horizon/service/cafeteria) +"cZl" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/engineering{ + dir = 4; + name = "Deck 1, 2, and 3 Medical Substation"; + req_one_access = list(11,24) + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/substation/medical) +"cZq" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 6 + }, +/obj/machinery/button/remote/blast_door{ + dir = 9; + id = "conferencesafetyshutters"; + name = "Conference Room Shutters"; + pixel_x = -26; + pixel_y = 8; + req_access = list(19) + }, +/obj/machinery/light_switch{ + dir = 5; + pixel_x = -26 + }, +/turf/simulated/floor/carpet, +/area/horizon/command/bridge/meeting_room) +"cZt" = ( +/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/horizon/hangar/auxiliary) "cZv" = ( /obj/structure/table/reinforced/steel, /obj/item/reagent_containers/food/drinks/waterbottle{ @@ -21696,9 +21208,6 @@ /obj/effect/floor_decal/corner/black/diagonal, /turf/simulated/floor/tiled/dark, /area/shuttle/burglar) -"cZw" = ( -/turf/simulated/floor/tiled/dark, -/area/storage/eva) "cZE" = ( /obj/machinery/door/airlock/external{ close_sound_powered = 'sound/machines/airlock_close_force.ogg'; @@ -21710,35 +21219,109 @@ }, /turf/unsimulated/floor, /area/antag/raider) -"cZG" = ( -/obj/structure/cable{ - icon_state = "1-2" +"cZR" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 8 + }, +/obj/machinery/embedded_controller/radio/airlock/airlock_controller{ + pixel_y = 28 + }, +/obj/effect/map_effect/marker/airlock{ + frequency = 1004; + master_tag = "airlock_horizon_deck_1_fore_1"; + name = "airlock_horizon_deck_1_fore_1" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/firedoor, -/obj/structure/lattice/catwalk/indoor/grate/dark, /turf/simulated/floor/plating, -/area/maintenance/wing/starboard/deck1) -"cZI" = ( -/obj/structure/table/wood, -/obj/item/flame/candle{ - pixel_y = 16 +/area/horizon/maintenance/deck_1/hangar/starboard) +"cZT" = ( +/obj/machinery/door/firedoor{ + req_one_access = list(24,11,67,73) }, -/obj/item/reagent_containers/food/condiment/shaker/peppermill{ - pixel_x = 4; - pixel_y = 16 +/obj/structure/table/stone/marble, +/obj/item/device/radio{ + pixel_x = -8; + pixel_y = 5 }, -/obj/item/reagent_containers/food/condiment/shaker/salt{ - pixel_x = -6; - pixel_y = 16 +/obj/item/device/radio{ + pixel_x = -8; + pixel_y = 5 }, -/obj/machinery/power/outlet, -/turf/simulated/floor/wood/mahogany, -/area/horizon/crew_quarters/lounge/bar) -"dab" = ( -/turf/simulated/wall, -/area/maintenance/wing/starboard) +/obj/item/device/radio{ + pixel_x = -8; + pixel_y = 5 + }, +/obj/item/device/radio{ + pixel_x = -8; + pixel_y = 5 + }, +/obj/item/device/radio{ + pixel_x = -8; + pixel_y = 5 + }, +/obj/item/device/radio{ + pixel_x = -8; + pixel_y = 5 + }, +/obj/machinery/door/blast/shutters{ + id = "intrepid_buffet"; + name = "Buffet Desk Shutter" + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/shuttle/intrepid/buffet) +"cZU" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/corner/dark_green{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_3/port) +"cZX" = ( +/obj/machinery/power/smes/buildable/substation{ + RCon_tag = "Shield Substation"; + charge = 10000000; + cur_coils = 6; + input_attempt = 1; + input_level = 500000; + output_attempt = 1; + output_level = 500000 + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/structure/cable/cyan{ + icon_state = "0-2" + }, +/obj/effect/floor_decal/corner_wide/yellow{ + dir = 9 + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/shields) +"cZY" = ( +/obj/machinery/flasher{ + id = "AI"; + pixel_x = -30; + dir = 4; + pixel_y = 3 + }, +/turf/simulated/floor/bluegrid{ + name = "cooled mainframe floor"; + temperature = 278 + }, +/area/horizon/ai/chamber) +"cZZ" = ( +/obj/effect/floor_decal/corner_wide/purple{ + dir = 9 + }, +/obj/effect/floor_decal/corner_wide/purple/diagonal, +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/obj/machinery/power/apc/west, +/obj/structure/engineer_maintenance/electric{ + dir = 8 + }, +/obj/structure/engineer_maintenance/pipe, +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/test_range) "dad" = ( /obj/structure/shuttle_part/mercenary/small{ density = 0; @@ -21746,23 +21329,44 @@ }, /turf/unsimulated/floor/plating, /area/shuttle/syndicate_elite) -"dae" = ( -/obj/effect/floor_decal/industrial/warning{ +"dah" = ( +/obj/effect/landmark/entry_point/starboard{ + name = "starboard, ballast middle" + }, +/turf/simulated/wall/shuttle/scc_space_ship/cardinal, +/area/horizon/maintenance/deck_2/wing/port/nacelle) +"dai" = ( +/obj/effect/floor_decal/corner/mauve/full{ + dir = 1 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/chemistry) +"daj" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 }, -/obj/structure/tank_wall/air{ - icon_state = "air13" - }, -/turf/simulated/floor/plating, -/area/engineering/atmos/air) +/turf/simulated/floor/tiled/dark, +/area/horizon/shuttle/intrepid/main_compartment) "dam" = ( /obj/effect/floor_decal/corner/beige/full, /turf/simulated/floor/tiled/dark, /area/shuttle/merchant) -"dao" = ( -/obj/machinery/portable_atmospherics/canister/air/airlock, -/turf/simulated/floor/plating, -/area/engineering/rust_office) +"daq" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/corner/dark_green{ + dir = 9 + }, +/obj/machinery/firealarm/west, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_3/central) "das" = ( /obj/machinery/vending/generic_clothing, /turf/unsimulated/floor/monotile, @@ -21773,13 +21377,21 @@ }, /turf/space/dynamic, /area/horizon/exterior) -"daw" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" +"daF" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 5 }, -/obj/structure/cable/green{ - icon_state = "1-8" +/obj/machinery/disposal/small/south, +/obj/structure/disposalpipe/trunk, +/obj/machinery/camera/network/supply{ + c_tag = "Operations - Break Room" + }, +/turf/simulated/floor/tiled, +/area/horizon/operations/break_room) +"daI" = ( +/obj/item/device/radio/intercom/east, +/obj/effect/floor_decal/corner/black{ + dir = 6 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 9 @@ -21787,75 +21399,11 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 9 }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/maintenance/security_port) -"day" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 10 - }, -/turf/simulated/wall/shuttle/unique/scc/scout{ - icon_state = "6,6" - }, -/area/shuttle/canary) -"daD" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 6 - }, -/obj/structure/bed/handrail{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/shuttle/intrepid/port_compartment) -"daE" = ( -/obj/effect/floor_decal/corner_wide/black/full, -/obj/effect/floor_decal/industrial/warning{ - dir = 10 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/engineering/atmos/propulsion/starboard) -"daP" = ( -/obj/structure/cable/green{ - icon_state = "2-4" - }, -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/effect/floor_decal/corner/dark_green{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, /turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/central) -"daR" = ( -/turf/simulated/wall/r_wall, -/area/horizon/kitchen) -"daT" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/carpet, -/area/lawoffice/representative) +/area/horizon/operations/machinist) "daU" = ( /obj/machinery/porta_turret/cannon, /obj/effect/floor_decal/industrial/warning/full, @@ -21873,91 +21421,142 @@ }, /turf/simulated/floor/tiled/dark, /area/shuttle/hapt) +"dbb" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance{ + dir = 4; + name = "Engineering Locker Room Maintenance"; + req_access = list(11) + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/full, +/area/horizon/engineering/locker_room) "dbd" = ( /obj/effect/floor_decal/industrial/warning{ dir = 8 }, /turf/simulated/floor/reinforced/airless, /area/horizon/exterior) -"dbj" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 5 +"dbe" = ( +/obj/structure/closet/secure_closet/medical3, +/obj/effect/floor_decal/corner_wide/green/full, +/obj/machinery/light, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/equipment) +"dbh" = ( +/obj/machinery/light/small/emergency{ + dir = 4 }, -/obj/machinery/alarm/north, -/turf/simulated/floor/tiled, -/area/operations/lobby) +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/starboard/far) "dbl" = ( /obj/structure/flora/ausbushes/leafybush, /obj/effect/floor_decal/spline/plain, /turf/simulated/floor/exoplanet/grass, /area/centcom/shared_dream) -"dbq" = ( -/obj/effect/floor_decal/corner_wide/purple{ - dir = 5 +"dbp" = ( +/obj/effect/floor_decal/corner_wide/paleblue{ + dir = 9 }, -/obj/effect/floor_decal/corner_wide/purple{ - dir = 8 +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 }, -/obj/structure/cable/green{ - icon_state = "1-2" +/obj/structure/table/glass{ + table_reinf = "glass" + }, +/obj/item/paper_bin{ + pixel_y = 3 + }, +/obj/item/pen{ + pixel_y = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled/white, -/area/rnd/xenoarch_atrium) +/area/horizon/command/heads/cmo) +"dbr" = ( +/obj/machinery/atmospherics/unary/freezer{ + dir = 8; + icon_state = "freezer" + }, +/obj/effect/floor_decal/corner/yellow/full{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/reactor/supermatter/waste) "dbu" = ( /obj/effect/floor_decal/industrial/warning/corner{ dir = 1 }, /turf/simulated/floor/tiled/dark, /area/shuttle/mercenary) -"dbB" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 8 - }, -/obj/structure/platform_deco{ - dir = 1 +"dbx" = ( +/obj/random/pottedplant, +/obj/structure/platform{ + dir = 4 }, /turf/simulated/floor/wood, -/area/horizon/crew_quarters/lounge/bar) -"dbS" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/area/horizon/service/dining_hall) +"dbC" = ( +/obj/machinery/atmospherics/binary/circulator{ + anchored = 1; + dir = 1 + }, +/turf/simulated/floor/plating, +/area/horizon/engineering/reactor/supermatter/mainchamber) +"dbG" = ( +/obj/effect/floor_decal/corner_wide/lime{ + dir = 9 + }, +/obj/structure/engineer_maintenance/pipe, +/obj/structure/bed/stool/chair{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/reception) +"dbH" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/structure/lattice/catwalk/indoor/grate/dark, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/corner/purple{ - dir = 5 - }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plating, +/area/horizon/shuttle/intrepid/main_compartment) +"dbR" = ( /turf/simulated/floor/tiled, -/area/horizon/custodial) -"dbV" = ( -/obj/structure/closet, -/obj/random/loot, -/obj/machinery/light/small/emergency{ +/area/horizon/command/bridge/upperdeck) +"dbW" = ( +/obj/random/junk, +/obj/effect/decal/cleanable/dirt, +/obj/effect/floor_decal/industrial/warning{ dir = 8 }, /turf/simulated/floor/plating, -/area/maintenance/wing/cargo_compartment) -"dbX" = ( -/turf/simulated/floor/tiled/full, -/area/engineering/rust_office) -"dcb" = ( -/turf/simulated/wall/r_wall, -/area/rnd/xenobiology) +/area/horizon/maintenance/deck_1/main/port) "dcc" = ( /obj/structure/lattice/catwalk/indoor/grate/dark, /turf/simulated/floor/plating, /area/shuttle/skipjack) +"dcj" = ( +/obj/structure/table/standard, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/effect/floor_decal/corner/grey/diagonal, +/obj/machinery/requests_console/north{ + department = "Medical Bay"; + departmentType = 1 + }, +/obj/item/modular_computer/laptop/preset/medical, +/obj/item/modular_computer/laptop/preset/medical{ + pixel_y = 4 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/reception) "dcl" = ( /turf/unsimulated/floor{ icon_state = "dark_preview" }, /area/centcom/spawning) -"dcs" = ( -/turf/simulated/floor/tiled/dark, -/area/rnd/xenoarch_storage) "dct" = ( /obj/machinery/door/blast/odin/open{ _wifi_id = "merc_droppod_1"; @@ -21985,107 +21584,55 @@ }, /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, -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 8; - icon_state = "shutter0"; - id = "LCKDshutters"; - name = "MedBay Lockdown Shutters"; - opacity = 0 - }, -/obj/machinery/door/firedoor, -/obj/effect/landmark/entry_point/starboard{ - name = "starboard, medical equipment room" - }, -/turf/simulated/floor/plating, -/area/medical/equipment) -"dcF" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"dcI" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 9 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/operations/lobby) -"dcJ" = ( -/obj/structure/flora/ausbushes/sparsegrass, -/obj/machinery/portable_atmospherics/hydroponics/soil, -/turf/simulated/floor/grass/no_edge, -/area/horizon/hydroponics/garden) +"dcH" = ( +/obj/machinery/alarm/east, +/obj/random/junk, +/obj/machinery/atmospherics/pipe/simple/visible/universal, +/turf/simulated/floor, +/area/horizon/maintenance/deck_3/bridge) "dcL" = ( /obj/structure/bed/stool/chair/shuttle{ dir = 1 }, /turf/simulated/floor/shuttle/dark_blue, /area/shuttle/transport1) -"dcM" = ( -/obj/machinery/power/smes/buildable/substation{ - RCon_tag = "Substation - Deck 3 Civilian" +"dcT" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/structure/tank_wall/carbon_dioxide{ + icon_state = "co2-16" }, -/obj/structure/cable{ - icon_state = "0-4" +/obj/machinery/atmospherics/pipe/simple/visible/black, +/turf/simulated/floor/airless, +/area/horizon/engineering/atmos) +"dcY" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/closet/wardrobe/engineering_yellow, +/obj/effect/floor_decal/corner/yellow/full, +/obj/effect/floor_decal/industrial/outline/operations, +/turf/simulated/floor/tiled, +/area/horizon/engineering/locker_room) +"ddc" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 10 + }, +/obj/structure/table/standard, +/obj/machinery/button/remote/blast_door{ + id = "shutters_deck2_eng_frontdesk"; + name = "remote shutter control"; + pixel_y = -1; + pixel_x = -6 + }, +/turf/simulated/floor/tiled, +/area/horizon/engineering/lobby) +"ddd" = ( +/obj/effect/map_effect/window_spawner/full/reinforced/polarized/grille/firedoor{ + id = "consularA" }, /obj/structure/cable/green{ icon_state = "0-8" }, -/turf/simulated/floor, -/area/maintenance/substation/civilian_east) -"dcS" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/firedoor, -/obj/structure/sign/staff_only{ - pixel_y = 32 - }, -/turf/simulated/floor/tiled/full, -/area/horizon/hallway/deck_three/primary/starboard) -"dcZ" = ( -/obj/structure/window/shuttle/scc_space_ship, -/obj/structure/grille, /obj/machinery/door/blast/regular{ density = 0; dir = 4; @@ -22094,31 +21641,36 @@ name = "Bridge Blast Doors"; opacity = 0 }, -/obj/machinery/door/firedoor, -/obj/structure/cable/green{ - icon_state = "4-8" +/turf/simulated/floor, +/area/horizon/repoffice/consular_one) +"dde" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + name = "Spark scrubber vent" }, -/obj/structure/cable/green{ - icon_state = "0-4" +/obj/effect/floor_decal/industrial/warning{ + dir = 4 }, -/obj/machinery/door/blast/shutters/open{ - dir = 2; - id = "shutters_deck3_bridgesafety"; - name = "Safety Shutter" +/obj/structure/railing/mapped, +/obj/structure/railing/mapped{ + dir = 4 }, -/obj/effect/landmark/entry_point/fore{ - name = "fore, bridge" +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/light/small{ + dir = 4 }, -/turf/simulated/floor/plating, -/area/bridge/controlroom) -"ddb" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/machinery/light/small/emergency{ - dir = 1 +/turf/simulated/floor/reinforced, +/area/horizon/shuttle/mining) +"ddf" = ( +/obj/machinery/door/airlock{ + dir = 4; + id_tag = "cargobreak_shower"; + name = "Shower" }, -/obj/structure/trash_pile, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard) +/obj/machinery/door/firedoor{ + dir = 4 + }, +/turf/simulated/floor/tiled/full, +/area/horizon/operations/break_room) "ddi" = ( /turf/simulated/floor/carpet, /area/merchant_station) @@ -22126,53 +21678,61 @@ /obj/structure/flora/bush, /turf/simulated/floor/exoplanet/snow, /area/centcom/shared_dream) -"ddo" = ( -/obj/effect/floor_decal/corner/white/diagonal, -/obj/effect/floor_decal/industrial/warning/corner, +"ddl" = ( /obj/effect/floor_decal/industrial/warning{ - dir = 1 + dir = 5 }, -/turf/simulated/floor/tiled, -/area/medical/paramedic) -"ddp" = ( -/obj/machinery/atmospherics/pipe/simple/visible/yellow, -/obj/machinery/atmospherics/pipe/simple/visible/cyan{ - dir = 4 +/obj/machinery/power/portgen/basic{ + anchored = 1 }, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"dds" = ( -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/structure/railing/mapped, -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/railing/mapped{ - dir = 8 - }, -/turf/simulated/open, -/area/horizon/hydroponics) -"ddx" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 +/obj/structure/cable/yellow{ + icon_state = "0-4" }, +/obj/machinery/light/spot, +/turf/simulated/floor/carpet/rubber, +/area/horizon/engineering/reactor/indra/mainchamber) +"ddm" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor, -/area/maintenance/engineering_ladder) +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/door/airlock/glass_engineering{ + dir = 4; + name = "INDRA Reactor"; + req_one_access = list(11,24) + }, +/obj/machinery/door/firedoor, +/obj/effect/map_effect/door_helper/unres{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/hallway/aft) +"ddr" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/reagent_dispensers/fueltank, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/maintenance/deck_2/cargo_compartment) +"ddB" = ( +/obj/effect/floor_decal/corner/dark_blue, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_3/starboard/docks) "ddD" = ( /obj/effect/floor_decal/corner/paleblue{ dir = 1 @@ -22181,74 +21741,72 @@ icon_state = "dark_preview" }, /area/centcom/ferry) -"ddJ" = ( -/obj/structure/cable{ - icon_state = "1-2" +"ddE" = ( +/obj/structure/table/standard, +/obj/effect/floor_decal/corner/black{ + dir = 10 }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ +/obj/structure/platform{ dir = 8 }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ +/obj/structure/platform{ + dir = 1 + }, +/obj/structure/platform_deco/ledge{ + dir = 6 + }, +/obj/effect/floor_decal/spline/plain{ + dir = 6 + }, +/obj/machinery/cell_charger, +/turf/simulated/floor/carpet/rubber, +/area/horizon/operations/machinist) +"ddG" = ( +/obj/structure/table/rack, +/obj/structure/window/borosilicate, +/obj/machinery/camera/network/research{ + c_tag = "Research - Research & Development Aft"; + pixel_y = 9; dir = 8 }, -/obj/machinery/atmospherics/pipe/simple/hidden/aux, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/maintenance/engineering) -"ddL" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/effect/floor_decal/corner/dark_green{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/hangar/intrepid) +/turf/simulated/floor/carpet/rubber, +/area/horizon/rnd/lab) "ddV" = ( /obj/effect/floor_decal/corner/paleblue{ dir = 8 }, /turf/unsimulated/floor, /area/centcom/legion) -"ddY" = ( -/obj/machinery/atmospherics/binary/pump/high_power{ - dir = 4; - name = "Intake to Hot Loop"; - target_pressure = 15000 +"ddZ" = ( +/obj/structure/railing/mapped, +/obj/structure/railing/mapped{ + dir = 8 }, -/obj/effect/floor_decal/industrial/hatch_tiny/firefighting_closet, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"ded" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 4 +/turf/simulated/open, +/area/horizon/maintenance/deck_2/wing/port/near) +"dec" = ( +/obj/structure/table/wood, +/obj/random/pottedplant_small{ + pixel_x = -3; + pixel_y = 12 }, -/turf/simulated/floor/tiled/dark, -/area/storage/eva) -"dee" = ( -/obj/structure/tank_wall{ - icon_state = "m-16" +/obj/machinery/button/switch/windowtint{ + id = "library"; + pixel_x = 7; + pixel_y = -1; + dir = 1 }, -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/plating, -/area/engineering/atmos) -"dei" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/green{ - icon_state = "4-8" +/obj/item/material/ashtray/bronze{ + pixel_x = 6; + pixel_y = 8 }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ - dir = 4 +/obj/machinery/light_switch{ + dir = 1; + pixel_y = -1; + pixel_x = -2 }, -/turf/simulated/floor/plating, -/area/maintenance/engineering) +/turf/simulated/floor/carpet/red, +/area/horizon/service/library) "dej" = ( /obj/effect/floor_decal/industrial/warning/corner{ dir = 4 @@ -22256,57 +21814,21 @@ /obj/vehicle/bike/speeder, /turf/unsimulated/floor, /area/centcom/legion/hangar5) -"dem" = ( -/obj/machinery/button/remote/airlock{ - dir = 5; - id = "rep_office_b"; - name = "representative door bolts"; - pixel_x = 25; - pixel_y = -25; - specialfunctions = 4 +"det" = ( +/obj/machinery/alarm/north{ + dir = 4; + pixel_y = 0; + pixel_x = 10 }, -/obj/machinery/button/remote/airlock{ - dir = 5; - id = "rep_office_b"; - name = "representative door control"; - pixel_x = 35; - pixel_y = -25 +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 6 }, -/obj/machinery/button/switch/windowtint{ - dir = 9; - id = "repb"; - pixel_x = 35; - pixel_y = -35; - req_access = list(38) - }, -/obj/machinery/light_switch{ - dir = 9; - pixel_x = 25; - pixel_y = -35 - }, -/obj/effect/landmark/start{ - name = "Corporate Liaison" - }, -/obj/structure/bed/stool/chair/office/bridge/generic{ - dir = 4 - }, -/turf/simulated/floor/carpet, -/area/lawoffice/representative_two) -"den" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/wood, -/area/bridge/minibar) +/obj/structure/flora/ausbushes/brflowers, +/turf/simulated/floor/grass/no_edge, +/area/horizon/command/bridge/upperdeck) +"deu" = ( +/turf/simulated/wall/r_wall, +/area/horizon/engineering/aft_airlock) "dex" = ( /obj/effect/floor_decal/corner/dark_blue{ dir = 5 @@ -22319,6 +21841,12 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/horizon/security/investigations_hallway) +"deB" = ( +/obj/structure/railing/mapped{ + dir = 8 + }, +/turf/simulated/open, +/area/horizon/operations/office) "deG" = ( /obj/effect/floor_decal/spline/plain{ dir = 5 @@ -22331,50 +21859,115 @@ }, /turf/simulated/floor/exoplanet/grass/grove, /area/centcom/shared_dream) -"deV" = ( -/obj/machinery/light/spot{ - dir = 8 - }, +"deH" = ( /obj/structure/closet/emcloset, /obj/effect/floor_decal/industrial/outline/emergency_closet, /turf/simulated/floor/tiled, -/area/hangar/operations) +/area/horizon/rnd/xenoarch/atrium) +"deS" = ( +/obj/structure/closet/radiation, +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/floor_decal/corner_wide/yellow/full{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/sign/radiation{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled, +/area/horizon/stairwell/engineering/deck_2) +"deU" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/item/material/shard{ + icon_state = "small" + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/port) +"deX" = ( +/obj/structure/cable/yellow, +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/machinery/power/smes/buildable{ + RCon_tag = "INDRA - Grid"; + charge = 10000000; + cur_coils = 4; + input_attempt = 1; + input_level = 500000; + output_attempt = 1; + output_level = 500000 + }, +/obj/structure/lattice/catwalk/indoor, +/turf/simulated/floor/plating, +/area/horizon/engineering/reactor/indra/smes) +"deZ" = ( +/obj/structure/table/reinforced/glass, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/wood, +/area/horizon/rnd/conference) "dfa" = ( /obj/effect/floor_decal/spline/plain/corner{ dir = 1 }, /turf/simulated/floor/exoplanet/barren, /area/centcom/shared_dream) +"dfb" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/outline/firefighting_closet, +/obj/structure/closet/firecloset, +/turf/simulated/floor/tiled/full, +/area/horizon/hallway/primary/deck_2/fore) "dfc" = ( /obj/structure/table/steel, /turf/unsimulated/floor{ icon_state = "dark_preview" }, /area/centcom/specops) -"dfj" = ( +"dfe" = ( +/obj/structure/cable/orange{ + icon_state = "0-2" + }, +/obj/machinery/power/emitter{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/horizon/engineering/bluespace_drive) +"dfg" = ( +/obj/machinery/light, +/turf/simulated/floor/reinforced, +/area/horizon/rnd/xenobiology/hazardous) +"dfi" = ( +/obj/structure/bed/stool/chair/shuttle{ + dir = 8 + }, +/obj/effect/floor_decal/corner/dark_blue/diagonal, +/obj/effect/floor_decal/spline/plain/black{ + dir = 4 + }, +/obj/machinery/firealarm/east, +/turf/simulated/floor/tiled/dark, +/area/horizon/shuttle/intrepid/junction_compartment) +"dfl" = ( /obj/structure/cable/green{ - icon_state = "4-8" + icon_state = "1-2" }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/machinery/atmospherics/pipe/simple/hidden/red{ + dir = 9 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/door/airlock/service{ - dir = 4; - name = "Chaplain's Office and Chapel Storage"; - req_access = list(22) - }, -/obj/effect/map_effect/door_helper/unres{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/full, -/area/chapel/office) +/turf/simulated/floor/tiled/dark, +/area/horizon/service/custodial/disposals/deck_1) "dfn" = ( /obj/effect/floor_decal/carpet{ dir = 1 @@ -22420,18 +22013,31 @@ }, /turf/unsimulated/floor, /area/centcom/legion/hangar5) -"dfr" = ( -/obj/structure/table/standard, -/obj/effect/floor_decal/corner/mauve{ - dir = 5 +"dfs" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/corner/red/diagonal, +/obj/effect/floor_decal/spline/plain{ + dir = 4 }, -/obj/item/device/destTagger{ - pixel_y = 7; - pixel_x = -3 +/obj/structure/cable/green{ + icon_state = "1-2" }, -/obj/item/stack/packageWrap, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology/xenological) +/turf/simulated/floor/lino, +/area/horizon/service/cafeteria) +"dfv" = ( +/obj/structure/closet/secure_closet/freezer, +/obj/item/reagent_containers/food/condiment/flour, +/obj/item/reagent_containers/food/condiment/flour, +/obj/item/reagent_containers/food/condiment/rice, +/obj/item/reagent_containers/food/condiment/rice, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/engineer_maintenance/pipe/wall, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/service/kitchen) "dfx" = ( /obj/effect/floor_decal/spline/plain{ dir = 8 @@ -22444,163 +22050,90 @@ /obj/effect/floor_decal/industrial/outline/red, /turf/simulated/floor/holofloor/tiled, /area/horizon/holodeck/source_lasertag) -"dfB" = ( -/obj/machinery/conveyor_switch/oneway{ - id = "sorting"; - pixel_x = -13; - pixel_y = 22 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/operations/mail_room) -"dfE" = ( -/obj/effect/floor_decal/corner/mauve{ - dir = 5 - }, -/obj/machinery/power/apc/high/north, -/obj/structure/cable/green{ - icon_state = "0-2" - }, -/obj/structure/table/standard, -/obj/machinery/reagentgrinder{ - pixel_x = 3; - pixel_y = 10 - }, -/obj/item/storage/box/slides{ - pixel_x = -5; - pixel_y = 5 - }, -/obj/item/reagent_containers/chem_disp_cartridge, -/obj/item/reagent_containers/chem_disp_cartridge, -/obj/item/reagent_containers/chem_disp_cartridge, -/obj/item/reagent_containers/chem_disp_cartridge, -/obj/item/reagent_containers/chem_disp_cartridge, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology/xenoflora) -"dfG" = ( -/obj/effect/floor_decal/industrial/warning{ +"dfC" = ( +/obj/effect/floor_decal/corner_wide/lime{ dir = 10 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/camera/network/reactor{ - c_tag = "Engineering - Supermatter Reactor Access"; +/obj/structure/bed/stool/chair{ dir = 1 }, -/obj/structure/sign/radiation{ - pixel_x = -32 +/turf/simulated/floor/tiled/white, +/area/horizon/medical/reception) +"dfL" = ( +/obj/structure/table/stone/marble, +/obj/machinery/chemical_dispenser/bar_soft/full{ + pixel_x = 8; + pixel_y = 8 }, -/turf/simulated/floor/tiled/full, -/area/engineering/engine_airlock) -"dfH" = ( -/obj/effect/floor_decal/corner/dark_blue{ +/obj/machinery/door/firedoor, +/obj/machinery/chemical_dispenser/coffee/full{ + pixel_x = -10; + pixel_y = 8 + }, +/obj/machinery/door/blast/shutters{ + id = "shutters_deck2_kitchendesk"; + name = "Kitchen Desk Shutter" + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/service/kitchen) +"dfN" = ( +/obj/machinery/floodlight, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/main/port) +"dfS" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 4 + }, +/obj/machinery/computer/security/telescreen{ + name = "Telecommunications Cameras"; + network = list("Tcomsat"); + pixel_x = 32; + pixel_y = -4 + }, +/turf/simulated/floor/carpet/rubber, +/area/horizon/tcommsat/entrance) +"dfT" = ( +/obj/structure/table/standard, +/obj/machinery/computer/security/telescreen{ + name = "Access Monitor"; + network = list("Xeno_Bio") + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/xenobiology/foyer) +"dfV" = ( +/obj/structure/platform_stairs/full/east_west_cap, +/turf/simulated/floor/tiled/dark, +/area/horizon/service/dining_hall) +"dgl" = ( +/obj/machinery/camera/network/supply{ + c_tag = "Operations - Lower Warehouse 1"; + dir = 8 + }, +/obj/effect/floor_decal/corner/brown{ dir = 6 }, +/obj/structure/closet/walllocker/medical/firstaid{ + pixel_x = 32 + }, /turf/simulated/floor/tiled, -/area/bridge) -"dfI" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 1 - }, -/obj/effect/map_effect/marker/airlock/docking{ - landmark_tag = "nav_horizon_dock_deck_3_port_4"; - master_tag = "airlock_horizon_dock_deck_3_port_4"; - name = "airlock_horizon_dock_deck_3_port_4" - }, -/turf/simulated/floor/plating, -/area/horizon/hallway/deck_three/primary/port/docks) -"dfJ" = ( -/obj/machinery/door/window/holowindoor{ - dir = 1 - }, -/turf/simulated/floor/grass/no_edge, -/area/rnd/xenobiology/xenoflora) -"dfO" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/maintenance/wing/port) -"dfP" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/wood, -/area/operations/qm) -"dfU" = ( -/turf/simulated/wall/r_wall, -/area/storage/shields) -"dga" = ( -/obj/effect/floor_decal/corner_wide/black/full{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 9 - }, -/obj/machinery/atmospherics/binary/pump/high_power{ - dir = 4; - name = "Hydrogen to Burn Mix" - }, -/turf/simulated/floor/tiled/dark, -/area/engineering/atmos/propulsion) -"dgb" = ( -/obj/machinery/alarm/tcom/north, -/obj/machinery/camera/motion{ - network = list("Command","Security","Tcomsat"); - dir = 8; - c_tag = "Telecommunications - Entrance" - }, -/obj/item/device/multitool, -/obj/item/device/multitool, -/obj/structure/table/rack, -/obj/effect/floor_decal/spline/plain{ - dir = 5 - }, -/obj/item/stack/nanopaste, -/turf/simulated/floor/carpet/rubber, -/area/tcommsat/entrance) -"dgc" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/structure/filingcabinet/chestdrawer, -/turf/simulated/floor/tiled/white, -/area/medical/reception) -"dgf" = ( -/obj/effect/floor_decal/spline/fancy/wood, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/horizon/crew_quarters/lounge/bar) -"dgi" = ( -/obj/effect/floor_decal/spline/fancy/wood{ +/area/horizon/operations/warehouse) +"dgo" = ( +/obj/effect/floor_decal/corner/dark_green{ dir = 10 }, -/obj/structure/disposalpipe/segment, -/obj/machinery/light_switch{ - dir = 8; - pixel_x = -19 +/obj/machinery/light, +/obj/structure/sign/emergency/evacuation{ + pixel_y = -32 }, -/turf/simulated/floor/wood, -/area/bridge/minibar) +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_2/starboard) +"dgt" = ( +/turf/simulated/wall/shuttle/scc, +/area/horizon/shuttle/quark/cockpit) "dgv" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 1 @@ -22609,23 +22142,28 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/tiled/dark/full, /area/shuttle/skipjack) -"dgC" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/purple{ - dir = 6 +"dgz" = ( +/obj/structure/bed/stool/chair/office/bridge{ + dir = 4 }, -/turf/simulated/wall/r_wall, -/area/engineering/atmos) -"dgD" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 1 +/obj/effect/floor_decal/corner/dark_blue/diagonal, +/turf/simulated/floor/tiled/dark, +/area/horizon/command/bridge/aibunker) +"dgB" = ( +/obj/structure/tank_wall/nitrogen{ + density = 0; + icon_state = "n5"; + opacity = 0 }, -/obj/machinery/atmospherics/pipe/manifold/hidden{ - dir = 1 +/turf/simulated/floor/reinforced/nitrogen, +/area/horizon/engineering/atmos/air) +"dgF" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 }, -/turf/simulated/wall/shuttle/unique/scc/mining{ - icon_state = "4,9" - }, -/area/shuttle/mining) +/turf/simulated/floor/tiled/white, +/area/horizon/medical/hallway) "dgI" = ( /obj/vehicle/droppod/syndie{ connected_blastdoor = "merc_droppod_4" @@ -22634,77 +22172,6 @@ icon_state = "dark_preview" }, /area/antag/mercenary) -"dgS" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_medical{ - dir = 1; - name = "Main Storage"; - req_access = list(66) - }, -/turf/simulated/floor/tiled/white, -/area/medical/main_storage) -"dgT" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/engineering) -"dgW" = ( -/obj/structure/table/rack, -/obj/item/clothing/suit/hazmat/anomaly, -/obj/item/clothing/mask/gas/alt, -/obj/item/clothing/glasses/safety/goggles/science, -/obj/item/tank/oxygen, -/obj/item/clothing/head/hazmat/anomaly, -/obj/item/storage/box/gloves, -/obj/item/storage/box/gloves, -/obj/machinery/firealarm/west, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenoarch_storage) -"dgY" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 10 - }, -/obj/item/device/radio/intercom/west, -/obj/structure/flora/pottedplant{ - icon_state = "plant-33" - }, -/turf/simulated/floor/wood, -/area/chapel/office) -"dgZ" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/lattice/catwalk/indoor/grate, -/turf/simulated/floor/plating, -/area/hallway/primary/central_two) -"dhb" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 6 - }, -/turf/simulated/floor/reinforced/reactor, -/area/engineering/engine_room) -"dhc" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 5 - }, -/obj/structure/sign/emergency/evacuation/stairs, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/effect/floor_decal/industrial/loading/yellow{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/horizon/stairwell/central) "dhd" = ( /obj/structure/bed/stool/chair/office/dark{ dir = 4 @@ -22712,6 +22179,20 @@ /obj/effect/floor_decal/corner/red/diagonal, /turf/simulated/floor/tiled/dark, /area/shuttle/mercenary) +"dhg" = ( +/obj/effect/floor_decal/corner/grey{ + dir = 9 + }, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/structure/sink/kitchen{ + dir = 4; + pixel_x = -19 + }, +/obj/machinery/firealarm/west, +/turf/simulated/floor/lino, +/area/horizon/service/bar) "dhh" = ( /obj/effect/floor_decal/carpet{ dir = 1 @@ -22724,39 +22205,71 @@ }, /turf/simulated/floor/holofloor/carpet, /area/horizon/holodeck/source_courtroom) -"dhi" = ( -/obj/structure/railing/mapped{ - dir = 8 +"dhk" = ( +/obj/structure/cable/green{ + icon_state = "4-8" }, -/obj/effect/floor_decal/corner/black{ - dir = 9 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/hangar/intrepid) -"dhs" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 5 +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 4 }, /turf/simulated/floor/plating, -/area/horizon/maintenance/deck_two/fore/port) -"dhu" = ( -/obj/structure/railing/mapped, -/obj/structure/platform/ledge{ +/area/horizon/maintenance/deck_1/main/port) +"dhn" = ( +/obj/structure/table/rack, +/obj/random/loot, +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/light/small/emergency{ dir = 1 }, -/turf/simulated/open, -/area/hallway/primary/central_one) -"dhw" = ( -/obj/machinery/door/firedoor, -/obj/effect/floor_decal/corner_wide/yellow{ - dir = 5 +/turf/simulated/floor, +/area/horizon/maintenance/deck_3/aft/port) +"dho" = ( +/obj/structure/cable/green{ + icon_state = "4-8" }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/full, -/area/hallway/engineering/rust) +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/junction/yjunction, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/hallway) +"dhr" = ( +/obj/structure/table/wood, +/obj/item/modular_computer/laptop/preset/representative{ + pixel_x = -1; + pixel_y = 5 + }, +/turf/simulated/floor/carpet, +/area/horizon/repoffice/representative_one) +"dht" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/structure/disposalpipe/junction{ + dir = 4; + icon_state = "pipe-j2" + }, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/hallway/upper) +"dhv" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/platform_stairs/full/east_west_cap, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/main/port) "dhx" = ( /obj/effect/floor_decal/corner/grey{ dir = 9 @@ -22774,15 +22287,16 @@ }, /turf/simulated/floor/marble, /area/horizon/holodeck/source_trinary) -"dhz" = ( -/obj/machinery/camera/network/medbay{ - c_tag = "Medical - Hallway 3" +"dhy" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + icon_state = "1-2" }, -/obj/effect/floor_decal/corner_wide/green{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/hallway/medical/upper) +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor/plating, +/area/horizon/rnd/hallway/secondary) "dhI" = ( /obj/structure/grille/broken, /obj/structure/window/reinforced/crescent{ @@ -22799,6 +22313,25 @@ /obj/item/stack/rods, /turf/unsimulated/floor/plating, /area/centcom/legion/hangar5) +"dhJ" = ( +/obj/structure/shuttle_part/scc/mining{ + icon_state = "1,2" + }, +/turf/simulated/floor/plating, +/area/horizon/shuttle/mining) +"dhL" = ( +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/wing/starboard) "dhM" = ( /obj/structure/table/rack, /obj/item/storage/briefcase/aluminium{ @@ -22820,6 +22353,29 @@ icon_state = "dark_preview" }, /area/centcom/control) +"dhN" = ( +/turf/simulated/wall, +/area/horizon/command/heads/om) +"dhQ" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 6 + }, +/obj/machinery/button/remote/blast_door{ + dir = 4; + id = "xenobio_d"; + name = "Cell Containment Blast Doors"; + pixel_x = 21; + req_access = list(47) + }, +/obj/structure/sink{ + dir = 4; + pixel_x = 12 + }, +/obj/effect/floor_decal/industrial/outline_corner/security{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/xenobiology) "dhT" = ( /obj/structure/table/rack, /obj/item/storage/backpack/legion{ @@ -22843,149 +22399,106 @@ icon_state = "wood" }, /area/centcom/legion/hangar5) -"dhX" = ( -/obj/machinery/door/blast/shutters/open{ - dir = 2; - id = "warehouse1"; - name = "Warehouse Shutter" - }, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/full, -/area/operations/storage) -"dib" = ( -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 9 - }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 6 - }, -/obj/structure/railing/mapped{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/horizon/stairwell/bridge) -"dim" = ( +"dhW" = ( /obj/effect/floor_decal/industrial/warning{ dir = 4 }, -/obj/machinery/light{ - dir = 4 +/obj/structure/tank_wall/phoron{ + icon_state = "ph13" }, /turf/simulated/floor/airless, -/area/hangar/operations) -"dip" = ( +/area/horizon/engineering/atmos) +"dil" = ( /obj/effect/floor_decal/industrial/warning{ dir = 4 }, -/turf/simulated/floor/reinforced{ - blocks_air = 1; - density = 1; - name = "thruster mount" - }, -/area/engineering/atmos/propulsion) -"dir" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 1 - }, -/obj/effect/map_effect/marker/airlock/shuttle{ - cycle_to_external_air = 1; - master_tag = "airlock_shuttle_intrepid"; - name = "airlock_shuttle_intrepid"; - req_one_access = null; - shuttle_tag = "Intrepid" - }, -/obj/effect/map_effect/marker_helper/airlock/out, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/shuttle/intrepid/main_compartment) -"diu" = ( -/obj/effect/floor_decal/corner/green/diagonal, -/obj/machinery/disposal/small/south, -/obj/structure/disposalpipe/trunk, -/turf/simulated/floor/tiled/white, -/area/horizon/crew_quarters/fitness/changing) -"diz" = ( -/obj/effect/map_effect/marker/airlock{ - frequency = 2001; - master_tag = "airlock_horizon_deck_2_starboard_aft"; - name = "airlock_horizon_deck_2_starboard_aft" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden{ - dir = 1 +/obj/structure/tank_wall/nitrogen{ + icon_state = "n13" }, /turf/simulated/floor/plating, -/area/maintenance/wing/starboard) -"diC" = ( -/obj/effect/floor_decal/spline/fancy/wood{ +/area/horizon/engineering/atmos/air) +"diq" = ( +/obj/effect/floor_decal/corner/dark_green/diagonal, +/obj/effect/floor_decal/industrial/loading/yellow{ dir = 1 }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled, +/area/horizon/stairwell/port/deck_2) +"dit" = ( +/obj/structure/table/wood, +/obj/machinery/recharger{ + pixel_x = -3; + pixel_y = 2 + }, +/obj/item/deck/cards{ + pixel_x = 12; + pixel_y = 1 + }, +/obj/random/pottedplant_small{ + pixel_x = 7; + pixel_y = 9 }, /turf/simulated/floor/wood, -/area/bridge/meeting_room) -"diE" = ( -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/maintenance/aux_atmospherics/deck_2/starboard/wing) -"diG" = ( +/area/horizon/service/library) +"diH" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/firedoor/multi_tile, -/obj/machinery/door/airlock/multi_tile/glass{ - name = "Deck 2 Starboard Docks" - }, -/obj/machinery/door/blast/shutters/open{ - dir = 2; - id = "seconddeckdockint"; - name = "Security Checkpoint Internal Shutter" - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/dark/full, -/area/security/checkpoint2) -"diJ" = ( /obj/structure/cable/green{ icon_state = "1-2" }, -/obj/structure/disposalpipe/segment, -/obj/structure/lattice/catwalk/indoor/grate, -/turf/simulated/floor/plating, -/area/hangar/intrepid/interstitial) -"diQ" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 6 +/turf/simulated/floor/wood, +/area/horizon/repoffice/consular_two) +"diI" = ( +/obj/structure/cable/green{ + icon_state = "4-8" }, -/obj/structure/bed/stool/chair/office/bridge{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge/meeting_room) -"diR" = ( -/obj/effect/floor_decal/industrial/warning{ +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/obj/machinery/alarm/west, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/aux{ + dir = 8 + }, +/obj/structure/stairs_lower{ + dir = 1; + pixel_y = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/green{ + dir = 8 + }, +/obj/structure/lattice/catwalk/indoor/grate, /turf/simulated/floor/plating, -/area/maintenance/wing/starboard/deck1) +/area/horizon/stairwell/engineering/deck_1) +"diL" = ( +/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/cable/green{ + icon_state = "2-8" + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/horizon/engineering/storage/lower) +"diN" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/chemistry) "diU" = ( /obj/structure/table/reinforced/wood, /obj/structure/window/reinforced/crescent{ @@ -23003,57 +22516,113 @@ }, /turf/unsimulated/floor, /area/centcom/bar) -"diY" = ( -/obj/structure/disposalpipe/segment{ +"diV" = ( +/obj/structure/stairs/north, +/turf/simulated/floor/tiled/dark, +/area/horizon/stairwell/starboard/deck_2) +"diX" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 8 + }, +/obj/machinery/airlock_sensor{ dir = 8; - icon_state = "pipe-c" + pixel_x = 20 + }, +/obj/effect/map_effect/marker/airlock{ + frequency = 2005; + master_tag = "airlock_horizon_deck_2_aft_sm"; + name = "airlock_horizon_deck_2_aft_sm" + }, +/turf/simulated/floor/plating, +/area/horizon/engineering/reactor/supermatter/airlock) +"djc" = ( +/obj/structure/window/shuttle/scc_space_ship, +/obj/structure/grille, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/horizon/engineering/atmos/propulsion/starboard) +"dje" = ( +/obj/structure/tank_wall/hydrogen{ + icon_state = "h4" }, /obj/effect/floor_decal/industrial/warning{ - dir = 1 + dir = 8 }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/random/junk, -/turf/simulated/floor, -/area/maintenance/engineering_ladder) -"djj" = ( -/obj/effect/map_effect/window_spawner/full/reinforced/grille/firedoor, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "bridge blast"; - name = "Bridge Blast Doors"; - opacity = 0 +/turf/simulated/floor/airless, +/area/horizon/engineering/atmos) +"djg" = ( +/obj/effect/floor_decal/spline/plain/cee{ + dir = 4 }, -/obj/structure/cable/green, -/turf/simulated/floor, -/area/bridge/supply) -"djk" = ( -/obj/effect/landmark/entry_point/starboard{ - name = "starboard, ballast fore" - }, -/turf/simulated/wall/shuttle/scc_space_ship/cardinal, -/area/maintenance/wing/starboard/far) -"djp" = ( -/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/carpet/rubber, +/area/horizon/hallway/primary/deck_2/central) +"dji" = ( +/obj/effect/floor_decal/industrial/hatch/grey, +/obj/machinery/chem_master/condimaster, +/obj/effect/floor_decal/corner/grey/full, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/service/bar) +"djq" = ( /obj/structure/cable{ icon_state = "4-8" }, -/turf/simulated/floor, -/area/maintenance/engineering_ladder) +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/aux{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 4 + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/main/port) "djs" = ( /obj/structure/stairs_railing{ dir = 8 }, /turf/simulated/floor/tiled, /area/horizon/security/investigations_hallway) -"djv" = ( -/obj/machinery/floodlight, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ +"dju" = ( +/obj/structure/foamedmetal, +/turf/simulated/floor/plating, +/area/horizon/rnd/xenobiology) +"djw" = ( +/obj/machinery/door/window/brigdoor/southleft{ + name = "AI Core Access"; + req_access = list(16); + dir = 8 + }, +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/obj/structure/engineer_maintenance/electric{ dir = 4 }, -/obj/effect/floor_decal/corner/lime/full, -/turf/simulated/floor/tiled, -/area/medical/emergency_storage) +/obj/structure/engineer_maintenance/pipe{ + dir = 1 + }, +/turf/simulated/floor/bluegrid{ + name = "cooled mainframe floor"; + temperature = 278 + }, +/area/horizon/ai/chamber) +"djy" = ( +/obj/effect/floor_decal/spline/plain/black, +/obj/structure/bed/stool/chair/shuttle/double{ + pixel_x = 8; + dir = 1 + }, +/obj/structure/bed/stool/chair/shuttle/double{ + pixel_x = -8; + dir = 1 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/shuttle/intrepid/main_compartment) "djz" = ( /obj/structure/shuttle_part/ert{ icon_state = "0,4"; @@ -23071,6 +22640,22 @@ /obj/effect/floor_decal/ss13/odin5, /turf/unsimulated/floor, /area/centcom/evac) +"djB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/machinery/door/airlock/external, +/obj/machinery/access_button{ + dir = 1; + pixel_x = -28; + pixel_y = 12 + }, +/obj/effect/map_effect/marker_helper/airlock/interior, +/obj/effect/map_effect/marker/airlock/docking{ + landmark_tag = "nav_horizon_dock_deck_3_starboard_3"; + master_tag = "airlock_horizon_dock_deck_3_starboard_3"; + name = "airlock_horizon_dock_deck_3_starboard_3" + }, +/turf/simulated/floor/plating, +/area/horizon/hallway/primary/deck_3/port/docks) "djC" = ( /obj/structure/table/reinforced/steel, /obj/item/paper_bin, @@ -23082,55 +22667,93 @@ icon_state = "dark_preview" }, /area/centcom/holding) -"djF" = ( -/obj/effect/floor_decal/corner/mauve, -/obj/structure/platform_deco{ - icon_state = "ledge_deco" - }, -/turf/simulated/floor/tiled, -/area/rnd/hallway/secondary) -"dka" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/structure/tank_wall/air{ - icon_state = "air15" - }, -/obj/machinery/atmospherics/pipe/simple/visible/blue, -/turf/simulated/floor/plating, -/area/engineering/atmos/air) -"dkb" = ( -/obj/structure/cable/green{ +"djD" = ( +/obj/structure/cable{ icon_state = "1-2" }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 +/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/horizon/engineering/hallway/fore) +"djE" = ( +/obj/structure/railing/mapped{ + dir = 1 }, -/obj/effect/floor_decal/industrial/warning{ +/obj/machinery/computer/ship/helm, +/obj/effect/floor_decal/corner/dark_blue{ + dir = 5 + }, +/obj/machinery/case_button/shuttle{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/command/bridge/aibunker) +"djJ" = ( +/turf/simulated/wall, +/area/horizon/maintenance/deck_3/aft/port/far) +"djS" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction{ dir = 8 }, -/turf/simulated/floor/tiled/full, -/area/engineering/storage_hard) +/turf/simulated/floor/reinforced/airless, +/area/horizon/engineering/atmos/propulsion) +"djX" = ( +/obj/machinery/computer/ship/sensors/terminal{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/outline/security, +/obj/item/device/radio/intercom/expedition/west, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/shuttle/intrepid/flight_deck) "dkf" = ( /turf/simulated/wall/shuttle/unique/tcfl{ icon_state = "14,2" }, /area/shuttle/legion) -"dkm" = ( -/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 10 +"dkg" = ( +/obj/structure/window/borosilicate{ + dir = 4 }, -/turf/simulated/floor/tiled/dark, -/area/bridge/controlroom) -"dku" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/floor_decal/corner/yellow/diagonal, +/obj/structure/closet/secure_closet/scientist, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/lab) +"dkl" = ( /obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 1 }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/turf/simulated/floor/reinforced, +/area/horizon/engineering/gravity_gen) +"dkp" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/closet/secure_closet/medical_para, +/obj/item/defibrillator/compact/loaded, /turf/simulated/floor/tiled, -/area/hallway/engineering) +/area/horizon/medical/paramedic) +"dkt" = ( +/obj/machinery/alarm/west, +/turf/simulated/floor/tiled, +/area/horizon/medical/washroom) +"dkw" = ( +/obj/machinery/door/firedoor{ + dir = 4 + }, +/obj/machinery/door/airlock/maintenance_hatch{ + dir = 4; + req_one_access = list(12) + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/maintenance/deck_3/aft/starboard/far) "dkx" = ( /obj/structure/lattice, /obj/structure/railing/mapped, @@ -23144,18 +22767,41 @@ icon_state = "dark_preview" }, /area/centcom/holding) -"dkR" = ( -/obj/structure/table/reinforced/steel, -/obj/random/toolbox, -/obj/random/tool, -/turf/simulated/floor/carpet/rubber, -/area/maintenance/engineering/auxillary) +"dkM" = ( +/obj/structure/platform{ + dir = 8 + }, +/obj/machinery/mech_recharger, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/operations/machinist) "dkV" = ( /obj/effect/floor_decal/corner/paleblue{ dir = 5 }, /turf/unsimulated/floor, /area/centcom/holding) +"dkZ" = ( +/obj/effect/floor_decal/corner_wide/green{ + dir = 9 + }, +/obj/machinery/disposal/small/east, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/machinery/button/switch/windowtint{ + dir = 8; + id = "Recovery1"; + pixel_y = -2; + pixel_x = -22 + }, +/obj/machinery/light_switch{ + dir = 8; + pixel_x = -22; + pixel_y = 10 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/ward) "dlb" = ( /obj/structure/cable/green{ icon_state = "1-2" @@ -23177,41 +22823,55 @@ icon_state = "dark_preview" }, /area/centcom/holding) -"dlg" = ( -/obj/effect/floor_decal/corner/mauve{ - dir = 10 +"dlh" = ( +/obj/effect/floor_decal/corner/dark_green/full, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 }, -/obj/machinery/computer/guestpass{ - pixel_y = -32 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 }, -/obj/machinery/firealarm/south, /turf/simulated/floor/tiled, -/area/rnd/hallway) -"dls" = ( -/obj/structure/shuttle_part/scc_space_ship{ - icon_state = "d3-4-f" +/area/horizon/stairwell/port/deck_2) +"dlj" = ( +/obj/item/device/radio/intercom/south, +/obj/effect/floor_decal/corner/brown/full{ + dir = 4 }, -/obj/effect/landmark/entry_point/aft{ - name = "aft, starboard ballast maintenance, middle" +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 1 }, -/obj/structure/foamedmetal, -/obj/structure/shuttle_part/scc_space_ship{ - icon_state = "d3-4-f" +/turf/simulated/floor/tiled, +/area/horizon/operations/loading) +"dln" = ( +/obj/effect/map_effect/window_spawner/full/reinforced/grille/firedoor, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id = "bridge blast"; + name = "Bridge Blast Doors"; + opacity = 0 }, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard) +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/turf/simulated/floor, +/area/horizon/command/bridge/bridge_crew) +"dlq" = ( +/obj/effect/map_effect/window_spawner/full/reinforced/grille/firedoor, +/turf/simulated/floor, +/area/horizon/command/bridge/bridge_crew) "dlu" = ( /turf/simulated/wall/r_wall, /area/horizon/security/washroom) -"dlv" = ( -/obj/effect/floor_decal/corner/brown{ - dir = 6 +"dlw" = ( +/obj/structure/railing/mapped{ + dir = 8 }, -/obj/effect/floor_decal/spline/plain/black{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/intrepid/main_compartment) +/turf/simulated/floor/wood, +/area/horizon/crew/lounge) "dly" = ( /obj/effect/floor_decal/corner{ dir = 1 @@ -23232,44 +22892,10 @@ icon_state = "white" }, /area/centcom/holding) -"dlB" = ( -/obj/effect/floor_decal/corner_wide/lime{ - dir = 10 - }, -/obj/random/pottedplant, -/turf/simulated/floor/tiled/white, -/area/medical/reception) -"dlC" = ( -/obj/structure/sign/radiation{ - pixel_y = 32 - }, -/obj/machinery/alarm/west, -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/closet/radiation, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/effect/floor_decal/industrial/warning{ - dir = 9 - }, -/turf/simulated/floor/tiled/full, -/area/engineering/engine_airlock) "dlD" = ( /obj/effect/floor_decal/spline/fancy/wood, /turf/unsimulated/floor/wood, /area/antag/raider) -"dlE" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/horizon/grauwolf) "dlF" = ( /obj/item/storage/box/masks{ pixel_y = -2 @@ -23285,19 +22911,15 @@ /obj/structure/bed/stool/chair/shuttle, /turf/simulated/floor/shuttle/dark_blue, /area/shuttle/transport1) -"dlM" = ( -/obj/effect/floor_decal/corner/dark_blue/full{ - dir = 4 +"dlJ" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 9 }, -/obj/structure/table/rack{ +/obj/effect/floor_decal/spline/plain/black{ dir = 8 }, -/obj/item/device/suit_cooling_unit, -/obj/item/device/suit_cooling_unit, -/obj/item/device/suit_cooling_unit, -/obj/item/device/suit_cooling_unit, -/turf/simulated/floor/tiled/dark/full, -/area/storage/eva) +/turf/simulated/floor/tiled/dark, +/area/horizon/shuttle/intrepid/main_compartment) "dlN" = ( /obj/effect/landmark/thunderdome1, /obj/effect/floor_decal/corner/grey/diagonal{ @@ -23322,25 +22944,6 @@ density = 1 }, /area/centcom/shared_dream) -"dlT" = ( -/obj/effect/floor_decal/corner/black{ - dir = 5 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/junction{ - dir = 4; - icon_state = "pipe-j2" - }, -/turf/simulated/floor/tiled, -/area/rnd/hallway) "dlU" = ( /obj/structure/table/wood, /obj/effect/floor_decal/spline/fancy/wood{ @@ -23358,20 +22961,18 @@ icon_state = "carpet" }, /area/centcom/legion/hangar5) -"dmb" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/machinery/camera/network/reactor{ - c_tag = "Engineering - INDRA Room External Airlock"; +"dma" = ( +/obj/structure/cable/orange{ + icon_state = "0-2" + }, +/obj/machinery/power/emitter{ dir = 4 }, -/obj/structure/sign/vacuum{ - pixel_x = -32 +/obj/effect/floor_decal/industrial/warning{ + dir = 1 }, -/obj/effect/floor_decal/corner/yellow{ - dir = 9 - }, -/turf/simulated/floor/tiled/dark, -/area/engineering/aft_airlock) +/turf/simulated/floor/plating, +/area/horizon/engineering/bluespace_drive) "dmc" = ( /obj/effect/floor_decal/corner/dark_blue{ dir = 5 @@ -23384,6 +22985,61 @@ }, /turf/simulated/floor/tiled, /area/horizon/security/warden) +"dmj" = ( +/obj/structure/lattice/catwalk, +/turf/simulated/open, +/area/horizon/service/hydroponics) +"dml" = ( +/obj/effect/floor_decal/corner/red/diagonal, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/machinery/air_sensor{ + frequency = 1441; + id_tag = "h_sensor" + }, +/obj/effect/decal/fake_object/light_source/invisible, +/turf/simulated/floor/reinforced/hydrogen, +/area/horizon/engineering/atmos) +"dmm" = ( +/obj/structure/cable/orange{ + icon_state = "0-8" + }, +/obj/machinery/power/smes/buildable/substation{ + name = "C-Goliath Drive - Inner Shield Circuit" + }, +/obj/structure/sign/electricshock{ + pixel_x = 32 + }, +/obj/machinery/light, +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/turf/simulated/floor/plating, +/area/horizon/engineering/bluespace_drive) +"dmo" = ( +/turf/simulated/wall/r_wall, +/area/horizon/maintenance/deck_3/aft/port) +"dmq" = ( +/obj/effect/floor_decal/corner_wide/paleblue{ + dir = 6 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/light/floor{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/command/heads/cmo) +"dmr" = ( +/obj/item/modular_computer/console/preset/engineering{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/gravity_gen) +"dmw" = ( +/obj/structure/railing/mapped, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/main/starboard) "dmx" = ( /obj/effect/floor_decal/spline/plain/corner{ dir = 8 @@ -23392,25 +23048,19 @@ density = 1 }, /area/centcom/shared_dream) -"dmy" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 9 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ +"dmA" = ( +/obj/structure/railing/mapped{ dir = 8 }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/structure/disposalpipe/junction{ - dir = 8; - icon_state = "pipe-j2" +/obj/structure/railing/mapped, +/turf/simulated/open, +/area/horizon/maintenance/deck_2/wing/port) +"dmF" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 6 }, /turf/simulated/floor/tiled, -/area/horizon/commissary) +/area/horizon/hangar/operations) "dmG" = ( /turf/simulated/floor/holofloor/grass{ icon = 'icons/turf/flooring/exoplanet/moghes.dmi'; @@ -23429,111 +23079,169 @@ "dmP" = ( /turf/simulated/floor/holofloor/space, /area/horizon/holodeck/source_space) -"dmS" = ( -/turf/simulated/wall/r_wall, -/area/teleporter) -"dnk" = ( +"dmQ" = ( +/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/machinery/camera/network/first_deck{ + c_tag = "First Deck - Pilot Room Hallway"; + dir = 1 + }, +/obj/effect/floor_decal/corner/dark_green{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/horizon/hangar/intrepid) +"dmT" = ( /obj/structure/cable/green{ icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/industrial/warning{ +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/firealarm/east, +/obj/machinery/camera/network/medbay{ + c_tag = "Medical - Morgue Storage Room"; dir = 8 }, +/obj/effect/floor_decal/corner/lime{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/horizon/medical/emergency_storage) +"dmW" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor, +/area/horizon/command/bridge/upperdeck) +"dmZ" = ( +/turf/simulated/wall/r_wall, +/area/horizon/engineering/hallway/aft) +"dna" = ( +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/structure/disposalpipe/junction/yjunction{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/turf/simulated/floor/tiled, +/area/horizon/command/bridge/controlroom) +"dnc" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, /obj/structure/cable/green{ icon_state = "1-4" }, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/bluespace_drive) -"dns" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 6 +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/xenobiology/foyer) +"dnm" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/structure/cable{ + icon_state = "4-8" }, -/turf/simulated/floor/tiled/dark, -/area/storage/eva) -"dnJ" = ( -/obj/machinery/atmospherics/unary/outlet_injector{ - dir = 4; - frequency = 1441; - id = "mixed_in"; - name = "mixed gas injector" +/obj/effect/floor_decal/corner/dark_green/full{ + dir = 8 }, -/turf/simulated/floor/reinforced/airless, -/area/engineering/atmos) -"dnQ" = ( -/obj/effect/floor_decal/corner_wide/yellow{ - dir = 10 - }, -/obj/machinery/bluespace_beacon, /turf/simulated/floor/tiled, -/area/engineering/break_room) -"dnR" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/dark/full, -/area/shuttle/intrepid/main_compartment) -"dnS" = ( -/obj/machinery/atmospherics/pipe/simple/visible/black{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/visible/green, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"dnW" = ( -/obj/structure/bed/stool/chair/office/dark, -/obj/effect/landmark/start{ - name = "Engineer" - }, -/obj/effect/floor_decal/spline/plain{ +/area/horizon/hangar/intrepid) +"dnn" = ( +/obj/machinery/light/small/emergency{ dir = 1 }, -/turf/simulated/floor/tiled/dark, -/area/engineering/break_room) -"dnZ" = ( -/obj/machinery/light/small/emergency, -/turf/simulated/open, -/area/maintenance/wing/starboard) -"doa" = ( -/obj/structure/grille, -/obj/structure/window/shuttle/scc_space_ship, -/obj/machinery/door/blast/shutters/open{ - dir = 2; - id = "bar_viewing_shutters"; - name = "Bar Viewing Shutters" - }, -/obj/machinery/door/firedoor, +/obj/random/junk, +/obj/structure/railing/mapped, +/obj/structure/lattice/catwalk/indoor/grate/dark, /turf/simulated/floor/plating, -/area/horizon/bar) -"dob" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/floor_decal/industrial/warning, -/obj/structure/table/standard, -/obj/item/material/ashtray/bronze{ - pixel_x = 2; - pixel_y = 1 +/area/horizon/maintenance/deck_1/main/starboard) +"dno" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 }, -/obj/item/material/stool/chair/folding{ - pixel_y = 19 +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 }, -/obj/item/paper/cig{ - desc = "A thin piece of paper used to make smokables. Someone has written the text 'Hope to see you again sometime, my friend.' on it."; - name = "written-on rolling paper"; +/obj/machinery/button/remote/blast_door{ + dir = 1; + id = "warehouse4"; + name = "Warehouse Shutter"; + pixel_x = 31; + pixel_y = 32 + }, +/obj/effect/floor_decal/corner/brown{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/horizon/operations/warehouse) +"dnv" = ( +/obj/structure/table/stone/marble, +/obj/item/reagent_containers/food/condiment/sugar{ + pixel_x = 7; + pixel_y = 8 + }, +/obj/item/reagent_containers/cooking_container/board/bowl, +/obj/item/reagent_containers/glass/beaker{ pixel_x = -6; - pixel_y = -2 + pixel_y = 8 }, -/obj/item/clothing/mask/smokable/cigarette{ - pixel_x = 8; - pixel_y = -4 +/turf/simulated/floor/tiled/dark/full, +/area/horizon/service/kitchen) +"dnx" = ( +/obj/machinery/atmospherics/binary/circulator{ + anchored = 1 }, /turf/simulated/floor/plating, -/area/maintenance/wing/port/deck1) +/area/horizon/engineering/reactor/supermatter/mainchamber) +"dnC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/camera/network/security{ + c_tag = "Security - Head of Security's Office"; + dir = 4 + }, +/turf/simulated/floor/carpet, +/area/horizon/command/heads/hos) +"dnE" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/obj/structure/disposaloutlet, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/disposalpipe/trunk, +/turf/simulated/floor/reinforced, +/area/horizon/rnd/xenobiology) +"dnG" = ( +/obj/structure/bed/stool/chair/office/dark{ + dir = 4 + }, +/obj/effect/landmark/start{ + name = "Psychiatrist" + }, +/turf/simulated/floor/carpet, +/area/horizon/medical/psych) "doc" = ( /obj/machinery/light{ dir = 4 @@ -23544,32 +23252,24 @@ /obj/effect/floor_decal/corner/red/diagonal, /turf/simulated/floor/tiled/dark, /area/shuttle/syndicate_elite) -"dod" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 +"doi" = ( +/obj/effect/floor_decal/industrial/hatch_door/red, +/obj/machinery/door/airlock/external{ + dir = 8 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 +/obj/effect/map_effect/marker_helper/airlock/exterior, +/obj/machinery/door/blast/shutters/open{ + dir = 8; + id = "intrepid_bay_outer"; + name = "Intrepid Shutter" }, -/obj/structure/cable{ - icon_state = "4-8" +/obj/effect/map_effect/marker/airlock{ + master_tag = "sccv_intrepid_port"; + name = "sccv_intrepid_port"; + req_one_access = null }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/alarm/north, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard/deck1) -"dog" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 10 - }, -/obj/machinery/status_display{ - pixel_y = -32 - }, -/turf/simulated/floor/tiled, -/area/engineering/lobby) +/turf/simulated/floor/tiled/dark/full, +/area/horizon/shuttle/intrepid/port_compartment) "doj" = ( /obj/effect/map_effect/window_spawner/full/reinforced/grille/firedoor, /obj/machinery/door/blast/regular{ @@ -23584,6 +23284,41 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/security/brig) +"dok" = ( +/turf/simulated/wall/r_wall, +/area/horizon/rnd/xenoarch/spectrometry) +"doo" = ( +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/structure/railing/mapped, +/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers, +/obj/machinery/atmospherics/pipe/zpipe/up/supply, +/obj/structure/cable/green{ + icon_state = "0-8" + }, +/obj/structure/cable/green{ + icon_state = "12-0" + }, +/obj/structure/sign/electricshock{ + pixel_y = 32 + }, +/obj/structure/railing/mapped{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/hangar/starboard) +"dos" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/item/device/radio/intercom/west, +/obj/machinery/teleport/pad, +/obj/effect/floor_decal/spline/plain/cee{ + dir = 1 + }, +/turf/simulated/floor/carpet/rubber, +/area/horizon/command/teleporter) "dot" = ( /obj/structure/sink{ dir = 8; @@ -23605,134 +23340,121 @@ }, /turf/simulated/floor/tiled/freezer, /area/shuttle/skipjack) -"doE" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/airlock/glass_mining{ - dir = 4; - name = "Operations Hangar"; - req_one_access = list(26,29,31,48,67,70) - }, -/obj/machinery/door/firedoor, -/obj/effect/map_effect/door_helper/unres{ - dir = 8 - }, -/turf/simulated/floor/tiled/full, -/area/horizon/stairwell/central) -"doI" = ( -/obj/effect/floor_decal/corner/yellow{ - dir = 6 - }, -/obj/structure/table/rack, -/obj/item/stack/material/plastic/full, -/obj/item/stack/material/plastic/full, -/obj/item/stack/material/wood/full, -/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{ +"doP" = ( +/obj/machinery/light, +/obj/effect/floor_decal/spline/plain{ dir = 10 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/tiled/white{ - name = "cooled white floor"; - temperature = 278.15 - }, -/area/medical/morgue/lower) -"doM" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/computer/slot_machine, /turf/simulated/floor/tiled/dark, -/area/storage/eva) -"doO" = ( -/obj/machinery/button/switch/windowtint{ - id = "journalist"; - pixel_x = -2; - pixel_y = -19 +/area/horizon/service/bar) +"doU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/binary/pump/on{ + dir = 4; + name = "Distro to Airlock"; + target_pressure = 200 }, -/obj/machinery/light_switch{ - pixel_x = -9; - pixel_y = -19 - }, -/obj/machinery/papershredder{ - pixel_x = -6 - }, -/obj/structure/filingcabinet/filingcabinet{ - pixel_x = 10; - pixel_y = 1 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/item/device/radio/intercom/east, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 6 - }, -/turf/simulated/floor/wood, -/area/journalistoffice) +/turf/simulated/floor, +/area/horizon/maintenance/deck_2/wing/starboard/far) "doW" = ( /obj/structure/shuttle_part/tcfl{ icon_state = "16,0" }, /turf/unsimulated/floor/plating, /area/shuttle/legion) -"dpf" = ( -/obj/effect/floor_decal/corner/black/full{ +"doZ" = ( +/obj/machinery/door/firedoor, +/obj/structure/table/reinforced/steel, +/obj/item/paper_bin, +/obj/item/pen, +/obj/machinery/door/blast/shutters{ + dir = 4; + id = "seconddeckdockdesk"; + name = "Security Checkpoint Desk Shutter" + }, +/obj/machinery/door/window/desk/westright{ + name = "Arrivals Processing Desk"; + req_access = list(1) + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/security/checkpoint2) +"dpd" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner/yellow{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 8 }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/hangar/intrepid) -"dph" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/effect/floor_decal/corner/dark_green/full{ - dir = 8 +/obj/structure/disposalpipe/segment{ + dir = 4 }, /turf/simulated/floor/tiled, -/area/horizon/stairwell/central) +/area/horizon/engineering/lobby) +"dpg" = ( +/obj/machinery/door/airlock/highsecurity{ + name = "Emergency Exit"; + req_access = list(20); + locked = 1; + id_tag = "cap_escape" + }, +/obj/machinery/door/blast/regular{ + dir = 4; + id = "cap_escape_blast" + }, +/turf/simulated/floor/tiled, +/area/horizon/stairwell/bridge) +"dpi" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/aux{ + dir = 9 + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/structure/cable/yellow, +/obj/machinery/power/smes/buildable{ + RCon_tag = "Combustion Turbine - Grid"; + cur_coils = 4; + input_level = 500000; + output_level = 500000 + }, +/turf/simulated/floor/plating, +/area/horizon/engineering/atmos/turbine) "dpl" = ( /obj/effect/floor_decal/corner{ dir = 10 }, /turf/simulated/floor/marble/dark, /area/horizon/holodeck/source_tribunal) +"dps" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 9 + }, +/obj/machinery/power/apc/east, +/obj/structure/cable/green{ + icon_state = "0-8" + }, +/obj/structure/engineer_maintenance/electric{ + dir = 4 + }, +/obj/structure/engineer_maintenance/pipe{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/horizon/medical/gen_treatment) "dpt" = ( /obj/machinery/door/airlock/centcom{ name = "Superheavy Support Garage"; @@ -23745,14 +23467,6 @@ }, /turf/unsimulated/floor/plating, /area/centcom/legion/hangar5) -"dpw" = ( -/obj/machinery/atmospherics/binary/pump/high_power{ - dir = 8; - name = "Aux Tanks Outlet" - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/dark, -/area/maintenance/aux_atmospherics/deck_2/starboard/wing) "dpA" = ( /obj/structure/cryofeed{ dir = 2 @@ -23810,69 +23524,59 @@ }, /turf/space/dynamic, /area/template_noop) -"dpL" = ( -/obj/structure/table/reinforced/steel, -/obj/random/tool, -/obj/random/toolbox, -/obj/random/glowstick, -/obj/random/glowstick, -/turf/simulated/floor/carpet/rubber, -/area/maintenance/engineering/auxillary) -"dpM" = ( +"dpN" = ( +/obj/effect/map_effect/window_spawner/full/reinforced/grille/firedoor, /obj/structure/cable/green{ - icon_state = "1-2" + icon_state = "0-8" }, -/obj/machinery/light{ - dir = 8 +/turf/simulated/floor/tiled/dark/full, +/area/horizon/tcommsat/chamber) +"dpQ" = ( +/obj/effect/map_effect/window_spawner/full/reinforced/grille/firedoor, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id = "bridge blast"; + name = "Bridge Blast Doors"; + opacity = 0 }, -/obj/effect/floor_decal/corner/dark_green{ - dir = 9 +/obj/structure/cable/green{ + icon_state = "0-2" }, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/central) -"dpO" = ( -/obj/structure/cable{ +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/obj/structure/cable/green{ icon_state = "2-8" }, -/obj/structure/disposalpipe/segment{ - icon_state = "pipe-c" +/turf/simulated/floor, +/area/horizon/command/bridge/bridge_crew) +"dpT" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 10 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 + dir = 5 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 + dir = 5 }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor, -/area/maintenance/engineering_ladder) -"dpW" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 8 +/obj/structure/cable/green{ + icon_state = "1-4" }, -/obj/machinery/airlock_sensor{ - dir = 8; - pixel_x = 20 +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" }, -/obj/effect/map_effect/marker/airlock{ - frequency = 2001; - master_tag = "airlock_horizon_deck_2_starboard_aft"; - name = "airlock_horizon_deck_2_starboard_aft" +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_3/port) +"dpV" = ( +/obj/structure/cable{ + icon_state = "4-8" }, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard) -"dpX" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/shuttle/skipjack) -"dqc" = ( -/obj/machinery/door/firedoor/multi_tile{ - dir = 2 - }, -/obj/machinery/door/airlock/multi_tile/glass{ - dir = 2; - name = "Deck 2 Port Stairwell" +/obj/structure/disposalpipe/segment{ + dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -23881,30 +23585,48 @@ dir = 4 }, /turf/simulated/floor/tiled/full, -/area/hallway/primary/central_one) -"dqe" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 6 - }, -/obj/machinery/disposal/small/west, -/obj/structure/disposalpipe/trunk{ - dir = 8 +/area/horizon/engineering/storage_hard) +"dpX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/shuttle/skipjack) +"dpZ" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 5 }, /obj/structure/cable/green{ - icon_state = "1-2" + icon_state = "0-4" }, -/obj/machinery/firealarm/east, -/turf/simulated/floor/tiled, -/area/hallway/primary/aft) -"dql" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 6 +/obj/structure/table/steel, +/obj/machinery/recharger{ + pixel_x = -6; + pixel_y = 6 }, -/obj/structure/cable/green{ - icon_state = "1-2" +/obj/machinery/power/apc/north, +/obj/machinery/recharger{ + pixel_x = 6; + pixel_y = 6 }, /turf/simulated/floor/tiled, -/area/bridge/controlroom) +/area/horizon/operations/mining_main/refinery) +"dqn" = ( +/obj/machinery/firealarm/west, +/turf/simulated/floor/tiled, +/area/horizon/hangar/operations) +"dqo" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/starboard) "dqs" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/floor_decal/industrial/warning{ @@ -23912,26 +23634,19 @@ }, /turf/unsimulated/floor, /area/antag/raider) -"dqy" = ( -/obj/structure/cable/green{ - icon_state = "4-8" +"dqw" = ( +/obj/effect/floor_decal/corner/lime{ + dir = 10 }, -/obj/machinery/light/small/emergency{ - dir = 1 - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard/deck1) -"dqz" = ( -/obj/structure/table/steel, -/obj/random/pottedplant_small{ - pixel_x = 6 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 8 }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, /turf/simulated/floor/tiled, -/area/horizon/crew_quarters/fitness/gym) +/area/horizon/rnd/xenobiology/xenoflora) "dqA" = ( /obj/structure/closet/crate/medical, /obj/item/storage/firstaid/regular{ @@ -23992,29 +23707,71 @@ /obj/structure/lattice, /turf/simulated/open/airless, /area/horizon/exterior) -"dqH" = ( -/obj/random/dirt_75, -/turf/simulated/floor, -/area/maintenance/wing/port/far) -"dqO" = ( -/obj/effect/floor_decal/corner/dark_green/full, -/obj/machinery/firealarm/south, -/obj/structure/engineer_maintenance/electric, -/obj/structure/engineer_maintenance/pipe{ - dir = 8 +"dqD" = ( +/obj/structure/table/rack, +/obj/item/device/paint_sprayer, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/item/hoist_kit{ + pixel_y = 7 + }, +/obj/item/ladder_mobile, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/plating, +/area/horizon/engineering/storage/lower) +"dqF" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/obj/random/pottedplant, +/turf/simulated/floor/wood, +/area/horizon/service/cafeteria) +"dqM" = ( +/obj/effect/floor_decal/corner/pink/diagonal, +/obj/structure/table/standard, +/obj/item/device/flashlight/lamp/off{ + pixel_x = -5; + pixel_y = 6 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/maintenance/deck_2/wing/starboard/nacelle) +"dqN" = ( +/obj/machinery/firealarm/west{ + pixel_x = -24 + }, +/obj/effect/floor_decal/corner/brown{ + dir = 9 }, /turf/simulated/floor/tiled, -/area/engineering/lobby) +/area/horizon/operations/warehouse) +"dqQ" = ( +/obj/random/junk, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/main/starboard) "dqR" = ( /obj/effect/floor_decal/spline/plain{ dir = 10 }, /turf/simulated/floor/exoplanet/grass/grove, /area/centcom/shared_dream) -"dqW" = ( -/obj/machinery/atmospherics/portables_connector, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/bluespace_drive) +"dqV" = ( +/obj/structure/lattice, +/obj/structure/platform/ledge{ + dir = 1 + }, +/obj/structure/railing/mapped, +/turf/simulated/open, +/area/horizon/operations/office) "dqX" = ( /obj/structure/table/reinforced/steel, /obj/structure/window/reinforced/crescent, @@ -24028,6 +23785,22 @@ icon_state = "dark_preview" }, /area/centcom/control) +"drb" = ( +/obj/structure/platform_stairs/full/east_west_cap, +/obj/structure/platform/cutout{ + dir = 8 + }, +/obj/structure/platform{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/horizon/rnd/hallway/secondary) +"drd" = ( +/obj/machinery/power/breakerbox/activated{ + RCon_tag = "Service Substation" + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/substation/civ_d2) "drf" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 8 @@ -24036,104 +23809,77 @@ /obj/item/flame/candle, /turf/simulated/floor/holofloor/wood, /area/horizon/holodeck/source_sauna) -"dro" = ( -/obj/machinery/door/airlock/external{ - dir = 4 +"drh" = ( +/obj/machinery/firealarm/west, +/obj/structure/closet/walllocker/emerglocker/north, +/obj/effect/floor_decal/corner/dark_green/full{ + dir = 8 }, -/obj/machinery/access_button{ - dir = 1; - pixel_x = 28; - pixel_y = -20 - }, -/obj/effect/map_effect/marker/airlock{ - frequency = 1003; - master_tag = "airlock_horizon_deck_1_aft_port_1"; - name = "airlock_horizon_deck_1_aft_port_1" - }, -/obj/effect/map_effect/marker_helper/airlock/exterior, -/turf/simulated/floor/plating, -/area/maintenance/research_port) +/obj/effect/floor_decal/industrial/outline/emergency_closet, +/turf/simulated/floor/tiled, +/area/horizon/hangar/auxiliary) "drp" = ( /obj/effect/floor_decal/spline/plain{ dir = 1 }, /turf/unsimulated/floor/monotile, /area/antag/mercenary) -"drq" = ( -/obj/structure/window/shuttle/scc_space_ship, -/obj/structure/grille, -/obj/machinery/atmospherics/pipe/simple/visible/black{ - dir = 4 +"dry" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/engineering/engine_waste) -"drs" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 6 +/obj/effect/floor_decal/spline/fancy/wood/corner{ + dir = 1 }, -/obj/machinery/recharge_station, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/firealarm/north, -/turf/simulated/floor/tiled, -/area/horizon/stairwell/bridge) -"drE" = ( -/obj/structure/ladder{ - pixel_y = 16 +/turf/simulated/floor/wood, +/area/horizon/command/heads/captain) +"drA" = ( +/obj/structure/bookcase, +/obj/item/book/manual/wiki/station_procedure, +/obj/item/book/manual/wiki/security_space_law, +/obj/machinery/light{ + dir = 8 }, -/turf/simulated/open, -/area/maintenance/aft) +/obj/effect/floor_decal/corner/mauve/full, +/obj/item/book/manual/excavation, +/obj/item/book/manual/materials_chemistry_analysis, +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/xenological) +"drD" = ( +/obj/machinery/recharger, +/obj/structure/table/standard, +/obj/structure/railing/mapped, +/obj/item/device/destTagger{ + pixel_y = 8; + pixel_x = 14 + }, +/obj/item/stack/packageWrap{ + pixel_x = 16; + pixel_y = 8 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/hallway) "drI" = ( /obj/effect/floor_decal/corner/paleblue{ dir = 8 }, /turf/unsimulated/floor, /area/centcom/bar) -"drK" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/fuel{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/shuttle/intrepid/port_storage) "drP" = ( /obj/structure/grille, /obj/structure/lattice, /turf/space/dynamic, /area/horizon/exterior) -"drU" = ( -/obj/structure/window/shuttle/scc_space_ship, -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/shutters{ - dir = 4; - id = "shutters_deck2_hydroponicswindowssafety"; - name = "Viewing Shutter" +"drS" = ( +/obj/structure/shuttle_part/scc/scout{ + icon_state = "7,8" }, /turf/simulated/floor/plating, -/area/horizon/hydroponics/lower) -"drX" = ( -/obj/structure/cable/green, -/obj/machinery/power/apc/critical/south, -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/tiled/dark, -/area/engineering/gravity_gen) -"drY" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/operations/loading) +/area/horizon/shuttle/canary) +"dsa" = ( +/obj/structure/platform/ledge, +/turf/simulated/open, +/area/horizon/medical/hallway/upper) "dsb" = ( /obj/effect/floor_decal/corner/beige, /obj/structure/table/glass, @@ -24141,16 +23887,6 @@ /obj/item/book/manual/wiki/security_space_law, /turf/simulated/floor/tiled/white, /area/horizon/security/forensic_laboratory) -"dsc" = ( -/obj/structure/table/standard, -/obj/machinery/alarm/north, -/obj/item/device/destTagger{ - pixel_y = 7; - pixel_x = -3 - }, -/obj/item/stack/packageWrap, -/turf/simulated/floor/carpet/rubber, -/area/rnd/lab) "dsd" = ( /obj/effect/decal/fake_object{ desc = "A panel that controls the elevator."; @@ -24163,61 +23899,40 @@ icon_state = "dark_preview" }, /area/centcom/spawning) -"dsf" = ( -/obj/effect/floor_decal/industrial/outline/grey, -/turf/simulated/floor/tiled/dark, -/area/maintenance/wing/port/far) -"dsl" = ( -/obj/structure/table/reinforced/wood, -/obj/item/modular_computer/laptop/preset/command/captain{ - pixel_y = 9 +"dsj" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + icon_state = "1-2" }, -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 2; - icon_state = "shutter0"; - id = "cap_office_desk"; - name = "Captain Desk Shutters"; - opacity = 0 - }, -/turf/simulated/floor/tiled/dark/full, -/area/crew_quarters/captain) -"dsp" = ( -/obj/effect/shuttle_landmark/lift/operations_second_deck, -/turf/simulated/open, -/area/operations/office) -"dst" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume/aux{ +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 8 }, -/obj/effect/floor_decal/industrial/outline_straight/red, -/obj/effect/floor_decal/industrial/outline_straight/red{ +/obj/structure/disposalpipe/segment, +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor/plating, +/area/horizon/hallway/primary/deck_2/central) +"dsm" = ( +/obj/machinery/door/airlock{ + dir = 1; + id_tag = "cryo_toilet_2"; + name = "Toilet 2" + }, +/obj/machinery/door/firedoor{ dir = 4 }, -/obj/machinery/airlock_sensor{ - pixel_x = 20; - dir = 8; - pixel_y = 6 +/turf/simulated/floor/tiled, +/area/horizon/crew/washroom/deck_3) +"dsq" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable{ + icon_state = "1-2" }, -/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 +/obj/machinery/door/airlock/engineering{ + name = "C-Goliath Drive Control Room"; + req_one_access = list(11,24) }, /turf/simulated/floor/plating, -/area/shuttle/quark/cargo_hold) +/area/horizon/engineering/bluespace_drive) "dsy" = ( /obj/effect/floor_decal/corner/dark_blue/full{ dir = 8 @@ -24262,156 +23977,93 @@ /obj/item/paper_bin, /turf/simulated/floor/tiled, /area/horizon/security/warden) -"dsC" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 +"dsB" = ( +/obj/structure/cable{ + icon_state = "4-8" }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/obj/structure/platform, +/turf/simulated/floor/tiled/full, +/area/horizon/engineering/hallway/interior) +"dsE" = ( /obj/structure/cable/green{ - icon_state = "2-4" + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 + dir = 4 }, -/turf/simulated/floor/tiled/dark/full, -/area/storage/secure) -"dsG" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/sign/gtr, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/gen_treatment) +"dsO" = ( /obj/structure/cable/green{ - icon_state = "2-4" + icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ +/obj/effect/floor_decal/corner/brown{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/horizon/operations/break_room) +"dsP" = ( +/obj/machinery/light{ dir = 8 }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ +/obj/effect/floor_decal/spline/fancy/wood{ dir = 8 }, -/turf/simulated/floor/tiled/dark, -/area/storage/eva) -"dsH" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/shuttle/scc_space_ship, -/turf/simulated/floor/plating, -/area/crew_quarters/lounge) -"dsI" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/hangar/starboard) -"dsM" = ( -/obj/machinery/door/airlock/external, -/obj/machinery/access_button{ - pixel_x = 28 - }, -/obj/effect/map_effect/marker/airlock{ - frequency = 1002; - master_tag = "airlock_horizon_deck_3_fore_starboard_1"; - name = "airlock_horizon_deck_3_fore_starboard_1" - }, -/obj/effect/map_effect/marker_helper/airlock/exterior, -/turf/simulated/floor, -/area/maintenance/bridge) +/obj/machinery/hologram/holopad, +/obj/machinery/newscaster/west, +/turf/simulated/floor/wood, +/area/horizon/service/chapel/office) "dsQ" = ( /turf/simulated/wall/shuttle/unique/tcfl{ icon_state = "6,6" }, /area/shuttle/legion) -"dsR" = ( -/obj/random/loot, -/obj/structure/closet, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard/deck1) -"dsT" = ( -/obj/structure/table/rack{ - dir = 8 +"dsV" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 10 }, -/obj/effect/floor_decal/corner_wide/blue/full, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/item/circuitboard/robotics{ - pixel_y = 4 +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 }, -/obj/item/circuitboard/aiupload, -/obj/item/circuitboard/borgupload{ - pixel_y = -4 - }, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/storage/tech) -"dsW" = ( -/obj/effect/floor_decal/spline/plain/corner{ - dir = 1 - }, -/turf/simulated/wall, -/area/horizon/bar) +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_3/starboard/docks) +"dsX" = ( +/turf/simulated/floor/reinforced/airless, +/area/horizon/engineering/reactor/indra/mainchamber) "dsY" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/item/hullbeacon/red, /obj/effect/floor_decal/industrial/warning, /turf/simulated/floor/reinforced/airless, /area/horizon/exterior) -"dsZ" = ( -/obj/effect/floor_decal/corner/yellow{ - dir = 6 - }, -/turf/simulated/floor/tiled/dark, -/area/engineering/aft_airlock) -"dtb" = ( -/obj/structure/flora/ausbushes/sparsegrass, -/obj/structure/flora/ausbushes/ywflowers, -/turf/simulated/floor/grass/no_edge, -/area/horizon/hydroponics/lower) -"dtc" = ( +"dtd" = ( /turf/simulated/wall/r_wall, -/area/lawoffice/consular) +/area/horizon/maintenance/deck_3/aft/starboard) +"dte" = ( +/obj/effect/floor_decal/industrial/outline/medical, +/turf/simulated/floor/tiled, +/area/horizon/operations/warehouse) "dtf" = ( /obj/structure/lattice/catwalk/indoor/grate/dark, /turf/simulated/floor, /area/shuttle/mercenary) -"dti" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/maintenance/wing/port) -"dtl" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 5 - }, -/turf/simulated/floor/tiled/dark, -/area/engineering/break_room) -"dtm" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 1 - }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor/wood, -/area/crew_quarters/captain) -"dtr" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/storage/primary) "dts" = ( /turf/unsimulated/wall/fakepdoor{ dir = 4 }, /area/centcom/specops) -"dtB" = ( -/obj/machinery/light, -/obj/machinery/camera/network/command{ - c_tag = "Bridge - Atrium Aft"; - dir = 1 - }, -/obj/effect/floor_decal/corner/dark_blue/full{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/bridge/upperdeck) "dtE" = ( /obj/effect/floor_decal/corner/beige{ dir = 6 @@ -24426,44 +24078,81 @@ }, /turf/simulated/floor/tiled/white, /area/horizon/security/forensic_laboratory) -"dtI" = ( -/obj/structure/sign/flag/scc/unmovable, -/turf/simulated/wall/r_wall, -/area/horizon/hallway/deck_three/primary/central) -"dtP" = ( +"dtM" = ( +/obj/effect/floor_decal/spline/fancy, +/obj/machinery/computer/ship/engines{ + dir = 1 + }, +/turf/simulated/floor/carpet/rubber, +/area/horizon/command/bridge/controlroom) +"dtN" = ( +/obj/machinery/power/sensor{ + name = "Powernet Sensor - Deck 3 Telecommunications Subgrid"; + name_tag = "Deck 3 Telecommunications Subgrid" + }, /obj/structure/cable/green{ - icon_state = "4-8" + icon_state = "0-4" }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/structure/cable/green{ + icon_state = "1-4" }, -/obj/machinery/door/firedoor, +/obj/effect/floor_decal/spline/plain{ + dir = 6 + }, +/turf/simulated/floor/carpet/rubber, +/area/horizon/tcommsat/entrance) +"dtR" = ( +/obj/effect/floor_decal/corner_wide/green{ + dir = 9 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/icu) +"dtU" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 + dir = 10 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/disposalpipe/segment{ + icon_state = "pipe-c" + }, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor, +/area/horizon/hallway/primary/deck_3/central) +"dtX" = ( +/obj/effect/floor_decal/industrial/warning{ dir = 4 }, -/obj/machinery/door/airlock/glass_command{ - dir = 4; - name = "Break Room"; - req_one_access = list(19,38) +/obj/structure/table/standard, +/obj/machinery/cell_charger{ + pixel_y = -4 }, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "bridge blast"; - name = "Bridge Blast Doors"; - opacity = 0 +/obj/machinery/recharger{ + pixel_x = -6; + pixel_y = 10 + }, +/obj/machinery/recharger{ + pixel_x = 6; + pixel_y = 10 }, /turf/simulated/floor/tiled, -/area/bridge/controlroom) -"dtT" = ( -/obj/effect/floor_decal/industrial/warning{ +/area/horizon/crew/chargebay) +"dug" = ( +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/effect/floor_decal/corner/dark_green{ dir = 5 }, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard) +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_3/starboard) "dul" = ( /obj/effect/floor_decal/corner/yellow{ dir = 8 @@ -24477,18 +24166,6 @@ /obj/effect/map_effect/window_spawner/reinforced, /turf/simulated/floor/plating, /area/centcom/shared_dream) -"dun" = ( -/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 2; - icon_state = "shutter0"; - id = "LCKDshutters"; - name = "Medical Lockdown Shutters"; - opacity = 0 - }, -/turf/simulated/floor/tiled/dark/full, -/area/hallway/medical) "dus" = ( /obj/structure/disposalpipe/trunk{ dir = 1 @@ -24499,31 +24176,18 @@ icon_state = "white" }, /area/tdome/tdomeadmin) -"duw" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ +"duu" = ( +/obj/effect/floor_decal/industrial/warning{ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/machinery/door/airlock/maintenance{ - dir = 4; - req_access = list(5) +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 }, -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 4; - icon_state = "shutter0"; - id = "LCKDshutters"; - name = "Medical Lockdown Shutters"; - opacity = 0 - }, -/turf/simulated/floor/tiled/full, -/area/hallway/medical) +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/reactor/supermatter/mainchamber) "dux" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 9 @@ -24544,54 +24208,6 @@ dir = 8 }, /area/centcom/holding) -"duA" = ( -/obj/machinery/alarm/north, -/obj/effect/floor_decal/corner/dark_green/full{ - dir = 8 - }, -/obj/machinery/button/remote/airlock/screamer{ - channel = "Command"; - dir = 1; - id = "airlocks_deck2_ammostorage"; - message = "The secure ammunition storage door bolts have been toggled."; - name = "Door Bolt Control"; - pixel_x = -40; - pixel_y = -8; - req_one_access = list(75); - specialfunctions = 4; - desiredstate = 1 - }, -/obj/machinery/button/remote/blast_door{ - dir = 1; - id = "shutters_deck1_ammostorage"; - name = "Blast Door Control"; - pixel_x = -40; - pixel_y = 2; - req_one_access = list(75) - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/machinery/turretid{ - dir = 4; - name = "\improper Secure Ammunition Storage Turret Control Console"; - pixel_x = -26; - req_access = null; - req_one_access = list(11,19,20,24,31,41) - }, -/turf/simulated/floor/tiled, -/area/horizon/secure_ammunition_storage) -"duB" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor/wood, -/area/lawoffice/representative_two) "duE" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 5 @@ -24630,16 +24246,6 @@ /obj/structure/engineer_maintenance/electric, /turf/simulated/floor/lino, /area/horizon/security/investigators_office) -"duH" = ( -/obj/machinery/light, -/obj/effect/floor_decal/corner/dark_green{ - dir = 10 - }, -/obj/structure/bed/stool/chair{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/engineering/lobby) "duI" = ( /obj/machinery/button/remote/blast_door{ id = "corvette__bridge_exterior"; @@ -24658,54 +24264,35 @@ /obj/machinery/computer/shuttle_control/multi/crescent, /turf/simulated/floor/shuttle/black, /area/shuttle/hapt) -"duK" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - icon_state = "1-2" +"duL" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 1 }, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/corner/dark_green{ - dir = 6 - }, -/obj/machinery/light/floor{ +/obj/effect/floor_decal/corner/dark_blue{ dir = 4 }, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/starboard) -"duN" = ( -/obj/structure/cable/green{ - icon_state = "4-8" +/obj/effect/floor_decal/corner/dark_blue{ + dir = 8 }, -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled, -/area/operations/storage) +/obj/machinery/alarm/west, +/obj/structure/engineer_maintenance/pipe/wall, +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/atmos) "duO" = ( /obj/effect/floor_decal/spline/fancy/wood, /obj/structure/railing/mapped, /turf/simulated/floor/holofloor/wood, /area/horizon/holodeck/source_chapel) -"duV" = ( -/obj/machinery/firealarm/west, -/obj/effect/floor_decal/corner/yellow{ +"duY" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/corner/dark_green{ dir = 9 }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/closet/secure_closet/engineering_electrical, -/turf/simulated/floor/tiled, -/area/engineering/storage_eva) -"duX" = ( -/obj/effect/floor_decal/corner_wide/green{ - dir = 6 +/obj/structure/cable/green{ + icon_state = "1-2" }, -/obj/structure/table/standard, -/turf/simulated/floor/tiled/white, -/area/medical/main_storage) -"dva" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/random/dirt_75, -/turf/simulated/floor, -/area/maintenance/wing/port/far) +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_3/central) "dve" = ( /obj/structure/table/rack, /obj/effect/floor_decal/industrial/outline/yellow, @@ -24726,50 +24313,83 @@ }, /turf/simulated/floor/carpet/magenta, /area/horizon/holodeck/source_cafe) -"dvp" = ( -/obj/machinery/atmospherics/binary/pump/on{ - dir = 8; - name = "Distro to Starboard Docks"; - target_pressure = 200 - }, -/obj/effect/floor_decal/industrial/warning/cee{ +"dvk" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ dir = 8 }, -/obj/machinery/alarm/north, -/obj/structure/lattice/catwalk/indoor/grate, -/turf/simulated/floor/plating, -/area/horizon/hallway/deck_three/primary/starboard/docks) -"dvv" = ( -/obj/effect/floor_decal/corner_wide/green{ - dir = 10 +/obj/effect/map_effect/marker/airlock{ + frequency = 1001; + master_tag = "airlock_horizon_deck_3_aft_1"; + name = "airlock_horizon_deck_3_aft_1" }, -/obj/structure/disposalpipe/trunk{ +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor, +/area/horizon/maintenance/deck_3/aft/port/far) +"dvm" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/corner/brown{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/horizon/operations/office) +"dvn" = ( +/obj/machinery/door/airlock/maintenance{ + dir = 4; + req_one_access = list(2,3,4) + }, +/obj/machinery/door/firedoor{ dir = 4 }, -/obj/machinery/disposal/small/north{ - pixel_y = -17 +/turf/simulated/floor, +/area/horizon/security/evidence_storage) +"dvo" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 5 }, -/turf/simulated/floor/tiled/white, -/area/medical/equipment) +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_2/central) +"dvq" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/obj/structure/bed/stool/chair/sofa/red{ + dir = 8 + }, +/obj/structure/railing/mapped{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/horizon/service/cafeteria) "dvy" = ( /obj/structure/shuttle_part/tcfl{ icon_state = "2,0" }, /turf/unsimulated/floor/plating, /area/shuttle/legion) -"dvA" = ( -/obj/effect/floor_decal/corner/lime{ - dir = 10 +"dvz" = ( +/obj/structure/railing/mapped, +/obj/structure/bed/stool/chair/office/dark{ + dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ +/obj/effect/landmark/start{ + name = "Engineering Apprentice" + }, +/obj/effect/floor_decal/corner_wide/yellow/full, +/obj/effect/floor_decal/corner_wide/yellow/diagonal{ + dir = 4 + }, +/obj/machinery/light{ dir = 8 }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, /turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora) +/area/horizon/engineering/break_room) "dvF" = ( /obj/effect/floor_decal/corner/lime{ dir = 6 @@ -24777,45 +24397,9 @@ /obj/effect/decal/cleanable/dirt, /turf/unsimulated/floor, /area/antag/jockey) -"dvK" = ( -/obj/structure/cable/orange{ - icon_state = "4-8" - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/structure/lattice/catwalk/indoor, -/turf/simulated/floor/plating, -/area/engineering/engine_room/rust) -"dvN" = ( -/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/machinery/light, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/aux{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/green{ - dir = 8 - }, -/obj/structure/lattice/catwalk/indoor/grate, -/turf/simulated/floor/plating, -/area/hallway/engineering) +"dvM" = ( +/turf/simulated/floor/tiled/dark, +/area/horizon/hangar/intrepid) "dvO" = ( /obj/structure/cable/green{ icon_state = "1-2" @@ -24848,40 +24432,70 @@ /obj/machinery/newscaster/west, /turf/simulated/floor/tiled, /area/horizon/security/investigations_hallway) -"dwc" = ( -/obj/structure/cable/green{ - icon_state = "4-8" +"dvX" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 10 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ +/obj/structure/disposalpipe/segment{ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/effect/floor_decal/corner_wide/green{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/hallway/medical) -"dwe" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 8 - }, -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/turf/simulated/floor/wood, -/area/crew_quarters/heads/hor) -"dwg" = ( -/obj/structure/railing/mapped{ +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/obj/structure/railing/mapped, -/obj/structure/railing/mapped{ - dir = 8 +/obj/structure/cable/green{ + icon_state = "4-8" }, -/turf/simulated/open, -/area/horizon/hydroponics) +/turf/simulated/floor/tiled, +/area/horizon/operations/office) +"dwa" = ( +/obj/machinery/firealarm/south, +/obj/effect/floor_decal/corner/dark_green{ + dir = 10 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/turf/simulated/floor/tiled, +/area/horizon/crew/fitness/changing) +"dwk" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/port/near) +"dwn" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/shuttle/intrepid/main_compartment) +"dwp" = ( +/obj/machinery/vending/cigarette{ + pixel_x = -3; + pixel_y = 3 + }, +/turf/simulated/floor/wood/walnut, +/area/horizon/medical/smoking) "dwq" = ( /obj/machinery/light/small{ dir = 8 @@ -24893,32 +24507,42 @@ }, /turf/simulated/floor/carpet, /area/shuttle/skipjack) -"dwr" = ( -/obj/machinery/button/ignition{ - id = "starboard_prop_igni"; - pixel_y = 26; - name = "Combustion Chamber Ignition" - }, -/obj/machinery/atmospherics/pipe/simple/visible/purple{ +"dws" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/obj/effect/floor_decal/corner_wide/black/full{ - dir = 1 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor/plating, +/area/horizon/hallway/primary/deck_1/central) +"dwv" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/floor_decal/industrial/warning, +/obj/structure/bed/stool/chair/folding, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/wing/port/far) +"dwA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_3/port) +"dwB" = ( +/obj/effect/floor_decal/corner/red/diagonal, /obj/effect/floor_decal/industrial/warning{ - dir = 5 + dir = 4 }, -/turf/simulated/floor/tiled/dark, -/area/engineering/atmos/propulsion/starboard) -"dwu" = ( -/obj/structure/table/steel, -/obj/item/device/multitool, -/obj/machinery/camera/network/research{ - c_tag = "Research - Server Room" - }, -/obj/machinery/firealarm/north, -/turf/simulated/floor/carpet/rubber, -/area/server) +/turf/simulated/floor/tiled, +/area/horizon/maintenance/deck_2/research) "dwC" = ( /obj/effect/floor_decal/corner/dark_blue{ dir = 6 @@ -24956,6 +24580,20 @@ /obj/effect/floor_decal/industrial/warning/full, /turf/unsimulated/floor, /area/centcom/control) +"dwM" = ( +/obj/machinery/atmospherics/omni/mixer{ + active_power_usage = 7500; + tag_east = 1; + tag_east_con = 0; + tag_north = 1; + tag_north_con = 0.5; + tag_south = 1; + tag_south_con = 0.5; + tag_west = 2 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/atmos/propulsion) "dwS" = ( /obj/effect/floor_decal/corner/dark_blue/full{ dir = 8 @@ -24986,23 +24624,19 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/holodeck/source_pool) -"dwY" = ( -/obj/effect/floor_decal/corner_wide/purple{ - dir = 5 +"dwW" = ( +/obj/effect/floor_decal/corner_wide/black/full{ + dir = 4 }, -/obj/effect/floor_decal/corner_wide/purple{ +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/obj/machinery/light, +/obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 }, -/obj/machinery/button/remote/airlock{ - dir = 1; - id = "harvd"; - name = "Door Bolt Control"; - pixel_y = 22; - req_access = list(65); - specialfunctions = 4 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenoarch_atrium) +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/atmos/propulsion/starboard) "dxa" = ( /obj/effect/floor_decal/corner/paleblue{ dir = 5 @@ -25015,58 +24649,49 @@ }, /turf/unsimulated/floor, /area/centcom/holding) -"dxn" = ( -/obj/effect/floor_decal/corner/green{ - dir = 5 - }, -/obj/structure/cable/green{ +"dxi" = ( +/turf/simulated/wall/shuttle/scc_space_ship/cardinal, +/area/horizon/engineering/reactor/indra/office) +"dxo" = ( +/obj/structure/cable{ icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/white, -/area/horizon/crew_quarters/cryo/washroom) -"dxt" = ( -/obj/structure/cable/green{ - icon_state = "1-2" +/obj/structure/cable/orange{ + icon_state = "4-8" }, -/turf/simulated/floor/tiled/white, -/area/rnd/chemistry) -"dxw" = ( -/obj/machinery/atmospherics/portables_connector, -/obj/machinery/portable_atmospherics/powered/scrubber, -/obj/effect/floor_decal/industrial/outline/red, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/atmos/storage) -"dxy" = ( -/obj/effect/floor_decal/industrial/warning/corner, -/obj/machinery/light/small/emergency{ +/obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 1 }, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard) +/obj/effect/floor_decal/corner_wide/yellow/full{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/horizon/engineering/bluespace_drive) "dxC" = ( /turf/unsimulated/floor, /area/antag/ninja) -"dxQ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" +"dxK" = ( +/obj/effect/floor_decal/corner_wide/yellow/full{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/horizon/engineering/bluespace_drive) +"dxP" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 }, /obj/structure/cable/green{ - icon_state = "1-2" + icon_state = "4-8" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/maintenance/security_port) -"dxX" = ( -/obj/structure/platform{ - dir = 4 +/obj/random/pottedplant, +/turf/simulated/floor/wood, +/area/horizon/crew/journalistoffice) +"dxT" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 }, -/turf/simulated/floor, -/area/maintenance/wing/port/far) +/turf/simulated/floor/wood, +/area/horizon/command/heads/xo) "dxY" = ( /obj/effect/floor_decal/corner/black{ dir = 6 @@ -25076,6 +24701,33 @@ }, /turf/simulated/floor/tiled/dark, /area/shuttle/hapt) +"dxZ" = ( +/obj/machinery/light/small/emergency{ + dir = 8 + }, +/obj/item/stack/rods, +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/obj/machinery/power/apc/west, +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/auxatmos) +"dyb" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/airless, +/area/horizon/hangar/operations) +"dyc" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + dir = 4 + }, +/turf/simulated/floor/tiled/full, +/area/horizon/hallway/primary/deck_3/starboard/docks) "dyf" = ( /obj/structure/bed/stool/chair{ dir = 4 @@ -25089,18 +24741,23 @@ /obj/machinery/power/apc/low/west, /turf/simulated/floor/tiled, /area/horizon/security/lobby) -"dyh" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 10 +"dyi" = ( +/obj/structure/tank_wall{ + icon_state = "m-10" }, -/turf/simulated/floor/tiled, -/area/horizon/hydroponics/garden) -"dyl" = ( -/obj/structure/cable/orange{ - icon_state = "4-8" +/obj/effect/floor_decal/industrial/warning{ + dir = 8 }, /turf/simulated/floor/plating, -/area/engineering/engine_room) +/area/horizon/engineering/atmos) +"dyk" = ( +/obj/effect/floor_decal/corner/lime/diagonal, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/white, +/area/horizon/shuttle/intrepid/medical) "dyn" = ( /obj/structure/table/standard, /obj/item/clothing/mask/gas/vaurca/filter{ @@ -25111,11 +24768,34 @@ }, /turf/unsimulated/floor, /area/antag/ninja) -"dyG" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/floodlight, +"dyo" = ( +/obj/structure/bed/stool/chair/sofa/right/brown{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/horizon/medical/psych) +"dyy" = ( +/obj/effect/floor_decal/corner/dark_blue/diagonal, +/obj/structure/bed/stool/chair/office/dark, +/turf/simulated/floor/tiled/dark, +/area/horizon/security/checkpoint) +"dyC" = ( +/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 2; + icon_state = "shutter0"; + id = "LCKDshutters"; + name = "Medical Lockdown Shutters"; + opacity = 0 + }, /turf/simulated/floor/tiled/dark/full, -/area/shuttle/intrepid/port_storage) +/area/horizon/medical/hallway) +"dyE" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/structure/railing/mapped, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/reactor/indra/mainchamber) "dyJ" = ( /obj/effect/decal/fake_object/light_source/invisible{ light_color = "#C46518"; @@ -25124,6 +24804,30 @@ }, /turf/simulated/floor/exoplanet/barren, /area/centcom/shared_dream) +"dyK" = ( +/obj/effect/floor_decal/corner_wide/purple{ + dir = 6 + }, +/obj/effect/floor_decal/corner_wide/purple{ + dir = 10 + }, +/obj/effect/floor_decal/corner_wide/purple{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/xenoarch/atrium) "dyQ" = ( /obj/structure/shuttle/engine/heater{ dir = 1 @@ -25137,6 +24841,15 @@ }, /turf/unsimulated/floor/plating, /area/centcom/legion) +"dyU" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/turf/simulated/floor/reinforced, +/area/horizon/rnd/xenobiology) "dyX" = ( /obj/effect/floor_decal/corner/dark_blue{ dir = 5 @@ -25150,15 +24863,13 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/security/interrogation/monitoring) -"dza" = ( -/obj/effect/floor_decal/corner/brown{ - dir = 9 +"dzd" = ( +/obj/effect/floor_decal/industrial/outline/research, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/photocopier, -/obj/machinery/alarm/west, -/turf/simulated/floor/tiled, -/area/operations/office) +/turf/simulated/floor/tiled/dark, +/area/horizon/shuttle/quark/cargo_hold) "dzf" = ( /obj/effect/floor_decal/corner/paleblue{ dir = 10 @@ -25170,73 +24881,47 @@ icon_state = "dark_preview" }, /area/centcom/ferry) -"dzi" = ( -/obj/structure/window/shuttle/scc_space_ship, -/obj/structure/grille, -/obj/machinery/atmospherics/pipe/simple/visible/red, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/engineering/atmos) -"dzp" = ( -/obj/machinery/light{ - dir = 1 +"dzx" = ( +/obj/effect/landmark/entry_point/port{ + name = "port, atmospherics" }, -/obj/effect/floor_decal/industrial/outline/red, -/obj/structure/table/rack, -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/item/warhead/longbow, -/obj/item/warhead/longbow, -/obj/item/warhead/longbow, -/obj/effect/floor_decal/industrial/warning{ - dir = 5 - }, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/secure_ammunition_storage) -"dzs" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/closet/crate, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard) -"dzv" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/machinery/light/small/emergency{ +/turf/simulated/wall/shuttle/scc_space_ship/cardinal, +/area/horizon/engineering/atmos/turbine) +"dzy" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 8 }, -/turf/simulated/floor/plating, -/area/maintenance/security_port) -"dzA" = ( -/obj/machinery/portable_atmospherics/powered/scrubber, -/turf/simulated/floor/tiled/dark, -/area/engineering/atmos/propulsion/starboard) -"dzF" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/turf/simulated/floor/carpet/rubber, -/area/server) -"dzI" = ( -/obj/effect/floor_decal/corner_wide/blue, -/obj/effect/floor_decal/corner_wide/yellow{ - dir = 4 - }, -/obj/effect/floor_decal/spline/plain{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 8 }, /turf/simulated/floor/tiled, -/area/engineering/atmos/storage) +/area/horizon/rnd/xenobiology/xenoflora) +"dzz" = ( +/obj/effect/floor_decal/corner/dark_green/diagonal, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/horizon/crew/fitness/gym) +"dzE" = ( +/obj/machinery/button/remote/airlock{ + dir = 8; + id = "cryo_toilet_2"; + name = "Door Bolt Control"; + pixel_x = -24; + pixel_y = 6; + specialfunctions = 4 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/effect/floor_decal/corner/green/diagonal, +/obj/structure/toilet{ + dir = 1; + pixel_y = -1 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/crew/washroom/deck_3) "dzJ" = ( /obj/machinery/autolathe{ desc = "Your typical Autolathe. It appears to have much more options than your regular one, however..."; @@ -25255,26 +24940,61 @@ }, /turf/unsimulated/floor/wood, /area/antag/mercenary) -"dzP" = ( +"dzT" = ( +/obj/structure/dispenser/oxygen, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled, +/area/horizon/engineering/storage_eva) +"dzV" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/wing/starboard/far) +"dzY" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 + }, +/obj/machinery/light/floor{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/rnd/xenobiology/xenoflora) +"dAf" = ( +/turf/simulated/wall/shuttle/scc_space_ship/cardinal, +/area/horizon/maintenance/deck_1/hangar/starboard) +"dAj" = ( /obj/effect/floor_decal/corner/mauve{ + dir = 5 + }, +/obj/effect/floor_decal/corner/white{ + dir = 10 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/table/standard, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 6 }, -/obj/structure/platform_deco{ - dir = 8 +/turf/simulated/floor/tiled/dark, +/area/horizon/rnd/xenobiology/xenoflora) +"dAk" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 }, -/obj/structure/platform_deco{ - icon_state = "ledge_deco" - }, -/turf/simulated/floor/tiled, -/area/rnd/hallway/secondary) -"dAc" = ( -/obj/effect/floor_decal/industrial/warning/corner, -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/reinforced/airless, -/area/template_noop) -"dAg" = ( -/turf/simulated/wall/r_wall, -/area/engineering/storage_eva) +/obj/structure/tank_wall/nitrous_oxide, +/turf/simulated/floor/plating, +/area/horizon/engineering/atmos/air) "dAl" = ( /obj/machinery/door/blast/odin{ _wifi_id = "odin_arrivals_lockdown"; @@ -25287,14 +25007,6 @@ /obj/effect/floor_decal/industrial/hatch/yellow, /turf/unsimulated/floor, /area/centcom/checkpoint/fore) -"dAn" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 10 - }, -/obj/machinery/alarm/south, -/obj/machinery/light, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/starboard) "dAp" = ( /obj/effect/floor_decal/corner/dark_blue{ dir = 9 @@ -25315,18 +25027,26 @@ /obj/effect/floor_decal/spline/fancy/wood/corner, /turf/simulated/floor/holofloor/wood, /area/horizon/holodeck/source_sauna) -"dAw" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 +"dAx" = ( +/obj/effect/floor_decal/corner/grey{ + dir = 5 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" }, -/obj/effect/floor_decal/corner_wide/green{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/hallway/medical/upper) +/turf/simulated/floor/lino, +/area/horizon/service/bar) +"dAC" = ( +/turf/simulated/wall, +/area/horizon/maintenance/deck_3/bridge) +"dAD" = ( +/obj/machinery/telecomms/processor/preset_four, +/turf/simulated/floor/bluegrid, +/area/horizon/tcommsat/chamber) "dAG" = ( /obj/effect/floor_decal/corner/beige{ dir = 9 @@ -25334,20 +25054,16 @@ /obj/machinery/alarm/west, /turf/simulated/floor/tiled/white, /area/horizon/security/forensic_laboratory) -"dAI" = ( -/obj/machinery/atmospherics/binary/pump{ - dir = 4; - name = "Oxygen to Connector" +"dAH" = ( +/obj/structure/grille, +/obj/machinery/door/firedoor, +/obj/structure/window/shuttle/scc_space_ship/cardinal, +/obj/machinery/door/blast/regular/open{ + id = "shutters_deck2_grauwolf"; + name = "Safety Blast Door" }, /turf/simulated/floor/plating, -/area/engineering/atmos/air) -"dAJ" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/item/material/shard{ - icon_state = "small" - }, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard) +/area/horizon/weapons/grauwolf) "dAT" = ( /obj/structure/closet/secure_closet/medical2{ req_access = null @@ -25359,84 +25075,39 @@ icon_state = "white" }, /area/centcom/legion) -"dAU" = ( -/obj/structure/tank_wall{ - icon_state = "m-3" - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/engineering/atmos) -"dAX" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/engineering/atmos/air) -"dAY" = ( -/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/machinery/door/firedoor, -/obj/machinery/door/airlock/maintenance{ +"dAV" = ( +/obj/effect/floor_decal/corner/dark_green/diagonal, +/obj/structure/window/reinforced{ dir = 1; - req_one_access = list(12) - }, -/turf/simulated/floor, -/area/maintenance/engineering_ladder) -"dAZ" = ( -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/operations) -"dBa" = ( -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/machinery/disposal/small/west, -/obj/machinery/firealarm/east, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 6 - }, -/turf/simulated/floor/wood, -/area/horizon/bar) -"dBb" = ( -/obj/effect/floor_decal/corner/brown{ - dir = 9 - }, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 8 - }, -/obj/structure/railing/mapped{ - dir = 8 + pixel_y = -14 }, /turf/simulated/floor/tiled, -/area/operations/loading) +/area/horizon/hallway/primary/deck_3/port) +"dAW" = ( +/obj/machinery/conveyor{ + id = "Robocompo" + }, +/obj/structure/platform{ + dir = 4 + }, +/obj/machinery/camera/network/supply{ + c_tag = "Operations - Machinist Workshop Starboard"; + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/horizon/operations/machinist) "dBe" = ( /obj/effect/floor_decal/corner/paleblue{ dir = 10 }, /turf/unsimulated/floor, /area/centcom/holding) -"dBf" = ( -/obj/effect/floor_decal/corner/green/diagonal, -/obj/structure/cable/green{ - icon_state = "2-8" +"dBg" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/alarm/north, -/turf/simulated/floor/tiled/white, -/area/medical/ward/isolation) +/turf/simulated/floor/plating, +/area/horizon/engineering/reactor/supermatter/airlock) "dBh" = ( /obj/item/storage/belt/medical{ pixel_x = -3; @@ -25455,18 +25126,6 @@ }, /turf/simulated/floor/tiled/white, /area/shuttle/hapt) -"dBk" = ( -/obj/structure/bed/stool/chair/office/light{ - dir = 4 - }, -/obj/effect/landmark/start{ - name = "Lab Assistant" - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/rnd/conference) "dBn" = ( /obj/structure/dueling_table/no_collide/above_layer{ icon_state = "top_center" @@ -25489,22 +25148,10 @@ }, /turf/simulated/floor/holofloor/tiled, /area/horizon/holodeck/source_gym) -"dBx" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/spline/fancy/wood/corner{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/horizon/crew_quarters/lounge/bar) -"dBA" = ( -/turf/simulated/floor/reinforced/hydrogen, -/area/engineering/atmos) +"dBz" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/bluegrid, +/area/horizon/hallway/primary/deck_2/central) "dBB" = ( /obj/machinery/bodyscanner{ dir = 4 @@ -25516,6 +25163,15 @@ icon_state = "white" }, /area/centcom/legion) +"dBC" = ( +/obj/effect/floor_decal/corner/dark_blue/full{ + dir = 1 + }, +/obj/structure/fireaxecabinet/north{ + pixel_y = 30 + }, +/turf/simulated/floor/tiled, +/area/horizon/command/bridge/controlroom) "dBD" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/machinery/door/airlock/centcom{ @@ -25531,37 +25187,141 @@ icon_state = "dark_preview" }, /area/centcom/specops) -"dBG" = ( -/obj/machinery/atmospherics/pipe/simple/visible/black{ +"dBJ" = ( +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 +/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/industrial/hatch/yellow, +/turf/simulated/floor/tiled/full, +/area/horizon/hallway/primary/deck_3/central) +"dBK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/door/airlock/maintenance{ + dir = 1; + name = "Hydroponics Maintenance"; + req_access = list(35) + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/full, +/area/horizon/service/hydroponics/lower) +"dBM" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/research) +"dBS" = ( +/obj/structure/grille, +/obj/machinery/door/firedoor, +/obj/structure/window/shuttle/scc_space_ship/cardinal, +/obj/machinery/door/blast/regular/open{ + dir = 8; + id = "hra_room_bd"; + name = "Meeting Room Blast Door" + }, +/obj/machinery/door/blast/shutters/open{ + id = "ccia_shutters"; + name = "Safety Shutter" + }, +/turf/simulated/floor/plating, +/area/horizon/command/bridge/cciaroom) +"dBV" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/table/reinforced/steel, +/obj/item/device/hand_labeler{ + pixel_y = 4 + }, +/obj/item/storage/box/samplebags{ + pixel_x = 2; + pixel_y = -4 }, -/obj/machinery/alarm/north, /turf/simulated/floor/tiled/dark, -/area/engineering/atmos/propulsion/starboard) -"dBO" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 +/area/horizon/rnd/xenoarch/atrium) +"dBZ" = ( +/obj/machinery/power/apc/north, +/obj/structure/cable/green{ + icon_state = "0-2" }, -/turf/simulated/floor, -/area/horizon/maintenance/deck_three/aft/starboard) -"dCc" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ +/obj/effect/floor_decal/corner/dark_blue{ dir = 5 }, -/turf/simulated/floor, -/area/maintenance/wing/port/far) -"dCn" = ( -/obj/structure/bed/stool/chair/padded/brown{ +/turf/simulated/floor/tiled/dark, +/area/horizon/weapons/grauwolf) +"dCb" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 9 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 8 }, -/obj/effect/landmark/start{ - name = "Passenger" +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/structure/disposalpipe/junction{ + dir = 8; + icon_state = "pipe-j2" }, -/turf/simulated/floor/carpet/art, -/area/crew_quarters/lounge) +/turf/simulated/floor/tiled, +/area/horizon/operations/commissary) +"dCg" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/full, +/area/horizon/hallway/primary/deck_2/starboard) +"dCh" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/camera/network/third_deck{ + c_tag = "Third Deck - Port Dock Port"; + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_3/starboard/docks) +"dCk" = ( +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/manifold/visible/yellow{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/atmos/turbine) "dCp" = ( /obj/effect/floor_decal/corner/red{ dir = 5 @@ -25574,143 +25334,241 @@ }, /turf/unsimulated/floor, /area/centcom/spawning) -"dCr" = ( -/obj/machinery/field_generator, -/obj/effect/floor_decal/industrial/warning/full, +"dCt" = ( +/obj/structure/railing/mapped, +/turf/simulated/floor/tiled, +/area/horizon/hangar/operations) +"dCu" = ( +/obj/structure/flora/ausbushes/sparsegrass, +/turf/simulated/floor/grass/no_edge, +/area/horizon/service/cafeteria) +"dCv" = ( +/obj/effect/floor_decal/industrial/warning, /turf/simulated/floor/plating, -/area/engineering/bluespace_drive) -"dCC" = ( -/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ - dir = 5 +/area/horizon/maintenance/deck_2/wing/port/nacelle) +"dCx" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 10 }, -/turf/simulated/floor/reinforced/airless, -/area/engineering/atmos/propulsion/starboard) -"dCF" = ( +/obj/structure/table/standard, +/turf/simulated/floor/tiled, +/area/horizon/operations/lobby) +"dCz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/starboard/far) +"dCA" = ( +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/machinery/power/terminal{ + dir = 1 + }, +/obj/machinery/light/small/emergency, +/obj/machinery/camera/network/engineering{ + c_tag = "Engineering - Deck 2 - Research Substation"; + dir = 1 + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/substation/research) +"dCG" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/alarm/north, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/operations/starboard/far) +"dCI" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/reagent_dispensers/watertank, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/teleporter) +"dCJ" = ( +/obj/structure/bed/stool/chair/office/dark, +/obj/machinery/button/remote/blast_door{ + dir = 4; + id = "cargo_desk"; + pixel_x = 23; + pixel_y = -8 + }, +/obj/effect/floor_decal/corner/brown/full{ + dir = 4 + }, +/obj/item/device/radio/intercom/east{ + pixel_x = 10; + pixel_y = 5 + }, +/turf/simulated/floor/tiled, +/area/horizon/operations/office_aux) +"dCM" = ( +/obj/structure/platform_deco{ + icon_state = "ledge_deco" + }, +/obj/effect/floor_decal/corner/mauve/diagonal, +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/lab) +"dCN" = ( +/turf/simulated/wall/shuttle/scc_space_ship/cardinal, +/area/horizon/hangar/auxiliary) +"dCU" = ( /obj/structure/cable/green{ icon_state = "1-2" }, -/obj/machinery/button/remote/blast_door{ - dir = 6; - id = "shutters_deck3_longbow"; - name = "Safety Blast Doors Control"; - pixel_y = -27 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/corner/brown{ + dir = 6 }, -/turf/simulated/floor/tiled/dark, -/area/horizon/longbow) -"dCL" = ( -/obj/effect/floor_decal/corner_wide/yellow/full{ - dir = 8 +/obj/structure/table/standard{ + no_cargo = 1 }, -/obj/effect/floor_decal/corner_wide/yellow/diagonal, -/obj/effect/floor_decal/spline/plain{ - dir = 4 - }, -/obj/machinery/firealarm/west, -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/structure/engineer_maintenance/pipe/wall, +/obj/item/paper_bin, +/obj/item/pen, +/obj/item/device/cratescanner, /turf/simulated/floor/tiled, -/area/engineering/break_room) -"dCP" = ( -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/warning, -/obj/structure/platform, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard) -"dCQ" = ( -/obj/machinery/computer/fusion/core_control/terminal{ - initial_id_tag = "horizon_fusion" - }, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/engine_monitoring/rust) -"dCS" = ( -/obj/structure/table/standard, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/engineering/smes/rust) +/area/horizon/operations/warehouse) "dCW" = ( /turf/unsimulated/floor{ dir = 8; icon_state = "wood" }, /area/centcom/distress_prep) -"dDa" = ( -/obj/structure/table/steel, -/turf/simulated/floor/tiled/dark, -/area/engineering/break_room) -"dDe" = ( -/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/machinery/door/firedoor, -/obj/machinery/door/airlock/maintenance{ - dir = 1; - name = "INDRA Reactor Maintenance"; - req_one_access = list(11,24) - }, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/smes/rust) -"dDi" = ( -/obj/effect/floor_decal/corner/lime/diagonal, -/obj/machinery/light_switch{ - pixel_x = -26; - pixel_y = -18 +"dCY" = ( +/obj/machinery/suit_cycler/captain, +/obj/item/clothing/suit/space/void/captain, +/obj/item/tank/jetpack/oxygen, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 }, +/obj/machinery/light, +/obj/item/clothing/head/helmet/space/void/captain, +/obj/item/clothing/mask/gas/half, +/turf/simulated/floor/wood, +/area/horizon/command/heads/captain) +"dDd" = ( /obj/structure/cable/green{ - icon_state = "1-2" + icon_state = "4-8" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/white, -/area/medical/washroom) -"dDk" = ( -/obj/machinery/alarm/east{ - alarm_id = 1601; - req_one_access = list(11,24,52) +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 4 }, -/obj/structure/reagent_dispensers/watertank, /turf/simulated/floor/plating, -/area/maintenance/wing/starboard) +/area/horizon/maintenance/deck_1/main/port) "dDl" = ( /obj/effect/map_effect/window_spawner/full/reinforced/indestructible, /obj/structure/sign/vacuum, /turf/unsimulated/floor/plating, /area/antag/raider) -"dDq" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 +"dDr" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id = "bridge blast"; + name = "Bridge Blast Doors"; + opacity = 0 }, -/obj/structure/tank_wall/oxygen{ - icon_state = "o2-10" - }, -/obj/machinery/atmospherics/pipe/simple/visible/cyan{ +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/full, +/area/horizon/hallway/primary/deck_3/central) +"dDs" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/corner/dark_blue{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/command/bridge/controlroom) +"dDu" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner_wide/yellow{ + dir = 6 + }, +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/simulated/floor/plating, -/area/engineering/atmos/air) -"dDv" = ( /obj/structure/cable/green{ icon_state = "1-2" }, -/obj/machinery/newscaster/west, -/obj/effect/floor_decal/corner/dark_green{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, /turf/simulated/floor/tiled, -/area/assembly/chargebay) +/area/horizon/stairwell/engineering/deck_2) +"dDz" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 10 + }, +/obj/machinery/light, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_2/fore) +"dDA" = ( +/obj/structure/shuttle/engine/propulsion/burst/left{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/horizon/shuttle/escape_pod/pod3) +"dDB" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 8 + }, +/obj/effect/map_effect/marker_helper/airlock/interior, +/obj/machinery/door/airlock/external{ + dir = 1; + icon_state = "door_locked" + }, +/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/pipe/simple/hidden, +/obj/effect/floor_decal/industrial/hatch/grey, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/shuttle/mining) +"dDE" = ( +/obj/structure/table/reinforced/glass, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/wood, +/area/horizon/rnd/conference) "dDI" = ( /obj/structure/lattice/catwalk, /obj/structure/railing/mapped{ @@ -25740,13 +25598,36 @@ }, /turf/simulated/floor/holofloor/carpet, /area/horizon/holodeck/source_courtroom) -"dDM" = ( -/obj/structure/tank_wall/hydrogen{ - icon_state = "h14" +"dDN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" }, -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/airless, -/area/engineering/atmos) +/obj/structure/disposalpipe/sortjunction/flipped{ + name = "Hydroponics"; + sortType = "Hydroponics" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/full, +/area/horizon/hallway/primary/deck_2/fore) +"dDR" = ( +/obj/structure/table/standard, +/obj/item/pen, +/obj/item/paper_scanner{ + pixel_x = -6; + pixel_y = 4 + }, +/obj/item/circuitboard/aicore{ + pixel_x = -2; + pixel_y = 4 + }, +/obj/machinery/light/floor{ + dir = 1 + }, +/turf/simulated/floor/carpet/purple, +/area/horizon/command/heads/rd) "dDT" = ( /obj/structure/railing/mapped{ dir = 1 @@ -25764,26 +25645,13 @@ }, /turf/simulated/floor/marble, /area/horizon/holodeck/source_trinary) -"dDW" = ( -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 +"dDU" = ( +/obj/random/pottedplant, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 10 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard/far) -"dDX" = ( -/obj/effect/floor_decal/corner_wide/green{ - dir = 6 - }, -/obj/effect/floor_decal/corner_wide/green{ - dir = 1 - }, -/obj/machinery/firealarm/east, -/turf/simulated/floor/tiled/white, -/area/medical/exam) +/turf/simulated/floor/wood, +/area/horizon/command/bridge/minibar) "dDZ" = ( /obj/structure/table/stone/marble, /obj/item/clothing/mask/gas/vaurca/filter{ @@ -25796,24 +25664,9 @@ }, /turf/unsimulated/floor/marble, /area/antag/wizard) -"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{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/horizon/crew_quarters/fitness/changing) +"dEd" = ( +/turf/simulated/floor/shuttle/dark_blue, +/area/horizon/shuttle/escape_pod/pod4) "dEf" = ( /obj/effect/floor_decal/corner/dark_blue{ dir = 9 @@ -25837,17 +25690,27 @@ icon_state = "beach" }, /area/horizon/holodeck/source_moghes) +"dEo" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/structure/table/rack, +/obj/random/loot, +/turf/simulated/floor, +/area/horizon/maintenance/deck_3/aft/port) "dEu" = ( /obj/structure/lattice, /obj/effect/map_effect/perma_light/starlight/wide, /turf/space/dynamic, /area/template_noop) -"dEy" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/cyan{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/engineering/engine_room) +"dEz" = ( +/turf/simulated/floor/wood, +/area/horizon/command/bridge/minibar) +"dEC" = ( +/obj/effect/floor_decal/corner/dark_green, +/obj/effect/floor_decal/spline/plain/corner, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_2/fore) "dED" = ( /obj/structure/reagent_dispensers/watertank, /obj/effect/floor_decal/corner/grey{ @@ -25855,115 +25718,108 @@ }, /turf/unsimulated/floor, /area/antag/raider) -"dEE" = ( -/obj/item/stock_parts/subspace/transmitter, -/obj/item/stock_parts/subspace/transmitter, -/obj/machinery/light, -/obj/effect/floor_decal/spline/plain, -/obj/item/stock_parts/subspace/analyzer, -/obj/item/stock_parts/subspace/analyzer, -/obj/item/stock_parts/subspace/analyzer, -/obj/item/stock_parts/subspace/transmitter, -/obj/structure/table/standard, -/turf/simulated/floor/carpet/rubber, -/area/tcommsat/entrance) -"dEG" = ( -/obj/effect/floor_decal/corner_wide/purple{ - dir = 6 - }, -/obj/effect/floor_decal/corner_wide/purple{ - dir = 8 - }, -/obj/effect/floor_decal/sign/b, -/turf/simulated/floor/tiled/white, -/area/rnd/xenoarch_atrium) -"dER" = ( -/obj/structure/cable/green, -/obj/machinery/power/sensor{ - name = "Powernet Sensor - Deck 2 Civilian Subgrid"; - name_tag = "Deck 2 Civilian Subgrid" - }, -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/obj/machinery/power/apc/low/west, -/turf/simulated/floor/plating, -/area/maintenance/substation/civilian_west) -"dEU" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/structure/tank_wall/phoron{ - icon_state = "ph8" - }, -/obj/machinery/atmospherics/pipe/simple/visible/purple{ - dir = 4 - }, -/turf/simulated/floor/airless, -/area/engineering/atmos) -"dEW" = ( -/obj/effect/floor_decal/industrial/warning/full, -/obj/machinery/door/blast/regular/open{ - dir = 2; - fail_secure = 1; - id = "xenobio_d"; - name = "Cell Containment Blast Door" - }, -/obj/machinery/door/window/holowindoor{ - dir = 8; - req_access = list(55) - }, -/obj/machinery/door/window/holowindoor{ - dir = 4; - req_access = list(55) - }, -/obj/machinery/door/firedoor{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark/full, -/area/rnd/xenobiology) -"dFg" = ( +"dEH" = ( +/obj/structure/railing/mapped, /obj/structure/cable{ icon_state = "4-8" }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/structure/lattice/catwalk/indoor/grate/damaged{ - color = "#4c535b" +/obj/machinery/light/small/emergency{ + dir = 1 + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_3/aft/starboard) +"dEI" = ( +/turf/simulated/wall, +/area/horizon/storage/primary) +"dEK" = ( +/obj/structure/table/standard, +/obj/item/storage/box/fancy/vials, +/obj/machinery/camera/network/research{ + c_tag = "Research - Dissection"; + dir = 1; + network = list("Research","Xeno_Bio") + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/rnd/xenobiology/dissection) +"dEP" = ( +/obj/structure/shuttle_part/scc_space_ship{ + icon_state = "d3-4" + }, +/obj/structure/girder, +/obj/effect/landmark/entry_point/aft{ + name = "aft, deck 2 maintenance" }, /turf/simulated/floor/plating, -/area/maintenance/wing/port/deck1) +/area/horizon/maintenance/deck_2/wing/starboard/far) +"dEY" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/effect/floor_decal/corner_wide/green{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/hallway/upper) +"dEZ" = ( +/turf/simulated/floor/tiled, +/area/horizon/crew/vacantoffice) +"dFd" = ( +/obj/structure/platform/ledge, +/turf/simulated/open, +/area/horizon/hallway/primary/deck_3/central) +"dFf" = ( +/obj/structure/table/reinforced/steel, +/obj/machinery/camera/network/service{ + c_tag = "Second Deck - Commissary Backroom"; + dir = 1 + }, +/obj/item/paper_bin{ + pixel_y = 5; + pixel_x = -3 + }, +/obj/item/pen/black{ + pixel_x = -3; + pixel_y = 6 + }, +/obj/random/lavalamp{ + pixel_x = 8; + pixel_y = 3 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/operations/commissary) "dFh" = ( /obj/effect/floor_decal/spline/fancy/wood, /turf/simulated/floor/wood/maple, /area/horizon/holodeck/source_cafe) -"dFm" = ( -/obj/structure/bed/stool/chair/shuttle{ +"dFi" = ( +/obj/effect/floor_decal/industrial/warning/corner, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/wing/port/far) +"dFn" = ( +/obj/effect/floor_decal/spline/fancy/wood/cee{ + dir = 8 + }, +/obj/structure/bed/stool/chair/padded/brown{ dir = 4 }, -/obj/item/device/radio/intercom/south, -/turf/simulated/floor/shuttle/dark_blue, -/area/shuttle/escape_pod/pod1) -"dFp" = ( -/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/machinery/door/firedoor, -/obj/machinery/door/airlock/maintenance{ - dir = 1; - name = "Engineering Hard Storage Maintenance"; - req_one_access = list(11,24) - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/storage_hard) +/turf/simulated/floor/wood, +/area/horizon/operations/office) "dFt" = ( /obj/structure/railing/mapped{ dir = 1 @@ -25984,65 +25840,66 @@ }, /turf/simulated/floor/marble, /area/horizon/holodeck/source_trinary) +"dFw" = ( +/obj/machinery/door/firedoor, +/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{ + dir = 1; + name = "Emergency Supplies Closet" + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/full, +/area/horizon/operations/lobby) "dFx" = ( /turf/unsimulated/floor/plating, /area/centcom/suppy) -"dFA" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 10 - }, +"dFP" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/alarm/north, +/obj/machinery/suit_cycler/mining/prepared, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/operations/mining_main/eva) +"dFR" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/dark, -/area/bridge/controlroom) -"dFF" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ +/area/horizon/rnd/xenoarch/storage) +"dFT" = ( +/obj/machinery/light{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ +/obj/effect/floor_decal/corner_wide/green/full{ dir = 4 }, -/obj/structure/lattice/catwalk/indoor/grate, -/turf/simulated/floor/plating, -/area/hallway/primary/central_two) -"dFQ" = ( -/obj/effect/floor_decal/corner/black{ - dir = 9 - }, -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/loading/yellow{ +/obj/machinery/vending/mredispenser, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/ward) +"dFW" = ( +/obj/effect/floor_decal/spline/plain{ dir = 1 }, -/obj/structure/cable{ - icon_state = "1-2" +/turf/simulated/floor/tiled/dark, +/area/horizon/hallway/primary/deck_2/central) +"dFY" = ( +/obj/machinery/light/small{ + dir = 4 }, -/obj/effect/floor_decal/industrial/warning{ +/obj/structure/bed/handrail{ dir = 8 }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel, +/obj/machinery/atmospherics/binary/pump/scrubber/on{ + dir = 1; + name = "Scrubbers to Waste"; + target_pressure = 15000 + }, +/obj/item/device/radio/intercom/expedition/east, /turf/simulated/floor/tiled/dark, -/area/hangar/intrepid) -"dFU" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume, -/obj/effect/map_effect/marker/airlock{ - master_tag = "airlock_horizon_bunker"; - name = "airlock_horizon_bunker"; - frequency = 1109; - req_one_access = list(19) - }, -/obj/machinery/embedded_controller/radio/airlock/airlock_controller{ - pixel_y = 23 - }, -/turf/simulated/floor, -/area/turret_protected/ai_upload_foyer) +/area/horizon/shuttle/intrepid/engineering) "dFZ" = ( /obj/effect/floor_decal/corner/lime{ dir = 9 @@ -26050,55 +25907,47 @@ /turf/unsimulated/floor, /area/centcom/spawning) "dGa" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 +/obj/machinery/door/blast/regular/open{ + dir = 2; + fail_secure = 1; + id = "xenobio_c"; + name = "Cell Containment Blast Door" }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 5 - }, -/obj/structure/cable/green{ - icon_state = "2-8"; - d1 = 2; - d2 = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ +/obj/structure/window/reinforced{ dir = 4 }, -/turf/simulated/floor/wood, -/area/horizon/library) -"dGg" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/corner/dark_green{ - dir = 9 +/obj/structure/window/reinforced{ + dir = 1 }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/central) -"dGj" = ( -/obj/structure/platform{ +/obj/machinery/disposal/deliveryChute{ dir = 8 }, -/obj/effect/floor_decal/corner/mauve{ - dir = 6 +/obj/structure/disposalpipe/trunk{ + dir = 4 }, -/turf/simulated/floor/tiled/white, -/area/rnd/lab) -"dGo" = ( -/obj/structure/cable/green{ - icon_state = "1-2" +/obj/machinery/door/window/westleft{ + req_access = list(55) }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/corner/dark_green{ - dir = 9 +/obj/machinery/door/firedoor{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/rnd/xenobiology) +"dGb" = ( +/obj/structure/railing/mapped{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/maintenance/deck_2/wing/starboard) +"dGi" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 10 + }, +/obj/effect/floor_decal/industrial/loading/yellow{ + dir = 4 }, /turf/simulated/floor/tiled, -/area/hangar/intrepid) +/area/horizon/command/bridge/upperdeck) "dGq" = ( /obj/structure/bed/stool/chair, /obj/structure/disposalpipe/segment, @@ -26109,37 +25958,17 @@ icon_state = "white" }, /area/tdome/tdomeobserve) -"dGr" = ( -/obj/structure/table/standard, -/obj/item/pen, -/obj/item/paper_scanner{ - pixel_x = -6; - pixel_y = 4 +"dGA" = ( +/obj/item/modular_computer/console/preset/command/account, +/obj/machinery/requests_console/north{ + announcementConsole = 1; + department = "Executive Officer's Desk"; + departmentType = 5; + name = "Executive Officer RC"; + pixel_y = 32 }, -/obj/item/circuitboard/aicore{ - pixel_x = -2; - pixel_y = 4 - }, -/obj/machinery/light/floor{ - dir = 1 - }, -/turf/simulated/floor/carpet/purple, -/area/crew_quarters/heads/hor) -"dGu" = ( -/obj/machinery/door/airlock/external, -/obj/machinery/access_button{ - dir = 1; - pixel_x = -28; - pixel_y = 12 - }, -/obj/effect/map_effect/marker/airlock{ - frequency = 1003; - master_tag = "airlock_horizon_deck_1_aft_propulsion_1"; - name = "airlock_horizon_deck_1_aft_propulsion_1" - }, -/obj/effect/map_effect/marker_helper/airlock/exterior, -/turf/simulated/floor/plating, -/area/engineering/atmos/propulsion/starboard) +/turf/simulated/floor/carpet, +/area/horizon/command/heads/xo) "dGB" = ( /obj/machinery/button/remote/blast_door{ id = "odincheckpoint_starboard"; @@ -26152,21 +25981,24 @@ icon_state = "dark_preview" }, /area/centcom/holding) -"dGH" = ( -/obj/machinery/door/airlock/command{ - dir = 1; - id_tag = "hopdoor"; - name = "Executive Officer's Office"; - req_access = list(57) +"dGD" = ( +/obj/structure/cable{ + icon_state = "4-8" }, +/obj/effect/floor_decal/corner/dark_green{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_3/central) +"dGI" = ( /obj/structure/cable/green{ icon_state = "1-2" }, -/obj/machinery/door/firedoor, -/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/bridge/controlroom) +/obj/effect/floor_decal/corner/brown/diagonal, +/turf/simulated/floor/tiled/dark, +/area/horizon/operations/mining_main/eva) "dGJ" = ( /obj/effect/floor_decal/corner/dark_blue{ dir = 6 @@ -26182,28 +26014,51 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/security/evidence_storage) -"dGQ" = ( -/obj/effect/floor_decal/corner/dark_green/full{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ +"dGN" = ( +/obj/structure/platform_stairs/full/east_west_cap, +/obj/structure/platform/cutout{ dir = 4 }, +/turf/simulated/floor/tiled/dark, +/area/horizon/maintenance/deck_2/wing/port/far) +"dGO" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/obj/machinery/camera/network/research{ + dir = 8; + c_tag = "Xenobio - Cell F"; + network = list("Xeno_Bio") + }, +/turf/simulated/floor/reinforced, +/area/horizon/rnd/xenobiology) +"dGT" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/atmospherics/unary/freezer{ + dir = 4; + icon_state = "freezer" + }, +/obj/machinery/light, +/turf/simulated/floor/plating, +/area/horizon/rnd/xenoarch/atrium) +"dGU" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/structure/cable/green{ - icon_state = "4-8" +/obj/effect/floor_decal/industrial/warning{ + dir = 1 }, -/turf/simulated/floor/tiled, -/area/horizon/hydroponics/garden) -"dGZ" = ( -/obj/structure/bed/stool/chair/sofa/right/orange, -/turf/simulated/floor/carpet/red, -/area/horizon/bar) +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/reactor/indra/smes) "dHa" = ( /obj/effect/floor_decal/corner/brown/diagonal, /obj/machinery/computer/holodeck_control/Horizon/beta{ @@ -26212,22 +26067,20 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/holodeck_control/beta) -"dHc" = ( -/obj/effect/floor_decal/corner/mauve/full, +"dHh" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/corner/dark_green{ + dir = 6 + }, +/obj/machinery/light/floor{ + dir = 4 + }, /turf/simulated/floor/tiled, -/area/rnd/xenobiology) -"dHe" = ( -/obj/structure/table/reinforced/steel, -/obj/random/pottedplant_small{ - pixel_x = -9; - pixel_y = 11 - }, -/obj/machinery/reagentgrinder{ - pixel_x = 4; - pixel_y = 11 - }, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/hydroponics/lower) +/area/horizon/hallway/primary/deck_3/central) "dHi" = ( /turf/space, /area/template_noop) @@ -26246,32 +26099,56 @@ }, /turf/simulated/floor/lino, /area/horizon/security/investigators_office) -"dHo" = ( -/obj/effect/floor_decal/industrial/warning{ +"dHm" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/obj/machinery/power/apc/west, -/obj/structure/cable{ - icon_state = "0-2" +/turf/simulated/floor/tiled/dark, +/area/horizon/maintenance/deck_3/aft/port/far) +"dHn" = ( +/obj/machinery/atmospherics/unary/vent_pump/siphon/on/atmos{ + dir = 1; + id_tag = "Ph_out_FuelBay" }, -/obj/structure/cable{ - icon_state = "1-2" +/turf/simulated/floor/reinforced/phoron, +/area/horizon/engineering/atmos) +"dHv" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 9 }, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"dHz" = ( -/obj/effect/floor_decal/corner/dark_green/full{ - dir = 8 - }, -/obj/machinery/vending/snack, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/xenological) "dHC" = ( /turf/unsimulated/wall/fakepdoor{ name = "Blast door" }, /area/centcom/distress_prep) +"dHF" = ( +/obj/item/device/taperecorder{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/briefcase, +/obj/item/device/flash, +/obj/item/storage/secure/briefcase, +/obj/item/device/eftpos{ + eftpos_name = "Internal Affairs EFTPOS scanner" + }, +/obj/item/clothing/under/suit_jacket/really_black, +/obj/item/clothing/shoes/laceup, +/obj/item/clothing/shoes/laceup, +/obj/item/clipboard, +/obj/item/pen/multi, +/obj/structure/closet/lawcloset, +/obj/item/device/camera, +/obj/item/stamp/denied, +/obj/item/folder/blue, +/obj/item/folder/white, +/obj/item/device/destTagger, +/obj/item/stack/packageWrap, +/turf/simulated/floor/carpet, +/area/horizon/repoffice/representative_two) "dHI" = ( /obj/structure/bed/stool/chair/office/bridge, /obj/effect/floor_decal/spline/fancy/wood, @@ -26280,74 +26157,98 @@ }, /turf/simulated/floor/wood, /area/horizon/holodeck/source_pool) -"dHJ" = ( -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/machinery/light/small/emergency{ - dir = 4 +"dHM" = ( +/obj/structure/cable/green{ + icon_state = "1-2" }, -/turf/simulated/floor/plating, -/area/maintenance/wing/port/far) -"dHK" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 10 +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/corner/lime/full{ + dir = 1 }, +/obj/machinery/alarm/east, /turf/simulated/floor/tiled, -/area/bridge/supply) -"dHV" = ( -/obj/machinery/light, -/obj/effect/floor_decal/corner/dark_green{ - dir = 10 +/area/horizon/medical/emergency_storage) +"dHN" = ( +/obj/machinery/door/airlock/engineering{ + dir = 4; + name = "Engineering Storage"; + req_one_access = list(11,24) }, -/obj/machinery/button/remote/blast_door{ - dir = 1; - id = "shutters_deck2_portstairwellsec"; - name = "Elevator Security Shutters"; - pixel_x = 7; - pixel_y = -37; - req_one_access = list(1,19) +/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/industrial/warning/corner, -/obj/machinery/computer/shuttle_control/multi/lift/wall/robotics{ - dir = 1; - pixel_x = 7; - pixel_y = -28 +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 4 }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"dHW" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/dark, -/area/hangar/auxiliary) +/turf/simulated/floor/plating, +/area/horizon/engineering/storage/lower) +"dHQ" = ( +/obj/machinery/power/smes/batteryrack/makeshift, +/obj/effect/floor_decal/industrial/warning/full, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/starboard/nacelle) +"dHR" = ( +/turf/simulated/floor/carpet, +/area/horizon/repoffice/consular_one) +"dHT" = ( +/obj/effect/floor_decal/spline/plain/black, +/obj/structure/bed/stool/chair/shuttle/double{ + pixel_x = -8; + dir = 1 + }, +/obj/structure/bed/stool/chair/shuttle/double{ + pixel_x = 8; + dir = 1 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/shuttle/intrepid/main_compartment) +"dHX" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/turf/simulated/wall, +/area/horizon/medical/icu) "dHY" = ( /obj/effect/floor_decal/corner/white{ dir = 10 }, /turf/simulated/floor/holofloor/tiled, /area/horizon/holodeck/source_battlemonsters) -"dIk" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 +"dIe" = ( +/obj/machinery/light/small{ + dir = 1 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 +/turf/simulated/floor/tiled/freezer{ + name = "cooled tiles"; + temperature = 278.15 }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"dIp" = ( -/obj/machinery/atmospherics/pipe/simple/visible/black, -/obj/machinery/atmospherics/pipe/zpipe/up/supply{ - dir = 4 +/area/horizon/medical/morgue) +"dIi" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 10 }, -/obj/effect/floor_decal/corner/yellow, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 4 +/obj/effect/floor_decal/industrial/warning{ + dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/engineering/atmos) +/area/horizon/security/checkpoint) +"dIj" = ( +/obj/effect/floor_decal/corner/brown/full{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/horizon/operations/commissary) "dIs" = ( /obj/structure/table/rack, /obj/item/clothing/under/color/green, @@ -26358,24 +26259,6 @@ /obj/effect/decal/fake_object/light_source/invisible, /turf/simulated/floor, /area/tdome/tdome1) -"dIt" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/corner_wide/green{ - dir = 10 - }, -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/turf/simulated/floor/tiled/white, -/area/hallway/medical/upper) "dIu" = ( /obj/machinery/light{ dir = 4 @@ -26383,84 +26266,75 @@ /obj/machinery/portable_atmospherics/canister/oxygen, /turf/unsimulated/floor, /area/antag/mercenary) -"dIx" = ( -/obj/structure/reagent_dispensers/extinguisher, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor, -/area/maintenance/engineering_ladder) -"dIC" = ( -/obj/structure/disposalpipe/down, -/obj/structure/lattice/catwalk, -/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/zpipe/down/supply{ - dir = 8 - }, -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/structure/railing/mapped, +"dIB" = ( /obj/structure/cable{ - icon_state = "11-8" + icon_state = "1-2" }, -/obj/structure/railing/mapped{ - dir = 4 +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/corner/dark_green{ + dir = 6 }, -/turf/simulated/open, -/area/maintenance/engineering_ladder) -"dIF" = ( +/obj/structure/extinguisher_cabinet/east, /obj/structure/disposalpipe/segment{ - dir = 4 + dir = 8; + icon_state = "pipe-c" }, -/obj/structure/railing/mapped{ +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_3/central) +"dIE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/effect/floor_decal/industrial/warning/corner{ dir = 1 }, /obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/machinery/light/small/emergency, /turf/simulated/floor/plating, -/area/maintenance/research_port) -"dIM" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden{ - dir = 1 - }, -/obj/effect/map_effect/marker/airlock{ - frequency = 1004; - master_tag = "airlock_horizon_deck_1_fore_1"; - name = "airlock_horizon_deck_1_fore_1" - }, -/turf/simulated/floor/plating, -/area/maintenance/hangar/starboard) -"dIN" = ( -/obj/machinery/power/smes/batteryrack{ - input_level = 50000; - output_level = 45000 - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard/far) -"dIS" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 6 - }, +/area/horizon/maintenance/deck_1/hangar/starboard) +"dIH" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/turf/simulated/floor/tiled/dark, -/area/storage/eva) +/turf/simulated/floor/carpet/rubber, +/area/horizon/tcommsat/entrance) +"dIK" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/horizon/service/chapel/main) +"dIP" = ( +/obj/effect/floor_decal/corner_wide/lime/diagonal, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/reception) +"dIQ" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/structure/sink{ + dir = 8; + pixel_x = -12 + }, +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/machinery/shower{ + dir = 4; + pixel_y = 1 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/reactor/indra/monitoring) "dIU" = ( /obj/effect/floor_decal/industrial/warning{ dir = 4 @@ -26474,100 +26348,96 @@ }, /turf/unsimulated/floor, /area/antag/mercenary) -"dIX" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/lattice/catwalk/indoor/grate, +"dIZ" = ( +/obj/effect/floor_decal/spline/fancy/wood/corner, +/turf/simulated/floor/wood, +/area/horizon/service/bar) +"dJd" = ( +/obj/structure/window/shuttle/scc_space_ship, +/obj/structure/grille, +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/shutters{ + dir = 4; + id = "cmowindowshutters"; + name = "Window Shutters" + }, /turf/simulated/floor/plating, -/area/hallway/primary/central_one) -"dJa" = ( -/obj/effect/floor_decal/industrial/outline/firefighting_closet, -/obj/structure/closet/walllocker/firecloset{ - pixel_y = 32 - }, -/obj/effect/floor_decal/spline/plain, -/obj/effect/floor_decal/spline/plain{ +/area/horizon/command/heads/cmo) +"dJi" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ dir = 1 }, -/turf/simulated/floor/carpet/rubber, -/area/tcommsat/chamber) -"dJf" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/effect/floor_decal/spline/plain/corner{ +/obj/machinery/atmospherics/pipe/manifold/hidden{ dir = 1 }, -/obj/machinery/light, -/obj/machinery/light_switch{ - dir = 8; - pixel_x = -20; - pixel_y = -1 +/turf/simulated/wall/shuttle/unique/scc/mining{ + icon_state = "4,9" }, -/obj/machinery/button/remote/blast_door{ - dir = 8; - id = "kitchen_window_shutters"; - name = "Window Shutters"; - pixel_x = -20; - pixel_y = -8; - req_access = list(28) +/area/horizon/shuttle/mining) +"dJk" = ( +/obj/structure/trash_pile, +/obj/effect/floor_decal/corner/purple/full{ + dir = 1 }, -/obj/machinery/button/remote/blast_door{ - dir = 8; - id = "shutters_deck2_kitchendesk"; - name = "Desk Shutters"; - pixel_x = -28; - pixel_y = -4; - req_access = list(28) +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/random/loot, +/obj/machinery/camera/network/service{ + c_tag = "Custodial - Disposals Aft"; + dir = 8 }, -/obj/machinery/button/remote/blast_door{ - dir = 8; - id = "shutters_deck2_smartheater"; - name = "SmartHeater Shutter"; - pixel_x = -28; - pixel_y = 7; - req_access = list(28) - }, -/obj/machinery/button/switch/holosign{ - id = 4; - dir = 8; - pixel_y = 7; - pixel_x = -20 - }, -/turf/simulated/floor/tiled/white, -/area/horizon/kitchen) -"dJl" = ( +/turf/simulated/floor/tiled/dark, +/area/horizon/service/custodial/disposals/deck_1) +"dJn" = ( +/obj/effect/floor_decal/corner/mauve/diagonal, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, /obj/structure/cable/green{ icon_state = "1-2" }, -/obj/structure/lattice/catwalk/indoor/grate, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/lab) +"dJo" = ( +/obj/machinery/firealarm/east, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/effect/floor_decal/corner/brown/full{ + dir = 4 + }, +/obj/machinery/light, +/turf/simulated/floor/tiled, +/area/horizon/operations/mail_room) +"dJp" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 5 + }, +/obj/machinery/door/airlock/external, +/obj/effect/map_effect/marker/airlock/docking{ + landmark_tag = "nav_horizon_dock_deck_3_port_2"; + master_tag = "airlock_horizon_dock_deck_3_port_2"; + name = "airlock_horizon_dock_deck_3_port_2" + }, +/obj/effect/map_effect/marker_helper/airlock/interior, /turf/simulated/floor/plating, -/area/rnd/hallway/secondary) -"dJm" = ( -/obj/machinery/light/spot{ - dir = 4; - must_start_working = 1 - }, -/obj/effect/floor_decal/industrial/outline/grey, -/obj/structure/survey_probe{ +/area/horizon/hallway/primary/deck_3/starboard/docks) +"dJw" = ( +/obj/effect/floor_decal/spline/fancy/wood{ dir = 1 }, -/turf/simulated/floor/plating, -/area/hangar/intrepid) -"dJu" = ( -/obj/structure/bed/stool/chair/office/dark{ - dir = 1 +/obj/effect/floor_decal/spline/fancy/wood, +/obj/structure/coatrack{ + pixel_x = -5; + pixel_y = 22 }, -/obj/structure/cable/green{ - icon_state = "4-8" +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 }, -/obj/effect/floor_decal/spline/plain{ - dir = 1 +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 }, -/turf/simulated/floor/carpet/rubber, -/area/tcommsat/entrance) +/turf/simulated/floor/wood, +/area/horizon/command/heads/om) "dJF" = ( /obj/effect/floor_decal/corner/paleblue{ dir = 5 @@ -26578,13 +26448,6 @@ }, /turf/unsimulated/floor, /area/centcom/holding) -"dJH" = ( -/obj/structure/shuttle_part/scc/scout{ - icon_state = "4,0" - }, -/obj/machinery/shipsensors/strong/scc_shuttle, -/turf/simulated/floor/plating, -/area/shuttle/canary) "dJI" = ( /obj/effect/floor_decal/corner/brown{ dir = 10 @@ -26597,250 +26460,185 @@ /obj/structure/railing/mapped, /turf/simulated/open/airless, /area/horizon/exterior) -"dJP" = ( -/obj/machinery/computer/fusion/gyrotron/terminal{ - initial_id_tag = "horizon_fusion" - }, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/engine_monitoring/rust) -"dJT" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/hangar/operations) "dJW" = ( /obj/structure/flora/tree/dead, /obj/structure/flora/grass/green, /turf/simulated/floor/exoplanet/snow, /area/centcom/shared_dream) -"dJY" = ( -/obj/effect/floor_decal/corner/dark_blue/diagonal, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ +"dJX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/intrepid/flight_deck) -"dKg" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 9 +/obj/machinery/atmospherics/pipe/simple/hidden/aux{ + dir = 4 }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/command/bridge/aibunker) +"dKa" = ( +/turf/simulated/wall, +/area/horizon/maintenance/substation/security) +"dKl" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/door/firedoor, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/full, -/area/hallway/primary/central_two) -"dKi" = ( -/obj/item/device/radio/intercom/east, -/obj/effect/floor_decal/corner_wide/green{ - dir = 6 +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/port/near) +"dKr" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/random/loot{ + pixel_x = -10; + pixel_y = -11 }, -/obj/effect/landmark/start{ - name = "Pharmacist" - }, -/obj/structure/bed/stool/chair{ - dir = 8 +/obj/random/dirt_75, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/starboard/nacelle) +"dKt" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + icon_state = "1-2" }, /turf/simulated/floor/tiled/white, -/area/hallway/medical/upper) -"dKs" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/effect/floor_decal/spline/plain/corner{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/horizon/kitchen) +/area/horizon/medical/surgery) "dKy" = ( /obj/structure/closet/secure_closet/merchant, /turf/simulated/floor/tiled/dark, /area/shuttle/merchant) -"dKG" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 +"dKB" = ( +/obj/structure/table/rack, +/obj/item/storage/briefcase, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/machinery/firealarm/west, +/turf/simulated/floor/plating, +/area/horizon/engineering/drone_fabrication) +"dKE" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 +/obj/machinery/light/small{ + dir = 1 }, +/obj/machinery/embedded_controller/radio/airlock/airlock_controller{ + pixel_y = 23 + }, +/obj/effect/map_effect/marker/airlock{ + master_tag = "sccv_intrepid_starboard"; + name = "sccv_intrepid_starboard"; + req_one_access = null + }, +/turf/simulated/floor/plating, +/area/horizon/shuttle/intrepid/starboard_compartment) +"dKI" = ( /obj/structure/railing/mapped, -/turf/simulated/floor/wood, -/area/crew_quarters/lounge) -"dKK" = ( -/obj/effect/floor_decal/spline/plain/corner, -/obj/effect/floor_decal/spline/plain/corner{ - dir = 1 - }, -/obj/effect/floor_decal/spline/plain{ - dir = 9 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/carpet/rubber, -/area/tcommsat/chamber) +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/wing/starboard/far) "dKN" = ( /obj/structure/shuttle/engine/propulsion/burst, /turf/simulated/wall/shuttle/space_ship/mercenary, /area/shuttle/burglar) -"dKP" = ( -/obj/machinery/power/apc/low/north, -/obj/structure/cable/green{ - icon_state = "0-4" - }, -/obj/structure/bed/stool/chair/sofa/left/brown, -/obj/effect/landmark/start{ - name = "Passenger" - }, -/turf/simulated/floor/carpet/art, -/area/crew_quarters/lounge) -"dKS" = ( -/obj/effect/floor_decal/corner/brown{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, +"dKU" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/structure/engineer_maintenance/pipe/wall, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/hangar/operations) +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/turf/simulated/floor/tiled/dark, +/area/horizon/storage/eva) "dKX" = ( /turf/simulated/floor/holofloor/wood, /area/horizon/holodeck/source_sauna) -"dKY" = ( -/turf/simulated/floor/reinforced/carbon_dioxide, -/area/engineering/atmos) -"dLh" = ( -/obj/structure/cable{ - icon_state = "4-8" +"dKZ" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/machinery/power/apc/north, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard/deck1) -"dLj" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/engineering/rust_office) -"dLn" = ( -/obj/machinery/door/blast/regular{ - id = "portpropulsionexterior" - }, -/turf/simulated/floor/reinforced/airless, -/area/engineering/atmos/propulsion) -"dLp" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/corner/brown{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hangar/operations) -"dLs" = ( -/obj/machinery/iff_beacon/horizon/shuttle{ - pixel_y = -21 - }, -/obj/effect/floor_decal/industrial/warning{ +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/wood, +/area/horizon/command/heads/captain) +"dLi" = ( +/obj/structure/table/standard, +/obj/item/device/binoculars, +/obj/effect/floor_decal/corner/dark_blue{ dir = 10 }, -/turf/simulated/floor/reinforced, -/area/shuttle/intrepid/flight_deck) -"dLt" = ( -/obj/machinery/ammunition_loader/francisca{ - weapon_id = "Francisca Rotary Gun" +/turf/simulated/floor/tiled/dark, +/area/horizon/weapons/grauwolf) +"dLH" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/corner/brown{ + dir = 9 }, -/turf/simulated/floor/tiled/dark/full, -/area/shuttle/canary) -"dLA" = ( -/turf/simulated/wall, -/area/horizon/library) -"dLD" = ( -/obj/machinery/telecomms/bus/preset_three, -/turf/simulated/floor/bluegrid, -/area/tcommsat/chamber) -"dLE" = ( -/obj/structure/shuttle_part/scc/scout{ - icon_state = "1,8" +/obj/structure/cable/green{ + icon_state = "1-2" }, -/turf/simulated/floor/plating, -/area/shuttle/canary) -"dLG" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 +/obj/structure/railing/mapped{ + dir = 8 }, +/turf/simulated/floor/tiled, +/area/horizon/operations/lobby) +"dLK" = ( /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, +/obj/structure/disposalpipe/segment, /turf/simulated/floor/plating, -/area/maintenance/wing/starboard) +/area/horizon/maintenance/deck_1/operations/starboard) "dLP" = ( /obj/machinery/computer/shuttle_control/merchant{ dir = 4 }, /turf/simulated/floor/carpet/cyan, /area/shuttle/merchant) -"dLT" = ( -/obj/effect/floor_decal/spline/fancy/wood, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 1 +"dLQ" = ( +/obj/structure/platform/ledge{ + dir = 4 }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/junction{ +/obj/structure/platform/ledge{ dir = 8 }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 +/obj/structure/railing/mapped{ + dir = 4 }, -/obj/machinery/camera/network/command{ - c_tag = "Bridge - Captain's Office Fore"; +/obj/structure/railing/mapped{ + dir = 8 + }, +/turf/simulated/open, +/area/horizon/operations/office) +"dLR" = ( +/obj/effect/shuttle_landmark/lift/morgue_bottom, +/turf/simulated/floor/plating, +/area/horizon/medical/morgue) +"dLV" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/reactor/indra/mainchamber) +"dLY" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/engineering{ dir = 1; - network = list("Command","Capt_Office") + name = "Deck 1 Research Substation"; + req_one_access = list(11,24) }, -/turf/simulated/floor/wood, -/area/crew_quarters/captain) -"dLX" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/effect/floor_decal/spline/fancy/wood, -/turf/simulated/floor/wood, -/area/chapel/office) -"dMa" = ( -/obj/machinery/atmospherics/pipe/simple/visible/universal{ - dir = 4 - }, -/obj/machinery/meter, -/turf/simulated/floor/tiled/dark, -/area/engineering/atmos) +/turf/simulated/floor/plating, +/area/horizon/maintenance/substation/xenoarchaeology) "dMb" = ( /obj/structure/table/standard, /obj/item/storage/box/gloves{ @@ -26862,63 +26660,60 @@ icon_state = "dark_preview" }, /area/centcom/holding) -"dMn" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/camera/network/security{ - c_tag = "Security - Head of Security's Office"; +"dMj" = ( +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/horizon/maintenance/deck_2/wing/starboard/auxatmos) +"dMr" = ( +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/structure/railing/mapped{ dir = 4 }, -/turf/simulated/floor/carpet, -/area/horizon/security/head_of_security) -"dMs" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/structure/railing/mapped{ + dir = 8 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/maintenance{ - dir = 4; - req_one_access = list(12) - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor, -/area/horizon/maintenance/deck_three/aft/starboard) +/turf/simulated/open, +/area/horizon/service/hydroponics) "dMD" = ( /obj/machinery/light/small{ dir = 1 }, /turf/simulated/floor/wood, /area/merchant_station) -"dMF" = ( -/obj/structure/table/standard, +"dMG" = ( +/obj/effect/floor_decal/corner/mauve/full, /turf/simulated/floor/tiled, -/area/operations/break_room) -"dMU" = ( -/obj/structure/cable/green{ - icon_state = "1-2" +/area/horizon/rnd/xenobiology) +"dMI" = ( +/obj/structure/tank_wall/phoron{ + density = 0; + icon_state = "ph5"; + opacity = 0 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/simulated/floor/reinforced/phoron, +/area/horizon/engineering/atmos) +"dMK" = ( +/obj/machinery/alarm/east{ + alarm_id = 1601; + req_one_access = list(11,24,52) }, -/obj/effect/floor_decal/corner_wide/yellow{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ +/obj/effect/floor_decal/industrial/warning{ dir = 8 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 +/obj/structure/reagent_dispensers/watertank, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/port) +"dML" = ( +/obj/effect/floor_decal/corner/black{ + dir = 1 }, -/obj/structure/cable/green{ - icon_state = "2-4" - }, -/turf/simulated/floor/tiled, -/area/engineering/lobby) +/turf/simulated/floor/tiled/dark, +/area/horizon/hangar/intrepid) "dMV" = ( /obj/machinery/embedded_controller/radio/simple_docking_controller{ frequency = 1380; @@ -26932,21 +26727,21 @@ }, /turf/simulated/floor/shuttle/dark_blue, /area/shuttle/transport1) -"dNd" = ( -/obj/effect/shuttle_landmark/horizon/exterior/sneaky/starboard_nacelle_1{ +"dNa" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/obj/structure/railing/mapped{ dir = 4 }, -/turf/simulated/wall/shuttle/scc_space_ship/cardinal, -/area/maintenance/wing/starboard/far) -"dNe" = ( -/obj/structure/cable/green, -/obj/machinery/power/apc/low/south, -/obj/machinery/power/sensor{ - name = "Powernet Sensor - Deck 2 Research Subgrid"; - name_tag = "Deck 2 Research Subgrid" +/obj/structure/cable/green{ + icon_state = "1-8" }, -/turf/simulated/floor/plating, -/area/maintenance/substation/research) +/obj/structure/cable/green, +/obj/structure/grille, +/obj/machinery/light, +/turf/simulated/floor/tiled/dark/full/airless, +/area/horizon/command/bridge/controlroom) "dNg" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -26960,9 +26755,27 @@ /obj/structure/platform, /turf/simulated/floor/tiled/dark, /area/horizon/security/meeting_room) -"dNk" = ( -/turf/simulated/wall, -/area/outpost/mining_main/refinery) +"dNh" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/effect/floor_decal/corner/brown{ + dir = 6 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/shuttle/intrepid/port_compartment) +"dNm" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 10 + }, +/obj/structure/platform{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/horizon/command/bridge/upperdeck) "dNr" = ( /obj/effect/floor_decal/corner/brown/diagonal, /obj/structure/extinguisher_cabinet/north, @@ -26970,27 +26783,22 @@ /obj/item/storage/slide_projector, /turf/simulated/floor/tiled/dark, /area/horizon/holodeck_control) -"dNt" = ( -/obj/effect/floor_decal/corner/dark_green/full{ - dir = 8 +"dNs" = ( +/obj/machinery/bodyscanner{ + dir = 4 }, -/obj/machinery/alarm/west, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/effect/floor_decal/industrial/loading/yellow, -/turf/simulated/floor/tiled, -/area/horizon/stairwell/central) +/obj/effect/floor_decal/corner/beige{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/medical/icu) "dNx" = ( /turf/simulated/floor/holofloor/grass, /area/horizon/holodeck/source_picnicarea) -"dNC" = ( -/obj/effect/floor_decal/spline/fancy/wood/corner{ - dir = 8 - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 6 - }, -/turf/simulated/floor/wood, -/area/horizon/cafeteria) +"dNA" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/plating, +/area/horizon/shuttle/intrepid/port_compartment) "dNF" = ( /obj/item/device/megaphone/red{ pixel_x = 1; @@ -27002,55 +26810,78 @@ }, /turf/unsimulated/floor/monotile, /area/antag/mercenary) -"dNH" = ( -/obj/machinery/door/airlock/external{ - dir = 1; - frequency = 1337; - icon_state = "door_locked"; - id_tag = "merchant_shuttle_dock_outer"; - locked = 1; - req_access = list(13) +"dNK" = ( +/obj/structure/railing/mapped{ + dir = 4 }, -/obj/machinery/access_button{ - command = "cycle_exterior"; - frequency = 1337; - master_tag = "merchant_shuttle_dock"; - name = "exterior access button"; - pixel_x = -32; - req_access = list(13) +/obj/effect/floor_decal/spline/fancy{ + dir = 4 }, -/obj/effect/shuttle_landmark/merchant/dock{ - dir = 1 +/obj/structure/table/reinforced/steel, +/turf/simulated/floor/carpet/rubber, +/area/horizon/command/bridge/controlroom) +"dNM" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 9 }, +/obj/random/junk, /turf/simulated/floor/plating, -/area/security/checkpoint2) -"dNS" = ( -/obj/structure/bed/stool/chair/sofa/right/purple{ +/area/horizon/maintenance/deck_2/wing/port/far) +"dNN" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/random/junk, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor, +/area/horizon/maintenance/deck_3/aft/starboard) +"dNP" = ( +/obj/structure/railing/mapped{ dir = 1 }, -/obj/machinery/camera/network/research{ - c_tag = "Research - Research Director's Office Foyer"; +/obj/structure/railing/mapped{ dir = 8 }, -/obj/machinery/alarm/south, -/turf/simulated/floor/carpet/purple, -/area/crew_quarters/heads/hor) -"dOa" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 +/obj/structure/table/wood, +/obj/item/reagent_containers/food/drinks/drinkingglass/newglass/coffeecup, +/obj/item/reagent_containers/food/drinks/drinkingglass/newglass/coffeecup{ + pixel_x = 7 }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ +/obj/machinery/chemical_dispenser/coffee/full{ + pixel_y = 14 + }, +/turf/simulated/floor/wood, +/area/horizon/rnd/hallway/secondary) +"dNR" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/obj/structure/table/reinforced/wood, +/obj/item/book/manual/wiki/security_space_law, +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/folder/blue, +/obj/item/pen, +/turf/simulated/floor/carpet, +/area/horizon/command/bridge/meeting_room) +"dNV" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 }, -/obj/structure/cable/green{ - icon_state = "1-4" +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" +/obj/effect/floor_decal/industrial/warning/corner, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 }, /turf/simulated/floor/tiled, -/area/horizon/custodial) +/area/horizon/crew/chargebay) "dOc" = ( /obj/structure/lattice, /obj/structure/grille/diagonal{ @@ -27058,92 +26889,51 @@ }, /turf/space/dynamic, /area/horizon/exterior) -"dOd" = ( -/obj/structure/sign/electricshock{ - pixel_x = 32 - }, +"dOn" = ( /obj/effect/floor_decal/industrial/warning{ - dir = 9 + dir = 4 }, -/obj/machinery/power/smes/buildable/substation{ - name = "C-Goliath Drive - Main Circuit"; - RCon_tag = "C-Goliath Drive - Main Circuit" +/obj/structure/tank_wall/oxygen{ + icon_state = "o2-13" }, -/obj/structure/cable/green{ - icon_state = "0-8" +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 4 }, /turf/simulated/floor/plating, -/area/engineering/bluespace_drive) -"dOm" = ( -/obj/effect/floor_decal/corner/mauve{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/chemistry) -"dOo" = ( -/obj/structure/bookcase, -/obj/item/book/manual/wiki/station_procedure, -/obj/item/book/manual/wiki/security_space_law, -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/floor_decal/corner/mauve/full, -/obj/item/book/manual/excavation, -/obj/item/book/manual/materials_chemistry_analysis, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology/xenological) +/area/horizon/engineering/atmos/air) "dOp" = ( /obj/machinery/vending/cigarette/merchant{ pixel_x = 2 }, /turf/simulated/floor/lino, /area/merchant_station) -"dOv" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable{ - icon_state = "1-2" +"dOy" = ( +/obj/effect/decal/cleanable/liquid_fuel, +/turf/simulated/floor/carpet/rubber, +/area/horizon/maintenance/deck_1/workshop) +"dOz" = ( +/obj/structure/table/steel, +/obj/random/tool{ + pixel_y = -4 }, -/obj/random/dirt_75, /turf/simulated/floor/plating, -/area/maintenance/wing/port/far) -"dOx" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/binary/pump{ - name = "Mix to Connector" - }, -/turf/simulated/floor/tiled/dark, -/area/engineering/atmos) +/area/horizon/engineering/reactor/indra/office) +"dOB" = ( +/obj/machinery/computer/telecomms/traffic, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/tcommsat/entrance) "dOC" = ( /obj/structure/table/wood, /obj/item/device/flashlight/lamp/green, /turf/simulated/floor/carpet, /area/horizon/security/investigators_office) -"dOD" = ( -/obj/effect/floor_decal/corner_wide/black/full{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 9 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ +"dOF" = ( +/obj/effect/floor_decal/corner/dark_green/full{ dir = 4 }, -/obj/structure/engineer_maintenance/electric/wall, -/turf/simulated/floor/tiled/dark, -/area/engineering/atmos/propulsion/starboard) -"dOG" = ( -/obj/structure/lattice, -/obj/structure/platform/ledge{ - dir = 8 - }, -/turf/simulated/open, -/area/hallway/medical/upper) +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled, +/area/horizon/stairwell/port/deck_2) "dOH" = ( /obj/effect/floor_decal/corner/blue/full{ dir = 1 @@ -27158,13 +26948,18 @@ /obj/effect/floor_decal/industrial/warning/full, /turf/simulated/floor/reinforced, /area/shuttle/hapt) -"dOK" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 9 +"dOL" = ( +/obj/machinery/recharge_station, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/full, +/area/horizon/medical/washroom) +"dOQ" = ( +/obj/effect/floor_decal/spline/fancy/wood/cee{ + dir = 1 }, -/obj/structure/trash_pile, -/turf/simulated/floor, -/area/maintenance/engineering_ladder) +/obj/structure/flora/ausbushes/ywflowers, +/turf/simulated/floor/grass/no_edge, +/area/horizon/command/bridge/upperdeck) "dOR" = ( /obj/effect/shuttle_landmark/lift/morgue_top, /obj/effect/floor_decal/industrial/warning{ @@ -27186,6 +26981,32 @@ }, /turf/unsimulated/floor, /area/centcom/legion) +"dOW" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/obj/effect/floor_decal/spline/fancy/wood/corner, +/turf/simulated/floor/wood, +/area/horizon/service/dining_hall) +"dOY" = ( +/obj/machinery/power/apc/north, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/hatch/operations, +/obj/machinery/vending/snack, +/turf/simulated/floor/tiled/full, +/area/horizon/operations/commissary) "dPb" = ( /obj/structure/window/reinforced/crescent{ dir = 1 @@ -27193,25 +27014,20 @@ /obj/structure/lattice/catwalk, /turf/space/dynamic, /area/template_noop) -"dPf" = ( -/obj/structure/cable/orange{ +"dPk" = ( +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/structure/cable/green{ icon_state = "4-8" }, -/obj/machinery/camera/network/reactor{ - c_tag = "Engineering - INDRA SMES Room 2" - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/atmospherics/binary/pump{ + dir = 8; + name = "Mix to Mixed Gas Tank" }, /turf/simulated/floor/tiled/dark/full, -/area/engineering/engine_room/rust) -"dPg" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/random/junk, -/turf/simulated/floor/tiled/dark, -/area/maintenance/wing/port/far) +/area/horizon/engineering/atmos) "dPo" = ( /obj/effect/decal/fake_object{ dir = 4; @@ -27246,30 +27062,14 @@ name = "shallow water" }, /area/horizon/holodeck/source_konyang) -"dPr" = ( -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology/xenoflora) -"dPt" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 1 +"dPy" = ( +/obj/effect/floor_decal/corner_wide/grey/diagonal, +/obj/machinery/vending/snack, +/obj/effect/floor_decal/spline/plain{ + dir = 8 }, -/obj/machinery/embedded_controller/radio/airlock/airlock_controller{ - dir = 4; - pixel_x = -20; - pixel_y = -6 - }, -/obj/machinery/airlock_sensor{ - dir = 4; - pixel_x = -20; - pixel_y = 6 - }, -/obj/effect/map_effect/marker/airlock{ - frequency = 1003; - master_tag = "airlock_horizon_deck_1_starboard_1"; - name = "airlock_horizon_deck_1_starboard_1" - }, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard/deck1) +/turf/simulated/floor/tiled/white, +/area/horizon/operations/break_room) "dPE" = ( /obj/structure/flora/ausbushes/fullgrass, /obj/effect/floor_decal/spline/plain{ @@ -27294,11 +27094,19 @@ /obj/structure/undies_wardrobe, /turf/unsimulated/floor/linoleum, /area/antag/actor) -"dPJ" = ( -/obj/effect/decal/cleanable/cobweb, -/obj/structure/lattice/catwalk/indoor/grate/dark, +"dPH" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/wood, +/area/horizon/command/heads/captain) +"dPM" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, /turf/simulated/floor/plating, -/area/maintenance/wing/starboard/deck1) +/area/horizon/maintenance/deck_1/teleporter) "dPN" = ( /obj/effect/floor_decal/corner/blue{ dir = 5 @@ -27309,9 +27117,6 @@ }, /turf/simulated/floor/tiled/white, /area/horizon/security/autopsy_laboratory) -"dPO" = ( -/turf/simulated/wall, -/area/horizon/hallway/deck_three/primary/starboard) "dPR" = ( /obj/structure/shuttle_part/ert{ icon_state = "10,2"; @@ -27319,8 +27124,30 @@ }, /turf/unsimulated/floor/plating, /area/centcom/specops) -"dQb" = ( -/obj/structure/cable/green{ +"dPS" = ( +/obj/effect/floor_decal/industrial/outline/service, +/obj/machinery/seed_extractor, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/service/hydroponics) +"dPT" = ( +/obj/structure/bed/stool/chair/sofa/pew/right{ + dir = 8 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 10 + }, +/turf/simulated/floor/wood, +/area/horizon/service/chapel/main) +"dPW" = ( +/obj/structure/bed/handrail{ + buckle_dir = 8; + dir = 8; + pixel_x = 5 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/surgery) +"dPY" = ( +/obj/structure/cable{ icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -27329,17 +27156,10 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/engineer_maintenance/electric, -/obj/structure/engineer_maintenance/pipe{ - dir = 8 - }, -/obj/effect/floor_decal/corner/green/diagonal, -/obj/machinery/alarm/north, -/turf/simulated/floor/tiled/white, -/area/horizon/crew_quarters/washroom/central) +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/light/small/emergency, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/wing/starboard) "dQc" = ( /obj/effect/floor_decal/corner/blue/diagonal, /obj/structure/cable/green{ @@ -27352,54 +27172,78 @@ }, /turf/simulated/floor/tiled/white, /area/horizon/security/autopsy_laboratory) +"dQd" = ( +/obj/effect/floor_decal/industrial/outline/grey, +/obj/machinery/portable_atmospherics/canister/air, +/turf/simulated/floor/plating, +/area/horizon/hangar/intrepid) "dQe" = ( /turf/simulated/wall/shuttle/dark/corner/underlay{ dir = 9 }, /area/centcom/legion) -"dQq" = ( -/obj/structure/cable/green{ - icon_state = "1-8" +"dQf" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/corner/yellow{ + dir = 5 }, -/turf/simulated/floor, -/area/maintenance/substation/civilian_east) -"dQv" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/effect/floor_decal/spline/plain{ - dir = 1 - }, -/obj/machinery/media/jukebox/audioconsole/wall{ - pixel_y = -32 - }, -/turf/simulated/floor/tiled/white, -/area/horizon/kitchen) -"dQC" = ( -/obj/structure/platform_stairs/south_north_solo{ +/turf/simulated/floor/tiled, +/area/horizon/engineering/locker_room) +"dQn" = ( +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/machinery/light/small, +/obj/effect/floor_decal/corner/lime/full, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/horizon/medical/morgue) +"dQp" = ( +/obj/effect/floor_decal/corner/brown/full{ dir = 1 }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/effect/floor_decal/industrial/loading/yellow, /obj/structure/cable/green{ - icon_state = "1-2" + icon_state = "0-2" }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 6 +/obj/machinery/power/apc/north, +/turf/simulated/floor/tiled, +/area/horizon/operations/loading) +"dQx" = ( +/obj/machinery/power/apc/west, +/obj/structure/cable/green{ + icon_state = "0-4" }, -/obj/machinery/light{ +/obj/structure/table/rack, +/obj/item/clothing/suit/hazmat/anomaly, +/obj/item/tank/oxygen, +/obj/item/clothing/head/hazmat/anomaly, +/obj/item/clothing/mask/gas/alt, +/obj/item/clothing/glasses/safety/goggles/science, +/obj/item/storage/box/gloves, +/turf/simulated/floor/tiled/dark, +/area/horizon/rnd/xenoarch/storage) +"dQy" = ( +/obj/machinery/light/floor{ + dir = 8 + }, +/obj/structure/bed/handrail{ dir = 4 }, -/turf/simulated/floor/wood, -/area/bridge/meeting_room) -"dQE" = ( -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 4; - icon_state = "shutter0"; - id = "LCKDshutters"; - name = "MedBay Lockdown Shutters"; - opacity = 0 - }, -/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, +/obj/structure/closet/walllocker/emerglocker/west, +/obj/item/clothing/suit/space/emergency, +/obj/item/clothing/suit/space/emergency, +/obj/item/clothing/suit/space/emergency, +/obj/item/clothing/head/helmet/space/emergency, +/obj/item/clothing/head/helmet/space/emergency, +/obj/item/clothing/head/helmet/space/emergency, /turf/simulated/floor/tiled/dark/full, -/area/medical/paramedic) +/area/horizon/shuttle/intrepid/main_compartment) "dQF" = ( /obj/structure/flora/pottedplant{ icon_state = "plant-22" @@ -27408,74 +27252,72 @@ icon_state = "dark_preview" }, /area/centcom/control) -"dQG" = ( -/obj/structure/table/wood, -/obj/random/pottedplant_small{ - pixel_y = 16 +"dQK" = ( +/obj/machinery/light{ + dir = 4 }, -/turf/simulated/floor/carpet, -/area/bridge/cciaroom) -"dQH" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/maintenance{ - dir = 4; - req_access = list(12) +/obj/effect/floor_decal/corner/dark_green{ + dir = 6 }, -/obj/machinery/door/blast/regular/open{ - id = "hangarlockdown"; - name = "Hangar Lockdown" - }, -/turf/simulated/floor/tiled/full, -/area/maintenance/hangar/starboard) +/obj/machinery/newscaster/east, +/turf/simulated/floor/tiled, +/area/horizon/hangar/intrepid/interstitial) "dQL" = ( /obj/item/hullbeacon/red, /turf/simulated/floor/reinforced/airless, /area/horizon/exterior) -"dQW" = ( -/obj/structure/bed/handrail{ +"dQN" = ( +/obj/structure/platform/ledge{ dir = 4 }, -/obj/structure/bed/stool/bar/padded/red{ +/obj/structure/platform/ledge{ dir = 8 }, -/obj/machinery/light/small{ - dir = 1 +/turf/simulated/open, +/area/horizon/operations/office) +"dQY" = ( +/turf/simulated/wall/r_wall, +/area/horizon/crew/resdeck/living_quarters_lift) +"dQZ" = ( +/obj/structure/platform, +/obj/effect/floor_decal/corner/paleblue/full{ + dir = 8 }, -/turf/simulated/floor/tiled/dark/full, -/area/shuttle/intrepid/junction_compartment) -"dRe" = ( -/obj/structure/closet/crate/freezer{ - name = "Assorted Blood Packs" +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 }, -/obj/item/reagent_containers/blood/OPlus, -/obj/item/reagent_containers/blood/OPlus, -/obj/item/reagent_containers/blood/BPlus, -/obj/item/reagent_containers/blood/BPlus, -/obj/item/reagent_containers/blood/BMinus, -/obj/item/reagent_containers/blood/BMinus, -/obj/item/reagent_containers/blood/sbs, -/obj/item/reagent_containers/blood/sbs, -/obj/item/reagent_containers/blood/APlus, -/obj/item/reagent_containers/blood/APlus, -/obj/item/reagent_containers/blood/AMinus, -/obj/item/reagent_containers/blood/AMinus, -/obj/effect/floor_decal/corner_wide/green/full, -/obj/structure/cable/green, -/obj/machinery/power/apc/west, -/turf/simulated/floor/tiled/white, -/area/medical/main_storage) -"dRg" = ( -/obj/structure/table/standard, -/obj/item/modular_computer/laptop/preset/research/rd, -/obj/item/storage/slide_projector{ - pixel_y = 12 +/obj/structure/cable/green{ + icon_state = "4-8" }, -/turf/simulated/floor/carpet/purple, -/area/crew_quarters/heads/hor) +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/horizon/command/bridge/cciaroom/lounge) +"dRb" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/alarm/north, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/wing/starboard/far) "dRh" = ( /obj/structure/anomaly_container, /turf/simulated/floor/tiled/dark, -/area/outpost/research/anomaly_storage) +/area/horizon/rnd/xenoarch/anomaly_storage) +"dRj" = ( +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/turf/simulated/floor/tiled, +/area/horizon/operations/warehouse) "dRk" = ( /obj/machinery/door/airlock{ dir = 1; @@ -27487,6 +27329,18 @@ }, /turf/simulated/floor/tiled/full, /area/horizon/security/brig) +"dRt" = ( +/obj/machinery/light, +/obj/effect/floor_decal/corner/yellow, +/obj/effect/floor_decal/corner/dark_blue{ + dir = 8 + }, +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/atmos) "dRu" = ( /obj/effect/floor_decal/industrial/warning{ dir = 1 @@ -27520,28 +27374,22 @@ icon_state = "seashallow" }, /area/centcom/shared_dream) -"dRx" = ( -/obj/structure/bed/stool/chair/shuttle/double{ - pixel_x = -8; - dir = 1 +"dRG" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 }, -/obj/structure/bed/stool/chair/shuttle/double{ - pixel_x = 8; - dir = 1 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 }, -/obj/effect/floor_decal/spline/plain/cee/black{ - dir = 1 +/obj/structure/cable/orange{ + icon_state = "4-8" }, -/turf/simulated/floor/tiled/dark/full, -/area/shuttle/intrepid/starboard_compartment) -"dRy" = ( -/obj/structure/closet/emcloset, -/obj/effect/floor_decal/corner/brown{ - dir = 5 +/obj/structure/cable/orange{ + icon_state = "1-4" }, -/obj/effect/floor_decal/industrial/outline/emergency_closet, -/turf/simulated/floor/tiled, -/area/operations/office) +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor/plating, +/area/horizon/engineering/reactor/indra/mainchamber) "dRI" = ( /obj/machinery/light{ dir = 4 @@ -27553,71 +27401,91 @@ icon_state = "white" }, /area/centcom/legion) -"dRK" = ( -/obj/machinery/door/airlock/command{ - dir = 1; - id_tag = "researchdoor"; - name = "Research Director's Office"; - req_access = list(30) - }, -/obj/machinery/door/firedoor, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/dark/full, -/area/crew_quarters/heads/hor) -"dSc" = ( -/obj/effect/floor_decal/spline/plain/green{ - dir = 1 - }, -/obj/effect/floor_decal/spline/plain/blue, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ +"dRL" = ( +/obj/structure/platform_deco{ dir = 4 }, -/turf/simulated/floor/tiled, -/area/horizon/hydroponics/lower) -"dSd" = ( -/turf/simulated/floor/wood, -/area/crew_quarters/heads/hor) -"dSf" = ( /obj/structure/cable/green{ icon_state = "1-2" }, -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/machinery/computer/bluespacedrive{ +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/horizon/operations/machinist/surgicalbay) +"dRO" = ( +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/plating, +/area/horizon/engineering/reactor/supermatter/mainchamber) +"dRP" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/turf/simulated/floor/tiled, -/area/engineering/bluespace_drive) +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner/dark_blue/diagonal, +/obj/effect/floor_decal/spline/plain/black{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/shuttle/intrepid/junction_compartment) +"dRR" = ( +/obj/effect/floor_decal/corner_wide/purple{ + dir = 6 + }, +/obj/effect/floor_decal/corner_wide/purple{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/xenoarch/atrium) +"dRS" = ( +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/machinery/power/terminal{ + dir = 4 + }, +/obj/machinery/light/small/emergency{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/substation/xenoarchaeology) +"dRW" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/reagent_dispensers/extinguisher, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/storage_hard) +"dRX" = ( +/obj/machinery/atmospherics/unary/vent_pump/siphon/on/atmos{ + dir = 4; + id_tag = "h_out" + }, +/turf/simulated/floor/reinforced/hydrogen, +/area/horizon/engineering/atmos) "dSk" = ( /obj/structure/cable/green{ icon_state = "1-8" }, /turf/simulated/floor/tiled, /area/horizon/security/warden) -"dSm" = ( -/obj/effect/floor_decal/corner/purple/diagonal, -/obj/structure/sign/drop{ - pixel_x = 32; - pixel_y = 32 +"dSr" = ( +/obj/structure/railing/mapped{ + dir = 8 }, -/obj/structure/sign/flag/sol{ - pixel_y = 32 +/obj/structure/cable/green{ + icon_state = "1-2" }, -/obj/effect/floor_decal/industrial/warning{ +/obj/structure/railing/mapped{ dir = 4 }, -/obj/structure/sign/poster/pinup{ - pixel_x = -32 - }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/tiled/dark, -/area/horizon/custodial/disposals) +/area/horizon/stairwell/port/deck_3) "dSv" = ( /obj/item/device/laser_pointer/blue{ pixel_x = -12; @@ -27639,38 +27507,118 @@ }, /turf/simulated/floor/tiled/white, /area/horizon/security/brig) -"dTe" = ( -/obj/structure/railing/mapped, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/ramp/bottom{ - dir = 8 +"dSC" = ( +/obj/structure/window/reinforced{ + dir = 4 }, -/area/maintenance/wing/starboard/deck1) -"dTj" = ( +/obj/machinery/atmospherics/pipe/simple/visible, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/reagent_dispensers/watertank, +/obj/item/reagent_containers/glass/bucket, +/turf/simulated/floor/tiled/dark, +/area/horizon/rnd/xenobiology/xenoflora) +"dSD" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/substation/civ_d2) +"dSJ" = ( +/obj/structure/closet/crate, +/obj/random/contraband, +/obj/random/loot, +/obj/effect/floor_decal/industrial/outline/grey, +/turf/simulated/floor/tiled/dark, +/area/horizon/maintenance/deck_2/wing/starboard/nacelle) +"dSL" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/shuttle/intrepid/starboard_compartment) +"dSN" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/purple, +/obj/effect/floor_decal/corner_wide/black{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/atmos/propulsion/starboard) +"dSR" = ( +/obj/structure/cable/yellow, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/machinery/power/smes/buildable/main_engine{ + RCon_tag = "Supermatter - Grid" + }, +/obj/effect/landmark/engine_setup/smes, +/obj/effect/floor_decal/industrial/hatch/yellow, /obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/horizon/engineering/smes) +"dST" = ( +/turf/simulated/wall/shuttle/scc_space_ship/cardinal, +/area/horizon/engineering/reactor/indra/mainchamber) +"dSU" = ( +/obj/machinery/door/airlock/external{ + dir = 4; + frequency = 1380; + icon_state = "door_locked"; + id_tag = "escape_pod_1_berth_hatch"; + locked = 1; + name = "Escape Pod"; + req_access = list(13) + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled, +/area/horizon/hangar/auxiliary) +"dTf" = ( +/obj/machinery/light, +/obj/effect/floor_decal/corner/brown{ dir = 10 }, /turf/simulated/floor/tiled, -/area/maintenance/wing/port/far) -"dTn" = ( -/obj/effect/floor_decal/spline/fancy/wood{ +/area/horizon/operations/lobby) +"dTh" = ( +/obj/effect/floor_decal/spline/fancy/wood, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/horizon/service/library) +"dTk" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/machinery/photocopier, -/turf/simulated/floor/wood, -/area/horizon/library) -"dTq" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 9 +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"dTt" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/door/firedoor, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/full, -/area/hallway/primary/central_two) +/obj/machinery/light/small/emergency{ + dir = 1 + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/teleporter) +"dTn" = ( +/obj/structure/trash_pile, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/operations/starboard) "dTu" = ( /obj/structure/closet/crate/freezer, /obj/item/reagent_containers/blood/OMinus, @@ -27685,11 +27633,6 @@ /obj/effect/floor_decal/industrial/outline/red, /turf/unsimulated/floor, /area/centcom/legion/hangar5) -"dTw" = ( -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/machinery/alarm/north, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard) "dTy" = ( /turf/simulated/wall/shuttle/dark/corner/underlay{ dir = 10 @@ -27705,66 +27648,34 @@ }, /turf/unsimulated/wall/darkshuttlewall, /area/centcom/bar) -"dTL" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/chapel/main) -"dTN" = ( -/obj/random/dirt_75, -/obj/random/dirt_75, -/turf/simulated/floor/tiled/dark, -/area/maintenance/wing/port/far) -"dTP" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ +"dTK" = ( +/obj/structure/extinguisher_cabinet/east, +/obj/effect/floor_decal/industrial/warning/corner{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 }, -/obj/structure/cable/orange{ - icon_state = "4-8" +/obj/machinery/atmospherics/pipe/simple/hidden/aux{ + dir = 9 }, -/obj/structure/lattice/catwalk/indoor, -/turf/simulated/floor/plating, -/area/engineering/engine_room/rust) -"dTV" = ( -/obj/effect/floor_decal/corner/grey/diagonal, +/obj/machinery/camera/network/command{ + c_tag = "Bridge - Restricted Area"; + dir = 1 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/command/bridge/aibunker) +"dTZ" = ( /obj/effect/floor_decal/spline/plain{ - dir = 1 - }, -/obj/structure/disposalpipe/junction{ - dir = 8; - icon_state = "pipe-j2" - }, -/turf/simulated/floor/tiled/white, -/area/horizon/kitchen) -"dTY" = ( -/obj/machinery/door/airlock/external, -/obj/effect/map_effect/marker/airlock/docking{ - landmark_tag = "nav_horizon_dock_deck_3_port_4"; - master_tag = "airlock_horizon_dock_deck_3_port_4"; - name = "airlock_horizon_dock_deck_3_port_4" - }, -/obj/effect/map_effect/marker_helper/airlock/exterior, -/obj/machinery/access_button{ - pixel_x = -28 - }, -/turf/simulated/floor/plating, -/area/horizon/hallway/deck_three/primary/port/docks) -"dUb" = ( -/obj/effect/floor_decal/corner/dark_green/full{ - dir = 1 + dir = 6 }, +/obj/item/stock_parts/subspace/ansible, +/obj/item/stock_parts/subspace/ansible, +/obj/item/stock_parts/subspace/ansible, +/obj/structure/table/standard, /obj/machinery/firealarm/east, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/central) +/turf/simulated/floor/carpet/rubber, +/area/horizon/tcommsat/entrance) "dUj" = ( /obj/structure/flora/ausbushes/lavendergrass, /obj/effect/floor_decal/spline/plain{ @@ -27778,24 +27689,15 @@ }, /turf/unsimulated/floor, /area/centcom/ferry) +"dUo" = ( +/turf/simulated/wall, +/area/horizon/maintenance/deck_3/aft/starboard) "dUp" = ( /obj/structure/shuttle_part/mercenary/small{ icon_state = "1,1" }, /turf/unsimulated/floor/plating, /area/shuttle/syndicate_elite) -"dUr" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/obj/effect/map_effect/window_spawner/full/reinforced/polarized/grille/firedoor{ - id = "hra" - }, -/turf/simulated/floor, -/area/bridge/cciaroom) "dUs" = ( /obj/effect/floor_decal/spline/plain{ dir = 5 @@ -27804,24 +27706,54 @@ /obj/structure/flora/ausbushes/ppflowers, /turf/simulated/floor/exoplanet/grass/grove, /area/centcom/shared_dream) -"dUx" = ( -/obj/structure/railing/mapped{ - dir = 4 +"dUu" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 5 }, -/turf/simulated/open, -/area/horizon/hallway/deck_three/primary/starboard) -"dUC" = ( -/obj/machinery/camera/network/research{ - c_tag = "Research - Xenobio Fore"; - network = list("Research","Xeno_Bio") +/obj/machinery/alarm/north, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_3/starboard) +"dUw" = ( +/obj/effect/floor_decal/corner_wide/yellow{ + dir = 5 }, -/obj/machinery/smartfridge/secure/extract{ - density = 0; - pixel_y = 17 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/horizon/stairwell/engineering/deck_2) +"dUz" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/simulated/floor, +/area/horizon/maintenance/deck_3/aft/port) +"dUD" = ( +/obj/item/bedsheet/medical, +/obj/structure/bed/padded, +/obj/effect/floor_decal/corner_wide/green/full{ + dir = 8 + }, +/obj/machinery/camera/network/medbay{ + c_tag = "Medical - Examination Office 1" + }, +/obj/machinery/newscaster/east{ + dir = 8; + pixel_x = -8 }, -/obj/effect/floor_decal/industrial/outline_corner/yellow, /turf/simulated/floor/tiled/white, -/area/rnd/xenobiology) +/area/horizon/medical/ward) +"dUH" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/horizon/hangar/auxiliary) "dUJ" = ( /obj/structure/bed/stool/chair{ dir = 1 @@ -27832,82 +27764,61 @@ icon_state = "white" }, /area/tdome/tdomeadmin) -"dUP" = ( -/obj/structure/morgue{ +"dUK" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ dir = 8 }, -/obj/effect/floor_decal/spline/plain{ - dir = 6 +/obj/machinery/airlock_sensor{ + dir = 8; + pixel_x = 20 }, -/obj/structure/railing/mapped{ - dir = 4 +/obj/effect/map_effect/marker/airlock{ + frequency = 2001; + master_tag = "airlock_horizon_deck_2_starboard_aft"; + name = "airlock_horizon_deck_2_starboard_aft" }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/port/near) +"dUU" = ( +/obj/structure/lattice/catwalk/indoor, +/turf/simulated/floor/plating, +/area/horizon/hangar/intrepid) +"dUV" = ( +/obj/structure/lattice/catwalk, +/turf/simulated/open, +/area/horizon/maintenance/deck_2/wing/port/near) +"dVi" = ( /obj/structure/platform{ dir = 8 }, -/turf/simulated/floor/tiled/freezer{ - name = "cooled tiles"; - temperature = 278.15 +/obj/machinery/conveyor_switch/oneway{ + desc = "A conveyor control switch. It appears to only go in one direction. Controls the components conveyor belt."; + id = "rnd"; + pixel_x = -13; + pixel_y = 21 }, -/area/medical/morgue/lower) -"dVa" = ( -/obj/effect/floor_decal/corner_wide/green{ - dir = 9 +/obj/effect/floor_decal/industrial/loading/yellow{ + dir = 1 }, -/obj/effect/floor_decal/corner_wide/green, -/obj/machinery/alarm/west, -/obj/structure/bed/stool/chair/office/dark{ +/turf/simulated/floor/tiled/dark/full, +/area/horizon/rnd/lab) +"dVj" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/simulated/floor/tiled/white, -/area/medical/exam) -"dVf" = ( -/obj/machinery/icecream_vat, -/obj/effect/floor_decal/industrial/outline/grey, -/turf/simulated/floor/tiled/freezer{ - name = "cooled tiles"; - temperature = 253.15 - }, -/area/horizon/kitchen/freezer) -"dVt" = ( -/obj/effect/floor_decal/corner/purple{ - dir = 9 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled, -/area/maintenance/wing/starboard) -"dVv" = ( -/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, -/turf/simulated/floor/tiled, -/area/bridge/cciaroom/lounge) -"dVz" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/effect/decal/cleanable/dirt, -/obj/structure/railing/mapped, -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard/deck1) -"dVC" = ( /obj/effect/floor_decal/spline/plain{ dir = 4 }, -/obj/effect/floor_decal/corner/dark_green{ - dir = 6 +/obj/effect/floor_decal/corner/grey/diagonal, +/turf/simulated/floor/tiled/white, +/area/horizon/service/kitchen) +"dVs" = ( +/obj/structure/trash_pile, +/obj/effect/floor_decal/industrial/warning{ + dir = 9 }, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/full, -/area/hallway/primary/central_two) +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/research) "dVE" = ( /obj/random/pottedplant, /obj/effect/floor_decal/spline/fancy/wood{ @@ -27915,22 +27826,23 @@ }, /turf/simulated/floor/wood/yew, /area/centcom/shared_dream) -"dVG" = ( -/obj/machinery/atmospherics/pipe/simple/visible/black{ +"dVK" = ( +/obj/machinery/door/blast/regular/open{ + id = "iso_b"; + name = "Safety Blast Door" + }, +/obj/effect/map_effect/window_spawner/full/borosilicate/reinforced/firedoor, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/rnd/xenoarch/isolation_b) +"dVL" = ( +/obj/effect/floor_decal/industrial/warning{ dir = 4 }, -/obj/machinery/meter, -/turf/simulated/floor/tiled/dark, -/area/engineering/atmos) -"dVJ" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 6 +/obj/structure/tank_wall/nitrous_oxide{ + icon_state = "n2o9" }, -/turf/simulated/floor/tiled, -/area/horizon/stairwell/central) -"dVM" = ( -/turf/simulated/wall, -/area/hangar/intrepid/interstitial) +/turf/simulated/floor/plating, +/area/horizon/engineering/atmos/air) "dVN" = ( /obj/machinery/light{ name = "adjusted light fixture"; @@ -27945,30 +27857,37 @@ }, /turf/simulated/floor/plating, /area/merchant_station/warehouse) -"dVU" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/atmospherics/pipe/manifold4w/hidden, -/turf/simulated/floor, -/area/maintenance/wing/port/far) -"dVW" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/floor_decal/corner/dark_green{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/central) -"dVZ" = ( -/obj/effect/floor_decal/corner_wide/yellow{ - dir = 10 +"dVQ" = ( +/obj/effect/floor_decal/corner/grey/diagonal, +/obj/effect/floor_decal/spline/plain, +/obj/structure/sink/kitchen{ + dir = 8; + name = "sink"; + pixel_x = 21 }, +/obj/structure/extinguisher_cabinet/east, +/turf/simulated/floor/tiled/white, +/area/horizon/service/kitchen) +"dVR" = ( +/obj/machinery/constructable_frame/machine_frame, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/effect/decal/cleanable/dirt, /obj/structure/cable/green{ - icon_state = "4-8" + d2 = 4; + icon_state = "0-4" }, -/obj/machinery/firealarm/south, -/turf/simulated/floor/tiled, -/area/hallway/engineering/rust) +/turf/simulated/floor/plating, +/area/horizon/maintenance/substation/wing_starboard) +"dVS" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/visible/green, +/obj/structure/tank_wall/nitrogen{ + icon_state = "n2" + }, +/turf/simulated/floor/plating, +/area/horizon/engineering/atmos/air) "dWa" = ( /obj/effect/landmark/entry_point/fore{ name = "fore, brig communal" @@ -27989,70 +27908,58 @@ }, /turf/simulated/floor/tiled/white, /area/merchant_station) -"dWl" = ( -/obj/machinery/chem_master, -/obj/effect/floor_decal/spline/plain{ - dir = 9 - }, -/obj/structure/extinguisher_cabinet/west, -/turf/simulated/floor/carpet/rubber, -/area/medical/pharmacy) -"dWs" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass{ - dir = 4 - }, -/turf/simulated/floor/tiled/full, -/area/horizon/hallway/deck_three/primary/starboard/docks) -"dWt" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_command{ - dir = 4; - name = "EVA Storage"; - req_access = list(18) - }, -/turf/simulated/floor/tiled/full, -/area/storage/eva) -"dWv" = ( -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ +"dWf" = ( +/obj/effect/floor_decal/industrial/warning{ dir = 1 }, +/obj/item/hoist_kit, +/obj/structure/sign/nosmoking_2{ + pixel_x = -32 + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/starboard/nacelle) +"dWh" = ( +/obj/structure/grille/diagonal{ + dir = 4 + }, +/obj/structure/window/shuttle/scc_space_ship, +/obj/machinery/door/blast/shutters/open{ + dir = 2; + id = "bar_viewing_shutters"; + name = "Bar Viewing Shutters" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/reinforced, +/area/horizon/service/bar) +"dWy" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/turf/simulated/floor/tiled, +/area/horizon/rnd/hallway/secondary) +"dWz" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/chem_master{ + dir = 8 + }, +/obj/effect/floor_decal/spline/plain/cee{ + dir = 4 + }, +/turf/simulated/floor/carpet/rubber, +/area/horizon/rnd/chemistry) +"dWE" = ( +/obj/random/junk, +/obj/structure/disposalpipe/segment, /obj/structure/lattice/catwalk/indoor/grate/dark, /turf/simulated/floor/plating, -/area/engineering/drone_fabrication) -"dWw" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/central) -"dWD" = ( -/obj/effect/floor_decal/corner/brown{ - dir = 10 - }, -/obj/machinery/button/remote/blast_door{ - id = "miningbay"; - name = "Mining Bay Entrance"; - pixel_x = 22; - pixel_y = -18; - req_access = list(48) - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/refinery) +/area/horizon/maintenance/deck_2/service/starboard) "dWI" = ( /turf/simulated/wall/shuttle/unique/ert{ icon_state = "8,4" @@ -28073,45 +27980,36 @@ /obj/machinery/light/small/emergency, /turf/unsimulated/floor/plating, /area/centcom/specops) -"dWL" = ( -/obj/random/junk, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; - icon_state = "1-4" +"dWS" = ( +/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/maintenance/operations) +/area/horizon/hangar/auxiliary) "dWV" = ( /obj/effect/floor_decal/corner/red{ dir = 9 }, /turf/unsimulated/floor, /area/centcom/evac) +"dXa" = ( +/obj/structure/cable/green{ + icon_state = "0-8" + }, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/effect/map_effect/window_spawner/full/reinforced/polarized/grille/firedoor{ + id = "bridgeconf" + }, +/turf/simulated/floor, +/area/horizon/command/bridge/meeting_room) "dXb" = ( /obj/effect/map_effect/window_spawner/full/reinforced/indestructible, /turf/unsimulated/floor/plating, /area/antag/burglar) -"dXd" = ( -/turf/simulated/floor/plating, -/area/engineering/drone_fabrication) -"dXg" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_two/fore) -"dXh" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/shuttle/intrepid/junction_compartment) "dXk" = ( /obj/machinery/atmospherics/pipe/simple/visible/black{ dir = 10 @@ -28119,20 +28017,19 @@ /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{ +"dXu" = ( +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/xenological) +"dXw" = ( +/obj/machinery/shower{ dir = 4; - pixel_x = 32 - }, -/obj/effect/floor_decal/corner/dark_green{ - dir = 6 + pixel_x = -1; + pixel_y = 1 }, +/obj/effect/floor_decal/corner/mauve/diagonal, +/obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled, -/area/hangar/auxiliary) +/area/horizon/rnd/xenobiology) "dXz" = ( /obj/effect/floor_decal/spline/fancy/wood/cee{ dir = 8 @@ -28141,6 +28038,24 @@ /obj/structure/flora/ausbushes/pointybush, /turf/simulated/floor/holofloor/grass, /area/horizon/holodeck/source_meetinghall) +"dXE" = ( +/obj/machinery/door/blast/regular{ + id = "portpropulsionexterior" + }, +/turf/simulated/floor/reinforced/airless, +/area/horizon/engineering/atmos/propulsion/starboard) +"dXF" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 8 + }, +/obj/effect/floor_decal/spline/plain{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/carpet/rubber, +/area/horizon/tcommsat/chamber) "dXJ" = ( /turf/simulated/wall/shuttle/unique/tcfl{ icon_state = "15,2" @@ -28173,37 +28088,19 @@ }, /turf/simulated/floor/tiled, /area/horizon/security/investigations_hallway) -"dXV" = ( -/obj/structure/table/reinforced/wood, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 2; - icon_state = "shutter0"; - id = "cap_office_desk"; - name = "Captain Desk Shutters"; - opacity = 0 - }, -/obj/structure/disposalpipe/segment, -/obj/item/storage/secure/briefcase, -/obj/machinery/button/switch/windowtint{ - dir = 4; - id = "cap"; - pixel_x = 19; - pixel_y = 1 +"dXW" = ( +/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, +/obj/machinery/door/blast/shutters/open{ + id = "mech_bay_shutter"; + name = "Mech Bay Shutters"; + dir = 4 }, /turf/simulated/floor/tiled/dark/full, -/area/crew_quarters/captain) -"dXY" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/effect/floor_decal/spline/plain, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled/white, -/area/horizon/kitchen) +/area/horizon/operations/machinist) +"dXZ" = ( +/obj/structure/lattice, +/turf/simulated/open, +/area/horizon/operations/office) "dYa" = ( /obj/structure/table/wood/gamblingtable, /obj/item/deck/cards, @@ -28216,181 +28113,214 @@ icon_state = "wood" }, /area/centcom/legion/hangar5) -"dYd" = ( -/obj/machinery/light_switch{ - dir = 8; - pixel_x = -22; - pixel_y = 30 +"dYh" = ( +/turf/simulated/wall/shuttle/scc, +/area/horizon/shuttle/escape_pod/pod2) +"dYi" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + dir = 1; + frequency = 1379; + id_tag = "engine_airlock_interior"; + locked = 1; + name = "Supermatter Reactor Airlock Interior"; + req_one_access = list(11,24) }, -/turf/simulated/floor/carpet/rubber, -/area/maintenance/engineering/auxillary) -"dYe" = ( -/obj/structure/window/shuttle/scc_space_ship, -/obj/structure/grille/diagonal, -/obj/machinery/door/blast/shutters/open{ - dir = 2; - id = "shutters_deck3_bridgesafety"; - name = "Safety Shutter" - }, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "bridge blast"; - name = "Bridge Blast Doors"; - opacity = 0 +/obj/machinery/access_button{ + command = "cycle_interior"; + frequency = 1379; + master_tag = "engine_airlock_control"; + name = "Supermatter Reactor Airlock Access"; + pixel_x = 23; + req_one_access = list(11,24) }, /obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/bridge/minibar) -"dYf" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 6 +/obj/machinery/embedded_controller/radio/airlock/access_controller{ + id_tag = "engine_airlock_control"; + name = "Supermatter Reactor Airlock Access Console"; + pixel_x = 38; + tag_exterior_door = "engine_airlock_exterior"; + tag_interior_door = "engine_airlock_interior" }, -/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/machinery/firealarm/west, -/obj/structure/engineer_maintenance/electric{ - dir = 8 +/turf/simulated/floor/tiled/full, +/area/horizon/engineering/reactor/supermatter/airlock) +"dYk" = ( +/obj/structure/table/wood, +/obj/machinery/requests_console/east{ + department = "Psychiatric Wing" }, -/obj/structure/engineer_maintenance/pipe, -/obj/structure/bed/stool/chair/office/dark{ - dir = 1 +/obj/item/modular_computer/laptop/preset/medical{ + pixel_y = 4 }, -/obj/item/device/radio/intercom/north{ - dir = 2; - pixel_y = 0 +/obj/random/pottedplant_small{ + pixel_x = 7; + pixel_y = 14 }, -/turf/simulated/floor/tiled, -/area/operations/office) -"dYC" = ( -/obj/structure/bed/stool/chair/office/light{ - dir = 8 - }, -/obj/effect/floor_decal/corner/mauve{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology/foyer) -"dYF" = ( -/obj/machinery/camera/network/first_deck{ - c_tag = "First Deck - EVA Storage 2" - }, -/obj/structure/reagent_dispensers/extinguisher, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 5 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/dark, -/area/storage/eva) -"dYI" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 5 - }, -/obj/machinery/status_display{ - pixel_y = 32 - }, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/starboard/docks) -"dYL" = ( +/turf/simulated/floor/carpet, +/area/horizon/medical/psych) +"dYM" = ( /obj/effect/floor_decal/spline/fancy/wood{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/engineer_maintenance/pipe{ - dir = 8 - }, -/obj/structure/engineer_maintenance/electric{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/lawoffice/representative) -"dZd" = ( -/obj/machinery/button/remote/airlock{ - dir = 4; - id = "sat2"; - name = "Scuttling Device Bolts"; - pixel_x = 22; - pixel_y = 40; - req_access = list(20); - specialfunctions = 4 - }, -/obj/effect/floor_decal/industrial/hatch/red, -/obj/effect/floor_decal/industrial/warning{ dir = 4 }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ +/obj/effect/floor_decal/spline/fancy/wood{ dir = 8 }, -/obj/machinery/atmospherics/pipe/simple/hidden/aux{ - dir = 6 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/wood, +/area/horizon/service/dining_hall) +"dYP" = ( +/obj/machinery/door/firedoor, +/obj/machinery/conveyor{ + dir = 1; + id = "QMLoad" }, +/obj/structure/plasticflaps, +/obj/machinery/door/airlock/external{ + dir = 1; + frequency = 1380; + icon_state = "door_locked"; + id_tag = "cargo_shuttle_dock_airlock"; + locked = 1; + name = "Cargo Shuttle"; + req_access = list(13,31) + }, +/turf/simulated/floor/tiled, +/area/horizon/operations/loading) +"dYR" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/turf/simulated/floor/reinforced, +/area/horizon/engineering/gravity_gen) +"dYS" = ( /obj/structure/cable/green{ icon_state = "4-8" }, -/turf/simulated/floor/tiled/dark/full, -/area/bridge/selfdestruct) -"dZe" = ( -/obj/structure/sink{ - pixel_y = 1; - dir = 8; - pixel_x = -15 +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/corner/mauve{ + dir = 5 }, -/obj/effect/floor_decal/corner/mauve/diagonal, -/obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled, -/area/rnd/xenobiology) +/area/horizon/rnd/hallway) +"dYV" = ( +/obj/structure/table/steel, +/obj/item/paper_bin{ + pixel_x = -6; + pixel_y = 6 + }, +/obj/item/paper_bin{ + pixel_x = 6; + pixel_y = -6 + }, +/obj/item/paper_bin, +/obj/item/device/hand_labeler, +/obj/item/key/janicart, +/obj/effect/floor_decal/corner/purple{ + dir = 9 + }, +/obj/machinery/alarm/west, +/turf/simulated/floor/tiled, +/area/horizon/service/custodial) +"dYW" = ( +/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/maintenance/deck_2/wing/starboard/far) +"dYY" = ( +/turf/simulated/wall/r_wall, +/area/horizon/rnd/lab) +"dYZ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/alarm/north, +/turf/simulated/floor, +/area/horizon/maintenance/deck_3/security/port) "dZi" = ( /obj/effect/floor_decal/corner/red{ dir = 5 }, /turf/unsimulated/floor, /area/centcom/spawning) -"dZo" = ( -/obj/structure/railing/mapped{ - dir = 4 +"dZj" = ( +/obj/machinery/atmospherics/pipe/manifold/visible, +/turf/simulated/floor/tiled, +/area/horizon/maintenance/deck_2/wing/starboard/auxatmos) +"dZq" = ( +/obj/effect/floor_decal/corner_wide/green{ + dir = 8 }, -/obj/structure/railing/mapped, -/turf/simulated/open, -/area/operations/office) +/turf/simulated/floor/tiled/white, +/area/horizon/medical/hallway) "dZr" = ( /obj/machinery/hologram/holopad, /turf/simulated/floor/carpet, /area/horizon/security/investigators_office) -"dZB" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass{ - dir = 4; - name = "Residential Deck Lifts" - }, +"dZs" = ( +/obj/effect/floor_decal/corner/dark_blue/diagonal, /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 +/obj/structure/cable/green{ + icon_state = "0-8" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 +/obj/machinery/power/apc/low/north, +/turf/simulated/floor/tiled/dark, +/area/horizon/security/checkpoint) +"dZt" = ( +/obj/effect/floor_decal/corner/mauve/diagonal, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/horizon/rnd/xenobiology/xenoflora) +"dZw" = ( +/obj/machinery/door/airlock/external{ + dir = 1; + frequency = 1386; + icon_state = "door_locked"; + id_tag = "canary_out" }, /obj/structure/cable{ - icon_state = "4-8" + icon_state = "1-2" }, -/turf/simulated/floor/tiled/full, -/area/horizon/crew_quarters/cryo/living_quarters_lift) +/obj/effect/landmark/entry_point/aft{ + name = "aft, airlock" + }, +/turf/simulated/floor/plating, +/area/horizon/shuttle/canary) +"dZy" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/horizon/operations/warehouse) +"dZF" = ( +/obj/structure/grille/broken, +/obj/item/material/shard{ + icon_state = "medium" + }, +/obj/machinery/door/firedoor, +/obj/structure/window_frame/empty, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/maintenance/deck_1/wing/starboard) "dZH" = ( /obj/machinery/body_scanconsole{ dir = 4; @@ -28399,45 +28329,45 @@ /obj/effect/floor_decal/corner/blue/diagonal, /turf/simulated/floor/tiled/white, /area/horizon/security/autopsy_laboratory) -"dZJ" = ( -/obj/structure/table/standard, -/obj/item/stack/packageWrap{ - pixel_y = -8 +"dZK" = ( +/obj/structure/grille, +/obj/structure/window/shuttle/scc_space_ship, +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/shutters{ + dir = 2; + id = "shutters_deck3_shieldwindows"; + name = "Viewing Shutter" }, -/obj/item/device/destTagger{ - pixel_y = 6; - pixel_x = -4 +/turf/simulated/floor/plating, +/area/horizon/engineering/shields) +"dZL" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 }, -/turf/simulated/floor/tiled, -/area/engineering/lobby) -"dZQ" = ( -/obj/machinery/atmospherics/pipe/simple/visible/black{ - dir = 5 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 +/obj/effect/floor_decal/corner/dark_blue{ + dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/engineering/atmos/propulsion) -"dZR" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, +/area/horizon/command/bridge/controlroom) +"dZO" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 10 }, -/obj/structure/cable{ +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/structure/cable/green{ icon_state = "2-8" }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/maintenance/wing/port) -"dZV" = ( -/obj/effect/landmark/entry_point/starboard{ - name = "starboard, engineering drone storage" +/obj/structure/lattice/catwalk/indoor, +/turf/simulated/open, +/area/horizon/operations/office) +"dZP" = ( +/obj/structure/bed/stool/chair/office/bridge{ + dir = 8 }, -/turf/simulated/wall/shuttle/scc_space_ship/cardinal, -/area/engineering/bluespace_drive) +/turf/simulated/floor/carpet/purple, +/area/horizon/command/heads/rd) "dZW" = ( /obj/structure/grille, /obj/machinery/door/firedoor, @@ -28462,35 +28392,36 @@ /obj/structure/lattice/catwalk, /turf/simulated/open/airless, /area/horizon/exterior) -"eab" = ( -/obj/structure/tank_wall{ - density = 0; - icon_state = "m-5"; - opacity = 0 +"dZY" = ( +/obj/machinery/porta_turret, +/obj/effect/floor_decal/industrial/warning/full, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/ai/upload_foyer) +"dZZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 }, -/turf/simulated/floor/reinforced/airless, -/area/engineering/atmos) -"eac" = ( -/obj/effect/floor_decal/corner/brown{ - dir = 5 - }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/operations/lobby) -"eaf" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/turf/simulated/floor/tiled, -/area/operations/office) +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/effect/floor_decal/spline/plain{ + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + icon_state = "pipe-c" + }, +/turf/simulated/floor/carpet/rubber, +/area/horizon/engineering/reactor/indra/monitoring) +"eai" = ( +/turf/simulated/wall, +/area/horizon/medical/ward/isolation) +"eaj" = ( +/obj/machinery/light, +/turf/simulated/open, +/area/horizon/medical/hallway/upper) "eam" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 5 @@ -28510,121 +28441,152 @@ }, /turf/simulated/floor/reinforced, /area/shuttle/hapt) -"eaq" = ( -/obj/effect/floor_decal/spline/plain{ +"ear" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/horizon/service/bar) +"eas" = ( +/obj/effect/floor_decal/industrial/warning{ dir = 1 }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 +/obj/structure/cable/green{ + icon_state = "4-8" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 +/obj/machinery/atmospherics/pipe/manifold/visible/yellow, +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/xenoarch/isolation_a) +"eat" = ( +/obj/structure/table/stone/marble, +/obj/item/reagent_containers/food/condiment/enzyme{ + pixel_x = -9; + pixel_y = 9 + }, +/obj/item/reagent_containers/food/condiment/enzyme{ + pixel_x = -9; + pixel_y = 5 + }, +/obj/item/reagent_containers/food/condiment/shaker/peppermill{ + pixel_x = -4; + pixel_y = 11 + }, +/obj/item/reagent_containers/food/condiment/shaker/peppermill{ + pixel_x = -4; + pixel_y = 7 + }, +/obj/item/reagent_containers/food/condiment/shaker/spacespice{ + pixel_x = 3; + pixel_y = 7 + }, +/obj/item/reagent_containers/food/condiment/shaker/spacespice{ + pixel_x = 3; + pixel_y = 1 + }, +/obj/item/reagent_containers/food/condiment/shaker/salt{ + pixel_x = 8; + pixel_y = 11 + }, +/obj/item/reagent_containers/food/condiment/shaker/salt{ + pixel_x = 8; + pixel_y = 7 + }, +/obj/item/reagent_containers/food/condiment/shaker/sprinkles{ + pixel_x = -3 + }, +/obj/item/reagent_containers/food/condiment/shaker/sprinkles{ + pixel_x = 9 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/service/kitchen) +"eaw" = ( +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/effect/floor_decal/corner/dark_green{ + dir = 9 }, /turf/simulated/floor/tiled, -/area/engineering/break_room) +/area/horizon/hallway/primary/deck_2/central) +"eaz" = ( +/obj/effect/floor_decal/industrial/outline_straight/yellow{ + dir = 8 + }, +/obj/effect/floor_decal/corner/yellow{ + dir = 6 + }, +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/service/hydroponics/lower) +"eaC" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/research) "eaD" = ( /obj/structure/shuttle_part/tcfl{ icon_state = "17,6" }, /turf/unsimulated/floor/plating, /area/shuttle/legion) -"eaE" = ( -/obj/effect/floor_decal/spline/fancy/wood{ +"eaM" = ( +/turf/simulated/wall, +/area/horizon/maintenance/substation/engineering/lower) +"eaR" = ( +/obj/structure/table/reinforced/wood, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 1 }, -/obj/machinery/disposal/small/south{ - pixel_y = 16 +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 2; + icon_state = "shutter0"; + id = "cap_office_desk"; + name = "Captain Desk Shutters"; + opacity = 0 }, -/obj/structure/disposalpipe/trunk, +/obj/structure/disposalpipe/segment, +/obj/item/storage/secure/briefcase, /obj/machinery/button/switch/windowtint{ - dir = 1; + dir = 4; id = "cap"; - pixel_y = 28; - pixel_x = -4 + pixel_x = 19; + pixel_y = 1 }, -/obj/machinery/light_switch{ - dir = 1; - pixel_x = 4; - pixel_y = 28 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/captain) -"eaF" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 1 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ +/turf/simulated/floor/tiled/dark/full, +/area/horizon/command/heads/captain) +"eaV" = ( +/obj/machinery/light/small/red{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ +/obj/effect/floor_decal/industrial/outline_segment/yellow{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/bridge/controlroom) -"eaH" = ( -/obj/effect/floor_decal/corner_wide/black{ - dir = 10 - }, -/obj/effect/floor_decal/industrial/warning, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 - }, /turf/simulated/floor/tiled/dark, -/area/engineering/atmos/propulsion) -"eaL" = ( -/obj/structure/railing/mapped, -/obj/structure/railing/mapped{ - dir = 8 +/area/horizon/maintenance/deck_2/wing/port/nacelle) +"eaW" = ( +/obj/machinery/artifact_scanpad, +/obj/effect/floor_decal/spline/plain{ + dir = 9 }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard) -"eaS" = ( -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 8 +/obj/effect/floor_decal/spline/plain{ + dir = 6 }, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/effect/map_effect/marker/airlock{ - master_tag = "sccv_intrepid_port"; - name = "sccv_intrepid_port" - }, -/obj/machinery/embedded_controller/radio/airlock/airlock_controller{ - pixel_y = 23 - }, -/obj/effect/map_effect/marker/airlock{ - master_tag = "sccv_intrepid_port"; - name = "sccv_intrepid_port"; - req_one_access = null - }, -/turf/simulated/floor/plating, -/area/shuttle/intrepid/port_compartment) -"eaU" = ( -/obj/structure/cable/green{ - icon_state = "11-4" - }, -/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/zpipe/down/supply{ - dir = 4 - }, -/turf/simulated/open, -/area/medical/ward/isolation) +/turf/simulated/floor/greengrid, +/area/horizon/rnd/xenoarch/atrium) "eaZ" = ( /obj/structure/bed/stool/chair{ dir = 4 @@ -28651,49 +28613,80 @@ icon_state = "wood" }, /area/centcom/evac) +"ebc" = ( +/obj/structure/sign/flag/scc/unmovable, +/turf/simulated/wall/r_wall, +/area/horizon/command/bridge/upperdeck) +"ebd" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/dark, +/area/horizon/maintenance/deck_2/wing/starboard/nacelle) +"ebe" = ( +/obj/effect/floor_decal/corner_wide/yellow/full{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/horizon/engineering/hallway/aft) +"ebh" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/alarm/north, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/port/far) "ebl" = ( /obj/effect/floor_decal/spline/plain{ dir = 1 }, /turf/simulated/floor/holofloor/tiled, /area/horizon/holodeck/source_gym) +"ebm" = ( +/obj/item/device/radio/intercom/west, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/space_heater, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/lobby) "ebp" = ( /turf/unsimulated/wall/darkshuttlewall, /area/centcom/checkpoint/fore) -"ebu" = ( -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/lattice/catwalk/indoor, -/turf/simulated/floor/plating, -/area/engineering/atmos/air) -"ebH" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, +"ebq" = ( +/obj/random/junk, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark, +/area/horizon/maintenance/deck_2/wing/starboard/nacelle) +"eby" = ( +/turf/simulated/wall, +/area/horizon/service/kitchen/freezer) +"ebA" = ( +/obj/effect/floor_decal/corner/paleblue/diagonal, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/horizon/crew_quarters/fitness/changing) -"ebK" = ( -/obj/item/stack/rods, -/obj/effect/floor_decal/industrial/warning{ dir = 10 }, -/turf/simulated/floor/plating, -/area/maintenance/engineering) +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/white, +/area/horizon/command/heads/cmo) +"ebG" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/industrial/loading/yellow{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/reactor/indra/mainchamber) "ebL" = ( /obj/effect/decal/cleanable/blood/oil, /obj/effect/decal/cleanable/dirt, @@ -28704,15 +28697,7 @@ dir = 4 }, /turf/simulated/floor/reinforced/airless, -/area/template_noop) -"ebN" = ( -/obj/structure/tank_wall/carbon_dioxide{ - density = 0; - icon_state = "co2-5"; - opacity = 0 - }, -/turf/simulated/floor/reinforced/carbon_dioxide, -/area/engineering/atmos) +/area/horizon/exterior) "ebQ" = ( /obj/structure/table/rack, /obj/item/storage/box/handcuffs{ @@ -28750,46 +28735,41 @@ }, /turf/simulated/floor/tiled/dark, /area/shuttle/skipjack) -"ebZ" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 5 - }, -/turf/simulated/floor, -/area/maintenance/security_port) -"ech" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, +"ecg" = ( +/turf/simulated/wall/r_wall, +/area/horizon/hallway/primary/deck_2/central) +"ecj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/trash_pile, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/operations/starboard) +"eck" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 + dir = 8 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/effect/floor_decal/corner/black{ + dir = 1 }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard/deck1) +/turf/simulated/floor/tiled, +/area/horizon/operations/machinist) "ecl" = ( /obj/structure/filingcabinet/chestdrawer, /turf/unsimulated/floor{ icon_state = "dark_preview" }, /area/centcom/control) -"eco" = ( -/obj/effect/floor_decal/industrial/outline/medical, -/obj/machinery/washing_machine, -/obj/machinery/power/apc/low/east, -/obj/structure/cable/green{ - icon_state = "0-8" - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/full, -/area/medical/washroom) +"ecq" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/portable_atmospherics/powered/pump/filled, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/hallway/fore) +"ecr" = ( +/obj/effect/floor_decal/spline/plain/cee, +/turf/simulated/floor/carpet/rubber, +/area/horizon/hallway/primary/deck_2/central) "ecs" = ( /obj/machinery/atmospherics/portables_connector, /obj/machinery/light{ @@ -28803,13 +28783,6 @@ /obj/effect/floor_decal/corner/lime/full, /turf/simulated/floor/tiled/white, /area/shuttle/hapt) -"ecw" = ( -/obj/structure/disposalpipe/junction{ - dir = 1; - icon_state = "pipe-j2" - }, -/turf/simulated/floor/tiled/white, -/area/medical/pharmacy) "ecx" = ( /obj/item/device/flashlight/lamp, /obj/structure/table/reinforced/steel, @@ -28817,144 +28790,183 @@ icon_state = "wood" }, /area/centcom/legion) -"ecF" = ( -/obj/effect/decal/fake_object{ - name = "cockpit ladder"; +"ecy" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/bed/stool/chair/padded/red{ + dir = 8 + }, +/obj/machinery/power/apc/north, +/obj/structure/cable/green{ + icon_state = "0-8" + }, +/turf/simulated/floor/lino/diamond, +/area/horizon/service/library) +"ecC" = ( +/obj/structure/bed/stool/chair/office/bridge{ + dir = 1 + }, +/obj/machinery/button/remote/blast_door{ + dir = 10; + id = "bridge blast"; + name = "Bridge Lockdown"; + pixel_x = -38; + pixel_y = 42; + req_access = list(19) + }, +/obj/machinery/button/remote/blast_door{ + dir = 10; + id = "shutters_deck3_bridgesafety"; + name = "Bridge Safety Shutters"; + pixel_x = -25; + pixel_y = 42 + }, +/obj/machinery/button/remote/airlock{ + dir = 1; + pixel_x = -38; + specialfunctions = 4; + name = "Office Bolts"; + id = "capoffice"; + pixel_y = 31 + }, +/obj/machinery/button/remote/airlock{ + dir = 1; + pixel_x = -25; + name = "Office Door"; + id = "capoffice"; + pixel_y = 31 + }, +/turf/simulated/floor/carpet, +/area/horizon/command/heads/captain) +"ecI" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/lattice/catwalk/indoor, +/turf/simulated/floor/plating, +/area/horizon/engineering/atmos/air) +"ecJ" = ( +/obj/machinery/atmospherics/unary/outlet_injector{ + frequency = 1443; + id = "turbine_hot_in"; + name = "fuel injector"; + tag = "turbine_hot_in" + }, +/turf/simulated/floor/reinforced/airless, +/area/horizon/engineering/atmos/turbine) +"ecP" = ( +/obj/structure/table/stone/marble, +/obj/machinery/reagentgrinder{ + pixel_x = 1; + pixel_y = 7 + }, +/obj/random/pottedplant_small{ + pixel_x = -9; + pixel_y = 1 + }, +/obj/random/pottedplant_small{ pixel_x = 9; - pixel_y = -4 + pixel_y = -15 }, -/obj/machinery/door/window/northright{ - req_one_access = list(73,74) - }, -/obj/item/clothing/head/helmet/pilot/scc{ - pixel_x = -9; - pixel_y = 2 - }, -/obj/item/clothing/head/helmet/pilot/scc{ - pixel_x = -9; - pixel_y = -5 - }, -/turf/simulated/floor/carpet/rubber, -/area/shuttle/canary) -"ecG" = ( -/obj/effect/floor_decal/corner/mauve/diagonal, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/white, -/area/rnd/lab) -"ecH" = ( -/obj/effect/floor_decal/corner_wide/paleblue{ - dir = 9 - }, -/obj/machinery/power/apc/west, -/obj/structure/table/standard, -/obj/item/storage/box/sharps, -/obj/structure/cable/green{ - icon_state = "0-4" - }, -/turf/simulated/floor/tiled/white, -/area/medical/ors) +/turf/simulated/floor/tiled/dark, +/area/horizon/service/hydroponics/garden) "ecQ" = ( /turf/simulated/floor/plating/snow, /area/centcom/shared_dream) -"ecU" = ( -/obj/structure/grille, -/obj/structure/window/shuttle/scc_space_ship, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/operations/office_aux) -"eda" = ( -/obj/random/junk, -/turf/simulated/floor/plating, -/area/maintenance/wing/port/far) +"ecR" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/effect/floor_decal/corner/brown{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/shuttle/intrepid/starboard_compartment) +"ecY" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled, +/area/horizon/security/checkpoint2) +"edc" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/horizon/hangar/auxiliary) "edd" = ( /obj/effect/floor_decal/corner/blue{ dir = 10 }, /turf/unsimulated/floor, /area/centcom/evac) -"edm" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +"ede" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 6 }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/maintenance/engineering) -"edp" = ( -/obj/effect/floor_decal/corner/black{ - dir = 10 - }, -/turf/simulated/floor/tiled/dark, -/area/hangar/intrepid) -"eds" = ( -/obj/effect/floor_decal/corner_wide/purple{ - dir = 4 - }, -/obj/effect/floor_decal/corner_wide/purple{ - dir = 9 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/white, -/area/rnd/xenoarch_atrium) -"edu" = ( +/obj/structure/table/rack, +/obj/item/stack/material/plastic/full, +/obj/item/stack/material/plastic/full, +/obj/item/stack/material/wood/full, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled, +/area/horizon/engineering/storage_eva) +"edk" = ( /obj/effect/floor_decal/industrial/warning{ dir = 8 }, -/obj/structure/cable/yellow{ - icon_state = "2-4" +/obj/structure/railing/mapped{ + dir = 8 }, /turf/simulated/floor/tiled/dark/full, -/area/engineering/engine_room/rust) -"edz" = ( -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/structure/railing/mapped, -/obj/structure/platform/ledge{ - dir = 1 - }, -/obj/structure/platform/ledge{ - dir = 8 - }, -/turf/simulated/open, -/area/hallway/primary/central_one) -"edA" = ( +/area/horizon/engineering/reactor/indra/mainchamber) +"edn" = ( /obj/effect/floor_decal/corner/dark_green{ - dir = 9 + dir = 10 }, -/obj/effect/floor_decal/spline/plain/lime{ - dir = 8 +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + icon_state = "1-2" }, /turf/simulated/floor/tiled, -/area/horizon/hallway/deck_two/fore) -"edE" = ( -/obj/structure/table/stone/marble, -/obj/item/storage/box/fancy/cigarettes/cigar{ - pixel_x = -5; - pixel_y = 4 +/area/horizon/hallway/primary/deck_2/central) +"edt" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 10 }, -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/shutters{ - dir = 2; - id = "bar_shutter"; - name = "Bar Shutter" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/machinery/power/outlet, -/turf/simulated/floor/tiled/dark, -/area/horizon/bar) +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/platform_stairs/full{ + dir = 8 + }, +/obj/structure/platform{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/horizon/command/bridge/upperdeck) +"edC" = ( +/obj/structure/lattice/catwalk/indoor/grate/damaged{ + color = "#4c535b" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel, +/obj/machinery/atmospherics/pipe/simple/hidden/aux, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/auxatmos) "edI" = ( /obj/structure/table/rack, /obj/item/storage/lockbox/anti_augment{ @@ -28985,85 +28997,6 @@ }, /turf/simulated/floor/tiled, /area/horizon/security/warden) -"edJ" = ( -/obj/item/device/taperecorder{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/briefcase, -/obj/item/device/flash, -/obj/item/storage/secure/briefcase, -/obj/item/device/eftpos{ - eftpos_name = "Internal Affairs EFTPOS scanner" - }, -/obj/item/clothing/under/suit_jacket/really_black, -/obj/item/clothing/shoes/laceup, -/obj/item/clothing/shoes/laceup, -/obj/item/clipboard, -/obj/item/pen/multi, -/obj/structure/closet/lawcloset, -/obj/item/device/camera, -/obj/item/stamp/denied, -/obj/item/folder/blue, -/obj/item/folder/white, -/obj/structure/cable/green{ - icon_state = "0-4" - }, -/obj/machinery/power/apc/west, -/obj/item/device/destTagger, -/obj/item/stack/packageWrap, -/turf/simulated/floor/carpet, -/area/lawoffice/representative) -"edO" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/effect/floor_decal/corner/black{ - dir = 9 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/hangar/intrepid) -"edQ" = ( -/obj/item/modular_computer/console/preset/supply, -/obj/machinery/button/remote/blast_door{ - dir = 1; - id = "cargo_desk"; - pixel_x = -7; - pixel_y = 25 - }, -/obj/effect/floor_decal/corner/brown/full{ - dir = 1 - }, -/obj/machinery/ringer/east{ - department = "Cargo"; - id = "cargo_ringer"; - pixel_y = 17; - req_access = list(31) - }, -/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) "edX" = ( /obj/structure/railing/mapped{ dir = 4 @@ -29077,15 +29010,28 @@ }, /turf/simulated/floor/tiled/dark, /area/shuttle/legion) -"eeb" = ( -/obj/effect/floor_decal/industrial/warning{ +"eed" = ( +/obj/structure/table/reinforced/wood, +/obj/item/modular_computer/laptop/preset/command/captain{ + pixel_y = 9 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 2; + icon_state = "shutter0"; + id = "cap_office_desk"; + name = "Captain Desk Shutters"; + opacity = 0 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/command/heads/captain) +"eef" = ( +/obj/machinery/atmospherics/pipe/manifold/visible{ dir = 4 }, -/obj/structure/tank_wall/phoron{ - icon_state = "ph9" - }, -/turf/simulated/floor/airless, -/area/engineering/atmos) +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/atmos) "eei" = ( /obj/structure/bed/stool/chair, /obj/effect/floor_decal/corner/orange/diagonal, @@ -29093,6 +29039,25 @@ icon_state = "white" }, /area/tdome/tdomeadmin) +"eej" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/hatch_door/red, +/obj/machinery/door/airlock/maintenance_hatch{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/maintenance/deck_2/wing/starboard/far) "eel" = ( /obj/structure/table/rack, /obj/item/plastique{ @@ -29125,17 +29090,19 @@ }, /turf/unsimulated/floor/plating, /area/centcom/specops) +"eem" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 5 + }, +/obj/machinery/alarm/north, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_3/port) "een" = ( /obj/item/modular_computer/console/preset/command/teleporter/ninja, /obj/effect/decal/cleanable/dirt, /turf/unsimulated/floor/monotile, /area/antag/jockey) -"eep" = ( -/obj/machinery/portable_atmospherics/powered/pump/filled, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/alarm/west, -/turf/simulated/floor/tiled, -/area/hangar/operations) "eeq" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -29148,55 +29115,25 @@ }, /turf/simulated/floor/tiled, /area/horizon/security/hallway) -"eet" = ( -/obj/effect/floor_decal/spline/plain{ +"eex" = ( +/obj/machinery/portable_atmospherics/canister/air/airlock, +/turf/simulated/floor/plating, +/area/horizon/engineering/reactor/indra/office) +"eey" = ( +/obj/effect/floor_decal/corner_wide/blue{ dir = 1 }, -/obj/item/device/megaphone/stagemicrophone, -/turf/simulated/floor/tiled/dark, -/area/horizon/bar) -"eev" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/corner/dark_blue/diagonal, -/turf/simulated/floor/tiled/dark, -/area/hangar/control) -"eez" = ( -/obj/structure/table/reinforced/glass, -/obj/item/paper_bin, -/obj/item/pen{ - pixel_x = -4 - }, -/obj/item/pen/red{ - pixel_x = -1; - pixel_y = 4 - }, -/obj/item/pen/blue{ - pixel_x = 3; - pixel_y = 7 - }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor/wood, -/area/rnd/conference) -"eeA" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/structure/disposalpipe/segment{ +/obj/effect/floor_decal/corner_wide/yellow{ dir = 4 }, -/obj/machinery/orderterminal{ - dir = 1; - pixel_x = 14; - pixel_y = 32 +/obj/effect/floor_decal/corner_wide/yellow{ + dir = 8 }, -/obj/machinery/atm{ - dir = 1; - pixel_y = 32; - pixel_x = -6 +/obj/effect/floor_decal/spline/plain{ + dir = 9 }, -/turf/simulated/floor/lino, -/area/horizon/crew_quarters/lounge/bar) +/turf/simulated/floor/tiled, +/area/horizon/engineering/atmos/storage) "eeB" = ( /obj/effect/floor_decal/corner/lime/full{ dir = 8 @@ -29212,62 +29149,27 @@ }, /turf/unsimulated/floor, /area/antag/mercenary) -"eeK" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/fuel, -/turf/simulated/wall/shuttle/unique/scc/scout{ - icon_state = "6,5" +"eeJ" = ( +/obj/structure/cable{ + icon_state = "1-2" }, -/area/shuttle/canary) -"eeP" = ( -/obj/machinery/disposal/small/east{ - pixel_x = -6 - }, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/item/device/radio/intercom/west, -/obj/structure/platform{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/horizon/crew_quarters/lounge/bar) -"eeR" = ( -/obj/structure/table/rack/retail_shelf, -/obj/machinery/vending/wallpharm{ - pixel_x = 28; - pixel_y = 3 - }, -/obj/item/device/radio/intercom/south, -/turf/simulated/floor/tiled/full, -/area/horizon/commissary) +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/power/apc/west, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/hangar/starboard) "eeS" = ( /obj/effect/step_trigger/thrower/shuttle/east, /turf/template_noop, /area/template_noop) -"eeU" = ( -/obj/structure/platform_deco/ledge{ - dir = 1 +"efc" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 }, -/obj/structure/cable/green{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/operations/lower/machinist/surgicalbay) -"eeV" = ( -/obj/machinery/meter, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/visible/red, -/turf/simulated/floor/plating, -/area/engineering/atmos/air) -"efb" = ( -/turf/simulated/wall/r_wall, -/area/hallway/primary/central_one) +/turf/simulated/floor/lino/diamond, +/area/horizon/service/library) "efg" = ( /turf/simulated/wall/r_wall, /area/horizon/security/hallway) @@ -29275,17 +29177,6 @@ /obj/structure/bed/stool/padded, /turf/simulated/floor/wood, /area/merchant_station/warehouse) -"efj" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 6 - }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/full, -/area/hallway/primary/aft) "efl" = ( /obj/structure/table/rack, /obj/item/clothing/accessory/storage/black_vest{ @@ -29350,52 +29241,43 @@ }, /turf/unsimulated/floor, /area/centcom/legion/hangar5) -"efo" = ( -/obj/machinery/camera/network/third_deck{ - c_tag = "Third Deck - Crew Lounge Starboard" +"efu" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + icon_state = "1-2" }, -/obj/structure/bed/stool/chair/sofa/right/brown, -/obj/effect/landmark/start{ - name = "Passenger" - }, -/turf/simulated/floor/carpet/art, -/area/crew_quarters/lounge) -"efp" = ( -/obj/structure/table/steel, +/obj/structure/lattice/catwalk/indoor/grate, /turf/simulated/floor/plating, -/area/maintenance/wing/port) -"efs" = ( -/obj/effect/floor_decal/industrial/outline_straight/service{ +/area/horizon/rnd/hallway/secondary) +"efv" = ( +/obj/effect/floor_decal/industrial/warning{ dir = 8 }, -/obj/effect/floor_decal/industrial/outline_straight/service{ +/obj/structure/trash_pile, +/obj/effect/decal/cleanable/cobweb2, +/obj/machinery/light/small/emergency{ dir = 4 }, -/obj/machinery/atmospherics/pipe/manifold/hidden{ - dir = 1 +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/cargo_compartment) +"efy" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 5 }, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/hydroponics/lower) -"efD" = ( -/obj/effect/floor_decal/corner/brown{ - dir = 9 +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 }, -/obj/machinery/requests_console/west{ - department = "Operations Office"; - departmentType = 2; - name = "Operations Requests Console" +/obj/machinery/power/apc/north, +/obj/structure/cable/green{ + icon_state = "0-4" }, -/obj/structure/table/standard, -/obj/random/pottedplant_small{ - pixel_x = -7; - pixel_y = 5 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 }, -/obj/item/clipboard{ - pixel_y = 2; - pixel_x = 5 - }, -/turf/simulated/floor/tiled, -/area/operations/office) +/turf/simulated/floor/wood, +/area/horizon/command/bridge/cciaroom/lounge) "efE" = ( /obj/item/gun/launcher/grenade{ pixel_x = -2; @@ -29479,41 +29361,10 @@ }, /turf/simulated/floor/shuttle/black, /area/shuttle/hapt) -"efF" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/papershredder, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/lawoffice/consular_two) -"efG" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 10 - }, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/engine_room) "efH" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/tiled, /area/horizon/security/holding_cell_b) -"efM" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/structure/tank_wall/nitrogen{ - icon_state = "n8" - }, -/turf/simulated/floor/plating, -/area/engineering/atmos/air) "efN" = ( /obj/structure/railing/mapped, /obj/effect/floor_decal/corner/grey{ @@ -29559,26 +29410,24 @@ /obj/effect/decal/cleanable/dirt, /turf/unsimulated/floor/wood, /area/antag/burglar) -"efV" = ( -/obj/structure/bed/stool/chair/office{ - dir = 4 - }, -/obj/machinery/alarm/north, -/turf/simulated/floor/wood, -/area/maintenance/wing/starboard) -"ega" = ( -/obj/machinery/door/airlock/glass_engineering{ - dir = 1; - name = "INDRA Reactor Office"; - req_access = list(10) +"efU" = ( +/obj/machinery/camera/network/command{ + c_tag = "Bridge - Atrium Port Maintenance" }, /obj/structure/cable/green{ - icon_state = "1-2" + icon_state = "4-8" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/aft_airlock) +/turf/simulated/floor/tiled, +/area/horizon/command/bridge/upperdeck) +"efY" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/obj/item/material/shard{ + icon_state = "small" + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/port/far) "egb" = ( /obj/machinery/door/blast/regular{ dir = 2; @@ -29595,53 +29444,94 @@ }, /turf/simulated/floor/tiled/full, /area/horizon/security/brig) -"ege" = ( -/obj/effect/floor_decal/corner/lime/full{ - dir = 8 - }, -/turf/simulated/floor/tiled/white{ - name = "cooled white floor"; - temperature = 278.15 - }, -/area/medical/morgue/lower) -"egi" = ( -/obj/machinery/light/small/emergency, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard) -"egp" = ( -/obj/effect/floor_decal/corner/brown{ - dir = 10 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/survey_probe/magnet, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/refinery) -"egr" = ( -/obj/machinery/door/firedoor, -/obj/effect/floor_decal/corner/dark_green{ +"egc" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/purple{ dir = 9 }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/full, -/area/horizon/hallway/deck_three/primary/central) -"egs" = ( -/obj/structure/cable{ +/turf/simulated/wall/shuttle/scc_space_ship/cardinal, +/area/horizon/engineering/atmos/air) +"egn" = ( +/obj/effect/floor_decal/corner_wide/yellow{ + dir = 9 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet/west, +/turf/simulated/floor/tiled, +/area/horizon/engineering/hallway/aft) +"ego" = ( +/obj/effect/floor_decal/corner_wide/yellow{ + dir = 10 + }, +/obj/machinery/light, +/turf/simulated/floor/tiled, +/area/horizon/engineering/hallway/interior) +"egq" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/table/steel, +/obj/item/clothing/gloves/yellow{ + pixel_y = 4 + }, +/obj/item/clothing/gloves/yellow/specialu, +/obj/item/clothing/gloves/yellow/specialt{ + pixel_y = -4 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/storage/tech) +"egt" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/wing/starboard) +"egD" = ( +/obj/structure/cable/green{ icon_state = "4-8" }, -/obj/machinery/door/airlock/maintenance{ - dir = 4; - req_access = list(12) +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/maintenance/aft) +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/effect/floor_decal/corner/dark_green/full, +/turf/simulated/floor/tiled, +/area/horizon/hangar/intrepid) +"egG" = ( +/obj/effect/floor_decal/corner/white/diagonal, +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/horizon/medical/paramedic) +"egI" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 4 + }, +/obj/effect/floor_decal/corner/yellow{ + dir = 1 + }, +/obj/machinery/atmospherics/binary/pump{ + dir = 4; + name = "Oxidant to Mixer" + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/firealarm/north, +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/atmos/turbine) +"egL" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/atmos/turbine) "egP" = ( /obj/structure/sign/nosmoking_1{ pixel_y = 32 @@ -29653,6 +29543,13 @@ }, /turf/unsimulated/floor, /area/antag/raider) +"egS" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/bookcase/manuals/xenoarchaeology, +/turf/simulated/floor/tiled/dark, +/area/horizon/rnd/xenoarch/atrium) "egT" = ( /obj/machinery/light{ dir = 8; @@ -29661,11 +29558,6 @@ }, /turf/simulated/floor/tiled, /area/merchant_station) -"egW" = ( -/obj/structure/flora/ausbushes/sparsegrass, -/obj/structure/railing/mapped, -/turf/simulated/floor/grass/no_edge, -/area/horizon/cafeteria) "ehb" = ( /obj/machinery/atmospherics/pipe/simple/heat_exchanging, /obj/machinery/atmospherics/pipe/simple/heat_exchanging{ @@ -29674,112 +29566,136 @@ /obj/structure/lattice, /turf/space/dynamic, /area/horizon/exterior) -"ehc" = ( -/obj/machinery/portable_atmospherics/canister/air/airlock, -/obj/machinery/atmospherics/portables_connector{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor, -/area/horizon/hallway/deck_three/primary/port/docks) -"ehe" = ( -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/obj/structure/disposalpipe/junction{ - dir = 4; - icon_state = "pipe-j2" - }, +"ehh" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, +/obj/effect/floor_decal/corner/dark_blue/diagonal, +/turf/simulated/floor/tiled/dark, +/area/horizon/security/checkpoint) +"ehj" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 6 + }, +/obj/machinery/vending/snack, +/obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled, -/area/bridge/controlroom) -"ehp" = ( -/obj/machinery/conveyor{ - dir = 8; - id = "mining_3" +/area/horizon/security/checkpoint2) +"ehl" = ( +/obj/machinery/light/colored/blue{ + dir = 4 + }, +/obj/effect/floor_decal/corner/dark_blue{ + dir = 6 + }, +/obj/machinery/meter{ + name = "Fuel Reserve"; + pixel_x = -23; + pixel_y = 4 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/machinery/door/window/westleft{ + name = "EVA Suit Storage Rack Access" + }, +/obj/structure/table/rack, +/obj/item/rig/eva/pilot/equipped, +/obj/item/rig/eva/pilot/equipped{ + pixel_x = -5 + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/fuel, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/shuttle/canary) +"ehr" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/light/small/emergency{ + dir = 4 }, /turf/simulated/floor/plating, -/area/outpost/mining_main/refinery) +/area/horizon/maintenance/deck_1/main/port) +"ehs" = ( +/obj/structure/bed/stool/chair/office/light{ + dir = 4 + }, +/obj/effect/landmark/start{ + name = "Lab Assistant" + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/horizon/rnd/conference) +"ehx" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 5 + }, +/obj/machinery/firealarm/north, +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_3/starboard/docks) +"ehy" = ( +/obj/machinery/camera/network/research{ + c_tag = "Research - Research & Development"; + pixel_y = 9; + dir = 8 + }, +/obj/structure/table/standard, +/obj/machinery/button/remote/blast_door{ + desc = "It controls the research shutters."; + id = "RnDShutters"; + name = "Research Shutters"; + dir = 6; + pixel_y = -1; + pixel_x = -7 + }, +/obj/machinery/button/remote/blast_door{ + desc = "It controls the research shutters."; + id = "shutters_deck2_rescon"; + name = "Research Conveyor Shutter"; + dir = 6; + pixel_x = -7; + pixel_y = 10 + }, +/obj/machinery/button/remote/blast_door{ + desc = "It controls the research shutters."; + id = "RnDDesk"; + name = "Research Desk Shutters"; + pixel_x = 6; + dir = 6; + pixel_y = -1 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/rnd/lab) "ehz" = ( /obj/effect/floor_decal/corner/red/full{ dir = 4 }, /turf/simulated/floor/holofloor/tiled, /area/horizon/holodeck/source_emptycourt) -"ehD" = ( -/obj/structure/cable/green{ - icon_state = "4-8" +"ehC" = ( +/obj/machinery/atm{ + dir = 1; + pixel_y = 28 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ +/obj/structure/bed/stool/bar/padded/red{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/corner/brown{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/operations/loading) -"ehH" = ( -/obj/machinery/firealarm/south, -/obj/effect/floor_decal/corner/yellow, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 4 - }, -/obj/machinery/meter, -/turf/simulated/floor/tiled/dark, -/area/engineering/atmos) +/turf/simulated/floor/lino, +/area/horizon/service/bar) "ehM" = ( /obj/random/pottedplant, /turf/simulated/floor/holofloor/lino, /area/horizon/holodeck/source_chapel) -"ehN" = ( -/obj/structure/cable/orange{ - icon_state = "0-8" - }, -/obj/machinery/camera/network/reactor{ - c_tag = "Engineering - Supermatter Reactor 2"; - dir = 1 - }, -/obj/machinery/power/smes/buildable{ - RCon_tag = "Supermatter - Containment"; - charge = 2000000; - input_attempt = 1; - input_level = 200000; - is_critical = 1; - output_attempt = 1; - output_level = 200000 - }, -/obj/machinery/light/spot{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"ehO" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/table/standard, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/engineering/smes/rust) -"ehP" = ( -/obj/random/junk, -/obj/effect/decal/cleanable/blood/oil, -/turf/simulated/floor/plating, -/area/maintenance/aft) "ehR" = ( /obj/structure/shuttle_part/mercenary/small{ icon_state = "5,0" @@ -29792,10 +29708,24 @@ }, /turf/space/dynamic, /area/template_noop) +"ehX" = ( +/obj/structure/bed/stool/chair/office/dark{ + dir = 1 + }, +/obj/effect/landmark/start{ + name = "Atmospheric Technician" + }, +/obj/effect/floor_decal/spline/plain, +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/break_room) "eia" = ( /obj/structure/sign/pharmacy, /turf/unsimulated/wall/steel, /area/antag/raider) +"eic" = ( +/obj/structure/closet/secure_closet/engineering_electrical, +/turf/simulated/floor/plating, +/area/horizon/engineering/storage/lower) "eif" = ( /obj/structure/flora/log_bench{ dir = 8 @@ -29804,24 +29734,21 @@ icon_state = "desert" }, /area/centcom/shared_dream) -"eih" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/trash_pile, +"eim" = ( +/obj/structure/tank_wall/hydrogen{ + icon_state = "h8" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/airless, +/area/horizon/engineering/atmos) +"ein" = ( +/obj/machinery/door/firedoor, +/obj/structure/grille, +/obj/structure/window/shuttle/scc_space_ship, /turf/simulated/floor/plating, -/area/maintenance/wing/port) -"eil" = ( -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard) +/area/horizon/maintenance/deck_3/aft/port/far) "eio" = ( /obj/structure/railing/mapped{ dir = 4 @@ -29832,33 +29759,16 @@ }, /turf/simulated/floor/reinforced/airless, /area/horizon/exterior) -"eix" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 6 +"eiv" = ( +/obj/machinery/power/smes/buildable/substation{ + RCon_tag = "Substation - Security" }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" +/obj/structure/cable, +/obj/structure/cable/green{ + icon_state = "0-2" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/structure/extinguisher_cabinet/east, -/turf/simulated/floor/tiled, -/area/bridge) -"eiy" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 10 - }, -/obj/machinery/disposal/small/east, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/simulated/floor/carpet/rubber, -/area/engineering/engine_monitoring/rust) +/turf/simulated/floor/plating, +/area/horizon/maintenance/substation/security) "eiA" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 8 @@ -29866,46 +29776,24 @@ /obj/structure/bed/stool/bar/padded/red, /turf/unsimulated/floor/wood, /area/centcom/bar) -"eiB" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 +"eiD" = ( +/obj/effect/floor_decal/corner/dark_blue/full{ + dir = 1 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 +/obj/structure/sign/deathsposal{ + name = "\improper SPENT MUNITIONS EJECTION CHUTE sign"; + pixel_x = 32 }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/door/airlock/maintenance_hatch{ - dir = 4 +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 }, /obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/maintenance/wing/port) -"eiF" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/item/hullbeacon/red, /obj/machinery/light{ - dir = 8 + dir = 4 }, -/turf/simulated/floor/airless, -/area/hangar/operations) -"eiG" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/engineering{ - dir = 4; - name = "Deck 1, 2, and 3 Medical Substation"; - req_one_access = list(11,24) - }, -/turf/simulated/floor/plating, -/area/maintenance/substation/medical) +/turf/simulated/floor/tiled/dark, +/area/horizon/weapons/longbow) "eiK" = ( /obj/structure/cable/green{ icon_state = "1-2" @@ -29915,12 +29803,16 @@ }, /turf/simulated/floor/tiled, /area/horizon/security/equipment) -"eiP" = ( -/obj/machinery/alarm/west, -/obj/machinery/seed_extractor, -/obj/effect/floor_decal/industrial/outline/service, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/hydroponics/lower) +"eiL" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/floor_decal/corner/dark_green/full{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled/dark, +/area/horizon/hangar/intrepid) "eiV" = ( /obj/machinery/computer/shuttle_control/multi/antag/syndicate, /obj/effect/floor_decal/corner/red{ @@ -29928,87 +29820,106 @@ }, /turf/simulated/floor/tiled/dark, /area/shuttle/mercenary) -"ejf" = ( -/obj/effect/floor_decal/corner/brown{ - dir = 6 +"eiX" = ( +/obj/structure/reagent_dispensers/water_cooler, +/obj/effect/floor_decal/corner_wide/lime{ + dir = 9 }, -/turf/simulated/floor/tiled, -/area/operations/office) -"ejt" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/effect/floor_decal/industrial/outline/blue, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/atmos/storage) +/turf/simulated/floor/tiled/white, +/area/horizon/medical/reception) +"ejj" = ( +/obj/structure/table/wood, +/obj/random/pottedplant_small{ + pixel_x = 7; + pixel_y = 2 + }, +/obj/machinery/power/outlet{ + pixel_y = 9 + }, +/turf/simulated/floor/carpet/art, +/area/horizon/crew/lounge) +"eju" = ( +/obj/structure/table/wood, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/horizon/hallway/primary/deck_3/central) "ejv" = ( /turf/simulated/wall/shuttle/unique/tcfl{ icon_state = "14,4" }, /area/shuttle/legion) -"ejy" = ( +"ejw" = ( +/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/rnd/xenological) +"ejz" = ( /obj/structure/cable/green{ - icon_state = "1-8" + icon_state = "0-2" }, -/obj/effect/floor_decal/corner/dark_green{ +/obj/effect/floor_decal/corner/yellow{ dir = 1 }, -/turf/simulated/floor/tiled, -/area/engineering/lobby) -"ejA" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 10 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/starboard) -"ejE" = ( /obj/effect/floor_decal/corner/dark_blue{ - dir = 10 + dir = 8 }, -/obj/machinery/atmospherics/pipe/manifold4w/hidden, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/port/docks) -"ejH" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/machinery/door/airlock/external, -/obj/machinery/access_button{ - pixel_x = -24 - }, -/obj/effect/map_effect/marker_helper/airlock/interior, -/obj/effect/map_effect/marker/airlock/docking{ - landmark_tag = "nav_horizon_dock_deck_3_starboard_2"; - master_tag = "airlock_horizon_dock_deck_3_starboard_2"; - name = "airlock_horizon_dock_deck_3_starboard_2" - }, -/turf/simulated/floor/plating, -/area/horizon/hallway/deck_three/primary/starboard/docks) -"eka" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/structure/cable/green{ +/obj/machinery/power/apc/super/west, +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/atmos) +"ejB" = ( +/obj/structure/cable{ icon_state = "4-8" }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor/plating, +/area/horizon/hangar/auxiliary) +"ejJ" = ( +/obj/effect/floor_decal/industrial/warning, /obj/effect/floor_decal/industrial/warning{ dir = 1 }, -/turf/simulated/floor/tiled/full, -/area/engineering/storage_hard) -"ekb" = ( -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/full, -/area/hallway/primary/aft) -"ekg" = ( -/obj/machinery/door/airlock/maintenance{ - dir = 4; - name = "Xenobotany Maintenance"; - req_one_access = list(12,47) +/turf/simulated/floor/reinforced, +/area/horizon/engineering/gravity_gen) +"ejL" = ( +/obj/effect/floor_decal/corner/grey/full, +/obj/structure/disposalpipe/trunk{ + dir = 8 }, -/obj/machinery/door/firedoor{ +/obj/machinery/disposal/small/north, +/turf/simulated/floor/lino, +/area/horizon/service/bar) +"ejO" = ( +/turf/simulated/wall/r_wall, +/area/horizon/rnd/server) +"ekj" = ( +/obj/effect/floor_decal/corner/dark_green/full{ + dir = 8 + }, +/obj/machinery/camera/network/second_deck{ + c_tag = "Second Deck - Dinner Entrance 1"; dir = 4 }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/dark/full, -/area/maintenance/research_port) +/obj/structure/engineer_maintenance/pipe{ + dir = 8 + }, +/obj/random/pottedplant, +/obj/machinery/firealarm/west, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_2/fore) +"ekk" = ( +/obj/effect/floor_decal/corner_wide/yellow{ + dir = 9 + }, +/obj/structure/sign/nosmoking_1{ + pixel_x = -32 + }, +/turf/simulated/floor/tiled, +/area/horizon/engineering/reactor/indra/mainchamber) "eko" = ( /obj/effect/landmark{ name = "raiderstart" @@ -30021,45 +29932,18 @@ }, /turf/unsimulated/floor/wood, /area/antag/raider) -"ekp" = ( -/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/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/corner/purple{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/horizon/stairwell/central) +"ekq" = ( +/obj/random/junk, +/obj/effect/decal/cleanable/dirt, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/port) "ekr" = ( /obj/effect/floor_decal/corner/red{ dir = 6 }, /turf/unsimulated/floor, /area/antag/mercenary) -"ekt" = ( -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/engineering/atmos/propulsion/starboard) -"ekv" = ( -/obj/machinery/door/airlock/service{ - dir = 1; - name = "Auxiliary Custodial Closet"; - req_access = list(26) - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/full, -/area/horizon/custodial/auxiliary) "ekw" = ( /obj/effect/floor_decal/corner/beige/diagonal, /obj/structure/bed/stool/padded/blue, @@ -30071,44 +29955,25 @@ }, /turf/simulated/floor/holofloor/tiled/dark, /area/horizon/holodeck/source_boxingcourt) -"ekB" = ( -/obj/effect/floor_decal/industrial/outline/medical, -/obj/machinery/stasis_bed, -/turf/simulated/floor/tiled/white, -/area/medical/icu) -"ekE" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/bed/stool/bar/padded/red, -/turf/simulated/floor/tiled/dark, -/area/horizon/maintenance/deck_three/aft/starboard) "ekF" = ( /obj/machinery/atmospherics/pipe/simple/hidden, /turf/simulated/wall/shuttle/space_ship/mercenary, /area/shuttle/mercenary) -"ekG" = ( -/obj/structure/platform/ledge{ +"ekH" = ( +/obj/structure/flora/ausbushes/sparsegrass, +/obj/structure/flora/ausbushes/lavendergrass, +/mob/living/simple_animal/chicken, +/obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 }, -/turf/simulated/open, -/area/horizon/hallway/deck_three/primary/central) -"ekI" = ( -/obj/structure/weightlifter, -/obj/random/dirt_75, -/obj/structure/sign/poster{ - pixel_y = 32 +/turf/simulated/floor/grass/no_edge, +/area/horizon/service/hydroponics/lower) +"ekP" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 10 }, -/turf/simulated/floor/carpet/rubber, -/area/horizon/crew_quarters/fitness/gym) -"ekT" = ( -/obj/structure/cable/green{ - icon_state = "2-4" - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/maintenance/hangar/port) +/turf/simulated/floor, +/area/horizon/maintenance/deck_2/wing/starboard/far) "ekU" = ( /obj/structure/bed/stool/padded/beige{ dir = 4 @@ -30122,104 +29987,49 @@ icon_state = "wood" }, /area/centcom/legion/hangar5) -"eld" = ( -/obj/machinery/appliance/cooker/stove, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 +"eli" = ( +/obj/machinery/door/airlock/external{ + dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ +/obj/effect/map_effect/marker/airlock{ + master_tag = "airlock_horizon_bunker"; + name = "airlock_horizon_bunker"; + frequency = 1109; + req_one_access = list(19) + }, +/obj/effect/map_effect/marker_helper/airlock/exterior, +/obj/machinery/access_button{ + pixel_x = 6; + pixel_y = 35; + dir = 4 + }, +/turf/simulated/floor/reinforced/airless, +/area/horizon/ai/upload_foyer) +"ell" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/table/reinforced/steel, +/turf/simulated/floor/tiled/dark, +/area/horizon/rnd/xenoarch/atrium) +"elq" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/floor_decal/corner/dark_green{ dir = 5 }, -/obj/effect/floor_decal/industrial/outline/grey, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/kitchen) -"ele" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/full, -/area/hallway/primary/central_one) -"elf" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/engine_room) -"elj" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 10 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/structure/extinguisher_cabinet/south, -/turf/simulated/floor/tiled, -/area/operations/lobby) -"elk" = ( -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/structure/railing/mapped, -/obj/structure/platform/ledge{ - dir = 4 - }, -/obj/structure/platform/ledge{ - dir = 1 - }, -/turf/simulated/open, -/area/horizon/hallway/deck_three/primary/central) -"elm" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 +/obj/structure/cable/green{ + icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 + dir = 10 }, -/obj/structure/cable/green{ - icon_state = "4-8" +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/camera/network/medbay{ - c_tag = "Medical - Staff Smoking Lounge"; - dir = 1 - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/medical/smoking) -"eln" = ( -/obj/structure/table/standard, -/obj/item/paper_bin{ - pixel_x = -4; - pixel_y = 2 - }, -/obj/item/pen{ - pixel_x = -6 - }, -/obj/item/paper_scanner{ - pixel_x = 9; - pixel_y = 3 - }, -/obj/item/folder/yellow{ - pixel_x = -5 - }, -/turf/simulated/floor/carpet, -/area/crew_quarters/heads/chief) -"elp" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/horizon/longbow) -"elv" = ( -/obj/machinery/light/small/emergency{ - dir = 1 - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard) +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_3/central) "elw" = ( /obj/structure/bed/stool/chair/holochair{ dir = 4 @@ -30233,61 +30043,57 @@ }, /turf/unsimulated/floor/plating, /area/shuttle/specops) +"elB" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/corner/brown{ + dir = 6 + }, +/obj/structure/table/standard{ + no_cargo = 1 + }, +/obj/item/device/hand_labeler, +/obj/item/device/destTagger, +/obj/item/stack/packageWrap, +/turf/simulated/floor/tiled, +/area/horizon/operations/warehouse) +"elG" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/airlock/multi_tile/glass{ + name = "Hangar" + }, +/obj/machinery/door/firedoor/multi_tile, +/obj/machinery/door/blast/regular/open{ + dir = 8; + id = "hangarlockdown"; + name = "Hangar Lockdown" + }, +/turf/simulated/floor/tiled/full, +/area/horizon/hangar/intrepid) "elH" = ( /obj/effect/shuttle_landmark/crescent/start, /turf/unsimulated/floor/plating, /area/centcom/specops) -"elI" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 9 - }, -/obj/structure/coatrack{ - pixel_x = -10; - pixel_y = 24 - }, -/obj/structure/cable/green{ - icon_state = "2-4" - }, -/obj/machinery/alarm/west, -/turf/simulated/floor/wood, -/area/journalistoffice) -"elM" = ( -/obj/machinery/recharger/wallcharger{ - pixel_x = 4; - pixel_y = 20 - }, -/obj/machinery/recharger/wallcharger{ - pixel_x = 4; - pixel_y = 30 - }, -/obj/structure/bed/stool/chair/office/dark{ - dir = 4 - }, -/obj/effect/floor_decal/corner_wide/purple/full{ - dir = 1 - }, -/obj/effect/floor_decal/corner_wide/purple/diagonal, -/turf/simulated/floor/tiled/white, -/area/rnd/test_range) -"elN" = ( -/obj/effect/floor_decal/industrial/warning/corner, -/turf/simulated/floor/reinforced/airless, -/area/engineering/engine_room/rust) "elP" = ( /obj/structure/shuttle_part/mercenary/small{ icon_state = "8,2" }, /turf/unsimulated/floor/plating, /area/shuttle/syndicate_elite) -"elR" = ( -/obj/structure/cable{ - icon_state = "1-2" +"elQ" = ( +/obj/structure/bed/stool/chair/office{ + dir = 4 }, -/turf/simulated/floor/plating, -/area/hangar/auxiliary) +/obj/machinery/alarm/north, +/turf/simulated/floor/wood, +/area/horizon/maintenance/deck_2/wing/port) "elU" = ( /obj/structure/sink{ dir = 8; @@ -30303,14 +30109,6 @@ }, /turf/unsimulated/floor, /area/centcom/bar) -"elV" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/table/standard{ - no_cargo = 1 - }, -/obj/random/firstaid, -/turf/simulated/floor/tiled, -/area/maintenance/wing/starboard/deck1) "elY" = ( /obj/effect/landmark{ name = "Syndicate-Spawn" @@ -30320,16 +30118,18 @@ }, /turf/unsimulated/floor/carpet, /area/antag/mercenary) -"emd" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 9 +"emf" = ( +/obj/structure/window/reinforced{ + dir = 1 }, -/obj/structure/closet/walllocker/medical/firstaid{ - pixel_x = -32 +/obj/structure/window/reinforced{ + dir = 4 }, -/obj/effect/floor_decal/industrial/outline/medical, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/port) +/obj/structure/table/reinforced/steel, +/obj/machinery/recharger, +/obj/item/melee/baton/loaded, +/turf/simulated/floor/tiled/dark, +/area/horizon/rnd/xenoarch/atrium) "emh" = ( /obj/effect/map_effect/window_spawner/full/reinforced/grille/firedoor, /obj/structure/cable/green{ @@ -30337,25 +30137,58 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/security/holding_cell_a) +"emq" = ( +/obj/machinery/camera/network/engineering{ + c_tag = "Engineering - Deck 2 - Aft Auxiliary Atmospherics"; + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/reagent_dispensers/fueltank, +/turf/simulated/floor/plating, +/area/horizon/engineering/drone_fabrication) +"ems" = ( +/obj/effect/floor_decal/corner_wide/blue{ + dir = 5 + }, +/obj/structure/safe/station{ + name = "Secure Safe" + }, +/obj/effect/floor_decal/industrial/hatch/grey, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/storage/secure) "emt" = ( /obj/structure/table/standard, /turf/unsimulated/floor, /area/centcom/legion) +"emu" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/spline/plain/yellow{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/reactor/indra/smes) "emv" = ( /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 +"emx" = ( +/obj/structure/cable/green{ + icon_state = "0-4" }, -/obj/effect/floor_decal/corner/dark_green{ - dir = 6 +/obj/machinery/power/sensor{ + name = "Powernet Sensor - Deck 1 Civilian Subgrid"; + name_tag = "Deck 1 Civilian Subgrid" }, -/turf/simulated/floor/tiled, -/area/hangar/auxiliary) +/obj/machinery/power/apc/low/west, +/obj/machinery/light/small, +/turf/simulated/floor/plating, +/area/horizon/maintenance/substation/hangar) "emA" = ( /obj/structure/closet/secure_closet/marooning_equipment, /obj/structure/disposalpipe/segment{ @@ -30371,28 +30204,20 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled/full, /area/horizon/security/hallway) -"emE" = ( -/obj/effect/floor_decal/corner/mauve/diagonal, -/obj/structure/cable/green{ - icon_state = "1-4" +"emD" = ( +/obj/effect/decal/cleanable/cobweb2{ + icon_state = "cobweb1" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ +/obj/structure/railing/mapped{ dir = 4 }, -/turf/simulated/floor/tiled/white, -/area/rnd/lab) -"emH" = ( -/obj/effect/floor_decal/corner/dark_green/diagonal, -/obj/machinery/light{ - dir = 4 +/obj/effect/floor_decal/industrial/warning{ + dir = 6 }, -/obj/effect/floor_decal/industrial/loading/yellow{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/alarm/east, -/turf/simulated/floor/tiled, -/area/horizon/stairwell/central) +/obj/structure/closet/crate/bin, +/obj/random/loot, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/main/starboard) "emL" = ( /obj/structure/window/reinforced/crescent{ dir = 8 @@ -30412,32 +30237,21 @@ }, /turf/simulated/floor/tiled/dark, /area/shuttle/syndicate_elite) -"emU" = ( -/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ - dir = 10 - }, -/turf/simulated/floor/reinforced/airless, -/area/engineering/atmos/propulsion) -"emW" = ( -/obj/machinery/sleeper, -/obj/machinery/camera/network/medbay{ - c_tag = "Medical - General Treatment 1" - }, -/obj/effect/floor_decal/corner/beige{ - dir = 6 +"emX" = ( +/obj/structure/table/standard, +/obj/item/book/manual/gravitygenerator, +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/button/remote/blast_door{ + desc = "A remote control-switch for the engine control room blast doors."; + dir = 4; + id = "gravgen"; + name = "Gravity Generator Blast Doors"; + pixel_x = 24; + pixel_y = 11; + req_one_access = list(11,24) }, /turf/simulated/floor/tiled/dark, -/area/medical/gen_treatment) -"ene" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/structure/bed/stool/chair/office/bridge/pilot, -/turf/simulated/floor/tiled/dark, -/area/bridge/controlroom) +/area/horizon/engineering/gravity_gen) "enf" = ( /obj/effect/floor_decal/spline/plain{ dir = 4 @@ -30448,50 +30262,6 @@ /obj/structure/punching_bag, /turf/simulated/floor/holofloor/tiled, /area/horizon/holodeck/source_gym) -"enh" = ( -/obj/effect/floor_decal/corner/brown{ - dir = 9 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/operations/loading) -"enl" = ( -/turf/simulated/floor, -/area/maintenance/wing/port/far) -"enm" = ( -/obj/effect/floor_decal/spline/plain/green{ - dir = 1 - }, -/obj/effect/floor_decal/spline/plain/blue, -/obj/machinery/atmospherics/binary/pump{ - dir = 8; - name = "Distro to Trays" - }, -/obj/effect/floor_decal/industrial/hatch_tiny/service, -/turf/simulated/floor/tiled, -/area/horizon/hydroponics/lower) -"enn" = ( -/obj/machinery/atmospherics/unary/vent_pump/siphon/on/atmos{ - id_tag = "co2_out" - }, -/turf/simulated/floor/reinforced/carbon_dioxide, -/area/engineering/atmos) -"eno" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/item/reagent_containers/glass/bucket, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/ringer/east{ - department = "Hydroponics"; - id = "ringer_hydroponics"; - req_access = list(35) - }, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/hydroponics/lower) "enr" = ( /obj/structure/bed/stool/chair{ dir = 4 @@ -30501,6 +30271,37 @@ }, /turf/unsimulated/floor, /area/centcom/spawning) +"ens" = ( +/obj/structure/grille/diagonal, +/obj/structure/window/shuttle/scc_space_ship, +/obj/machinery/door/blast/shutters/open{ + dir = 2; + id = "bar_viewing_shutters"; + name = "Bar Viewing Shutters" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/reinforced, +/area/horizon/service/bar) +"enu" = ( +/obj/structure/tank_wall{ + density = 0; + icon_state = "m-12"; + opacity = 0 + }, +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 4 + }, +/turf/simulated/floor/reinforced/airless, +/area/horizon/engineering/atmos) +"enw" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 9 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/weapons/longbow) "enx" = ( /obj/machinery/door/airlock/external{ frequency = 1337; @@ -30523,63 +30324,58 @@ }, /turf/simulated/floor/holofloor/tiled/dark, /area/horizon/holodeck/source_boxingcourt) -"enH" = ( -/obj/structure/railing/mapped{ - dir = 8 +"enE" = ( +/obj/structure/grille, +/obj/machinery/door/firedoor, +/obj/structure/window/shuttle/scc_space_ship/cardinal, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/command/heads/rd) +"enM" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/lino, -/area/horizon/crew_quarters/lounge/bar) +/turf/simulated/floor/carpet/rubber, +/area/horizon/tcommsat/entrance) "enO" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/structure/disposalpipe/segment, /turf/simulated/floor/reinforced/airless, /area/horizon/exterior) -"enQ" = ( -/obj/machinery/door/airlock/external, -/obj/effect/map_effect/marker/airlock{ - frequency = 3002; - master_tag = "airlock_horizon_deck_2_port_1"; - name = "airlock_horizon_deck_2_port_1" +"enR" = ( +/obj/structure/table/rack{ + dir = 8 }, -/obj/effect/map_effect/marker_helper/airlock/exterior, -/obj/machinery/access_button{ - dir = 8; - pixel_x = 20; - pixel_y = -28 +/obj/effect/floor_decal/corner_wide/blue/full, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/item/circuitboard/robotics{ + pixel_y = 4 }, -/turf/simulated/floor, -/area/maintenance/wing/port/far) -"enT" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/item/storage/box/monkeycubes, -/obj/item/target, -/obj/item/target, -/obj/item/target, -/obj/item/target, -/obj/item/target, -/obj/item/target, -/obj/structure/window/borosilicate/reinforced{ - dir = 4 +/obj/item/circuitboard/aiupload, +/obj/item/circuitboard/borgupload{ + pixel_y = -4 }, -/obj/structure/closet/crate, -/obj/machinery/light, -/turf/simulated/floor/reinforced, -/area/rnd/test_range) +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/storage/tech) +"enX" = ( +/obj/effect/floor_decal/corner/brown/full, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/railing/mapped, +/obj/machinery/firealarm/west{ + pixel_x = -24 + }, +/turf/simulated/floor/tiled, +/area/horizon/operations/loading) "enZ" = ( /turf/unsimulated/wall/darkshuttlewall, /area/tdome/tdomeadmin) -"eob" = ( -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/obj/structure/cable/green{ - icon_state = "0-8" - }, -/obj/effect/map_effect/window_spawner/full/reinforced/grille/firedoor, -/turf/simulated/floor/tiled/dark/full, -/area/tcommsat/chamber) +"eod" = ( +/obj/structure/stairs/west, +/obj/structure/railing/mapped, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/wing/starboard/far) "eoe" = ( /obj/structure/sink/kitchen{ dir = 8; @@ -30588,96 +30384,54 @@ }, /turf/unsimulated/floor/marble, /area/antag/wizard) -"eog" = ( -/obj/machinery/suspension_gen, -/obj/machinery/light{ +"eoh" = ( +/obj/structure/window/shuttle/unique/scc/scout{ + icon_state = "5,2" + }, +/obj/structure/window/shuttle/unique/scc/scout/over{ + icon_state = "5,2" + }, +/obj/effect/floor_decal/industrial/outline, +/turf/simulated/floor/reinforced, +/area/horizon/shuttle/canary) +"eok" = ( +/obj/structure/bed/stool/chair/padded/brown{ dir = 4 }, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenoarch_storage) -"eoq" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/corner/dark_green{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/starboard) -"eot" = ( -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lime{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ +/obj/effect/floor_decal/spline/fancy/wood/cee{ dir = 8 }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora) -"eou" = ( -/obj/effect/floor_decal/corner/brown{ - dir = 10 +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - icon_state = "1-2" +/obj/machinery/firealarm/west{ + dir = 2; + pixel_x = 0; + pixel_y = -22 }, -/turf/simulated/floor/tiled, -/area/operations/lobby) -"eox" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/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/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/maintenance/aft) +/turf/simulated/floor/wood, +/area/horizon/command/bridge/upperdeck) "eoy" = ( /obj/structure/bed/stool/chair/office/bridge/pilot{ dir = 1 }, /turf/simulated/floor/shuttle/black, /area/shuttle/specops) -"eoC" = ( -/obj/effect/floor_decal/corner/yellow{ - dir = 10 +"eoz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/aux{ + dir = 8 }, -/obj/item/modular_computer/console/preset/engineering, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled, -/area/engineering/lobby) -"eoG" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 5 +/obj/machinery/atmospherics/pipe/manifold/hidden/fuel{ + dir = 1 }, -/obj/structure/sign/directions/all{ - pixel_y = 28 +/obj/effect/floor_decal/industrial/outline_door/red{ + dir = 1 }, -/obj/structure/sign/directions/medical{ - pixel_y = 36 +/obj/structure/cable/green{ + icon_state = "2-8" }, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/starboard) +/turf/simulated/floor/tiled/dark, +/area/horizon/shuttle/quark/cargo_hold) "eoH" = ( /obj/machinery/camera/network/crescent{ c_tag = "Crescent Departures 2"; @@ -30692,10 +30446,149 @@ /obj/effect/floor_decal/corner/green/full, /turf/simulated/floor/holofloor/tiled, /area/horizon/holodeck/source_emptycourt) +"eoL" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/hallway/upper) +"eoO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/horizon/hangar/auxiliary) +"eoP" = ( +/obj/structure/platform/cutout{ + dir = 8 + }, +/obj/structure/platform_stairs/full/east_west_cap, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/operations/machinist) +"eoS" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing/mapped{ + dir = 8 + }, +/turf/simulated/open/airless, +/area/horizon/exterior) +"eoT" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/railing/mapped, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/reactor/indra/mainchamber) "eoX" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/tiled, /area/horizon/security/holding_cell_a) +"eoY" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/horizon/hangar/intrepid) +"eoZ" = ( +/obj/machinery/firealarm/east, +/obj/machinery/alarm/north, +/obj/effect/floor_decal/industrial/warning/full, +/obj/machinery/porta_turret, +/obj/machinery/button/remote/blast_door{ + dir = 1; + id = "shutters_deck1_ammostorage"; + name = "Blast Door Control"; + pixel_x = -7; + pixel_y = 21; + req_one_access = list(75) + }, +/obj/machinery/button/remote/airlock/screamer{ + channel = "Command"; + dir = 1; + id = "airlocks_deck2_ammostorage"; + message = "The secure ammunition storage door bolts have been toggled."; + name = "Door Bolt Control"; + pixel_x = 7; + pixel_y = 21; + req_one_access = list(75); + specialfunctions = 4 + }, +/turf/simulated/floor/reinforced, +/area/horizon/operations/secure_ammunition_storage) +"epa" = ( +/obj/structure/platform/ledge{ + dir = 1 + }, +/obj/structure/platform/ledge{ + dir = 4 + }, +/obj/structure/platform/ledge{ + dir = 8 + }, +/obj/structure/platform_deco/ledge{ + dir = 6 + }, +/obj/structure/platform_deco/ledge{ + dir = 10 + }, +/obj/structure/railing/mapped, +/turf/simulated/open, +/area/horizon/operations/office) +"epe" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/horizon/medical/morgue) +"epg" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 5 + }, +/obj/structure/extinguisher_cabinet/north, +/obj/machinery/light/floor{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/conference) +"epi" = ( +/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/horizon/hangar/auxiliary) +"epk" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/aux, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/main/port) "epl" = ( /obj/machinery/computer/shuttle_control/multi/burglar{ name = "shuttle control console" @@ -30703,99 +30596,71 @@ /obj/effect/floor_decal/industrial/outline/red, /turf/simulated/floor/tiled/dark/full, /area/shuttle/burglar) -"epn" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 1 - }, -/obj/machinery/portable_atmospherics/canister/air/airlock, -/obj/structure/window/reinforced{ - dir = 8 +"epp" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ + icon_state = "2-8" }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/hidden/yellow, +/obj/structure/lattice/catwalk/indoor/grate/dark, /turf/simulated/floor/plating, -/area/maintenance/hangar/starboard) -"epo" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/turf/simulated/floor/carpet/rubber, -/area/engineering/engine_monitoring/rust) -"epB" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ +/area/horizon/engineering/storage/lower) +"ept" = ( +/obj/effect/floor_decal/corner/lime{ dir = 10 }, -/obj/machinery/light/small/emergency{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/hangar/starboard) -"epD" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 1 - }, -/obj/structure/bed/stool/chair/office/dark{ - dir = 1 - }, -/turf/simulated/floor/carpet/rubber, -/area/engineering/engine_monitoring/rust) -"epG" = ( -/obj/structure/window/reinforced{ - dir = 4; - maxhealth = 140 - }, -/obj/machinery/power/apc/low/north, -/obj/effect/floor_decal/corner/dark_green/full{ - dir = 1 - }, -/obj/structure/table/standard, -/obj/structure/cable/green{ - icon_state = "0-2" - }, -/obj/structure/bedsheetbin{ - pixel_y = 7 - }, -/turf/simulated/floor/tiled, -/area/horizon/crew_quarters/fitness/changing) -"epH" = ( -/obj/effect/floor_decal/corner/yellow{ +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 5 }, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/machinery/disposal/small/south, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/light{ +/turf/simulated/floor/tiled, +/area/horizon/rnd/xenobiology/xenoflora) +"epv" = ( +/obj/effect/floor_decal/spline/fancy/wood{ dir = 1 }, -/turf/simulated/floor/tiled, -/area/engineering/lobby) -"epS" = ( -/obj/structure/lattice/catwalk, /obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/wood, +/area/horizon/command/bridge/meeting_room) +"epx" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 5 + }, +/obj/machinery/camera/network/supply{ + c_tag = "Operations - Hangar Starboard Aft"; dir = 4 }, -/turf/simulated/open/airless, -/area/template_noop) +/turf/simulated/floor/tiled, +/area/horizon/hangar/operations) "epT" = ( /obj/effect/floor_decal/industrial/warning, /turf/unsimulated/floor, /area/antag/mercenary) -"epU" = ( -/obj/effect/map_effect/window_spawner/full/reinforced/grille/firedoor, -/obj/machinery/door/blast/regular/open{ - id = "AICore"; - name = "AI Core Blast Door" +"epV" = ( +/obj/structure/cable/green{ + icon_state = "4-8" }, -/turf/simulated/floor/tiled/dark/full, -/area/turret_protected/ai_upload) +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/door/airlock/medical{ + dir = 4; + name = "Staff Facilities"; + req_access = list(5) + }, +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/full, +/area/horizon/medical/smoking) "epX" = ( /obj/structure/bed/stool/chair/office/dark, /obj/structure/sign/double/map/left{ @@ -30807,42 +30672,20 @@ icon_state = "wood" }, /area/centcom/specops) -"eqa" = ( +"eqd" = ( /obj/structure/cable/green{ icon_state = "1-2" }, -/obj/effect/floor_decal/corner/yellow{ - dir = 1 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/door/airlock/maintenance{ + dir = 1; + req_one_access = list(5,12) }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 8 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/binary/passive_gate{ - name = "Reactor Waste to Mix" - }, -/turf/simulated/floor/tiled/dark, -/area/engineering/atmos) -"eqf" = ( -/obj/effect/floor_decal/corner_wide/orange{ - dir = 10 - }, -/obj/effect/floor_decal/industrial/outline/medical, -/obj/structure/closet/wardrobe/pharmacy_white, -/obj/item/storage/box/gloves, -/obj/item/clothing/glasses/safety/goggles, -/obj/item/clothing/glasses/safety/goggles, -/obj/item/modular_computer/laptop/preset/medical, -/turf/simulated/floor/tiled/white, -/area/medical/pharmacy) +/obj/machinery/door/firedoor, +/turf/simulated/floor, +/area/horizon/medical/ward) "eqg" = ( /obj/machinery/flasher{ id = "permflash" @@ -30852,89 +30695,67 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, /area/horizon/security/brig) -"eqk" = ( -/obj/structure/cable/green{ - icon_state = "4-8" +"eqj" = ( +/obj/structure/disposalpipe/segment{ + icon_state = "pipe-c" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 + dir = 10 }, -/obj/effect/floor_decal/corner/brown{ - dir = 5 +/obj/structure/cable/green{ + icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 + dir = 10 }, -/turf/simulated/floor/tiled, -/area/hangar/operations) +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/starboard/near) "eqm" = ( /obj/effect/floor_decal/corner/white/full{ dir = 1 }, /turf/simulated/floor/holofloor/tiled/dark, /area/horizon/holodeck/source_boxingcourt) -"eqs" = ( -/obj/machinery/atmospherics/portables_connector, -/obj/machinery/portable_atmospherics/canister/empty, -/turf/simulated/floor/plating, -/area/engineering/atmos/air) -"eqt" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 5 +"eqx" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ +/obj/effect/floor_decal/spline/fancy/wood{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/structure/platform, -/obj/structure/engineer_maintenance/pipe, -/turf/simulated/floor/tiled/dark, -/area/bridge/controlroom) -"equ" = ( -/obj/effect/floor_decal/spline/plain{ +/obj/structure/bed/stool/bar/padded/red{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/black, +/turf/simulated/floor/wood, +/area/horizon/service/bar) +"eqy" = ( +/obj/structure/bed/stool/chair/office/dark{ + dir = 1 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, /obj/effect/floor_decal/spline/plain{ - dir = 8 + dir = 1 }, /turf/simulated/floor/carpet/rubber, -/area/tcommsat/chamber) -"eqw" = ( -/obj/effect/floor_decal/corner/brown{ - dir = 9 +/area/horizon/tcommsat/entrance) +"eqA" = ( +/obj/effect/floor_decal/spline/plain/corner, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/intrepid/main_compartment) +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/turf/simulated/floor/carpet/rubber, +/area/horizon/tcommsat/entrance) "eqD" = ( /turf/simulated/open, /area/turbolift/primary/deck_3) -"eqE" = ( -/obj/structure/curtain/open/medical, -/obj/structure/bed/stool/padded/red{ - dir = 8 - }, -/obj/effect/floor_decal/corner/green/diagonal{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/medical/ward) -"eqH" = ( -/obj/machinery/door/firedoor, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/machinery/door/airlock/maintenance_hatch{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard/deck1) "eqK" = ( /obj/item/towel_flat, /obj/item/towel, @@ -30942,36 +30763,6 @@ icon_state = "desert" }, /area/centcom/shared_dream) -"eqO" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/structure/cable/orange{ - icon_state = "4-8" - }, -/obj/effect/floor_decal/corner_wide/yellow{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/engineering/bluespace_drive) -"eqQ" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/central) "eqR" = ( /obj/structure/bed/stool/chair/sofa/left/red, /obj/effect/floor_decal/spline/fancy/wood, @@ -31009,19 +30800,6 @@ }, /turf/simulated/floor/tiled, /area/horizon/security/brig) -"eqX" = ( -/obj/machinery/power/terminal{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/firealarm/west, -/obj/structure/cable{ - icon_state = "0-2" - }, -/turf/simulated/floor/plating, -/area/maintenance/substation/engineering) "era" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -31037,20 +30815,6 @@ }, /turf/simulated/floor/tiled, /area/horizon/security/brig) -"erd" = ( -/obj/structure/foamedmetal, -/turf/simulated/floor/plating, -/area/rnd/eva) -"ere" = ( -/obj/structure/table/rack, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/tiled/freezer, -/area/horizon/crew_quarters/fitness/showers) "erf" = ( /obj/effect/decal/fake_object{ dir = 4; @@ -31065,45 +30829,39 @@ name = "mossy grass" }, /area/horizon/holodeck/source_konyang) -"erk" = ( -/obj/structure/cable{ +"erg" = ( +/obj/structure/cable/green{ icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/structure/disposalpipe/sortjunction/flipped{ + name = "Library"; + sortType = "Library" }, /obj/structure/lattice/catwalk/indoor/grate, /turf/simulated/floor/plating, -/area/hangar/intrepid/interstitial) -"err" = ( -/obj/effect/floor_decal/corner/yellow, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 4 +/area/horizon/hallway/primary/deck_2/fore) +"erq" = ( +/obj/structure/foamedmetal, +/obj/structure/shuttle_part/scc_space_ship{ + icon_state = "d2-2" }, -/turf/simulated/floor/tiled/dark, -/area/engineering/atmos) +/obj/effect/landmark/entry_point/fore{ + name = "fore, commissary" + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/cargo_compartment) "eru" = ( /turf/simulated/floor/holofloor/snow, /area/horizon/holodeck/source_adhomai) -"erv" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/corner/brown{ - dir = 6 - }, -/obj/machinery/camera/network/supply{ - c_tag = "Operations - Upper Warehouse Port"; - dir = 8 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/machinery/computer/shuttle_control/multi/lift/wall/operations{ - dir = 8; - pixel_x = 26; - pixel_y = -8 - }, -/turf/simulated/floor/tiled, -/area/operations/office) "erz" = ( /obj/machinery/door/airlock/external{ dir = 1; @@ -31119,13 +30877,6 @@ }, /turf/unsimulated/floor, /area/antag/raider) -"erA" = ( -/obj/machinery/vending/cigarette{ - pixel_x = -3; - pixel_y = 3 - }, -/turf/simulated/floor/wood/walnut, -/area/medical/smoking) "erD" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 1 @@ -31135,60 +30886,16 @@ }, /turf/unsimulated/floor/wood, /area/antag/raider) -"erG" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/effect/floor_decal/corner/mauve/diagonal, -/turf/simulated/floor/tiled, -/area/rnd/hallway/secondary) "erI" = ( /obj/effect/shuttle_landmark/escape_pod/transit/pod4, /turf/space/transit/east, /area/template_noop) -"erJ" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 10 - }, -/obj/item/modular_computer/console/preset/security, -/obj/structure/railing/mapped, -/turf/simulated/floor/tiled/dark, -/area/bridge/controlroom) -"erK" = ( -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 9 - }, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/engine_room/turbine) "erL" = ( /turf/simulated/floor/plating, /area/turbolift/research/deck_1) -"erM" = ( -/obj/machinery/alarm/south, -/obj/effect/floor_decal/industrial/outline/operations, -/obj/structure/table/standard, -/obj/item/device/suit_cooling_unit, -/obj/item/device/suit_cooling_unit, -/obj/item/device/suit_cooling_unit, -/obj/item/device/suit_cooling_unit, -/obj/item/storage/bag/inflatable, -/obj/item/storage/bag/inflatable, -/obj/item/storage/bag/inflatable, -/obj/item/storage/bag/inflatable, -/obj/item/device/hand_labeler, -/obj/item/crowbar/hydraulic_rescue_tool, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/atmos/storage) -"erN" = ( -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/structure/lattice, -/obj/structure/platform/ledge{ - dir = 8 - }, -/turf/simulated/open, -/area/hallway/primary/central_one) +"erP" = ( +/turf/simulated/wall, +/area/horizon/command/teleporter) "erU" = ( /obj/machinery/door/airlock/glass_centcom{ dir = 4; @@ -31198,90 +30905,153 @@ }, /turf/unsimulated/floor, /area/centcom/spawning) -"erX" = ( +"esc" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/structure/platform_deco{ dir = 4 }, -/obj/structure/platform_deco{ - dir = 8 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 }, -/turf/simulated/floor/carpet/rubber, -/area/bridge/controlroom) -"esd" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/structure/lattice/catwalk/indoor/grate/dark, /turf/simulated/floor/plating, -/area/maintenance/wing/starboard) -"esp" = ( -/obj/structure/cable{ - icon_state = "1-2" +/area/horizon/maintenance/deck_1/main/starboard) +"esg" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden, +/turf/simulated/floor/plating, +/area/horizon/medical/cryo) +"esh" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/port) +"eso" = ( +/obj/structure/flora/ausbushes/sparsegrass, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/maintenance_hatch{ +/turf/simulated/floor/grass/no_edge, +/area/horizon/service/hydroponics/lower) +"esq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/spline/fancy/wood{ dir = 1 }, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard/far) -"esr" = ( -/obj/effect/floor_decal/corner_wide/purple{ +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 8 }, -/obj/effect/floor_decal/corner_wide/purple{ - dir = 5 +/obj/structure/cable/green{ + icon_state = "4-8"; + d1 = 4; + d2 = 8 }, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, -/obj/structure/disposalpipe/segment{ +/turf/simulated/floor/wood, +/area/horizon/service/library) +"ess" = ( +/obj/effect/floor_decal/corner/dark_green/full{ + dir = 8 + }, +/obj/random/pottedplant, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_3/central) +"esu" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/black{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, /obj/structure/cable/green{ icon_state = "4-8" }, -/obj/structure/cable/green{ - icon_state = "1-4" +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/airlock/hatch{ + dir = 4; + name = "Telecommunications - Control Room"; + req_access = list(11,24) }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenoarch_atrium) -"esK" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/structure/window/shuttle/scc_space_ship, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard/deck1) -"esS" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 10 +/turf/simulated/floor/tiled/dark/full, +/area/horizon/tcommsat/entrance) +"esv" = ( +/obj/effect/map_effect/window_spawner/full/reinforced/polarized/grille/firedoor{ + id = "consularA" }, -/obj/item/reagent_containers/glass/bucket, +/obj/structure/cable/green, +/turf/simulated/floor, +/area/horizon/command/bridge/upperdeck) +"esx" = ( +/obj/structure/bed/stool/chair/padded/brown{ + dir = 4 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 9 + }, +/turf/simulated/floor/wood, +/area/horizon/hallway/primary/deck_3/central) +"esB" = ( /obj/structure/railing/mapped{ dir = 8 }, -/turf/simulated/floor/tiled/dark, -/area/horizon/custodial) +/obj/structure/platform/ledge, +/obj/structure/platform_deco/ledge{ + dir = 5 + }, +/obj/structure/platform/ledge{ + dir = 4 + }, +/obj/structure/platform_deco/ledge{ + dir = 5 + }, +/turf/simulated/open, +/area/horizon/hallway/primary/deck_3/central) +"esD" = ( +/obj/structure/closet/excavation, +/obj/effect/floor_decal/corner/mauve/full{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/outline/research, +/obj/machinery/alarm/east, +/turf/simulated/floor/tiled/white, +/area/horizon/storage/eva/expedition) +"esP" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/portable_atmospherics/powered/scrubber, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/hallway/fore) "esV" = ( /obj/effect/floor_decal/spline/plain/corner{ dir = 4 }, /turf/simulated/floor/exoplanet/grass, /area/centcom/shared_dream) -"etb" = ( -/obj/structure/cable/green{ - icon_state = "4-8" +"esY" = ( +/obj/effect/floor_decal/corner_wide/purple{ + dir = 9 }, -/obj/machinery/light, -/obj/effect/floor_decal/corner/yellow{ - dir = 10 +/obj/effect/floor_decal/corner_wide/purple{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/firealarm/west, +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/xenoarch/atrium) +"etg" = ( +/obj/effect/floor_decal/corner/white/diagonal, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 }, /turf/simulated/floor/tiled, -/area/engineering/storage_eva) +/area/horizon/medical/paramedic) "etk" = ( /obj/structure/bed/stool/chair/sofa/right/black{ desc = "A pew, how holy!"; @@ -31294,92 +31064,50 @@ /obj/effect/floor_decal/corner/grey/diagonal, /turf/simulated/floor/marble, /area/horizon/holodeck/source_trinary) -"etr" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/bridge) -"ets" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/effect/floor_decal/corner/dark_green{ - dir = 9 - }, -/obj/effect/floor_decal/spline/plain/lime{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_two/fore) -"etv" = ( -/obj/structure/disposalpipe/segment{ - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/commissary) -"etw" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 8 - }, +"etu" = ( /turf/simulated/floor/tiled/dark, -/area/hallway/primary/central_one) -"etx" = ( -/obj/effect/floor_decal/corner/green/diagonal, -/obj/machinery/disposal/small/south, -/obj/structure/disposalpipe/trunk, -/turf/simulated/floor/tiled/white, -/area/horizon/crew_quarters/washroom/central) -"etN" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/machinery/light/small/emergency{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/structure/cable, -/obj/machinery/power/apc/east, -/obj/structure/disposalpipe/segment{ - icon_state = "pipe-c" - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/maintenance/aft) +/area/horizon/engineering/reactor/supermatter/waste) "etO" = ( /obj/structure/bed/stool/chair/holochair, /turf/simulated/floor/holofloor/carpet, /area/horizon/holodeck/source_dininghall) -"etS" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 8 +"etP" = ( +/turf/simulated/wall, +/area/horizon/service/custodial/disposals/deck_1) +"etQ" = ( +/obj/machinery/atmospherics/omni/filter{ + tag_east = 2; + tag_north = 8; + tag_south = 1 }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 4 +/obj/effect/floor_decal/corner/yellow{ + dir = 9 }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 8 - }, -/obj/effect/floor_decal/corner/yellow, /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled/dark, -/area/engineering/engine_room/turbine) +/area/horizon/engineering/reactor/supermatter/waste) "etT" = ( /obj/structure/lattice, /obj/machinery/atmospherics/pipe/simple/visible/red, /turf/space/dynamic, /area/horizon/exterior) +"etV" = ( +/obj/machinery/newscaster/east, +/turf/simulated/floor/carpet, +/area/horizon/hallway/primary/deck_2/starboard) +"etX" = ( +/obj/effect/floor_decal/corner/dark_green/diagonal, +/obj/structure/table/reinforced, +/obj/random/horticulture_magazine, +/obj/random/horticulture_magazine{ + pixel_x = 5 + }, +/obj/random/pottedplant_small{ + pixel_x = -8; + pixel_y = 10 + }, +/turf/simulated/floor/tiled, +/area/horizon/service/hydroponics) "etZ" = ( /obj/item/device/radio/intercom/north{ broadcasting = 1; @@ -31393,16 +31121,19 @@ /obj/structure/window/reinforced/crescent, /turf/unsimulated/floor/blue_circuit, /area/centcom/control) -"eua" = ( -/obj/effect/floor_decal/corner_wide/yellow{ - dir = 5 +"eud" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 10 }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/machinery/light{ +/obj/structure/platform{ dir = 1 }, +/obj/machinery/atm{ + pixel_y = -10 + }, +/obj/effect/floor_decal/industrial/outline/service, /turf/simulated/floor/tiled, -/area/hallway/engineering/rust) +/area/horizon/command/bridge/upperdeck) "eue" = ( /obj/machinery/light/small{ dir = 8 @@ -31419,110 +31150,100 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/white, /area/horizon/security/forensic_laboratory) -"euh" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/open, -/area/horizon/stairwell/bridge) -"euj" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/door/airlock/external{ - dir = 1; - frequency = 1380; - icon_state = "door_locked"; - id_tag = "mining_shuttle_dock_doors"; - req_access = list(13) - }, -/obj/structure/plasticflaps/airtight, -/obj/effect/shuttle_landmark/mining/hangar{ - dir = 1 - }, -/turf/simulated/floor/tiled/full, -/area/hangar/operations) -"euk" = ( -/obj/machinery/porta_turret, -/obj/effect/floor_decal/industrial/warning/full, -/obj/structure/railing/mapped{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/turret_protected/ai_upload_foyer) -"eun" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/turf/simulated/floor/tiled/full, -/area/horizon/hallway/deck_three/primary/starboard) -"eup" = ( -/obj/effect/floor_decal/spline/fancy/wood, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/disposal/small/north, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/captain) "euq" = ( /obj/effect/floor_decal/snowdrift{ dir = 8 }, /turf/simulated/floor/exoplanet/snow, /area/centcom/shared_dream) -"eut" = ( -/obj/effect/floor_decal/industrial/outline_straight/yellow{ - dir = 8 +"eur" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 5 + }, +/obj/machinery/cryopod/living_quarters{ + pixel_y = 8 + }, +/obj/structure/sign/directions/civ{ + desc = "A sign pointing out that a lift leads to the ship's residential deck."; + dir = 1; + name = "\improper Lift to Residential Deck sign"; + pixel_y = -10 + }, +/turf/simulated/floor/tiled, +/area/horizon/crew/resdeck/living_quarters_lift) +"eus" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/machinery/camera/network/reactor{ + c_tag = "Engineering - INDRA Room External Airlock"; + dir = 4 + }, +/obj/structure/sign/vacuum{ + pixel_x = -32 }, /obj/effect/floor_decal/corner/yellow{ - dir = 6 - }, -/obj/machinery/button/remote/airlock{ - dir = 4; - id = "hydro_hazard"; - name = "Hazardous Specimens Bolt Control"; - specialfunctions = 4; - pixel_y = -4; - pixel_x = 20; - req_access = list(35) - }, -/obj/machinery/light/colored/blue{ - dir = 4 - }, -/obj/machinery/button/remote/airlock{ - id = "hydro_hazard"; - name = "Hazardous Specimens Door Control"; - pixel_y = 8; - req_access = list(35); - dir = 4; - pixel_x = 20 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden{ - dir = 4 + dir = 9 }, /turf/simulated/floor/tiled/dark, -/area/horizon/hydroponics/lower) -"euC" = ( -/obj/structure/bed/stool/chair/sofa/left/orange{ - dir = 8 +/area/horizon/engineering/aft_airlock) +"euu" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/corner/dark_blue/diagonal, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 }, -/obj/machinery/alarm/east, -/turf/simulated/floor/carpet/red, -/area/horizon/bar) +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/horizon/command/bridge/bridge_crew) +"eux" = ( +/obj/machinery/portable_atmospherics/powered/scrubber, +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/atmos/propulsion/starboard) +"euB" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 4 + }, +/obj/structure/railing/mapped{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/horizon/rnd/xenoarch/atrium) +"euF" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner/dark_green{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_2/fore) +"euG" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 5 + }, +/obj/machinery/alarm/north, +/turf/simulated/floor/tiled, +/area/horizon/operations/lobby) +"euH" = ( +/obj/structure/shuttle_part/scc_space_ship{ + icon_state = "d3-6-f" + }, +/turf/simulated/wall, +/area/horizon/engineering/drone_fabrication) "euK" = ( /obj/machinery/door/blast/odin{ id = "merc_armory"; @@ -31535,28 +31256,54 @@ /obj/item/holomenu/holodeck, /turf/simulated/wall, /area/horizon/holodeck_control/beta) -"euS" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor, -/area/horizon/maintenance/deck_three/aft/starboard) -"euT" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/corner/brown{ - dir = 9 +"euX" = ( +/obj/machinery/shieldwallgen{ + req_access = list(55); + anchored = 1; + wrenched = 1 + }, +/obj/effect/floor_decal/corner/mauve/full{ + dir = 4 + }, +/obj/structure/cable/green, +/obj/machinery/alarm/south, +/obj/machinery/button/remote/airlock{ + id = "hazardous_access"; + name = "Hazardous Containment"; + req_access = list(55); + specialfunctions = 4; + dir = 4; + pixel_x = 23; + desiredstate = 1 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/xenobiology/hazardous) +"evg" = ( +/obj/effect/floor_decal/corner/lime/diagonal, +/obj/machinery/light_switch{ + pixel_x = -26; + pixel_y = -18 }, /obj/structure/cable/green{ icon_state = "1-2" }, -/obj/structure/railing/mapped{ +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/washroom) +"evh" = ( +/turf/unsimulated/wall/fakepdoor{ + dir = 4 + }, +/area/horizon/hangar/intrepid) +"evl" = ( +/obj/effect/floor_decal/corner/mauve/full{ dir = 8 }, /turf/simulated/floor/tiled, -/area/operations/lobby) -"evd" = ( -/obj/structure/cable{ +/area/horizon/rnd/hallway/secondary) +"evn" = ( +/obj/structure/cable/green{ icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -31568,27 +31315,7 @@ /obj/structure/lattice/catwalk/indoor/grate/dark, /obj/machinery/light/small/emergency, /turf/simulated/floor/plating, -/area/maintenance/wing/starboard/deck1) -"evf" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 6 - }, -/obj/structure/sign/securearea{ - desc = "A caution sign which reads 'DISPOSALS' and 'AUTHORIZED PERSONNEL ONLY'."; - name = "\improper DISPOSALS sign"; - pixel_y = 32 - }, -/obj/structure/sign/directions/prop{ - dir = 8; - pixel_x = -32; - pixel_y = -10 - }, -/turf/simulated/floor/plating, -/area/maintenance/engineering) -"evm" = ( -/obj/effect/floor_decal/industrial/outline/grey, -/turf/simulated/floor/plating, -/area/hangar/intrepid) +/area/horizon/maintenance/deck_2/wing/port/near) "evo" = ( /obj/machinery/door/airlock/centcom{ dir = 4; @@ -31599,123 +31326,53 @@ icon_state = "dark_preview" }, /area/centcom/control) -"evp" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 8 - }, -/obj/effect/map_effect/marker/airlock{ - frequency = 1001; - master_tag = "airlock_horizon_deck_3_aft_1"; - name = "airlock_horizon_deck_3_aft_1" - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor, -/area/horizon/maintenance/deck_three/aft/starboard) -"evq" = ( -/obj/structure/closet/crate, -/obj/effect/floor_decal/corner/brown{ - dir = 6 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/camera/network/supply{ - c_tag = "Operations - Aux Desk"; - dir = 8 - }, -/obj/machinery/requests_console/east{ - department = "Operations Office (Aux)"; - departmentType = 2; - name = "Operations (Aux) Requests Console" - }, -/turf/simulated/floor/tiled, -/area/operations/office_aux) -"evt" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/random/pottedplant, -/obj/effect/floor_decal/corner_wide/green/full{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/hallway/medical) -"evA" = ( -/obj/effect/floor_decal/corner/lime{ - dir = 10 - }, -/obj/effect/landmark{ - name = "borerstart" - }, -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/tiled, -/area/medical/morgue/lower) -"evN" = ( -/obj/effect/floor_decal/industrial/warning{ +"evr" = ( +/obj/effect/floor_decal/spline/fancy/wood, +/obj/machinery/light, +/obj/effect/floor_decal/spline/fancy/wood/corner{ dir = 1 }, -/obj/effect/map_effect/window_spawner/full/borosilicate/reinforced, -/obj/machinery/door/blast/regular/open{ - id = "r_ust_core_blast"; - name = "INDRA Reactor Blast Doors" - }, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/engine_room/rust) -"evO" = ( -/turf/simulated/open, -/area/horizon/custodial/disposals) -"evP" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 4 - }, /obj/structure/disposalpipe/segment{ - dir = 4 + dir = 1; + icon_state = "pipe-c" + }, +/obj/machinery/firealarm/south, +/obj/machinery/button/remote/blast_door{ + dir = 8; + id = "lounge_window_shutters"; + name = "Viewing Shutters"; + pixel_x = 13; + pixel_y = -31 + }, +/turf/simulated/floor/wood, +/area/horizon/service/dining_hall) +"evv" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 10 }, /turf/simulated/floor/tiled/dark/full, -/area/engineering/smes/rust) -"evQ" = ( -/obj/structure/table/steel, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/item/aicard, -/obj/structure/window/reinforced{ +/area/horizon/engineering/bluespace_drive) +"evI" = ( +/obj/effect/floor_decal/spline/plain{ dir = 8 }, -/obj/machinery/door/window/southright{ - name = "High Risk Modules"; - desc = "Warning: Experimental modules designed to be used in extreme situations. Exercise extreme caution when utilizing."; - req_access = list(20) +/obj/machinery/light{ + dir = 8 }, -/obj/item/aiModule/freeform{ - pixel_x = 5 +/turf/simulated/floor/tiled/dark, +/area/horizon/service/bar) +"evT" = ( +/obj/effect/floor_decal/corner_wide/yellow{ + dir = 9 }, -/obj/item/aiModule/quarantine{ - pixel_x = 5; - pixel_y = 9 - }, -/obj/item/aiModule/protectStation, -/obj/item/aiModule/corp{ - pixel_x = -5 - }, -/obj/item/aiModule/safeguard{ - pixel_y = 9 - }, -/obj/item/aiModule/conglomerate_aggressive{ - pixel_x = -5; - pixel_y = 9 - }, -/obj/item/aiModule/conglomerate{ - pixel_x = -5; - pixel_y = 9 - }, -/turf/simulated/floor/tiled/dark/full, -/area/turret_protected/ai_upload) +/turf/simulated/floor/tiled, +/area/horizon/engineering/reactor/indra/mainchamber) "evW" = ( /obj/machinery/door/airlock/centcom{ name = "Green Backstage"; @@ -31723,52 +31380,49 @@ }, /turf/unsimulated/floor, /area/tdome/tdomeadmin) -"ewg" = ( -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/white, -/area/hallway/medical/upper) -"ewh" = ( -/obj/effect/floor_decal/spline/plain/lime{ +"evZ" = ( +/obj/structure/lattice/catwalk, +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/machinery/button/remote/airlock{ - dir = 4; - id = "horizon_commissary_door"; - name = "Commissary Door Bolts"; - pixel_x = 22; - specialfunctions = 4; - pixel_y = -2 - }, -/obj/machinery/button/remote/blast_door{ - dir = 4; - id = "horizon_commissary_desk"; - name = "Desk Shutters"; - pixel_x = 22; - pixel_y = 10 - }, -/obj/machinery/button/switch/holosign{ - id = "commissary"; - dir = 4; - pixel_y = 1; - pixel_x = 29 - }, -/obj/machinery/light_switch{ - dir = 4; - pixel_y = 12; - pixel_x = 29 - }, -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled/dark, -/area/horizon/commissary) -"ewj" = ( -/obj/machinery/atmospherics/pipe/simple/visible/cyan{ - dir = 5 - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" +/turf/simulated/open/airless, +/area/horizon/exterior) +"ewc" = ( +/obj/structure/railing/mapped, +/obj/effect/floor_decal/industrial/warning/cee{ + dir = 8 }, /turf/simulated/floor/plating, -/area/engineering/engine_room) +/area/horizon/maintenance/deck_2/research) +"ewd" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/railing/mapped, +/turf/simulated/floor/tiled, +/area/horizon/operations/machinist/surgicalbay) +"ewk" = ( +/obj/structure/cable/orange{ + icon_state = "0-2" + }, +/obj/structure/cable/orange, +/obj/machinery/power/emitter{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/turf/simulated/floor/plating, +/area/horizon/engineering/bluespace_drive) +"ewq" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/weapons/grauwolf) "eww" = ( /obj/structure/table/reinforced/steel, /obj/machinery/door/blast/shutters/open{ @@ -31781,14 +31435,17 @@ /obj/item/clothing/glasses/meson, /turf/simulated/floor/tiled/dark/full, /area/shuttle/mercenary) -"ewB" = ( -/obj/structure/bed/stool/chair/sofa/corner/convex/red{ +"ewy" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 1 + }, +/obj/effect/floor_decal/corner/yellow, +/obj/effect/floor_decal/corner/dark_blue{ dir = 4 }, -/obj/item/device/radio/intercom/west, -/obj/structure/engineer_maintenance/pipe/wall, -/turf/simulated/floor/carpet/red, -/area/horizon/library) +/obj/structure/engineer_maintenance/electric/wall, +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/atmos) "ewC" = ( /obj/structure/table/rack, /obj/item/clothing/shoes/magboots, @@ -31797,25 +31454,21 @@ /obj/item/clothing/shoes/magboots, /turf/unsimulated/floor, /area/centcom/distress_prep) -"ewI" = ( -/obj/machinery/light/small/emergency{ - dir = 1 +"ewE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" }, -/obj/random/junk, -/turf/simulated/floor/plating, -/area/maintenance/engineering) -"ewJ" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/effect/floor_decal/corner/dark_green{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/rnd/hallway) +/turf/simulated/floor/tiled/full, +/area/horizon/hallway/primary/deck_2/central) "ewO" = ( /obj/machinery/chemical_dispenser/bar_alc/full{ pixel_y = 7 @@ -31828,46 +31481,128 @@ }, /turf/unsimulated/floor, /area/antag/raider) -"ewY" = ( -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 4; - icon_state = "shutter0"; - id = "LCKDshutters"; - name = "MedBay Lockdown Shutters"; - opacity = 0 +"ewT" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 10 }, -/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, -/obj/structure/sign/greencross/small, -/turf/simulated/floor/plating, -/area/medical/reception) -"exm" = ( -/turf/simulated/wall/shuttle/scc_space_ship/cardinal, -/area/storage/shields) -"exp" = ( -/obj/effect/floor_decal/corner_wide/green{ - dir = 6 - }, -/obj/machinery/power/apc/low/east, /obj/structure/cable/green{ - icon_state = "0-8" + icon_state = "1-2" }, -/turf/simulated/floor/tiled/white, -/area/medical/equipment) -"exw" = ( -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"exB" = ( -/obj/effect/floor_decal/corner/dark_blue/diagonal, -/obj/structure/engineer_maintenance/pipe{ - dir = 1 - }, -/obj/structure/engineer_maintenance/electric{ +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 8 }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/sortjunction/flipped{ + name = "Operations"; + sortType = "Cargo" + }, +/turf/simulated/floor/tiled, +/area/horizon/operations/office) +"ewU" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor/plating, +/area/horizon/hallway/primary/deck_2/fore) +"ewW" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/machinery/power/apc/super/south, +/obj/machinery/atmospherics/pipe/simple/visible/green{ + dir = 4 + }, +/obj/structure/closet/firecloset/full, +/obj/effect/floor_decal/industrial/outline/firefighting_closet, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/atmos/propulsion/starboard) +"ewZ" = ( +/obj/machinery/atmospherics/unary/vent_pump/siphon/on/atmos{ + id_tag = "co2_out" + }, +/turf/simulated/floor/reinforced/carbon_dioxide, +/area/horizon/engineering/atmos) +"exd" = ( +/obj/structure/disposalpipe/segment{ + icon_state = "pipe-c" + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/light_switch{ + dir = 4; + pixel_x = 23 + }, +/obj/effect/floor_decal/corner_wide/green/full{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/exam) +"exe" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/machinery/power/terminal, +/turf/simulated/floor/carpet/rubber, +/area/horizon/tcommsat/entrance) +"exh" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 6 + }, +/obj/structure/platform_deco{ + dir = 8 + }, +/obj/structure/platform_deco{ + icon_state = "ledge_deco" + }, +/turf/simulated/floor/tiled, +/area/horizon/rnd/hallway/secondary) +"exr" = ( +/obj/machinery/bodyscanner, +/obj/effect/floor_decal/corner/beige{ + dir = 9 + }, +/obj/machinery/light{ + dir = 1 + }, /turf/simulated/floor/tiled/dark, -/area/bridge/aibunker) +/area/horizon/medical/gen_treatment) +"exs" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/horizon/operations/commissary) +"exx" = ( +/turf/simulated/wall/shuttle/unique/scc/mining{ + icon_state = "4,2" + }, +/area/horizon/shuttle/mining) "exC" = ( /obj/structure/bed/stool/padded, /obj/effect/decal/cleanable/dirt, @@ -31876,106 +31611,59 @@ }, /turf/simulated/floor/plating, /area/shuttle/skipjack) -"exJ" = ( -/obj/machinery/door/airlock/command{ - dir = 4; - id_tag = "conference_room"; - name = "Conference Room"; - req_one_access = list(19,38,72) - }, -/obj/machinery/door/firedoor, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/bridge/meeting_room) -"exL" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/horizon/bar/backroom) -"exM" = ( -/obj/effect/floor_decal/corner/mauve{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/cable/green{ - icon_state = "2-4" - }, -/turf/simulated/floor/tiled, -/area/rnd/hallway/secondary) -"exQ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/full, -/area/operations/lobby) -"exS" = ( -/obj/machinery/alarm/east, -/obj/effect/floor_decal/spline/fancy/wood/cee{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/heads/hor) -"exU" = ( -/obj/effect/floor_decal/corner_wide/green{ - dir = 5 - }, -/obj/effect/floor_decal/corner_wide/green, -/obj/structure/sink{ - pixel_x = -7; - pixel_y = 23 - }, -/turf/simulated/floor/tiled/white, -/area/medical/exam) -"exV" = ( -/obj/machinery/papershredder, -/obj/effect/floor_decal/corner/dark_green{ - dir = 5 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/machinery/light{ +"exE" = ( +/obj/structure/bed/stool/chair/office/dark, +/obj/effect/floor_decal/industrial/warning/corner{ dir = 1 }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/starboard/nacelle) +"exF" = ( +/obj/structure/shuttle_part/scc_space_ship{ + icon_state = "d3-6-f" + }, +/turf/simulated/wall/shuttle/scc_space_ship/cardinal, +/area/horizon/maintenance/deck_2/wing/port) +"exI" = ( +/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/structure/lattice/catwalk/indoor, +/turf/simulated/floor/plating, +/area/horizon/shuttle/mining) +"exP" = ( +/obj/effect/floor_decal/corner_wide/yellow{ + dir = 9 + }, +/obj/structure/cable/orange{ + icon_state = "1-4" + }, /turf/simulated/floor/tiled, -/area/assembly/chargebay) +/area/horizon/engineering/reactor/indra/mainchamber) +"exT" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 6 + }, +/obj/structure/bed/stool/chair{ + dir = 8 + }, +/obj/structure/sign/directions/all{ + dir = 4; + pixel_x = 32 + }, +/turf/simulated/floor/tiled, +/area/horizon/operations/lobby) "exW" = ( /obj/effect/map_effect/window_spawner/full/reinforced/indestructible, /turf/unsimulated/floor/plating, /area/centcom/bar) -"exX" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/door/firedoor, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard/deck1) "exY" = ( /obj/effect/floor_decal/spline/plain{ dir = 4 @@ -31984,55 +31672,123 @@ dir = 4 }, /area/antag/raider) -"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{ +"eya" = ( +/obj/effect/floor_decal/industrial/warning{ dir = 4 }, -/obj/structure/lattice/catwalk/indoor/grate, -/turf/simulated/floor/plating, -/area/hallway/engineering) -"eyG" = ( -/obj/structure/sink/kitchen{ - name = "water fountain"; - pixel_y = 26 +/obj/machinery/light{ + dir = 4 }, -/obj/effect/floor_decal/corner/lime/diagonal, +/turf/simulated/floor/airless, +/area/horizon/hangar/operations) +"eyc" = ( +/obj/machinery/door/airlock/external, +/obj/machinery/access_button{ + pixel_x = -28; + pixel_y = 12; + dir = 1 + }, +/obj/effect/map_effect/marker_helper/airlock/exterior, +/obj/effect/map_effect/marker/airlock{ + master_tag = "airlock_horizon_deck_3_aft_1"; + name = "airlock_horizon_deck_3_aft_1"; + frequency = 1001 + }, +/turf/simulated/floor, +/area/horizon/maintenance/deck_3/aft/port/far) +"eyf" = ( +/obj/machinery/body_scanconsole{ + dir = 8 + }, +/obj/effect/floor_decal/corner_wide/purple/diagonal, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled/white, -/area/medical/washroom) +/area/horizon/rnd/test_range) +"eyg" = ( +/obj/structure/table/steel, +/obj/item/aiModule/reset, +/obj/effect/floor_decal/corner/dark_blue/full{ + dir = 1 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/ai/upload_foyer) +"eym" = ( +/obj/effect/floor_decal/corner_wide/lime{ + dir = 6 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/reception) +"eyo" = ( +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/power/apc/high/east, +/turf/simulated/floor/plating, +/area/horizon/engineering/drone_fabrication) +"eyq" = ( +/obj/structure/shuttle_part/scc/scout{ + icon_state = "1,7" + }, +/obj/structure/shuttle_part/scc/scout{ + icon_state = "0,7"; + pixel_x = -32 + }, +/obj/item/hullbeacon/red{ + pixel_x = -10; + pixel_y = 8 + }, +/turf/simulated/floor/plating, +/area/horizon/shuttle/canary) +"eyz" = ( +/obj/machinery/atmospherics/pipe/simple/visible/green, +/turf/simulated/floor/plating, +/area/horizon/engineering/reactor/supermatter/mainchamber) +"eyA" = ( +/obj/machinery/porta_turret, +/obj/effect/floor_decal/industrial/warning/full, +/obj/item/device/radio/intercom/south, +/turf/simulated/floor/tiled/dark, +/area/horizon/ai/upload_foyer) +"eyB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/effect/floor_decal/corner/dark_blue/full{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_3/starboard/docks) "eyH" = ( /turf/unsimulated/floor/plating, /area/centcom/bar) -"eyI" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/firealarm/north, -/obj/effect/floor_decal/corner/brown{ - dir = 5 - }, +"eyJ" = ( +/obj/effect/floor_decal/industrial/outline/red, +/obj/structure/table/rack, +/obj/item/warhead/longbow/ap, +/obj/item/warhead/longbow/ap, /obj/effect/floor_decal/industrial/warning{ - dir = 8 + dir = 9 }, -/turf/simulated/floor/tiled, -/area/hangar/operations) +/obj/structure/sign/fire{ + desc = "A danger sign which reads 'DANGER: EXPLOSIVE ORDINANCE' and 'THIS ROOM CONTAINS ORDINANCE THAT WILL KILL YOU INSTANTLY'."; + name = "\improper DANGER: EXPLOSIVE ORDINANCE sign"; + pixel_y = 32 + }, +/obj/structure/sign/securearea{ + desc = "A danger sign which reads 'DANGER: EXPLOSIVE ORDINANCE' and 'THIS ROOM CONTAINS ORDINANCE THAT WILL KILL YOU INSTANTLY'."; + name = "\improper DANGER: EXPLOSIVE ORDINANCE sign"; + pixel_x = -32 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/operations/secure_ammunition_storage) "eyL" = ( /turf/unsimulated/wall/fakepdoor{ dir = 8; @@ -32040,10 +31796,27 @@ name = "warehouse shutter" }, /area/antag/raider) -"eyU" = ( -/obj/structure/foamedmetal, -/turf/simulated/floor/plating, -/area/engineering/atmos/propulsion/starboard) +"eyM" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "cargo_1" + }, +/obj/structure/plasticflaps, +/turf/simulated/floor/tiled, +/area/horizon/operations/loading) +"eyP" = ( +/obj/effect/floor_decal/corner_wide/purple{ + dir = 4 + }, +/obj/effect/floor_decal/corner_wide/purple{ + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/xenoarch/atrium) "eyV" = ( /obj/structure/window/reinforced/holowindow, /obj/structure/bed/stool/chair/holochair, @@ -32056,87 +31829,78 @@ }, /turf/simulated/floor/holofloor/wood, /area/horizon/holodeck/source_courtroom) -"eyX" = ( -/obj/structure/railing/mapped, -/obj/structure/flora/ausbushes/ywflowers, -/obj/structure/flora/ausbushes/brflowers, -/turf/simulated/floor/grass/no_edge, -/area/rnd/hallway) -"ezh" = ( +"eyY" = ( +/obj/structure/table/standard, +/turf/simulated/floor/tiled/dark, +/area/horizon/rnd/xenobiology/xenoflora) +"eze" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/corner/brown{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/horizon/hangar/operations) +"ezf" = ( +/obj/structure/morgue{ + dir = 8 + }, +/turf/simulated/floor/tiled/freezer{ + name = "cooled tiles"; + temperature = 278.15 + }, +/area/horizon/medical/morgue) +"ezg" = ( +/obj/structure/lattice/catwalk/indoor/grate/damaged{ + color = "#4c535b" + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/starboard/far) +"ezj" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/weapons/grauwolf) +"ezl" = ( +/turf/unsimulated/floor/monotile, +/area/antag/mercenary) +"ezx" = ( /obj/structure/cable{ icon_state = "4-8" }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/structure/lattice/catwalk/indoor/grate/damaged{ - color = "#4c535b" - }, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard/deck1) -"ezl" = ( -/turf/unsimulated/floor/monotile, -/area/antag/mercenary) -"ezo" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 9 - }, -/obj/random/dirt_75, -/turf/simulated/floor/tiled, -/area/maintenance/wing/port/far) -"ezr" = ( -/obj/effect/floor_decal/corner/lime/diagonal, -/obj/item/device/gps/stationary/sccv_intrepid{ - pixel_x = -10; - pixel_y = 25 - }, -/obj/machinery/vending/wallmed1{ - pixel_x = 4; - pixel_y = 31; - req_access = null - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/shuttle/intrepid/medical) -"ezt" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/effect/floor_decal/corner/purple{ +/obj/effect/floor_decal/corner_wide/yellow{ dir = 6 }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/horizon/custodial/disposals) -"ezv" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 7 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/wood, -/area/crew_quarters/heads/hop/xo) +/turf/simulated/floor/tiled, +/area/horizon/engineering/hallway/aft) "ezz" = ( /obj/structure/table/reinforced/steel, /obj/item/storage/box/fancy/tray, /turf/simulated/floor/tiled/white, /area/shuttle/hapt) +"ezA" = ( +/turf/simulated/wall, +/area/horizon/service/bar) "ezF" = ( /obj/structure/table/steel, /obj/item/anodevice{ @@ -32151,11 +31915,22 @@ icon_state = "0-4" }, /turf/simulated/floor/tiled, -/area/outpost/research/anomaly_harvest) -"ezO" = ( -/obj/effect/floor_decal/corner_wide/yellow/diagonal, -/turf/simulated/floor/tiled/dark, -/area/engineering/break_room) +/area/horizon/rnd/xenoarch/anomaly_harvest) +"ezN" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 10 + }, +/obj/structure/bed/stool/chair/office/dark{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/horizon/engineering/lobby) +"ezP" = ( +/obj/effect/floor_decal/corner/grey{ + dir = 6 + }, +/turf/simulated/floor/lino, +/area/horizon/service/bar) "ezQ" = ( /obj/structure/flora/ausbushes/lavendergrass, /obj/effect/floor_decal/spline/plain/corner, @@ -32165,52 +31940,53 @@ /obj/structure/coatrack, /turf/simulated/floor/wood, /area/merchant_station) -"ezS" = ( -/obj/structure/flora/ausbushes/ppflowers, -/turf/simulated/floor/grass/no_edge, -/area/horizon/cafeteria) -"ezW" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 +"ezT" = ( +/obj/structure/cable{ + icon_state = "4-8" }, -/obj/machinery/light{ - dir = 8 +/obj/structure/cable{ + icon_state = "1-8" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/industrial/warning{ +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/simulated/floor/reinforced, -/area/engineering/gravity_gen) -"ezX" = ( -/obj/structure/grille/diagonal{ +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/structure/window/shuttle/scc_space_ship, -/obj/machinery/door/blast/shutters/open{ - dir = 2; - id = "bar_viewing_shutters"; - name = "Bar Viewing Shutters" - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/reinforced, -/area/horizon/bar) -"eAh" = ( -/obj/structure/cable/green{ - icon_state = "1-4" - }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/alarm/south, -/obj/structure/disposalpipe/trunk{ +/turf/simulated/floor/tiled, +/area/horizon/crew/resdeck/living_quarters_lift) +"eAa" = ( +/turf/simulated/wall, +/area/horizon/stairwell/starboard/deck_3) +"eAb" = ( +/obj/structure/closet/crate, +/obj/item/circuitboard/smes, +/obj/item/circuitboard/smes, +/obj/item/smes_coil, +/obj/item/smes_coil, +/obj/item/smes_coil/super_capacity, +/obj/item/smes_coil/super_capacity, +/obj/item/smes_coil/super_io, +/obj/item/smes_coil/super_io, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/storage_hard) +"eAj" = ( +/obj/machinery/firealarm/east, +/obj/effect/floor_decal/corner/dark_green/full{ dir = 4 }, -/turf/simulated/floor/wood/walnut, -/area/medical/smoking) +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_2/central) +"eAm" = ( +/obj/effect/floor_decal/corner/dark_blue/full{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/security/checkpoint2) "eAo" = ( /obj/effect/floor_decal/carpet{ dir = 1 @@ -32223,86 +31999,121 @@ }, /turf/simulated/floor/holofloor/carpet, /area/horizon/holodeck/source_meetinghall) -"eAs" = ( -/obj/effect/floor_decal/corner/pink/diagonal, +"eAB" = ( +/obj/effect/floor_decal/industrial/hatch/red, +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/obj/item/hullbeacon/red, +/turf/simulated/floor/reinforced/airless, +/area/horizon/engineering/reactor/indra/mainchamber) +"eAO" = ( /obj/structure/table/standard, -/obj/item/folder/envelope/empty/zat{ - pixel_x = -8; - pixel_y = 3 +/obj/item/device/flash/synthetic{ + pixel_x = -5; + pixel_y = 6 }, -/obj/item/device/analyzer{ - pixel_x = 3; - pixel_y = 8 +/obj/item/device/flash/synthetic{ + pixel_x = -5; + pixel_y = 2 + }, +/obj/item/device/flash/synthetic{ + pixel_x = -3; + pixel_y = 6 + }, +/obj/item/device/flash/synthetic{ + pixel_x = -3; + pixel_y = 2 + }, +/obj/item/storage/firstaid/empty{ + pixel_x = 7 + }, +/obj/item/storage/firstaid/empty{ + pixel_x = 7 + }, +/obj/item/device/healthanalyzer{ + pixel_x = 8 + }, +/obj/item/device/healthanalyzer{ + pixel_x = 8 + }, +/obj/item/device/assembly/prox_sensor{ + pixel_x = 8 + }, +/obj/item/device/assembly/prox_sensor{ + pixel_x = 8 + }, +/obj/effect/floor_decal/corner/black{ + dir = 6 }, -/turf/simulated/floor/tiled/dark, -/area/maintenance/wing/port/far) -"eAJ" = ( /obj/machinery/light{ dir = 4 }, -/obj/structure/closet/firecloset, -/obj/effect/floor_decal/corner/dark_green/full{ - dir = 4 +/obj/structure/cable/green{ + icon_state = "1-2" }, -/obj/effect/floor_decal/industrial/outline/firefighting_closet, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/central) -"eAM" = ( -/obj/machinery/power/apc/super/critical/south, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/effect/floor_decal/corner/dark_blue{ +/obj/machinery/camera/network/supply{ + c_tag = "Operations - Machinist Workshop Port"; dir = 8 }, -/obj/effect/floor_decal/corner/yellow, -/obj/structure/cable/yellow, -/turf/simulated/floor/tiled/dark, -/area/engineering/engine_room/turbine) -"eAN" = ( -/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled, +/area/horizon/operations/machinist) +"eAQ" = ( +/obj/machinery/door/airlock/glass_research{ + dir = 1; + name = "Telescience"; + req_access = list(7) + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/regular/open{ + dir = 8; + fail_secure = 1; + id = "telesci_lockdown"; + name = "Hazardous Containment Lockdown" + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/rnd/telesci) +"eAR" = ( +/obj/effect/map_effect/window_spawner/full/shuttle/scc{ + spawn_firedoor = 1; + spawn_grille = 1 + }, /turf/simulated/floor/plating, -/area/engineering/bluespace_drive) -"eAT" = ( -/obj/structure/cable{ - icon_state = "4-8" +/area/horizon/shuttle/quark/cargo_hold) +"eAX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/emergency{ + dir = 1 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/effect/floor_decal/industrial/warning{ + dir = 6 }, -/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/engineering/lobby) -"eAU" = ( +/turf/simulated/floor, +/area/horizon/maintenance/deck_3/aft/port/far) +"eBc" = ( /obj/effect/floor_decal/industrial/warning{ dir = 1 }, -/obj/effect/shuttle_landmark/canary/hangar{ +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/camera/network/research{ + c_tag = "Research - Isolation C"; dir = 1 }, -/obj/structure/cable{ - icon_state = "1-2" +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 4 }, -/turf/simulated/floor/plating, -/area/hangar/auxiliary) -"eBb" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume, -/obj/machinery/embedded_controller/radio/airlock/airlock_controller{ - pixel_y = 28 +/obj/machinery/alarm/south{ + alarm_id = 1501; + breach_detection = 0; + name = "Isolation A"; + rcon_setting = 3; + report_danger_level = 0; + req_one_access = list(7,47,24,11) }, -/obj/effect/map_effect/marker/airlock{ - frequency = 1003; - master_tag = "airlock_horizon_deck_1_aft_port_1"; - name = "airlock_horizon_deck_1_aft_port_1" - }, -/turf/simulated/floor/plating, -/area/maintenance/research_port) +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/xenoarch/isolation_a) "eBf" = ( /obj/effect/floor_decal/spline/plain, /obj/effect/floor_decal/industrial/warning{ @@ -32318,31 +32129,41 @@ name = "overgrowth" }, /area/horizon/holodeck/source_moghes) -"eBr" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ +"eBi" = ( +/obj/machinery/light, +/obj/effect/floor_decal/corner/dark_green{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden, +/turf/simulated/floor/tiled, +/area/horizon/security/checkpoint2) +"eBo" = ( +/obj/effect/floor_decal/corner/yellow{ dir = 5 }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/structure/cable/green{ - icon_state = "1-4" +/obj/machinery/light{ + dir = 1 }, -/turf/simulated/floor/lino, -/area/horizon/crew_quarters/lounge/bar) -"eBt" = ( -/obj/structure/cable/green{ - icon_state = "4-8" +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/reactor/supermatter/waste) +"eBs" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 + dir = 6 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/simulated/floor/tiled/dark, +/area/horizon/rnd/xenoarch/storage) +"eBv" = ( +/obj/machinery/door/blast/shutters/open{ + dir = 2; + id = "shutters_hangarseccp"; + name = "Security Checkpoint Shutter" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/full, -/area/outpost/mining_main/refinery) +/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/security/checkpoint) "eBx" = ( /obj/effect/mist, /turf/simulated/floor/exoplanet/water/shallow{ @@ -32355,6 +32176,14 @@ /obj/effect/floor_decal/corner/blue/full, /turf/simulated/floor/holofloor/tiled, /area/horizon/holodeck/source_lasertag) +"eBC" = ( +/obj/machinery/light, +/obj/effect/floor_decal/industrial/hatch/red, +/obj/machinery/atmospherics/binary/pump/high_power{ + name = "Propellant Bleed Pump" + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/atmos/propulsion) "eBE" = ( /obj/structure/sink{ dir = 8; @@ -32368,16 +32197,74 @@ icon_state = "dark_preview" }, /area/centcom/holding) -"eBJ" = ( -/turf/simulated/floor/tiled/white, -/area/medical/gen_treatment) -"eBT" = ( -/obj/effect/floor_decal/corner/yellow{ - dir = 10 +"eBI" = ( +/obj/structure/bed/stool/chair/folding{ + dir = 8 }, -/obj/machinery/light, -/turf/simulated/floor/tiled/dark, -/area/engineering/engine_waste) +/turf/simulated/floor/plating, +/area/horizon/engineering/reactor/indra/office) +"eBK" = ( +/obj/effect/floor_decal/corner/dark_green/full{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/horizon/hangar/intrepid/interstitial) +"eBM" = ( +/obj/machinery/alarm/north, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/lattice/catwalk/indoor/grate/old, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/research) +"eBQ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 9 + }, +/turf/simulated/wall/shuttle/unique/scc/mining{ + icon_state = "4,8" + }, +/area/horizon/shuttle/mining) +"eBS" = ( +/obj/effect/floor_decal/spline/plain/black{ + dir = 8 + }, +/obj/effect/floor_decal/corner/dark_green, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/horizon/crew/fitness/gym) +"eBU" = ( +/obj/structure/statue/gusoku, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/unsimulated/floor/dark_monotile, +/area/antag/actor) +"eBV" = ( +/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/maintenance/deck_1/wing/starboard) "eBX" = ( /obj/effect/floor_decal/corner/black{ dir = 9 @@ -32393,139 +32280,113 @@ }, /turf/simulated/floor/holofloor/lino, /area/horizon/holodeck/source_chapel) -"eCc" = ( -/obj/machinery/light{ - dir = 8 +"eCg" = ( +/obj/random/junk, +/obj/effect/floor_decal/industrial/warning{ + dir = 5 }, -/obj/random/pottedplant, -/obj/structure/engineer_maintenance/electric, -/obj/structure/engineer_maintenance/pipe{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/medical/psych) -"eCd" = ( +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/research) +"eCm" = ( /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/firedoor, -/obj/machinery/door/airlock/glass{ - dir = 1 - }, /obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/full, -/area/hallway/primary/central_one) -"eCh" = ( -/obj/structure/railing/mapped{ - dir = 8 +/obj/machinery/button/remote/blast_door{ + dir = 8; + id = "holodeck_alpha_shutters"; + name = "Holodeck Privacy Shutters"; + pixel_x = -23; + req_one_access = list(38) }, -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/warning{ +/obj/effect/floor_decal/corner/dark_green{ dir = 9 }, -/obj/structure/closet, -/obj/random/loot, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard/deck1) -"eCj" = ( -/obj/structure/bed/stool/chair/padded/brown{ +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_3/central) +"eCo" = ( +/obj/structure/grille, +/turf/simulated/floor, +/area/horizon/maintenance/deck_3/aft/port/far) +"eCv" = ( +/obj/machinery/door/airlock/hatch{ + dir = 4; + name = "Propulsion"; + req_one_access = list(11,24) + }, +/obj/machinery/atmospherics/pipe/simple/visible/black{ dir = 4 }, -/turf/simulated/floor/carpet, -/area/bridge/cciaroom) -"eCu" = ( -/obj/structure/flora/ausbushes/brflowers, -/turf/simulated/floor/grass/no_edge, -/area/horizon/cafeteria) +/obj/machinery/door/firedoor, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/atmos/propulsion/starboard) "eCw" = ( /obj/structure/shuttle/engine/propulsion/burst/right, /turf/unsimulated/floor/plating, /area/shuttle/distress) -"eCB" = ( -/obj/machinery/door/airlock/freezer{ - dir = 1; - id_tag = "main_unit_1"; - name = "Unit 1" - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/white, -/area/horizon/crew_quarters/fitness/changing) -"eCE" = ( -/obj/effect/floor_decal/corner_wide/orange{ +"eCz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 5 }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/light/small/emergency, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/hangar/starboard) +"eCO" = ( /obj/structure/cable/green{ - icon_state = "1-2" + icon_state = "1-4" }, -/obj/machinery/light_switch{ - pixel_x = -23; - pixel_y = 27 +/obj/structure/cable/green{ + icon_state = "4-8" }, -/turf/simulated/floor/tiled/white, -/area/medical/pharmacy) -"eCJ" = ( -/obj/effect/floor_decal/spline/plain{ +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/obj/structure/engineer_maintenance/pipe{ dir = 8 }, -/obj/machinery/alarm/west, -/turf/simulated/floor/carpet/rubber, -/area/tcommsat/entrance) -"eCN" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 5 +/obj/structure/engineer_maintenance/electric{ + dir = 1 }, -/obj/machinery/disposal/small/south, -/obj/structure/disposalpipe/trunk, -/turf/simulated/floor/tiled, -/area/operations/lobby) +/turf/simulated/floor/wood, +/area/horizon/repoffice/consular_two) "eCQ" = ( /obj/structure/flora/ausbushes/fullgrass, /turf/unsimulated/floor/grass, /area/antag/actor) -"eDa" = ( -/obj/item/device/radio/intercom/south, +"eDg" = ( /obj/effect/floor_decal/corner/brown/full{ - dir = 4 - }, -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ dir = 1 }, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/engineer_maintenance/electric/wall, /turf/simulated/floor/tiled, -/area/operations/loading) -"eDc" = ( -/obj/structure/window/shuttle/scc_space_ship, -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/shutters{ - dir = 2; - id = "shutters_deck2_hydroponicswindowssafety"; - name = "Viewing Shutter" - }, -/obj/effect/landmark/entry_point/fore{ - name = "fore, d1 garden" +/area/horizon/operations/warehouse) +"eDj" = ( +/obj/structure/cable/green{ + icon_state = "0-8" }, +/obj/machinery/shieldwallgen, +/obj/effect/floor_decal/industrial/outline/security, /turf/simulated/floor/plating, -/area/horizon/hydroponics/lower) -"eDe" = ( -/obj/effect/floor_decal/corner_wide/purple{ - dir = 5 - }, -/obj/effect/floor_decal/corner_wide/purple{ - dir = 8 - }, -/obj/structure/closet/walllocker/medical/firstaid{ - pixel_y = 32 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenoarch_atrium) +/area/horizon/engineering/bluespace_drive) "eDm" = ( /obj/structure/table/reinforced, /obj/random/pottedplant_small{ @@ -32534,76 +32395,21 @@ }, /turf/simulated/floor/tiled, /area/horizon/security/brig) -"eDn" = ( -/obj/structure/sign/securearea{ - pixel_x = -32 - }, -/obj/effect/floor_decal/corner/yellow{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, +"eDs" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, /turf/simulated/floor/tiled/dark, -/area/engineering/storage/tech) -"eDq" = ( -/turf/simulated/open, -/area/horizon/hallway/deck_three/primary/port) -"eDr" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/structure/noticeboard{ - pixel_y = 32 +/area/horizon/maintenance/deck_3/aft/port/far) +"eDt" = ( +/obj/effect/floor_decal/corner_wide/green{ + dir = 6 }, -/obj/machinery/door/blast/shutters{ - dir = 4; - id = "cargo_desk" - }, -/obj/machinery/ringer_button{ - id = "cargo_ringer"; - pixel_x = 6; - pixel_y = 5 - }, -/obj/machinery/door/window/desk/westright{ - name = "Operations Desk Interior Access"; - req_access = list(50) - }, -/turf/simulated/floor/tiled/dark/full, -/area/operations/office) -"eDu" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/bridge/upperdeck) -"eDv" = ( -/obj/machinery/door/airlock/glass_medical{ - dir = 1; - name = "Medical"; - req_access = list(5) - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 2; - icon_state = "shutter0"; - id = "LCKDshutters"; - name = "Medical Lockdown Shutters"; - opacity = 0 - }, -/obj/effect/map_effect/door_helper/unres{ +/obj/effect/floor_decal/corner_wide/green{ dir = 1 }, -/turf/simulated/floor/tiled/full, -/area/hallway/medical) +/obj/machinery/firealarm/east, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/exam) "eDw" = ( /obj/item/ammo_magazine/mc9mm{ pixel_x = -3; @@ -32632,87 +32438,91 @@ /obj/machinery/atmospherics/pipe/simple/hidden, /turf/simulated/wall/r_wall, /area/horizon/security/brig) -"eDD" = ( -/obj/effect/map_effect/door_helper/unres, -/obj/machinery/door/firedoor{ - dir = 4 +"eDz" = ( +/obj/effect/map_effect/window_spawner/full/borosilicate/reinforced/firedoor, +/obj/structure/cable/orange{ + icon_state = "4-8" }, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "bridge blast"; - name = "Bridge Blast Doors"; - opacity = 0 - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/airlock/glass_command{ - dir = 1; - id_tag = "bridge_foyer"; - name = "Bridge"; - req_one_access = list(19) - }, -/turf/simulated/floor/tiled, -/area/bridge) -"eDE" = ( -/obj/machinery/air_sensor{ - frequency = 1442; - id_tag = "starboard_prop_sensor"; - output = 31 - }, -/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/reactor/indra/mainchamber) +"eDB" = ( +/obj/machinery/alarm/east, +/obj/machinery/papershredder, +/obj/effect/floor_decal/corner/beige{ dir = 6 }, -/turf/simulated/floor/reinforced/airless, -/area/engineering/atmos/propulsion/starboard) -"eDN" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/corner/red/diagonal, -/obj/effect/floor_decal/spline/plain{ +/turf/simulated/floor/tiled, +/area/horizon/crew/vacantoffice) +"eDF" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/structure/table/steel, +/obj/item/storage/toolbox/electrical, +/obj/item/storage/toolbox/mechanical{ + pixel_y = -9 + }, +/obj/structure/railing/mapped{ dir = 8 }, -/turf/simulated/floor/lino, -/area/horizon/cafeteria) +/turf/simulated/floor/tiled/dark, +/area/horizon/weapons/grauwolf) +"eDG" = ( +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/medical{ + dir = 4; + name = "Recovery"; + req_access = list(5) + }, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/ward) "eDQ" = ( /turf/unsimulated/floor/monotile, /area/antag/burglar) -"eDR" = ( -/obj/effect/floor_decal/corner/dark_green{ +"eDS" = ( +/obj/effect/floor_decal/industrial/hatch/red, +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/button/remote/blast_door{ + dir = 1; + id = "r-ust_vent"; + name = "INDRA Core Vent"; + pixel_y = 28 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/reactor/indra/mainchamber) +"eDT" = ( +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 5 }, -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/extinguisher_cabinet/north, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_two) -"eDV" = ( -/obj/effect/floor_decal/corner/black{ +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 9 }, -/obj/effect/floor_decal/industrial/loading/yellow{ +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/corner/mauve{ dir = 4 }, -/turf/simulated/floor/tiled/dark, -/area/hangar/auxiliary) -"eDW" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/effect/floor_decal/industrial/outline_segment/yellow{ - dir = 5 +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/chemistry) +"eEa" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 9 }, -/turf/simulated/floor/tiled/dark, -/area/maintenance/wing/starboard/far) -"eDX" = ( -/obj/machinery/hologram/holopad, -/obj/effect/floor_decal/corner/dark_blue/diagonal, -/turf/simulated/floor/tiled/dark, -/area/security/checkpoint2) -"eDY" = ( -/obj/machinery/vending/zora, -/obj/machinery/alarm/east, -/obj/effect/floor_decal/industrial/outline/grey, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/cafeteria) +/obj/structure/bed/stool/chair/padded/brown, +/turf/simulated/floor/wood, +/area/horizon/service/cafeteria) "eEb" = ( /obj/effect/floor_decal/corner_wide/paleblue/full, /obj/effect/floor_decal/industrial/outline/security, @@ -32737,59 +32547,72 @@ /obj/item/clothing/suit/armor/carrier/heavy/sec, /turf/simulated/floor/tiled/dark/full, /area/horizon/security/armoury) -"eEc" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 8 - }, -/obj/structure/bed/stool/chair/shuttle/double{ - pixel_x = 8 - }, -/obj/structure/bed/stool/chair/shuttle/double{ - pixel_x = -8 - }, -/obj/effect/floor_decal/spline/plain/black{ - dir = 1 - }, -/obj/machinery/alarm/east{ - req_one_access = list(11, 24, 47, 65) +"eEf" = ( +/obj/machinery/atmospherics/binary/pump/fuel{ + dir = 8; + name = "Canister to Thrusters" }, /turf/simulated/floor/tiled/dark/full, -/area/shuttle/intrepid/main_compartment) -"eEi" = ( -/obj/structure/railing/mapped, -/obj/structure/platform/ledge{ - dir = 1 - }, -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/structure/platform/ledge{ +/area/horizon/shuttle/intrepid/port_storage) +"eEh" = ( +/obj/structure/bed/stool/chair/padded/brown{ dir = 8 }, -/turf/simulated/open, -/area/operations/office) +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 5 + }, +/turf/simulated/floor/wood, +/area/horizon/hallway/primary/deck_3/central) "eEl" = ( /turf/simulated/floor/holofloor/beach/sand{ dir = 4; icon_state = "beach" }, /area/horizon/holodeck/source_beach) -"eEm" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 +"eEn" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 +/obj/structure/tank_wall/nitrogen{ + icon_state = "n3" }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/lattice/catwalk/indoor/grate, /turf/simulated/floor/plating, -/area/hangar/intrepid) +/area/horizon/engineering/atmos/air) +"eEo" = ( +/obj/structure/table/steel, +/obj/item/reagent_containers/food/drinks/waterbottle{ + pixel_x = -4; + pixel_y = 6 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/carpet/rubber, +/area/horizon/crew/fitness/gym) +"eEr" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 5 + }, +/obj/effect/floor_decal/corner/yellow/diagonal, +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/aft_airlock) +"eEt" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/firedoor, +/obj/effect/floor_decal/industrial/hatch_door/red{ + dir = 1 + }, +/obj/machinery/door/airlock/maintenance_hatch{ + dir = 1 + }, +/obj/effect/decal/cleanable/cobweb, +/obj/effect/decal/cleanable/cobweb2, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/maintenance/deck_2/wing/starboard/nacelle) "eEu" = ( /obj/machinery/light{ dir = 1 @@ -32798,217 +32621,17 @@ icon_state = "dark_preview" }, /area/centcom/control) -"eEE" = ( -/obj/machinery/atmospherics/pipe/simple/visible/universal, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor, -/area/horizon/maintenance/deck_three/aft/starboard) -"eEK" = ( -/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, -/turf/simulated/floor/tiled/dark/full, -/area/merchant_station/warehouse) -"eEL" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 5 - }, -/obj/machinery/firealarm/north, -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/port/docks) -"eEM" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/door/airlock/maintenance{ - dir = 1; - req_one_access = list(5,12) - }, -/obj/effect/floor_decal/industrial/hatch/yellow, +"eEy" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/green{ icon_state = "1-2" }, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "bridge blast"; - name = "Bridge Blast Doors"; - opacity = 0 - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/firedoor, -/turf/simulated/floor, -/area/maintenance/substation/command) -"eER" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/engine_room) -"eES" = ( -/obj/structure/grille, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "bridge blast"; - name = "Bridge Blast Doors"; - opacity = 0 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/shutters/open{ - dir = 4; - id = "shutters_deck3_bridgesafety"; - name = "Safety Shutter" - }, -/obj/structure/window/shuttle/scc_space_ship/cardinal, -/turf/simulated/floor/plating, -/area/bridge/minibar) -"eET" = ( -/obj/machinery/atmospherics/binary/pump/high_power{ - dir = 4; - name = "Phoron to Propellant Line" - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/dark, -/area/engineering/atmos/propulsion) -"eEV" = ( -/obj/structure/flora/grass/jungle{ - icon_state = "grassa2" - }, -/turf/simulated/floor/exoplanet/water/shallow{ - icon = 'icons/turf/flooring/exoplanet/moghes.dmi'; - icon_state = "beachcorner" - }, -/area/horizon/holodeck/source_moghes) -"eEX" = ( -/obj/effect/floor_decal/corner/mauve/full{ - dir = 8 - }, -/obj/machinery/vending/coffee{ - pixel_y = 24; - density = 0 - }, -/obj/machinery/camera/network/research{ - c_tag = "Research - Conference Room"; - pixel_y = 9; - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/conference) -"eEY" = ( -/turf/simulated/wall/shuttle/unique/mercenary/small{ - icon_state = "4,2" - }, -/area/shuttle/syndicate_elite) -"eEZ" = ( -/turf/simulated/wall/shuttle/scc_space_ship/cardinal, -/area/horizon/security/hallway) -"eFd" = ( -/obj/machinery/door/airlock/glass_centcom{ - dir = 1; - name = "CCIA Auxillary Office"; - req_access = list(109) - }, -/turf/unsimulated/floor, -/area/centcom/control) -"eFe" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "cargo_1" - }, -/turf/simulated/floor/tiled, -/area/operations/loading) -"eFg" = ( -/obj/machinery/door/airlock/glass{ - dir = 1; - name = "Mess Hall" - }, -/obj/effect/floor_decal/corner/paleblue/full, -/turf/unsimulated/floor{ - icon_state = "dark" - }, -/area/centcom/legion) -"eFi" = ( -/obj/machinery/firealarm/east, -/obj/effect/floor_decal/corner/dark_green/full{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"eFk" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 10 - }, -/obj/structure/extinguisher_cabinet/south, -/turf/simulated/floor/tiled, -/area/horizon/security/hallway) -"eFl" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/floor_decal/corner/dark_blue/full{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/storage/eva) -"eFm" = ( -/obj/effect/floor_decal/corner/dark_green/full, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"eFn" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/simple/visible/black, -/turf/space/dynamic, -/area/horizon/exterior) -"eFo" = ( /obj/structure/cable/green{ - icon_state = "4-8" + icon_state = "2-8" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/corner/brown{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/refinery) -"eFq" = ( -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/central) -"eFD" = ( -/obj/effect/floor_decal/corner_wide/blue{ - dir = 10 - }, -/obj/effect/floor_decal/corner_wide/yellow{ - dir = 5 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/machinery/firealarm/north, -/turf/simulated/floor/reinforced, -/area/bridge/selfdestruct) -"eFH" = ( +/turf/simulated/floor/wood, +/area/horizon/repoffice/consular_two) +"eEA" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -33025,29 +32648,168 @@ icon_state = "4-8" }, /turf/simulated/floor/tiled, -/area/bridge/supply) -"eFI" = ( -/obj/structure/window/shuttle/scc_space_ship, -/obj/structure/grille, -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 2; - icon_state = "shutter0"; - id = "LCKDshutters"; - name = "MedBay Lockdown Shutters"; - opacity = 0 +/area/horizon/command/bridge/bridge_crew) +"eEB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/medical/equipment) -"eFN" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/structure/closet, -/obj/random/colored_jumpsuit, -/obj/item/clothing/under/color/black, -/obj/item/clothing/gloves/black, -/turf/simulated/floor, -/area/horizon/maintenance/deck_three/aft/starboard) +/turf/simulated/floor/wood, +/area/horizon/crew/lounge) +"eED" = ( +/obj/structure/platform_stairs/full/east_west_cap{ + dir = 8 + }, +/obj/structure/platform/cutout, +/turf/simulated/floor/tiled, +/area/horizon/rnd/xenobiology/xenoflora) +"eEI" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/table/reinforced/steel, +/obj/item/clipboard, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/bluespace_drive/monitoring) +"eEJ" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/pharmacy) +"eEK" = ( +/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, +/turf/simulated/floor/tiled/dark/full, +/area/merchant_station/warehouse) +"eEV" = ( +/obj/structure/flora/grass/jungle{ + icon_state = "grassa2" + }, +/turf/simulated/floor/exoplanet/water/shallow{ + icon = 'icons/turf/flooring/exoplanet/moghes.dmi'; + icon_state = "beachcorner" + }, +/area/horizon/holodeck/source_moghes) +"eEY" = ( +/turf/simulated/wall/shuttle/unique/mercenary/small{ + icon_state = "4,2" + }, +/area/shuttle/syndicate_elite) +"eEZ" = ( +/turf/simulated/wall/shuttle/scc_space_ship/cardinal, +/area/horizon/security/hallway) +"eFd" = ( +/obj/machinery/door/airlock/glass_centcom{ + dir = 1; + name = "CCIA Auxillary Office"; + req_access = list(109) + }, +/turf/unsimulated/floor, +/area/centcom/control) +"eFg" = ( +/obj/machinery/door/airlock/glass{ + dir = 1; + name = "Mess Hall" + }, +/obj/effect/floor_decal/corner/paleblue/full, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/legion) +"eFk" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/corner/dark_blue{ + dir = 10 + }, +/obj/structure/extinguisher_cabinet/south, +/turf/simulated/floor/tiled, +/area/horizon/security/hallway) +"eFn" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/simple/visible/black, +/turf/space/dynamic, +/area/horizon/exterior) +"eFs" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/full, +/area/horizon/command/bridge/upperdeck) +"eFu" = ( +/obj/effect/floor_decal/corner_wide/purple{ + dir = 10 + }, +/obj/effect/floor_decal/corner_wide/purple/diagonal, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/camera/network/research{ + c_tag = "Research - Firing Range"; + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/test_range) +"eFw" = ( +/obj/structure/platform_stairs/full{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/shuttle/intrepid/junction_compartment) +"eFB" = ( +/turf/simulated/wall, +/area/horizon/rnd/eva) +"eFM" = ( +/obj/effect/floor_decal/corner/mauve/diagonal, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/structure/disposalpipe/segment{ + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/lab) +"eFP" = ( +/obj/machinery/camera/network/first_deck{ + c_tag = "First Deck - Atmospherics Entrance" + }, +/obj/effect/floor_decal/corner/dark_green/full{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_1/central) +"eFR" = ( +/obj/effect/floor_decal/corner/red/diagonal, +/obj/effect/floor_decal/spline/plain{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/horizon/maintenance/deck_3/aft/holodeck) "eFS" = ( /obj/effect/floor_decal/carpet{ dir = 10 @@ -33061,42 +32823,48 @@ }, /turf/simulated/floor/holofloor/carpet, /area/horizon/holodeck/source_meetinghall) -"eFY" = ( -/obj/structure/flora/ausbushes/sparsegrass, -/obj/item/device/radio/intercom/west, -/obj/machinery/portable_atmospherics/hydroponics/soil, -/turf/simulated/floor/grass/no_edge, -/area/horizon/hydroponics/garden) +"eFV" = ( +/turf/simulated/wall/r_wall, +/area/horizon/rnd/xenoarch/storage) +"eFW" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/effect/floor_decal/corner/black{ + dir = 6 + }, +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/hangar/intrepid) "eGa" = ( /obj/effect/shuttle_landmark/horizon/exterior/deck_3/fore, /turf/template_noop, /area/template_noop) -"eGd" = ( -/obj/random/pottedplant, -/obj/structure/railing/mapped, -/turf/simulated/floor/carpet/rubber, -/area/bridge/controlroom) -"eGe" = ( +"eGf" = ( +/obj/structure/viewport/zavod, +/turf/template_noop, +/area/horizon/weapons/grauwolf) +"eGg" = ( /obj/structure/cable/green{ - icon_state = "4-8" + icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 + dir = 6 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 + dir = 6 }, -/obj/machinery/door/airlock/medical{ - dir = 4; - name = "Staff Facilities"; - req_access = list(5) - }, -/obj/machinery/door/firedoor, /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/simulated/floor/tiled/full, -/area/medical/smoking) +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/service/starboard) "eGj" = ( /obj/effect/floor_decal/corner/yellow{ dir = 4 @@ -33119,70 +32887,36 @@ icon_state = "dark_preview" }, /area/centcom/control) -"eGm" = ( -/obj/structure/window/shuttle/scc_space_ship/cardinal, -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/structure/cable/green{ - icon_state = "0-2" - }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "bridge blast"; - name = "Bridge Blast Doors"; - opacity = 0 - }, -/obj/machinery/door/blast/shutters{ - dir = 4; - id = "shutters_deck3_captain"; - name = "Safety Shutter" - }, -/turf/simulated/floor/plating, -/area/crew_quarters/captain) -"eGn" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/firedoor, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/full, -/area/horizon/hallway/deck_three/primary/central) "eGo" = ( /obj/structure/window/reinforced/crescent{ dir = 8 }, /turf/unsimulated/floor, /area/centcom/holding) -"eGp" = ( -/obj/structure/cable/green{ - icon_state = "4-8" +"eGq" = ( +/obj/effect/map_effect/window_spawner/full/borosilicate/reinforced/firedoor, +/turf/simulated/floor/tiled/dark, +/area/horizon/rnd/xenoarch/storage) +"eGr" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 10 }, /obj/structure/cable/green{ - icon_state = "2-8" + icon_state = "0-4" }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/structure/cable/green{ - icon_state = "1-4" +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 }, -/obj/structure/disposalpipe/junction{ - dir = 8 +/obj/structure/engineer_maintenance/electric{ + dir = 4 }, -/turf/simulated/floor/tiled/white, -/area/hallway/medical) +/obj/structure/engineer_maintenance/pipe, +/obj/machinery/power/apc/critical/south, +/turf/simulated/floor/tiled, +/area/horizon/stairwell/starboard/deck_2) "eGt" = ( /turf/simulated/floor/shuttle/black, /area/centcom/specops) -"eGu" = ( -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled/dark/full, -/area/bridge/aibunker) "eGv" = ( /obj/structure/bed/stool/chair/shuttle{ dir = 8 @@ -33192,62 +32926,44 @@ }, /turf/simulated/floor/carpet, /area/shuttle/hapt) -"eGx" = ( +"eGz" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/structure/lattice/catwalk/indoor/grate/dark, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 + dir = 6 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass{ - dir = 4; - name = "Lounge" - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/lounge/secondary) -"eGy" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/heads/cmo) -"eGC" = ( -/obj/machinery/bluespacedrive, -/obj/structure/cable/orange{ - icon_state = "0-4" - }, -/obj/machinery/atmospherics/portables_connector{ - dir = 1 + dir = 6 }, +/obj/structure/railing/mapped, /turf/simulated/floor/plating, -/area/engineering/bluespace_drive) -"eGG" = ( -/obj/effect/decal/cleanable/ash, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"eGO" = ( -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 4 +/area/horizon/maintenance/deck_2/wing/port/near) +"eGK" = ( +/obj/structure/table/wood/gamblingtable, +/obj/item/deck/cards{ + pixel_y = -6 }, /turf/simulated/floor/wood, -/area/chapel/office) +/area/horizon/maintenance/deck_2/wing/port) +"eGN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/spline/fancy/wood, +/turf/simulated/floor/wood, +/area/horizon/service/bar) +"eGR" = ( +/obj/machinery/power/terminal{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "0-2" + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/shields) "eGS" = ( /obj/machinery/light{ dir = 8 @@ -33256,55 +32972,81 @@ icon_state = "dark_preview" }, /area/centcom/control) +"eGT" = ( +/obj/structure/window/shuttle/scc_space_ship, +/obj/structure/grille, +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/shutters/open{ + dir = 8; + id = "bar_viewing_shutters"; + name = "Bar Viewing Shutters" + }, +/obj/effect/landmark/entry_point/starboard{ + name = "starboard, bar lounge" + }, +/turf/simulated/floor/plating, +/area/horizon/service/bar) +"eGV" = ( +/obj/structure/bed/stool/chair/padded/red{ + dir = 8 + }, +/obj/machinery/camera/network/service{ + c_tag = "Service - Deck 2 - Booth 1"; + dir = 8 + }, +/turf/simulated/floor/carpet/red, +/area/horizon/service/dining_hall) "eGX" = ( /obj/effect/decal/cleanable/cobweb2, /turf/simulated/floor/exoplanet/barren/raskara, /area/centcom/shared_dream) -"eGZ" = ( -/turf/simulated/wall/r_wall, -/area/maintenance/engineering_ladder) -"eHp" = ( -/obj/structure/table/steel, -/turf/simulated/floor/tiled, -/area/medical/morgue/lower) -"eHq" = ( -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ +"eHa" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, /obj/structure/cable/green{ icon_state = "4-8" }, -/obj/machinery/door/airlock/external{ - dir = 4; - id_tag = "riso2"; - name = "Isolation B"; - req_access = list(47) +/obj/effect/floor_decal/corner/dark_blue/diagonal, +/obj/effect/floor_decal/spline/plain/black{ + dir = 8 }, -/obj/machinery/door/blast/regular/open{ - id = "iso_b"; - name = "Safety Blast Door" +/turf/simulated/floor/tiled/dark, +/area/horizon/shuttle/intrepid/junction_compartment) +"eHd" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 9 }, -/turf/simulated/floor/tiled/white, -/area/rnd/isolation_b) -"eHr" = ( -/obj/structure/closet/hazmat/research, -/obj/item/clothing/mask/gas/alt, -/obj/item/tank/oxygen, -/obj/effect/floor_decal/corner/mauve/full{ - dir = 4 +/turf/simulated/floor/wood, +/area/horizon/service/cafeteria) +"eHe" = ( +/obj/structure/railing/mapped{ + dir = 8 }, -/obj/machinery/button/remote/airlock{ - id = "xeno_entrance_int_b"; - name = "Xenobiology External Access Bolts"; - req_access = list(55); - specialfunctions = 4; - dir = 4; - pixel_x = 23; - desiredstate = 1 +/obj/structure/railing/mapped{ + dir = 1 }, -/obj/machinery/alarm/south, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology) +/turf/simulated/floor/plating, +/area/horizon/engineering/reactor/supermatter/mainchamber) +"eHu" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/effect/floor_decal/corner/brown{ + dir = 10 + }, +/obj/structure/table/standard, +/obj/item/device/suit_cooling_unit, +/obj/item/storage/toolbox/mechanical, +/obj/item/storage/belt/utility, +/obj/item/stack/rods/full{ + pixel_y = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/operations/mining_main/eva) "eHv" = ( /obj/effect/floor_decal/corner/green{ dir = 5 @@ -33314,6 +33056,10 @@ }, /turf/unsimulated/floor, /area/centcom/bar) +"eHz" = ( +/obj/structure/table/wood, +/turf/simulated/floor/carpet, +/area/horizon/command/bridge/cciaroom) "eHI" = ( /obj/machinery/door/blast/odin{ _wifi_id = "odin_arrivals_lockdown"; @@ -33326,34 +33072,18 @@ /obj/effect/floor_decal/industrial/hatch/yellow, /turf/unsimulated/floor, /area/centcom/checkpoint/aft) -"eHJ" = ( -/obj/machinery/drone_fabricator, -/turf/simulated/floor/greengrid/nitrogen, -/area/engineering/drone_fabrication) -"eHT" = ( -/obj/structure/plasticflaps/airtight, -/obj/effect/floor_decal/industrial/hatch_door/yellow{ - dir = 8 +"eHV" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 1 }, -/obj/machinery/door/firedoor, -/obj/effect/map_effect/door_helper/lock, -/obj/machinery/door/airlock/service{ - id_tag = "hydro_hazard"; - name = "Hazardous Specimens"; - req_access = list(35) +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 }, -/obj/machinery/atmospherics/pipe/simple/hidden, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/hydroponics/lower) -"eHU" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 4 +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 }, -/obj/structure/bed/stool/chair/sofa/right/red{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/rnd/hallway) +/turf/simulated/floor/tiled, +/area/horizon/engineering/break_room) "eHW" = ( /obj/machinery/door/blast/regular/open{ dir = 2; @@ -33362,15 +33092,23 @@ /obj/effect/map_effect/window_spawner/full/shuttle/raider, /turf/simulated/floor/plating, /area/shuttle/skipjack) -"eHZ" = ( -/obj/effect/floor_decal/corner_wide/yellow{ +"eHY" = ( +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 6 }, -/obj/structure/cable{ - icon_state = "1-2" +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 }, -/turf/simulated/floor/tiled, -/area/engineering/bluespace_drive) +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor, +/area/horizon/maintenance/deck_3/aft/holodeck) "eIb" = ( /obj/structure/railing/mapped{ dir = 8 @@ -33381,43 +33119,47 @@ /obj/structure/lattice/catwalk, /turf/simulated/floor/airless, /area/horizon/exterior) -"eIk" = ( -/obj/machinery/door/firedoor, -/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 +"eIj" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/structure/railing/mapped{ + dir = 1 }, -/obj/effect/floor_decal/industrial/warning{ +/obj/item/storage/toolbox/mechanical, +/obj/structure/railing/mapped{ dir = 8 }, -/turf/simulated/floor/reinforced, -/area/shuttle/quark/cockpit) -"eIp" = ( -/obj/effect/floor_decal/corner/dark_green/diagonal, /obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/horizon/operations/machinist) +"eIn" = ( +/obj/structure/railing/mapped, +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/sign/directions/prop{ + dir = 1; + pixel_y = 24 + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/aft) +"eIu" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 5 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 }, -/obj/machinery/status_display{ - pixel_x = -32 - }, -/obj/effect/floor_decal/industrial/loading/yellow, -/obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled, -/area/horizon/stairwell/central) -"eIr" = ( -/obj/machinery/telecomms/processor/preset_one, -/turf/simulated/floor/bluegrid, -/area/tcommsat/chamber) -"eIt" = ( -/obj/structure/table/glass{ - table_reinf = "glass" - }, -/obj/effect/floor_decal/corner/paleblue/diagonal, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/heads/cmo) +/area/horizon/security/checkpoint2) "eIv" = ( /obj/effect/floor_decal/spline/plain{ dir = 9 @@ -33425,41 +33167,15 @@ /obj/item/device/binoculars/spyglass, /turf/simulated/floor/exoplanet/barren, /area/centcom/shared_dream) -"eIC" = ( -/obj/structure/railing/mapped{ +"eIK" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black{ dir = 4 }, -/obj/effect/floor_decal/corner/black{ - dir = 6 - }, -/obj/effect/floor_decal/corner/dark_green{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/loading/yellow{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/warning{ +/obj/effect/floor_decal/industrial/warning/corner{ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/hangar/intrepid) -"eIE" = ( -/obj/structure/tank_wall/nitrogen{ - density = 0; - icon_state = "n5"; - opacity = 0 - }, -/turf/simulated/floor/reinforced/nitrogen, -/area/engineering/atmos/air) -"eIJ" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/structure/tank_wall/nitrous_oxide{ - icon_state = "h7" - }, -/turf/simulated/floor/plating, -/area/engineering/atmos/air) +/area/horizon/engineering/atmos/propulsion) "eIL" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 1 @@ -33490,21 +33206,29 @@ }, /turf/simulated/floor/tiled, /area/horizon/security/brig) -"eIS" = ( -/turf/simulated/wall/r_wall, -/area/horizon/custodial) -"eIU" = ( -/obj/machinery/optable, -/turf/simulated/floor/tiled/white, -/area/medical/ors) -"eJc" = ( -/obj/effect/floor_decal/spline/fancy, -/obj/machinery/computer/ship/helm{ - dir = 1; - req_access = list(19) +"eIR" = ( +/obj/machinery/firealarm/west, +/obj/machinery/appliance/cooker/stove, +/obj/machinery/light/small{ + dir = 1 }, -/turf/simulated/floor/carpet/rubber, -/area/bridge/controlroom) +/turf/simulated/floor/tiled/dark/full, +/area/horizon/shuttle/intrepid/buffet) +"eIX" = ( +/obj/structure/shuttle_part/scc_space_ship{ + icon_state = "d2-1" + }, +/turf/simulated/wall, +/area/horizon/maintenance/deck_2/cargo_compartment) +"eIY" = ( +/obj/machinery/atmospherics/valve{ + dir = 4; + name = "Propellant Line to Heat Exchangers" + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/atmos/propulsion/starboard) "eJh" = ( /obj/effect/floor_decal/industrial/warning{ dir = 1 @@ -33531,161 +33255,120 @@ }, /turf/unsimulated/floor, /area/antag/ninja) -"eJn" = ( -/obj/machinery/light/small{ - dir = 1 +"eJp" = ( +/obj/structure/extinguisher_cabinet/west, +/obj/effect/floor_decal/corner_wide/green{ + dir = 9 }, -/obj/effect/floor_decal/corner/green/full{ - dir = 1 - }, -/obj/machinery/vending/lavatory, /turf/simulated/floor/tiled/white, -/area/operations/break_room) -"eJw" = ( -/obj/structure/grille, -/obj/structure/window/shuttle/scc_space_ship, -/obj/machinery/door/firedoor, -/obj/effect/landmark/entry_point/fore{ - name = "fore, chapel" +/area/horizon/medical/hallway/upper) +"eJt" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 6 }, -/turf/simulated/floor/plating, -/area/chapel/office) +/turf/simulated/floor/tiled/dark, +/area/horizon/ai/upload_foyer) "eJx" = ( /obj/effect/floor_decal/industrial/warning{ dir = 10 }, /turf/unsimulated/floor, /area/antag/mercenary) -"eJC" = ( -/turf/simulated/wall, -/area/horizon/bar/backroom) -"eJG" = ( -/obj/structure/cable/green{ - icon_state = "1-2" +"eJB" = ( +/obj/structure/table/reinforced/steel, +/obj/item/reagent_containers/glass/beaker/large{ + pixel_x = -5; + pixel_y = 14 }, -/obj/machinery/door/airlock/engineering{ - dir = 1; - name = "Deck 2 Civilian Substation"; - req_one_access = list(11,24) +/obj/item/reagent_containers/glass/beaker{ + pixel_x = -6; + pixel_y = 3 }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/full, -/area/maintenance/substation/civilian_west) -"eJN" = ( -/obj/machinery/atmospherics/pipe/simple/visible/cyan{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 +/obj/item/reagent_containers/glass/beaker{ + pixel_x = 6; + pixel_y = 3 }, /turf/simulated/floor/tiled/dark/full, -/area/engineering/engine_room) -"eJW" = ( +/area/horizon/service/hydroponics/lower) +"eJE" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/structure/railing/mapped, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/research) +"eJH" = ( /obj/effect/floor_decal/corner/dark_green{ - dir = 6 - }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/aft) -"eKb" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/black{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/engineering/atmos) -"eKg" = ( -/obj/machinery/atmospherics/pipe/simple/visible/purple{ - dir = 10 - }, -/obj/machinery/meter, -/turf/simulated/floor/tiled/dark, -/area/engineering/atmos/propulsion) -"eKi" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/table/standard{ - no_cargo = 1 - }, -/obj/random/contraband, -/turf/simulated/floor/tiled, -/area/maintenance/wing/starboard/deck1) -"eKl" = ( -/obj/effect/floor_decal/industrial/warning{ dir = 8 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ +/turf/simulated/floor/tiled, +/area/horizon/engineering/hallway/fore) +"eJK" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/engineer_maintenance/electric{ + dir = 8 + }, +/obj/structure/engineer_maintenance/pipe, +/turf/simulated/floor/tiled/white, +/area/horizon/operations/machinist/surgicalbay) +"eKq" = ( +/obj/effect/floor_decal/corner/lime{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 5 }, -/obj/structure/extinguisher_cabinet/west, -/turf/simulated/floor/plating, -/area/rnd/xenoarch_atrium) -"eKo" = ( -/obj/machinery/camera/network/first_deck{ - c_tag = "First Deck - Hangar 1"; - dir = 8 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/horizon/medical/morgue) +"eKu" = ( +/obj/effect/floor_decal/corner_wide/black/full{ + dir = 1 }, /obj/effect/floor_decal/industrial/warning{ - dir = 8 + dir = 5 }, -/obj/machinery/mech_recharger, -/turf/simulated/floor/plating, -/area/assembly/chargebay) -"eKs" = ( -/obj/effect/floor_decal/corner_wide/purple{ - dir = 6 +/obj/machinery/atmospherics/binary/pump/high_power{ + dir = 8; + name = "Hydrogen to Burn Mix" }, -/obj/effect/floor_decal/industrial/warning/corner, -/obj/effect/floor_decal/corner_wide/purple/diagonal, -/turf/simulated/floor/tiled/white, -/area/rnd/test_range) -"eKC" = ( -/obj/effect/floor_decal/spline/fancy/wood/full, -/obj/structure/flora/ausbushes/brflowers, -/obj/structure/flora/ausbushes/palebush, -/turf/simulated/floor/grass/no_edge, -/area/hallway/primary/central_one) +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/atmos/propulsion) "eKF" = ( /obj/structure/girder, /obj/effect/decal/cleanable/dirt, /turf/unsimulated/floor/monotile, /area/antag/raider) -"eKJ" = ( -/obj/machinery/door/airlock/engineering{ - dir = 4; - name = "Operations Substation" +"eKI" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 1 }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/maintenance/substation/supply) -"eKL" = ( -/obj/machinery/power/breakerbox{ - RCon_tag = "Supermatter Grid Bypass" - }, -/obj/machinery/camera/network/reactor{ - c_tag = "Engineering - SMES Room"; - dir = 4 - }, -/obj/structure/sign/radiation{ - pixel_y = 32 - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 +/obj/effect/map_effect/marker/airlock{ + frequency = 1004; + master_tag = "airlock_horizon_deck_1_fore_1"; + name = "airlock_horizon_deck_1_fore_1" }, /turf/simulated/floor/plating, -/area/engineering/smes) -"eKM" = ( -/obj/structure/reagent_dispensers/extinguisher, -/obj/effect/floor_decal/industrial/warning{ +/area/horizon/maintenance/deck_1/hangar/starboard) +"eKK" = ( +/obj/effect/floor_decal/corner/white/diagonal, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 9 }, -/turf/simulated/floor/plating, -/area/maintenance/research_port) +/obj/structure/bed/stool/chair/office/light{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/horizon/medical/paramedic) "eKN" = ( /obj/structure/railing/mapped, /obj/effect/floor_decal/industrial/warning{ @@ -33697,32 +33380,26 @@ }, /turf/unsimulated/floor/plating, /area/antag/burglar) -"eKO" = ( -/obj/structure/cable/yellow, -/obj/structure/cable{ - icon_state = "0-2" +"eKR" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" }, -/obj/machinery/power/smes/buildable{ - RCon_tag = "INDRA - Grid"; - charge = 10000000; - cur_coils = 4; - input_attempt = 1; - input_level = 500000; - output_attempt = 1; - output_level = 500000 +/obj/effect/floor_decal/spline/plain{ + dir = 8 }, -/obj/structure/lattice/catwalk/indoor, -/turf/simulated/floor/plating, -/area/engineering/smes/rust) -"eKU" = ( -/obj/structure/tank_wall/carbon_dioxide{ - density = 0; - icon_state = "co2-12"; - opacity = 0 +/obj/machinery/firealarm/west, +/turf/simulated/floor/tiled/dark, +/area/horizon/service/bar) +"eKS" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 }, -/obj/machinery/atmospherics/pipe/simple/visible/black, -/turf/simulated/floor/reinforced/carbon_dioxide, -/area/engineering/atmos) +/obj/machinery/camera/network/service{ + c_tag = "Service - Deck 2 - Bar Back Counter" + }, +/turf/simulated/floor/wood, +/area/horizon/service/bar) "eKW" = ( /obj/effect/floor_decal/corner/white/diagonal, /obj/effect/floor_decal/spline/plain{ @@ -33730,162 +33407,164 @@ }, /turf/simulated/floor/holofloor/tiled, /area/template_noop) -"eKY" = ( -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/structure/platform/ledge{ - dir = 8 - }, -/turf/simulated/open, -/area/horizon/hallway/deck_three/primary/central) "eLa" = ( /obj/structure/bed/stool/chair/sofa/right/brown{ dir = 8 }, /turf/simulated/floor/carpet/purple, /area/centcom/shared_dream) -"eLb" = ( -/obj/effect/floor_decal/corner/brown{ - dir = 6 +"eLc" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 10 }, -/obj/effect/floor_decal/industrial/warning/corner, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/railing/mapped{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/operations/loading) -"eLd" = ( -/obj/effect/floor_decal/corner/dark_green/diagonal, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/horizon/hydroponics) -"eLg" = ( -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 8 - }, -/obj/effect/map_effect/marker/airlock{ - master_tag = "sccv_intrepid_port"; - name = "sccv_intrepid_port" - }, -/obj/machinery/airlock_sensor{ - pixel_y = -24; +/obj/structure/platform{ dir = 1 }, -/obj/effect/map_effect/marker/airlock{ - master_tag = "sccv_intrepid_port"; - name = "sccv_intrepid_port"; - req_one_access = null +/turf/simulated/floor/tiled, +/area/horizon/rnd/hallway) +"eLe" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 10 }, +/obj/random/dirt_75, +/turf/simulated/floor, +/area/horizon/maintenance/deck_2/wing/starboard/far) +"eLi" = ( +/obj/random/junk, /turf/simulated/floor/plating, -/area/shuttle/intrepid/port_compartment) +/area/horizon/maintenance/deck_2/wing/port) +"eLj" = ( +/obj/structure/table/glass{ + table_reinf = "glass" + }, +/obj/item/device/flashlight/lamp, +/obj/effect/floor_decal/corner_wide/paleblue/full{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/hallway/upper) "eLr" = ( /obj/effect/floor_decal/corner/red/full{ dir = 4 }, /turf/simulated/floor/holofloor/tiled, /area/horizon/holodeck/source_lasertag) -"eLB" = ( -/obj/machinery/light{ +"eLv" = ( +/obj/structure/platform/ledge{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/heater{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/visible/black, -/turf/simulated/floor/plating, -/area/engineering/atmos/air) -"eLC" = ( -/obj/machinery/bluespace_beacon, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/shuttle/quark/cockpit) -"eLE" = ( -/obj/effect/floor_decal/corner/red/full{ - dir = 8 - }, -/obj/structure/closet/hazmat/general, -/obj/machinery/embedded_controller/radio/airlock/access_controller{ - id_tag = "processing_airlock_control"; - name = "Processing Access Controller"; - pixel_x = -25; - tag_exterior_door = "processing_airlock_exterior"; - tag_interior_door = "processing_airlock_interior" - }, /turf/simulated/floor/tiled/dark, -/area/medical/ward/isolation) -"eLO" = ( -/obj/machinery/cryopod{ - dir = 4 +/area/horizon/rnd/xenobiology/xenoflora) +"eLG" = ( +/obj/structure/cable/green, +/obj/machinery/power/apc/critical/south, +/obj/effect/floor_decal/industrial/warning/full, +/obj/machinery/porta_turret, +/obj/structure/sign/nosmoking_1{ + pixel_x = 32 }, -/obj/effect/floor_decal/corner/dark_green/diagonal, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled, -/area/horizon/crew_quarters/fitness/changing) -"eLS" = ( -/obj/structure/cable{ - icon_state = "1-4" +/obj/machinery/camera/motion{ + c_tag = "Secure Ammunition Storage"; + dir = 8; + network = list("Command","Security") }, +/turf/simulated/floor/reinforced, +/area/horizon/operations/secure_ammunition_storage) +"eLJ" = ( +/obj/machinery/power/breakerbox/activated{ + RCon_tag = "Medical Substation" + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/substation/medical) +"eLM" = ( /obj/structure/disposalpipe/segment{ dir = 8; icon_state = "pipe-c" }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard) -"eLW" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/effect/floor_decal/spline/plain{ +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 9 }, -/turf/simulated/floor/lino, -/area/horizon/cafeteria) -"eMc" = ( -/obj/effect/floor_decal/industrial/outline/service, -/obj/structure/table/rack, -/obj/item/storage/toolbox/mechanical, -/obj/item/reagent_containers/glass/bucket, -/obj/item/reagent_containers/glass/bucket, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/hydroponics) -"eMd" = ( -/turf/simulated/wall, -/area/medical/smoking) -"eMi" = ( -/obj/machinery/recharger, -/obj/structure/table/standard, -/obj/structure/railing/mapped, -/obj/item/device/destTagger{ - pixel_y = 8; - pixel_x = 14 +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 }, -/obj/item/stack/packageWrap{ - pixel_x = 16; - pixel_y = 8 +/obj/effect/floor_decal/corner/black{ + dir = 10 }, -/turf/simulated/floor/tiled/white, -/area/hallway/medical) -"eMj" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled/dark, -/area/horizon/stairwell/bridge) -"eMo" = ( +/turf/simulated/floor/tiled, +/area/horizon/operations/machinist) +"eLY" = ( /obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/airlock/maintenance{ +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/airlock/glass_command{ dir = 1; - req_one_access = list(12,26,29,31,48,67,35,25,28,37) - }, -/obj/structure/cable/green{ - icon_state = "1-2" + name = "Expedition EVA Storage"; + req_access = list(18) }, +/obj/effect/map_effect/door_helper/unres, /turf/simulated/floor/tiled/full, -/area/hallway/primary/central_two) +/area/horizon/storage/eva) +"eMh" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 10 + }, +/obj/machinery/disposal/small/east, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/simulated/floor/carpet/rubber, +/area/horizon/engineering/reactor/indra/monitoring) +"eMo" = ( +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/effect/floor_decal/spline/plain/grey{ + dir = 5 + }, +/obj/random/dirt_75, +/obj/structure/closet/walllocker/medical/firstaid{ + pixel_y = 32 + }, +/obj/effect/floor_decal/industrial/outline/medical, +/turf/simulated/floor/reinforced, +/area/horizon/crew/fitness/gym) +"eMp" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/horizon/maintenance/deck_2/wing/starboard/auxatmos) +"eMr" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/machinery/door/window/northleft{ + name = "Canister Storage Access"; + req_access = list(65) + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/reinforced, +/area/horizon/rnd/xenoarch/atrium) +"eMt" = ( +/obj/machinery/door/firedoor{ + dir = 4 + }, +/obj/machinery/door/airlock/maintenance_hatch{ + dir = 4; + req_one_access = list(12) + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/maintenance/deck_3/aft/starboard) +"eMv" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/canister/empty, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/auxatmos) "eMw" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 1 @@ -33895,38 +33574,88 @@ }, /turf/simulated/floor/wood/yew, /area/centcom/shared_dream) -"eMG" = ( -/turf/simulated/wall, -/area/bridge/bridge_crew) -"eMK" = ( -/obj/effect/floor_decal/industrial/warning{ +"eMx" = ( +/obj/machinery/door/airlock{ + dir = 4; + id_tag = "cargobreak_stall"; + name = "Stall" + }, +/obj/machinery/door/firedoor{ dir = 4 }, -/obj/structure/tank_wall/carbon_dioxide{ - icon_state = "co2-7" - }, -/turf/simulated/floor/airless, -/area/engineering/atmos) -"eMN" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/structure/bed/stool/chair/office/light{ +/turf/simulated/floor/tiled/full, +/area/horizon/operations/break_room) +"eMA" = ( +/obj/effect/floor_decal/industrial/warning{ dir = 8 }, -/obj/machinery/alarm/north, -/turf/simulated/floor/tiled/white, -/area/medical/reception) -"eNa" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/fuel, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/cargo_compartment) +"eMB" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 4 }, /turf/simulated/floor/tiled/dark/full, -/area/shuttle/intrepid/port_compartment) -"eNb" = ( +/area/horizon/engineering/bluespace_drive) +"eMD" = ( +/obj/structure/lattice, +/turf/simulated/open, +/area/horizon/hallway/primary/deck_2/central) +"eMF" = ( +/obj/machinery/door/firedoor, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/light/small/emergency{ + dir = 4 + }, +/turf/simulated/floor, +/area/horizon/maintenance/deck_3/aft/starboard/far) +"eMI" = ( +/obj/machinery/camera/network/medbay{ + c_tag = "Medical - Hallway 3" + }, +/obj/effect/floor_decal/corner_wide/green{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/hallway/upper) +"eMU" = ( +/obj/machinery/door/firedoor, +/obj/effect/landmark/entry_point/fore{ + name = "fore, dining hall" + }, +/obj/machinery/door/blast/shutters/open{ + dir = 2; + id = "lounge_window_shutters"; + name = "Lounge Window Shutter" + }, +/obj/structure/grille, +/obj/structure/window/shuttle/scc_space_ship, +/turf/simulated/floor/plating, +/area/horizon/service/dining_hall) +"eNf" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/port/near) +"eNi" = ( +/obj/structure/punching_bag{ + pixel_y = 12 + }, +/obj/effect/floor_decal/spline/plain/grey{ + dir = 9 + }, +/obj/random/dirt_75, +/obj/machinery/camera/network/third_deck{ + c_tag = "Third Deck - Gym"; + dir = 4 + }, +/turf/simulated/floor/reinforced, +/area/horizon/crew/fitness/gym) +"eNn" = ( /obj/structure/cable{ icon_state = "4-8" }, @@ -33938,66 +33667,7 @@ }, /obj/structure/lattice/catwalk/indoor/grate/dark, /turf/simulated/floor/plating, -/area/maintenance/research_port) -"eNc" = ( -/obj/machinery/airlock_sensor{ - pixel_x = 6; - pixel_y = 28 - }, -/obj/effect/map_effect/marker/airlock/docking{ - landmark_tag = "nav_horizon_dock_deck_3_port_5"; - master_tag = "airlock_horizon_dock_deck_3_port_5"; - name = "airlock_horizon_dock_deck_3_port_5" - }, -/obj/machinery/embedded_controller/radio/airlock/docking_port{ - pixel_x = -6; - pixel_y = 28 - }, -/turf/simulated/floor/plating, -/area/horizon/hallway/deck_three/primary/port/docks) -"eNh" = ( -/obj/effect/floor_decal/spline/plain/corner{ - dir = 8 - }, -/obj/effect/floor_decal/spline/fancy{ - dir = 5 - }, -/obj/effect/floor_decal/corner_wide/white{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark/full, -/area/hallway/primary/central_one) -"eNj" = ( -/obj/structure/disposalpipe/segment{ - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/corner_wide/green{ - dir = 6 - }, -/obj/effect/landmark/start{ - name = "Surgeon" - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/bed/stool/chair{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/hallway/medical/upper) -"eNl" = ( -/obj/machinery/camera/network/reactor{ - c_tag = "Engineering - INDRA SMES Room 1"; - dir = 1 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/smes/rust) +/area/horizon/maintenance/deck_2/wing/port/far) "eNo" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/bed/stool/chair, @@ -34026,6 +33696,16 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/tiled/full, /area/horizon/security/interrogation) +"eNy" = ( +/obj/machinery/atmospherics/pipe/manifold/visible, +/obj/effect/floor_decal/corner/lime{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/horizon/rnd/xenobiology/xenoflora) "eNz" = ( /obj/effect/floor_decal/corner/red/diagonal, /obj/machinery/turretid{ @@ -34041,18 +33721,6 @@ }, /turf/simulated/floor/tiled/dark, /area/shuttle/mercenary) -"eNG" = ( -/obj/machinery/vending/overloaders, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/dark/full, -/area/rnd/hallway) -"eNH" = ( -/obj/structure/foamedmetal, -/obj/structure/shuttle_part/scc_space_ship{ - icon_state = "d2-2" - }, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard) "eNJ" = ( /obj/effect/floor_decal/industrial/warning{ dir = 5 @@ -34062,6 +33730,24 @@ }, /turf/simulated/floor/reinforced/airless, /area/horizon/exterior) +"eNL" = ( +/turf/simulated/wall, +/area/horizon/maintenance/deck_2/wing/starboard/auxatmos) +"eNM" = ( +/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/effect/map_effect/window_spawner/full/reinforced/firedoor, +/obj/machinery/door/blast/shutters/open{ + dir = 2; + id = "shutters_deck2_eng_frontdesk"; + name = "Engineering Front Desk Shutter" + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/lobby) "eNO" = ( /obj/effect/floor_decal/carpet{ dir = 4 @@ -34072,76 +33758,21 @@ }, /turf/simulated/floor/holofloor/carpet, /area/horizon/holodeck/source_meetinghall) -"eNQ" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 5 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/starboard/docks) -"eNT" = ( -/obj/structure/bed/stool/chair/office/bridge/pilot{ +"eNX" = ( +/obj/structure/railing/mapped{ dir = 4 }, -/turf/simulated/floor/shuttle/dark_blue, -/area/shuttle/escape_pod/pod2) -"eNU" = ( -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/engineering/atmos) -"eNV" = ( -/obj/effect/floor_decal/corner_wide/green{ - dir = 9 - }, -/obj/machinery/requests_console/west{ - department = "Medical"; - departmentType = 2; - name = "Medical Requests Console" - }, -/turf/simulated/floor/tiled/white, -/area/hallway/medical/upper) -"eNY" = ( -/obj/structure/table/standard{ - no_cargo = 1 - }, -/obj/random/contraband, +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/alarm/north, +/obj/structure/reagent_dispensers/fueltank, /turf/simulated/floor/plating, -/area/maintenance/research_port) -"eOa" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/effect/floor_decal/corner/red/diagonal, -/obj/effect/floor_decal/spline/plain{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/turf/simulated/floor/lino, -/area/horizon/cafeteria) +/area/horizon/maintenance/deck_1/main/port) "eOg" = ( /obj/effect/floor_decal/corner/dark_blue{ dir = 9 }, /turf/simulated/floor/tiled/dark, /area/horizon/security/meeting_room) -"eOk" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/maintenance/hangar/starboard) "eOl" = ( /obj/effect/ghostspawpoint{ identifier = "NTERTSpawn"; @@ -34151,121 +33782,153 @@ icon_state = "dark_preview" }, /area/centcom/specops) -"eOm" = ( -/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/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/corner/brown{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/refinery) -"eOp" = ( -/obj/machinery/power/smes/buildable/substation{ - RCon_tag = "Substation - Medical" - }, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/structure/cable/green{ - icon_state = "0-4" - }, -/turf/simulated/floor/plating, -/area/maintenance/substation/medical) -"eOA" = ( -/obj/structure/reagent_dispensers/keg/beerkeg, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard) -"eOF" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 9 - }, -/obj/machinery/alarm/west, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_two/fore) -"eOG" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning/corner{ +"eOt" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance{ dir = 4 }, /obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/machinery/light/small/emergency{ - dir = 1 - }, /turf/simulated/floor/plating, -/area/maintenance/research_port) +/area/horizon/maintenance/substation/wing_port) +"eOv" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/corner/dark_green{ + dir = 9 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_3/central) +"eOC" = ( +/obj/structure/closet/walllocker/emerglocker/south, +/obj/effect/floor_decal/corner/purple/full{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/service/custodial/disposals/deck_1) "eOM" = ( /obj/structure/shuttle_part/tcfl{ icon_state = "3,0" }, /turf/unsimulated/floor/plating, /area/shuttle/legion) +"eON" = ( +/obj/structure/tank_wall/hydrogen{ + icon_state = "h10" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/airless, +/area/horizon/engineering/atmos) +"eOQ" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 4 + }, +/obj/machinery/atmospherics/binary/pump{ + name = "Carbon dioxide to Mix" + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/atmos) +"eOR" = ( +/obj/machinery/door/airlock/external{ + dir = 1; + frequency = 1337; + icon_state = "door_locked"; + id_tag = "merchant_shuttle_dock_outer"; + locked = 1; + req_access = list(13) + }, +/obj/machinery/access_button{ + command = "cycle_exterior"; + frequency = 1337; + master_tag = "merchant_shuttle_dock"; + name = "exterior access button"; + pixel_x = -32; + req_access = list(13) + }, +/obj/effect/shuttle_landmark/merchant/dock{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/horizon/security/checkpoint2) "eOU" = ( /turf/simulated/floor/holofloor/beach/sand{ dir = 4; icon_state = "beachcorner" }, /area/horizon/holodeck/source_desert) -"ePb" = ( -/obj/structure/table/standard, -/obj/item/stock_parts/manipulator, -/obj/item/stock_parts/micro_laser, -/obj/item/stock_parts/micro_laser, -/obj/item/stock_parts/capacitor, -/obj/item/stock_parts/capacitor, -/obj/item/stack/cable_coil, -/obj/item/clothing/glasses/safety/goggles/science{ - pixel_y = 10 +"ePe" = ( +/obj/structure/window/shuttle/unique/scc/scout{ + icon_state = "3,4" }, -/obj/machinery/alarm/west, -/turf/simulated/floor/tiled/white, -/area/rnd/lab) -"ePd" = ( -/turf/simulated/wall, -/area/security/checkpoint2) -"ePj" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 5 +/obj/structure/window/shuttle/unique/scc/scout/over{ + icon_state = "3,4" }, -/obj/machinery/light/floor{ +/turf/simulated/floor/plating, +/area/horizon/shuttle/canary) +"ePf" = ( +/obj/effect/floor_decal/corner/dark_blue/full{ + dir = 4 + }, +/obj/structure/platform_stairs/full{ dir = 1 }, /turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"ePk" = ( -/obj/machinery/light_switch{ - pixel_y = -19 +/area/horizon/command/bridge/upperdeck) +"ePm" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 6 }, -/obj/effect/floor_decal/corner_wide/yellow{ - dir = 10 +/obj/random/pottedplant, +/turf/simulated/floor/wood, +/area/horizon/crew/lounge) +"ePn" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/machinery/button/remote/airlock{ + dir = 1; + id = "engine_electrical_maintenance"; + name = "Door Bolt Control"; + pixel_y = 32; + req_one_access = list(11,24); + specialfunctions = 4 }, -/turf/simulated/floor/tiled, -/area/engineering/bluespace_drive) -"ePy" = ( -/obj/machinery/firealarm/east, -/obj/structure/bed/stool/chair/shuttle{ - dir = 8 +/obj/machinery/power/apc/low/east, +/obj/structure/cable{ + icon_state = "0-2" }, -/obj/effect/floor_decal/industrial/outline/grey, -/obj/machinery/atmospherics/pipe/manifold/hidden{ - dir = 4 +/obj/machinery/light{ + dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/shuttle/mining) +/area/horizon/engineering/smes) +"ePr" = ( +/obj/effect/floor_decal/corner/dark_blue/full{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/storage/eva) +"ePu" = ( +/obj/effect/floor_decal/corner_wide/green{ + dir = 9 + }, +/obj/machinery/vending/medical{ + density = 0; + pixel_x = -32 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/hallway/upper) "ePz" = ( /obj/machinery/portable_atmospherics/canister/oxygen, /obj/structure/closet/walllocker/emerglocker{ @@ -34275,13 +33938,6 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled/dark/full, /area/shuttle/mercenary) -"ePA" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 10 - }, -/obj/structure/platform, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard) "ePB" = ( /obj/effect/floor_decal/industrial/warning{ dir = 1 @@ -34295,152 +33951,117 @@ icon_state = "1,0" }, /area/shuttle/legion) -"ePL" = ( -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" +"ePE" = ( +/obj/machinery/camera/network/engineering{ + c_tag = "Engineering - Hallway 2"; + dir = 1 }, -/turf/simulated/floor, -/area/maintenance/engineering_ladder) +/obj/effect/floor_decal/corner/dark_green{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/horizon/engineering/hallway/fore) +"ePH" = ( +/obj/effect/floor_decal/industrial/hatch/red, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/reinforced/airless, +/area/horizon/engineering/reactor/indra/mainchamber) +"ePJ" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet/south, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/corner/brown{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/horizon/operations/office) "ePM" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/full, /area/horizon/security/equipment) -"ePZ" = ( -/turf/simulated/floor/exoplanet/snow, -/area/centcom/shared_dream) -"eQc" = ( -/obj/structure/table/standard, -/obj/machinery/computer/security/telescreen{ - name = "Access Monitor"; - network = list("Xeno_Bio") - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, +"ePO" = ( +/obj/effect/floor_decal/industrial/outline/emergency_closet, +/obj/structure/closet/emcloset, +/obj/structure/engineer_maintenance/electric/wall, +/turf/simulated/floor/plating, +/area/horizon/hangar/intrepid) +"ePP" = ( +/obj/effect/floor_decal/corner/green/diagonal, /turf/simulated/floor/tiled/white, -/area/rnd/xenobiology/foyer) -"eQr" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 +/area/horizon/crew/fitness/showers) +"ePS" = ( +/obj/structure/window/shuttle/scc_space_ship, +/obj/structure/grille, +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/shutters{ + dir = 4; + id = "shutters_disposals"; + name = "\improper Viewing Shutter" }, +/turf/simulated/floor/plating, +/area/horizon/service/custodial/disposals/deck_1) +"ePY" = ( /obj/structure/cable/green{ icon_state = "4-8" }, -/turf/simulated/floor/tiled/white, -/area/hallway/medical/upper) -"eQE" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 9 +/obj/effect/floor_decal/corner/brown{ + dir = 5 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 }, /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 - }, +/turf/simulated/floor/tiled, +/area/horizon/hangar/operations) +"ePZ" = ( +/turf/simulated/floor/exoplanet/snow, +/area/centcom/shared_dream) +"eQq" = ( +/obj/structure/disposalpipe/segment, /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{ - density = 0; - icon_state = "pdoor0"; - id = "bridge blast"; - name = "Bridge Blast Doors"; - opacity = 0 - }, -/obj/machinery/door/firedoor, -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/obj/structure/cable/green{ - icon_state = "0-4" - }, -/obj/machinery/door/blast/shutters/open{ - dir = 4; - id = "shutters_deck3_bridgesafety"; - name = "Safety Shutter" - }, -/obj/structure/window/shuttle/scc_space_ship, -/obj/machinery/door/blast/shutters/open{ - dir = 4; - id = "conferencesafetyshutters"; - name = "Safety Shutter" - }, -/turf/simulated/floor, -/area/bridge/meeting_room) -"eQG" = ( -/obj/machinery/door/firedoor, -/obj/effect/map_effect/door_helper/unres{ +/obj/structure/platform_stairs/full{ dir = 1 }, -/obj/machinery/door/airlock/glass_engineering{ - dir = 1; - name = "Engineering Hallway"; - req_access = list(10) +/turf/simulated/floor, +/area/horizon/maintenance/substation/command) +"eQv" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 }, -/turf/simulated/floor/tiled/full, -/area/engineering/lobby) -"eQH" = ( -/obj/effect/floor_decal/corner/dark_blue/full, -/obj/machinery/light{ - dir = 8 +/obj/structure/tank_wall/carbon_dioxide{ + icon_state = "co2-9" }, -/obj/structure/table/steel, -/obj/item/storage/box/flares{ - pixel_x = -6 +/turf/simulated/floor/airless, +/area/horizon/engineering/atmos) +"eQy" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 5 }, -/obj/item/storage/box/flares{ - pixel_x = -6 +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 }, -/obj/item/storage/box/flares{ - pixel_x = -7; - pixel_y = 11 +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 }, -/obj/item/storage/box/flares{ - pixel_x = -6; - pixel_y = 11 - }, -/obj/item/storage/box/tethers{ - pixel_x = 8 - }, -/obj/item/storage/box/led_collars{ - pixel_x = 8; - pixel_y = 11 - }, -/turf/simulated/floor/tiled/dark, -/area/storage/eva) -"eQI" = ( -/obj/effect/floor_decal/corner/dark_blue/full{ - dir = 8 - }, -/obj/machinery/firealarm/north, +/obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled, -/area/rnd/eva) -"eQJ" = ( -/obj/effect/floor_decal/industrial/outline/grey, -/obj/structure/survey_probe, -/turf/simulated/floor/plating, -/area/hangar/intrepid) +/area/horizon/security/checkpoint2) "eQK" = ( /obj/machinery/porta_turret/crescent, /obj/machinery/light, @@ -34452,117 +34073,149 @@ icon_state = "dark_preview" }, /area/centcom/control) +"eQL" = ( +/obj/effect/floor_decal/industrial/outline/grey, +/obj/machinery/portable_atmospherics/canister/empty, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/auxatmos) "eQO" = ( /obj/effect/floor_decal/corner/teal{ dir = 5 }, /turf/unsimulated/floor/marble, /area/antag/wizard) -"eQP" = ( -/obj/effect/floor_decal/industrial/outline/grey, -/obj/structure/survey_probe/magnet, -/turf/simulated/floor/plating, -/area/hangar/intrepid) -"eQZ" = ( -/obj/effect/floor_decal/spline/fancy/wood/cee{ - dir = 8 +"eQW" = ( +/obj/structure/table/stone/marble, +/obj/item/storage/box/plasticbag{ + pixel_x = 5; + pixel_y = 9 }, -/obj/random/pottedplant, -/turf/simulated/floor/wood, -/area/crew_quarters/captain) +/obj/item/holomenu{ + pixel_x = 9 + }, +/obj/item/holomenu, +/obj/item/stack/material/cardboard{ + amount = 10; + pixel_x = 1; + pixel_y = 2 + }, +/obj/item/stack/material/cardboard{ + amount = 10; + pixel_x = 1; + pixel_y = 2 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/item/reagent_containers/spray/cleaner{ + pixel_x = -9; + pixel_y = 14 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/service/kitchen) +"eQX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/junction{ + dir = 8; + icon_state = "pipe-j2" + }, +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/xenological) "eRb" = ( /obj/structure/lattice, /obj/machinery/atmospherics/pipe/simple/visible/purple, /obj/machinery/atmospherics/pipe/simple/visible/fuel, /turf/space/dynamic, /area/horizon/exterior) -"eRd" = ( -/obj/structure/cable/green{ - icon_state = "1-2" +"eRe" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 1 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/industrial/warning{ +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 8 }, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/bluespace_drive) +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/horizon/rnd/hallway/secondary) "eRf" = ( /obj/structure/shuttle_part/mercenary/small{ icon_state = "7,9" }, /turf/unsimulated/floor/plating, /area/shuttle/syndicate_elite) -"eRh" = ( -/obj/effect/floor_decal/corner/grey/diagonal{ - dir = 8 +"eRl" = ( +/obj/structure/cable{ + icon_state = "4-8" }, -/obj/structure/extinguisher_cabinet/north, -/obj/machinery/appliance/cooker/oven, -/turf/simulated/floor/tiled/white, -/area/horizon/cafeteria) -"eRj" = ( -/obj/effect/floor_decal/corner/dark_green/full{ - dir = 8 +/obj/structure/cable{ + icon_state = "2-8" }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) +/turf/simulated/floor/plating, +/area/horizon/maintenance/substation/hangar) "eRt" = ( /turf/simulated/wall/r_wall, /area/horizon/security/armoury) -"eRu" = ( -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/structure/table/standard, -/obj/effect/floor_decal/corner/brown{ - dir = 5 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/power/apc/low/north, -/obj/structure/cable/green{ - icon_state = "0-2" - }, -/obj/structure/sign/drop{ - desc = "A warning sign which reads 'DANGER: FALLING HAZARD' and 'THIS EQUIPMENT STARTS AND STOPS AUTOMATICALLY'."; - name = "\improper DANGER: FALLING HAZARD sign"; - pixel_x = -48; - pixel_y = 32 - }, -/obj/item/folder/yellow{ - pixel_x = -2; - pixel_y = 2 - }, -/obj/item/pen/black{ - pixel_x = -2; - pixel_y = 1 - }, -/turf/simulated/floor/tiled, -/area/operations/office_aux) -"eRA" = ( -/obj/machinery/light/small/emergency{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/lattice/catwalk/indoor/grate/dark, +"eRy" = ( +/obj/structure/table/steel, /turf/simulated/floor/plating, -/area/maintenance/wing/starboard/far) -"eRB" = ( -/obj/machinery/light/small/emergency{ +/area/horizon/maintenance/deck_2/wing/starboard) +"eRH" = ( +/obj/effect/floor_decal/spline/fancy/wood{ dir = 4 }, -/obj/machinery/recharge_station, -/turf/simulated/floor/plating, -/area/engineering/drone_fabrication) -"eRF" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ +/obj/machinery/papershredder{ + pixel_x = 7 + }, +/obj/structure/filingcabinet{ + pixel_x = -9 + }, +/turf/simulated/floor/wood, +/area/horizon/command/heads/xo) +"eRN" = ( +/obj/machinery/firealarm/north, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/closet/crate, +/obj/item/storage/toolbox/mechanical, +/obj/item/device/flashlight/flare/glowstick/random, +/obj/item/device/flashlight/flare/glowstick/random, +/obj/item/device/flashlight, +/obj/item/device/flashlight, +/obj/item/device/multitool, +/turf/simulated/floor, +/area/horizon/command/bridge/aibunker) +"eRQ" = ( +/obj/structure/table/standard, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/machinery/light/small{ dir = 8 }, -/turf/simulated/floor/tiled/dark, -/area/engineering/atmos) -"eRK" = ( -/turf/simulated/floor/tiled, -/area/operations/office) +/obj/item/storage/bag/inflatable{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/bag/inflatable{ + pixel_x = 3; + pixel_y = 3 + }, +/turf/simulated/floor/plating, +/area/horizon/engineering/drone_fabrication) "eRS" = ( /obj/effect/shuttle_landmark/distress/start, /turf/simulated/floor/shuttle/black, @@ -34589,21 +34242,26 @@ }, /turf/simulated/floor/tiled/dark/full, /area/shuttle/skipjack) -"eRZ" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ +"eSc" = ( +/obj/structure/stairs/west, +/turf/simulated/floor/tiled, +/area/horizon/stairwell/engineering/deck_1) +"eSe" = ( +/obj/structure/sink/kitchen{ + dir = 4; + name = "sink"; + pixel_x = -20 + }, +/obj/effect/floor_decal/corner/dark_green/diagonal, +/obj/effect/floor_decal/spline/plain, +/obj/effect/floor_decal/spline/plain/purple{ dir = 1 }, -/turf/simulated/floor/tiled/full, -/area/outpost/mining_main/refinery) -"eSa" = ( -/obj/effect/floor_decal/corner/brown{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ +/obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/intrepid/main_compartment) +/turf/simulated/floor/tiled, +/area/horizon/service/hydroponics) "eSg" = ( /obj/structure/bed/stool/chair/holochair{ dir = 8 @@ -34630,33 +34288,26 @@ /obj/structure/engineer_maintenance/pipe/wall, /turf/simulated/floor/tiled/dark, /area/horizon/security/firing_range) -"eSv" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/structure/window/shuttle/scc_space_ship/cardinal, -/obj/machinery/door/blast/regular/open{ - dir = 8; - id = "hra_room_bd"; - name = "Meeting Room Blast Door" - }, -/obj/machinery/door/blast/shutters/open{ - id = "ccia_shutters"; - name = "Safety Shutter" - }, -/turf/simulated/floor/plating, -/area/bridge/cciaroom) -"eSx" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/engineering{ +"eSu" = ( +/obj/machinery/door/airlock/external{ dir = 1; - name = "Deck 1 Research Substation"; - req_one_access = list(11,24) + frequency = 1337; + icon_state = "door_locked"; + id_tag = "merchant_shuttle_dock_inner"; + locked = 1; + req_access = list(13) + }, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/machinery/access_button{ + command = "cycle_interior"; + frequency = 1337; + master_tag = "merchant_shuttle_dock"; + name = "interior access button"; + pixel_x = 32; + req_access = list(13) }, /turf/simulated/floor/plating, -/area/maintenance/substation/research_sublevel) +/area/horizon/security/checkpoint2) "eSz" = ( /obj/effect/floor_decal/corner/brown/diagonal, /obj/structure/disposalpipe/segment{ @@ -34671,16 +34322,36 @@ name = "shuttle bay blast door" }, /area/centcom/evac) -"eSE" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 9 - }, -/obj/machinery/light/small{ +"eSH" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/spline/fancy/wood{ dir = 4 }, -/obj/item/wrench, -/turf/simulated/floor/plating, -/area/medical/cryo) +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/obj/machinery/button/remote/blast_door{ + dir = 4; + id = "massdriver"; + name = "Mass Driver Interior Blast Door"; + pixel_x = 25; + pixel_y = 11 + }, +/obj/machinery/button/remote/blast_door{ + dir = 4; + id = "chapel_driver"; + name = "Mass Driver Exterior Blast Door"; + pixel_x = 25 + }, +/obj/machinery/button/mass_driver{ + _wifi_id = "chapel_driver"; + dir = 8; + id = "chapel_driver"; + pixel_x = 35; + pixel_y = 5 + }, +/turf/simulated/floor/wood, +/area/horizon/service/chapel/office) "eSI" = ( /obj/effect/floor_decal/carpet{ dir = 4 @@ -34693,6 +34364,42 @@ }, /turf/simulated/floor/carpet/magenta, /area/horizon/holodeck/source_cafe) +"eSK" = ( +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/structure/disposalpipe/junction{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor, +/area/horizon/hallway/primary/deck_3/port) +"eSL" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 4 + }, +/obj/structure/railing/mapped{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/horizon/engineering/reactor/supermatter/mainchamber) +"eSM" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/open, +/area/horizon/maintenance/deck_2/wing/port/near) "eST" = ( /obj/effect/floor_decal/corner/full{ dir = 8 @@ -34702,13 +34409,78 @@ "eSV" = ( /turf/template_noop, /area/template_noop) -"eTi" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 +"eSZ" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/table/wood, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/obj/machinery/newscaster/west, +/obj/random/pottedplant_small{ + pixel_x = -7; + pixel_y = 3 + }, +/turf/simulated/floor/wood, +/area/horizon/repoffice/consular_two) +"eTb" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 7 + }, +/obj/effect/floor_decal/spline/fancy/wood/corner{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/wood, +/area/horizon/command/heads/captain) +"eTe" = ( +/obj/effect/decal/cleanable/dirt, +/obj/random/junk, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/operations/starboard) +"eTj" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black, +/obj/effect/floor_decal/corner/yellow, +/obj/effect/floor_decal/corner/dark_blue{ + dir = 4 }, -/obj/machinery/alarm/east, /turf/simulated/floor/tiled/dark, -/area/engineering/atmos/propulsion/starboard) +/area/horizon/engineering/atmos) +"eTk" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/main/starboard) +"eTm" = ( +/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/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/corner/purple{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/horizon/stairwell/starboard/deck_2) "eTn" = ( /turf/simulated/floor/shuttle/black, /area/shuttle/specops) @@ -34721,106 +34493,93 @@ }, /turf/simulated/floor/tiled, /area/horizon/security/hallway) -"eTw" = ( +"eTp" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/random/junk, /obj/structure/cable/green{ - icon_state = "0-4" + icon_state = "4-8" }, -/obj/effect/map_effect/window_spawner/full/reinforced/grille/firedoor, -/turf/simulated/floor/tiled/dark/full, -/area/tcommsat/chamber) -"eTB" = ( -/obj/effect/floor_decal/corner/brown{ - dir = 10 +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/aux{ + dir = 5 + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/main/starboard) +"eTq" = ( +/obj/machinery/portable_atmospherics/canister/nitrogen, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/reinforced, +/area/horizon/rnd/xenoarch/atrium) +"eTt" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 6 }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/survey_probe, /turf/simulated/floor/tiled, -/area/outpost/mining_main/refinery) +/area/horizon/hangar/auxiliary) +"eTu" = ( +/obj/random/pottedplant, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 6 + }, +/obj/machinery/light, +/turf/simulated/floor/wood, +/area/horizon/crew/lounge) +"eTI" = ( +/obj/effect/floor_decal/industrial/outline/firefighting_closet, +/obj/structure/closet/firecloset{ + anchored = 1; + canbemoved = 1 + }, +/turf/simulated/floor/carpet/rubber, +/area/horizon/engineering/reactor/indra/mainchamber) +"eTJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/gen_treatment) "eTK" = ( /obj/effect/floor_decal/industrial/warning{ dir = 4 }, /turf/unsimulated/floor/plating, /area/antag/mercenary) -"eTV" = ( -/obj/machinery/door/airlock/external{ - dir = 1; - icon_state = "door_locked" +"eTZ" = ( +/obj/effect/floor_decal/spline/fancy/wood/cee{ + dir = 1 }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/effect/landmark/entry_point/aft{ - name = "aft, airlock" - }, -/obj/effect/map_effect/marker_helper/airlock/exterior, -/obj/machinery/access_button{ - dir = 1; - pixel_x = 28; - pixel_y = 12 - }, -/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/effect/floor_decal/industrial/hatch/grey, -/turf/simulated/floor/tiled/dark/full, -/area/shuttle/mining) -"eTW" = ( -/obj/machinery/light/small/emergency{ - dir = 4 - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/machinery/atmospherics/pipe/simple/hidden/aux, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"eTY" = ( -/obj/machinery/portable_atmospherics/hydroponics, -/obj/machinery/atmospherics/portables_connector, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology/xenoflora) -"eUb" = ( -/obj/structure/table/reinforced/steel, -/obj/effect/floor_decal/spline/plain{ - dir = 8 - }, -/obj/item/paper/fluff/bluespacedrive_manual{ - pixel_y = 3; - pixel_x = -8 - }, -/obj/item/folder/yellow{ - pixel_y = 3; - pixel_x = -15 - }, -/turf/simulated/floor/carpet/rubber, -/area/engineering/bluespace_drive/monitoring) -"eUh" = ( +/obj/structure/flora/ausbushes/lavendergrass, +/obj/structure/flora/ausbushes/palebush, /obj/structure/railing/mapped{ dir = 8 }, -/obj/effect/floor_decal/spline/fancy{ - dir = 8 +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = -14 }, -/obj/item/aicard, -/obj/structure/table/reinforced/steel, -/turf/simulated/floor/carpet/rubber, -/area/bridge/controlroom) -"eUi" = ( -/obj/machinery/atmospherics/binary/pump/on{ - dir = 4; - name = "Distro to Airlock"; - target_pressure = 200 +/turf/simulated/floor/grass/no_edge, +/area/horizon/hallway/primary/deck_3/port) +"eUa" = ( +/obj/effect/floor_decal/corner/yellow, +/obj/effect/floor_decal/corner/dark_blue{ + dir = 4 }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/machinery/light/small/emergency{ - dir = 1 - }, -/turf/simulated/floor, -/area/horizon/maintenance/deck_three/aft/starboard) +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/atmos) +"eUf" = ( +/obj/effect/floor_decal/corner/dark_blue/full, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_3/central) "eUk" = ( /obj/machinery/vending/security, /obj/machinery/light{ @@ -34833,45 +34592,37 @@ icon_state = "dark_preview" }, /area/centcom/holding) -"eUl" = ( -/obj/machinery/atmospherics/binary/pump/high_power{ - dir = 1; - name = "Cooling Array to Generators"; - target_pressure = 15000 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"eUv" = ( -/obj/effect/floor_decal/corner/green/diagonal, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/white, -/area/horizon/crew_quarters/fitness/changing) -"eUw" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ +"eUo" = ( +/obj/effect/floor_decal/corner/brown{ dir = 10 }, /obj/structure/cable/green{ - icon_state = "1-8" + icon_state = "1-2" }, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/bluespace_drive) -"eUA" = ( -/obj/structure/disposalpipe/trunk{ +/turf/simulated/floor/tiled, +/area/horizon/hangar/operations) +"eUr" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 10 + }, +/obj/structure/platform_stairs/full{ + dir = 4 + }, +/obj/structure/platform/cutout, +/obj/structure/platform{ dir = 1 }, -/obj/machinery/disposal/small/north, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 6 - }, -/turf/simulated/floor/wood, -/area/horizon/bar) +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled, +/area/horizon/command/bridge/upperdeck) +"eUt" = ( +/turf/simulated/floor/reinforced/carbon_dioxide, +/area/horizon/engineering/atmos) +"eUu" = ( +/obj/structure/sign/flag/scc, +/turf/simulated/floor/tiled, +/area/horizon/command/bridge/controlroom) "eUB" = ( /obj/structure/morgue{ dir = 8 @@ -34882,154 +34633,54 @@ /obj/effect/floor_decal/industrial/outline/security, /turf/simulated/floor/tiled/white, /area/horizon/security/autopsy_laboratory) -"eUD" = ( -/obj/structure/railing/mapped, -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/structure/platform/ledge{ +"eUP" = ( +/obj/machinery/door/firedoor, +/obj/structure/grille, +/obj/structure/window/shuttle/scc_space_ship/cardinal, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/rnd/xenobiology/xenoflora) +"eVb" = ( +/obj/effect/floor_decal/corner/mauve/full{ dir = 4 }, -/obj/structure/platform/ledge{ +/obj/structure/platform{ dir = 1 }, -/obj/structure/platform_deco/ledge{ - dir = 10 - }, -/turf/simulated/open, -/area/horizon/hallway/deck_three/primary/central) -"eUO" = ( -/obj/structure/bed/stool/chair/office/dark{ - dir = 4 - }, +/obj/machinery/light/floor, /turf/simulated/floor/tiled, -/area/engineering/lobby) -"eUU" = ( -/obj/structure/flora/ausbushes/sparsegrass, -/turf/simulated/floor/grass/no_edge, -/area/horizon/cafeteria) -"eUV" = ( -/obj/machinery/chem_master, -/obj/machinery/light, -/obj/effect/floor_decal/corner/mauve/full, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology) -"eUW" = ( -/obj/structure/window/reinforced{ - dir = 8 +/area/horizon/rnd/hallway/secondary) +"eVn" = ( +/obj/structure/cable{ + icon_state = "4-8" }, -/obj/structure/table/reinforced/steel, -/obj/item/device/destTagger{ - pixel_y = 5 - }, -/obj/item/stack/packageWrap, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenoarch_atrium) -"eUY" = ( -/obj/machinery/light{ - dir = 1; - name = "adjusted light fixture" - }, -/obj/structure/table/steel, -/turf/simulated/floor/carpet/rubber, -/area/horizon/crew_quarters/fitness/gym) -"eVd" = ( -/obj/structure/table/stone/marble, -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/shutters{ - id = "shutters_deck2_kitchendesk"; - name = "Kitchen Desk Shutter" - }, -/obj/machinery/power/outlet, -/turf/simulated/floor/tiled/dark, -/area/horizon/kitchen) -"eVe" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/junction{ - dir = 1; - icon_state = "pipe-j2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/firedoor, -/obj/structure/table/stone/marble, -/obj/item/reagent_containers/food/drinks/shaker{ - pixel_x = 7 - }, -/obj/item/reagent_containers/glass/rag, -/obj/machinery/door/blast/shutters{ - id = "bar_shutter"; - name = "Bar Shutter" - }, -/obj/machinery/power/outlet, -/turf/simulated/floor/tiled/dark, -/area/horizon/bar) -"eVg" = ( -/obj/effect/floor_decal/industrial/outline/emergency_closet, -/obj/machinery/atmospherics/pipe/tank/air{ - dir = 1 - }, -/turf/simulated/floor, -/area/bridge/aibunker) -"eVk" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/item/hullbeacon/red, -/obj/machinery/light/spot{ - dir = 4 - }, -/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) -"eVr" = ( -/obj/structure/window/shuttle/unique/tcfl{ - icon_state = "16,2" - }, -/turf/simulated/floor/plating, -/area/shuttle/legion) -"eVv" = ( -/obj/machinery/door/airlock/command{ - dir = 1; - name = "Direct Fire Artillery System"; - req_one_access = list(75) - }, -/obj/machinery/door/firedoor, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/full, -/area/horizon/longbow) -"eVw" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/obj/effect/floor_decal/corner/dark_blue/full{ - dir = 4 +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/wing/port/far) +"eVp" = ( +/obj/effect/floor_decal/corner/green/diagonal, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/ward/isolation) +"eVr" = ( +/obj/structure/window/shuttle/unique/tcfl{ + icon_state = "16,2" }, -/turf/simulated/floor/tiled/dark, -/area/storage/eva) +/turf/simulated/floor/plating, +/area/shuttle/legion) +"eVs" = ( +/obj/machinery/door/airlock/freezer{ + dir = 1; + id_tag = "main_unit_2"; + name = "Unit 2" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/white, +/area/horizon/crew/fitness/changing) "eVx" = ( /obj/structure/cryofeed, /obj/structure/window/reinforced/crescent{ @@ -35074,50 +34725,105 @@ /obj/structure/lattice/catwalk, /turf/space/dynamic, /area/antag/raider) -"eVC" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable/green{ - icon_state = "1-2" +"eVB" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/horizon/maintenance/deck_two/fore/port) -"eVE" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/plating, -/area/maintenance/wing/port/deck1) +/turf/simulated/floor/tiled/white, +/area/horizon/medical/gen_treatment) +"eVF" = ( +/obj/structure/closet/hazmat/custodial, +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/structure/railing/mapped, +/obj/effect/floor_decal/industrial/outline/custodial, +/turf/simulated/floor/tiled, +/area/horizon/service/custodial) "eVG" = ( /obj/effect/floor_decal/carpet{ dir = 4 }, /turf/simulated/floor/holofloor/carpet, /area/horizon/holodeck/source_dininghall) -"eVN" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 +"eVH" = ( +/obj/random/pottedplant, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 10 }, -/obj/machinery/light{ +/obj/machinery/light, +/turf/simulated/floor/wood, +/area/horizon/crew/lounge) +"eVJ" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/starboard/far) +"eVK" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 5 + }, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/aft_airlock) +"eVL" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/corner_wide/yellow{ + dir = 6 + }, +/obj/machinery/light/spot{ + dir = 4; + must_start_working = 1 + }, +/turf/simulated/floor/tiled, +/area/horizon/engineering/bluespace_drive) +"eVM" = ( +/obj/machinery/requests_console/east{ + department = "Science Conference Room"; + departmentType = 2; + name = "Science Conference Room" + }, +/obj/effect/floor_decal/corner/mauve/full{ dir = 4 }, -/turf/simulated/floor/tiled/dark/full, -/area/rnd/xenoarch_atrium) -"eVO" = ( -/turf/simulated/floor/tiled/dark, -/area/maintenance/security_port) -"eVQ" = ( -/obj/structure/cable/green{ - icon_state = "2-4" - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/carpet, -/area/lawoffice/consular) +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/conference) +"eVP" = ( +/turf/simulated/wall, +/area/horizon/medical/paramedic) "eVT" = ( /obj/structure/lattice/catwalk, /turf/simulated/open/airless, /area/horizon/exterior) +"eVU" = ( +/obj/machinery/door/firedoor, +/obj/structure/grille, +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id = "bridge blast"; + name = "Bridge Blast Doors"; + opacity = 0 + }, +/obj/structure/window/shuttle/scc_space_ship, +/obj/effect/landmark/entry_point/starboard{ + name = "starboard, executive officers office" + }, +/obj/machinery/door/blast/shutters{ + dir = 4; + id = "shutters_deck3_xo"; + name = "Safety Shutter" + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/command/heads/xo) +"eVV" = ( +/turf/simulated/floor/tiled/dark, +/area/horizon/maintenance/deck_1/auxatmos) "eVW" = ( /obj/effect/map_effect/window_spawner/full/reinforced/grille/firedoor, /obj/machinery/door/blast/regular{ @@ -35140,152 +34846,118 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/security/brig) -"eVY" = ( -/obj/effect/floor_decal/corner_wide/purple/full, -/obj/effect/floor_decal/corner_wide/purple{ - dir = 4 +"eWc" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/horizon/hangar/auxiliary) +"eWg" = ( +/obj/machinery/light/small/emergency, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/port/far) +"eWh" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/effect/floor_decal/corner_wide/green{ + dir = 10 + }, +/obj/effect/floor_decal/corner_wide/green{ dir = 1 }, /turf/simulated/floor/tiled/white, -/area/rnd/xenoarch_atrium) -"eWb" = ( -/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, -/obj/machinery/door/blast/shutters/open{ - id = "mech_bay_shutter"; - name = "Mech Bay Shutters" - }, -/turf/simulated/floor/tiled/dark/full, -/area/operations/lower/machinist) +/area/horizon/medical/exam) "eWi" = ( /obj/structure/bed/stool/chair/office/dark, /turf/simulated/floor/wood, /area/shuttle/merchant) -"eWo" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/universal{ - dir = 4 +"eWk" = ( +/obj/machinery/computer/telecomms/monitor{ + network = "tcommsat" }, -/obj/effect/floor_decal/corner/brown{ - dir = 9 +/turf/simulated/floor/tiled/dark/full, +/area/horizon/tcommsat/entrance) +"eWz" = ( +/obj/structure/table/reinforced/wood, +/obj/random/pottedplant_small{ + pixel_x = -6; + pixel_y = 4 }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/intrepid/starboard_compartment) -"eWy" = ( -/obj/structure/railing/mapped{ - dir = 8 +/turf/simulated/floor/wood, +/area/horizon/command/bridge/minibar) +"eWG" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 10 }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/cable/green{ - icon_state = "1-2" +/obj/machinery/disposal/small/north, +/obj/machinery/status_display{ + pixel_y = -32 + }, +/obj/structure/disposalpipe/trunk{ + dir = 1 }, /turf/simulated/floor/tiled, -/area/operations/office_aux) -"eWA" = ( -/obj/structure/dispenser, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/camera/network/research{ - c_tag = "Research - Xenoarchaeology Suit Storage"; - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenoarch_storage) -"eWE" = ( -/obj/structure/platform_stairs/south_north_solo, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard/far) +/area/horizon/crew/resdeck/living_quarters_lift) "eWI" = ( /obj/structure/ladder{ pixel_y = 16 }, /turf/simulated/open/airless, /area/horizon/exterior) -"eWN" = ( +"eWM" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/green{ - icon_state = "0-8" + d1 = 1; + d2 = 2; + icon_state = "1-2" }, -/obj/effect/floor_decal/industrial/warning{ - dir = 5 - }, -/obj/machinery/power/apc/low/south, -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/isolation_a) -"eWS" = ( -/obj/effect/floor_decal/corner_wide/orange{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/medical/pharmacy) +/obj/structure/extinguisher_cabinet/east, +/turf/simulated/floor/plating, +/area/horizon/shuttle/intrepid/starboard_compartment) "eWU" = ( /obj/machinery/portable_atmospherics/canister/oxygen, /turf/unsimulated/floor{ icon_state = "dark_preview" }, /area/centcom/specops) -"eXb" = ( -/obj/random/junk, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"eXj" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/spline/plain/yellow{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/smes/rust) -"eXn" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/spline/plain{ - dir = 4 - }, -/obj/machinery/camera/network/engineering{ - c_tag = "Engineering - C-Goliath Monitoring"; - dir = 8 - }, -/turf/simulated/floor/carpet/rubber, -/area/engineering/bluespace_drive/monitoring) -"eXp" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/black{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/engineering/engine_waste) -"eXs" = ( -/obj/structure/platform/ledge, -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/platform_deco/ledge{ - dir = 5 - }, -/obj/structure/reagent_dispensers/fueltank, +"eWZ" = ( +/obj/machinery/door/window/northleft, /obj/structure/window/reinforced{ dir = 8 }, -/obj/structure/window/reinforced, -/obj/machinery/door/window{ - dir = 4 +/obj/random/junk, +/obj/random/dirt_75, +/obj/random/dirt_75, +/turf/simulated/floor/carpet/rubber, +/area/horizon/maintenance/deck_2/wing/starboard/nacelle) +"eXd" = ( +/obj/machinery/door/airlock/external{ + dir = 4; + frequency = 1380; + icon_state = "door_locked"; + id_tag = "escape_pod_3_hatch"; + locked = 1; + name = "Escape Pod Hatch"; + req_access = list(13) }, -/obj/effect/floor_decal/industrial/hatch/red, -/turf/simulated/floor/tiled/dark/full, -/area/operations/lower/machinist) +/turf/simulated/floor/tiled, +/area/horizon/shuttle/escape_pod/pod4) "eXt" = ( /obj/effect/floor_decal/corner/lime/diagonal{ dir = 8 @@ -35294,105 +34966,136 @@ /obj/machinery/atmospherics/pipe/simple/hidden, /turf/simulated/floor/tiled/dark, /area/shuttle/mercenary) -"eXE" = ( -/obj/machinery/recharge_station, -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/effect/floor_decal/corner/brown/full{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled, -/area/operations/office_aux) -"eXN" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/structure/cable/green, -/obj/machinery/power/apc/east{ - is_critical = 1 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/horizon/kitchen) -"eYb" = ( -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/aux{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 5 - }, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/maintenance/engineering) -"eYc" = ( -/obj/machinery/ntnet_relay, -/turf/simulated/floor/bluegrid, -/area/tcommsat/chamber) -"eYd" = ( -/obj/structure/table/wood, -/obj/item/modular_computer/laptop/preset/supply/om, -/turf/simulated/floor/carpet, -/area/operations/qm) -"eYh" = ( -/obj/effect/floor_decal/industrial/warning/cee{ - dir = 4 - }, -/obj/machinery/atmospherics/binary/pump/on{ - dir = 4; - name = "Distro to Port Docks"; - target_pressure = 200 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/lattice/catwalk/indoor/grate, -/turf/simulated/floor/plating, -/area/horizon/hallway/deck_three/primary/port/docks) -"eYk" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/central) -"eYl" = ( +"eXz" = ( +/obj/machinery/door/firedoor, /obj/structure/cable/green{ icon_state = "4-8" }, +/obj/machinery/door/airlock/engineering{ + dir = 4; + name = "Technical Storage"; + req_access = list(23) + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/map_effect/door_helper/unres{ + dir = 8 + }, +/turf/simulated/floor/tiled/full, +/area/horizon/engineering/storage/tech) +"eXB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 5 + }, +/turf/simulated/floor, +/area/horizon/maintenance/deck_2/wing/starboard/far) +"eXC" = ( +/obj/effect/floor_decal/spline/plain/green{ + dir = 1 + }, +/obj/effect/floor_decal/spline/plain/blue, +/obj/machinery/atmospherics/pipe/simple/hidden/universal{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/horizon/service/hydroponics/lower) +"eXI" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/cyan{ + dir = 4 + }, +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/horizon/engineering/reactor/supermatter/mainchamber) +"eXO" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/main/port) +"eXP" = ( +/obj/machinery/door/firedoor/multi_tile{ + dir = 2 + }, +/obj/machinery/door/airlock/multi_tile/glass{ + dir = 2; + name = "Deck 2 Port Stairwell" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/full, +/area/horizon/stairwell/port/deck_2) +"eXV" = ( +/turf/simulated/wall/r_wall, +/area/horizon/rnd/xenobiology/xenoflora) +"eYf" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume, +/obj/machinery/light/small/emergency{ + dir = 4 + }, +/obj/effect/map_effect/marker/airlock{ + frequency = 1003; + master_tag = "airlock_horizon_deck_1_aft_propulsion_1"; + name = "airlock_horizon_deck_1_aft_propulsion_1" + }, +/turf/simulated/floor/plating, +/area/horizon/engineering/atmos/propulsion) +"eYi" = ( +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id = "EngineBlast"; + name = "Engine Monitoring Room Blast Doors"; + opacity = 0 + }, +/obj/effect/map_effect/window_spawner/full/borosilicate/reinforced/firedoor, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/reactor/supermatter/monitoring) +"eYn" = ( +/obj/structure/reagent_dispensers/extinguisher, /obj/effect/floor_decal/industrial/warning{ dir = 1 }, -/obj/structure/ladder/up{ - pixel_y = 10 +/turf/simulated/floor, +/area/horizon/maintenance/deck_3/aft/port) +"eYr" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 9 }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/closet/secure_closet/engineering_welding, +/turf/simulated/floor/tiled, +/area/horizon/engineering/storage_eva) +"eYw" = ( +/obj/effect/floor_decal/corner_wide/yellow{ + dir = 5 }, -/turf/simulated/floor/plating, -/area/maintenance/hangar/port) +/obj/machinery/power/apc/north, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/obj/structure/platform_deco{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/horizon/engineering/hallway/interior) "eYx" = ( /obj/effect/map_effect/window_spawner/full/reinforced/indestructible, /obj/structure/sign/double/map/right{ @@ -35418,23 +35121,6 @@ }, /turf/simulated/floor/tiled, /area/horizon/security/brig) -"eYE" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/lino, -/area/chapel/main) -"eYG" = ( -/obj/structure/table/standard, -/obj/machinery/power/apc/north, -/obj/item/hoist_kit, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 5 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/cable/green{ - icon_state = "0-2" - }, -/turf/simulated/floor/tiled/dark, -/area/horizon/longbow) "eYK" = ( /obj/structure/lattice/catwalk, /obj/machinery/shield_diffuser, @@ -35444,64 +35130,60 @@ name = "\improper DANGER: MASS EJECTOR PATH sign" }, /turf/simulated/open/airless, -/area/template_noop) -"eYL" = ( -/obj/structure/bed/stool/chair/padded/red{ - dir = 4 +/area/horizon/exterior) +"eYN" = ( +/obj/structure/window/reinforced{ + dir = 8 }, -/obj/structure/platform{ - dir = 4 - }, -/obj/machinery/firealarm/west, +/obj/structure/table/reinforced/steel, +/obj/item/folder/purple, +/turf/simulated/floor/tiled/dark, +/area/horizon/rnd/xenoarch/atrium) +"eYO" = ( +/obj/effect/floor_decal/spline/fancy/wood, /obj/effect/floor_decal/spline/fancy/wood{ dir = 1 }, -/obj/structure/engineer_maintenance/pipe/wall, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/alarm/north, +/obj/item/towel_flat{ + pixel_x = -2; + pixel_y = 4; + name = "Columbo's Bed"; + desc = "A dog blanket laid out on the floor; a poor excuse for a bed, but Columbo doesn't seem to mind it."; + accent_color = "#95453D"; + color = "#95453D" + }, +/mob/living/simple_animal/hostile/commanded/dog/columbo, /turf/simulated/floor/wood, -/area/horizon/crew_quarters/lounge/bar) -"eYR" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ +/area/horizon/command/heads/hos) +"eYY" = ( +/obj/structure/window/reinforced{ dir = 8 }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/structure/lattice/catwalk/indoor/grate, -/turf/simulated/floor/plating, -/area/hallway/primary/central_one) -"eYX" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/structure/table/rack{ - dir = 8 - }, -/obj/item/stock_parts/matter_bin{ - pixel_y = 8 - }, -/obj/item/stock_parts/matter_bin{ - pixel_y = 8 - }, -/obj/item/stock_parts/manipulator, -/obj/item/stock_parts/manipulator, -/obj/item/stock_parts/capacitor{ - pixel_y = -4 - }, -/obj/item/stock_parts/capacitor{ - pixel_y = -4 - }, -/obj/item/stock_parts/scanning_module{ - pixel_y = -8 - }, -/obj/item/stock_parts/scanning_module{ - pixel_y = -8 - }, -/obj/effect/floor_decal/corner/yellow{ - dir = 5 - }, +/obj/machinery/portable_atmospherics/hydroponics, /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled/dark, -/area/engineering/storage/tech) +/area/horizon/rnd/xenobiology/xenoflora) +"eYZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/obj/machinery/door/blast/regular{ + dir = 2; + id = "EngineEmitterPortWest"; + name = "Supermatter Reactor Waste Management Blast Door" + }, +/turf/simulated/floor/tiled/full, +/area/horizon/engineering/reactor/supermatter/waste) "eZa" = ( /obj/machinery/conveyor{ dir = 4; @@ -35512,140 +35194,111 @@ }, /turf/simulated/floor/plating, /area/merchant_station/warehouse) -"eZf" = ( -/obj/structure/bed/stool/chair/padded/brown, -/obj/effect/floor_decal/corner/dark_green{ - dir = 5 - }, +"eZb" = ( +/obj/machinery/hologram/holopad, /turf/simulated/floor/tiled, -/area/engineering/lobby) -"eZk" = ( -/obj/machinery/power/apc/north, -/obj/structure/cable/green{ - icon_state = "0-2" +/area/horizon/hallway/primary/deck_3/central) +"eZd" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor, +/area/horizon/maintenance/deck_3/aft/port/far) +"eZj" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/cryopod/robot, +/obj/machinery/computer/cryopod/robot{ + pixel_y = 32 }, /obj/effect/floor_decal/spline/plain{ dir = 5 }, /turf/simulated/floor/carpet/rubber, -/area/engineering/bluespace_drive/monitoring) -"eZl" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/light/small/emergency{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/turf/simulated/floor/plating, -/area/horizon/maintenance/deck_two/fore/starboard) -"eZm" = ( +/area/horizon/crew/chargebay) +"eZo" = ( +/obj/structure/table/reinforced/steel, +/obj/machinery/door/firedoor, /obj/machinery/door/blast/shutters{ dir = 4; - id = "shutters_custodialgarage"; - name = "Custodial Garage Shutter" + id = "shutters_custodialdesk"; + name = "Custodial Desk Shutter" }, -/obj/machinery/door/firedoor, -/obj/effect/floor_decal/industrial/loading/yellow{ - dir = 4 +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/pen, +/obj/machinery/door/window/desk/westright{ + name = "Custodial Closet Desk Internal"; + req_access = list(26) }, /turf/simulated/floor/tiled/dark/full, -/area/horizon/custodial) -"eZq" = ( -/obj/effect/floor_decal/corner_wide/yellow{ +/area/horizon/service/custodial) +"eZu" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/power/sensor{ + name = "Powernet Sensor - AI Subgrid"; + name_tag = "AI Subgrid" + }, +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/turf/simulated/floor, +/area/horizon/ai/upload_foyer) +"eZx" = ( +/obj/item/flag/scc/l{ + pixel_y = 4 + }, +/obj/item/flag/scc{ + pixel_y = 10 + }, +/obj/item/flag/scc{ + pixel_y = 15 + }, +/obj/structure/table/glass, +/obj/effect/floor_decal/corner/dark_blue{ dir = 9 }, -/obj/structure/sign/nosmoking_1{ - pixel_x = -32 +/obj/machinery/power/apc/west, +/obj/structure/cable/green{ + icon_state = "0-4" }, /turf/simulated/floor/tiled, -/area/engineering/engine_room/rust) -"eZr" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/engineering/locker_room) -"eZw" = ( -/obj/structure/platform/ledge{ - dir = 4 - }, -/turf/simulated/open, -/area/hallway/primary/central_one) -"eZy" = ( -/obj/structure/bed/stool/chair{ - dir = 8 - }, -/obj/effect/floor_decal/spline/fancy/wood/cee{ +/area/horizon/command/bridge/bridge_crew) +"eZC" = ( +/obj/effect/floor_decal/industrial/warning{ dir = 1 }, -/obj/machinery/camera/network/supply{ - c_tag = "Operations - Machinist Surgical Bay"; - dir = 8 - }, -/turf/simulated/floor/wood, -/area/operations/lower/machinist/surgicalbay) +/obj/random/dirt_75, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/starboard/nacelle) "eZD" = ( /obj/effect/decal/cleanable/dirt, /turf/unsimulated/floor/monotile, /area/antag/raider) -"eZE" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/window/eastleft{ - dir = 8; - name = "Bar Access"; - req_access = list(25) - }, -/obj/machinery/door/blast/shutters{ - dir = 8; - id = "bar_shutter"; - name = "Bar Shutter" - }, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/bar) -"eZI" = ( -/obj/structure/bed/stool/chair/padded/black{ - dir = 8 - }, +"eZH" = ( +/turf/simulated/floor/tiled, +/area/horizon/stairwell/port/deck_2) +"eZN" = ( /obj/effect/floor_decal/spline/fancy/wood{ - dir = 8 + dir = 1 + }, +/obj/structure/platform{ + dir = 1 }, /turf/simulated/floor/wood, -/area/lawoffice/representative_two) -"eZM" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/dark/airless, -/area/template_noop) +/area/horizon/service/bar) "eZO" = ( /obj/item/modular_computer/console/preset/security/investigations, /turf/simulated/floor/carpet, /area/horizon/security/investigators_office) -"eZP" = ( -/obj/structure/table/rack, -/obj/structure/window/borosilicate, -/obj/machinery/camera/network/research{ - c_tag = "Research - Research & Development Aft"; - pixel_y = 9; - dir = 8 - }, -/turf/simulated/floor/carpet/rubber, -/area/rnd/lab) +"eZR" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/port/nacelle) "eZT" = ( /obj/machinery/door/airlock/glass_security{ dir = 1; @@ -35661,20 +35314,27 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/full, /area/horizon/security/office) -"eZY" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/green{ - icon_state = "2-4" +"eZW" = ( +/obj/structure/cable{ + icon_state = "4-8" }, -/obj/effect/decal/cleanable/cobweb2{ - icon_state = "cobweb1" +/obj/structure/disposalpipe/segment{ + dir = 4 }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/door/firedoor, /obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/effect/landmark{ - name = "Revenant" +/obj/machinery/door/airlock/maintenance_hatch{ + dir = 4; + req_one_access = list(12) }, -/turf/simulated/floor/plating, -/area/maintenance/research_port) +/turf/simulated/floor, +/area/horizon/maintenance/deck_3/aft/starboard) "eZZ" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -35684,13 +35344,44 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/security/evidence_storage) -"fae" = ( -/obj/machinery/holosign/service{ - id = 4 +"fak" = ( +/obj/structure/sign/securearea{ + pixel_y = 32 }, +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/obj/machinery/light/small/emergency{ + dir = 4 + }, +/obj/random/junk, +/turf/simulated/floor, +/area/horizon/maintenance/deck_3/aft/starboard/far) +"fan" = ( +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red{ + dir = 6 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/turf/unsimulated/floor, +/area/centcom/evac) +"fao" = ( /turf/simulated/wall, -/area/horizon/crew_quarters/lounge/bar) -"faj" = ( +/area/horizon/stairwell/port/deck_2) +"fat" = ( +/obj/effect/floor_decal/corner/black{ + dir = 10 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/hangar/intrepid) +"fax" = ( /obj/machinery/door/firedoor, /obj/structure/cable/green{ icon_state = "4-8" @@ -35705,19 +35396,7 @@ dir = 4 }, /turf/simulated/floor/tiled/full, -/area/horizon/hallway/deck_three/primary/starboard) -"fan" = ( -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/effect/floor_decal/corner/red{ - dir = 6 - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 4 - }, -/turf/unsimulated/floor, -/area/centcom/evac) +/area/horizon/hallway/primary/deck_3/starboard/docks) "faA" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/effect/floor_decal/industrial/warning{ @@ -35727,101 +35406,97 @@ icon_state = "monotile_dark_preview" }, /area/antag/actor) -"faG" = ( -/obj/random/loot, +"faD" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 9 + }, +/obj/structure/extinguisher_cabinet/west, +/obj/structure/cable/green{ + icon_state = "2-4" + }, /turf/simulated/floor/tiled/dark, -/area/maintenance/wing/port/far) -"faH" = ( -/obj/effect/floor_decal/corner/brown{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/operations/office) -"faK" = ( -/obj/structure/flora/ausbushes/lavendergrass, -/turf/simulated/floor/grass/no_edge, -/area/horizon/hydroponics/lower) -"faM" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/horizon/maintenance/deck_two/fore/starboard) +/area/horizon/weapons/longbow) "faN" = ( /obj/effect/floor_decal/industrial/outline/yellow, /turf/unsimulated/floor, /area/centcom/checkpoint/fore) -"faO" = ( -/obj/effect/floor_decal/corner/red/diagonal, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/maintenance/wing/port) -"faS" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/corner/dark_green{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/central) -"faZ" = ( -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/structure/table/reinforced/steel, -/obj/machinery/atmospherics/unary/vent_pump/aux{ - dir = 1 - }, -/obj/item/device/flashlight/lamp{ - pixel_y = 5; - pixel_x = -5 - }, +"faR" = ( +/obj/effect/map_effect/window_spawner/full/borosilicate/reinforced, /turf/simulated/floor/tiled/dark/full, -/area/bridge/aibunker) -"fbc" = ( +/area/horizon/engineering/reactor/supermatter/mainchamber) +"faU" = ( /obj/structure/cable/green{ icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 + dir = 8 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/structure/disposalpipe/segment{ +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/shuttle/intrepid/junction_compartment) +"faV" = ( +/turf/simulated/floor/plating, +/area/horizon/hangar/intrepid) +"faY" = ( +/obj/structure/table/stone/marble, +/obj/machinery/door/firedoor, +/obj/item/glass_jar{ + desc = "A small empty jar that is mostly used for giving a tip."; + name = "tip jar"; + pixel_x = 2; + pixel_y = 18 + }, +/obj/machinery/door/blast/shutters{ + dir = 2; + id = "bar_shutter"; + name = "Bar Shutter" + }, +/obj/machinery/power/outlet, +/turf/simulated/floor/tiled/dark, +/area/horizon/service/bar) +"fba" = ( +/obj/structure/bed/stool/chair/padded/red{ dir = 4 }, -/obj/machinery/light{ +/obj/structure/platform{ + dir = 4 + }, +/obj/machinery/firealarm/west, +/obj/effect/floor_decal/spline/fancy/wood{ dir = 1 }, -/obj/effect/floor_decal/corner/brown{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/operations/loading) +/obj/structure/engineer_maintenance/pipe/wall, +/turf/simulated/floor/wood, +/area/horizon/service/dining_hall) "fbe" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/generic, /obj/effect/floor_decal/corner_wide/dark_green/diagonal, /turf/simulated/floor/tiled/dark, /area/shuttle/skipjack) +"fbf" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible/black, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/atmos) +"fbg" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 5 + }, +/obj/machinery/vending/assist, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled, +/area/horizon/storage/primary) "fbo" = ( /obj/vehicle/droppod/syndie{ connected_blastdoor = "merc_droppod_1" @@ -35841,62 +35516,21 @@ icon_state = "dark_preview" }, /area/centcom/control) -"fbu" = ( -/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/disposalpipe/junction{ - dir = 4 - }, -/obj/effect/floor_decal/corner/brown{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/operations/loading) -"fbv" = ( -/obj/effect/map_effect/window_spawner/full/reinforced/polarized/grille/firedoor{ - id = "consularA" - }, -/obj/structure/cable/green{ - icon_state = "0-4" - }, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "bridge blast"; - name = "Bridge Blast Doors"; - opacity = 0 - }, -/turf/simulated/floor, -/area/lawoffice/consular) -"fbx" = ( -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +"fbt" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/dark, -/area/engineering/smes) -"fbz" = ( -/obj/machinery/atmospherics/pipe/simple/visible/cyan{ - dir = 4 - }, -/obj/machinery/meter, -/obj/effect/floor_decal/industrial/warning{ +/turf/simulated/floor/tiled, +/area/horizon/engineering/storage_eva) +"fbw" = ( +/obj/structure/platform/cutout, +/obj/structure/platform_stairs/full/east_west_cap{ dir = 8 }, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/engine_room) +/obj/structure/platform{ + dir = 1 + }, +/obj/structure/railing/mapped, +/turf/simulated/floor/tiled/dark, +/area/horizon/command/bridge/controlroom) "fbA" = ( /turf/unsimulated/wall/fakeairlock{ icon = 'icons/obj/doors/basic/single/external/door.dmi'; @@ -35909,17 +35543,6 @@ pixel_y = -16 }, /area/antag/raider) -"fbF" = ( -/obj/structure/toilet{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/structure/bed/handrail, -/obj/effect/floor_decal/corner/blue/diagonal, -/turf/simulated/floor/tiled/white, -/area/bridge/bridge_crew) "fbG" = ( /obj/machinery/light/small{ dir = 4; @@ -35934,50 +35557,36 @@ icon_state = "dark_preview" }, /area/centcom/control) -"fbJ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 8 - }, -/turf/simulated/wall/shuttle/unique/scc/research{ - icon_state = "11,17" - }, -/area/shuttle/mining) -"fbK" = ( -/obj/effect/floor_decal/corner/mauve{ - dir = 9 - }, -/obj/machinery/disposal/small/east, -/obj/structure/disposalpipe/trunk, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology/xenological) -"fbL" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/dark, -/area/storage/eva) -"fbQ" = ( -/obj/effect/floor_decal/corner/brown{ - dir = 10 - }, -/obj/machinery/camera/network/second_deck{ - c_tag = "Second Deck - Operations Hallway"; - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/operations/lobby) "fbX" = ( /obj/structure/shuttle_part/mercenary/small{ icon_state = "7,0" }, /turf/unsimulated/floor/plating, /area/shuttle/syndicate_elite) -"fcc" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 9 +"fcd" = ( +/obj/structure/cable/green{ + icon_state = "4-8" }, -/obj/structure/reagent_dispensers/water_cooler, -/turf/simulated/floor/carpet/rubber, -/area/engineering/bluespace_drive/monitoring) +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/corner/brown{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/horizon/operations/office) +"fch" = ( +/obj/effect/floor_decal/corner_wide/yellow{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/horizon/engineering/bluespace_drive) "fcl" = ( /obj/structure/bed/stool/chair/shuttle{ dir = 1 @@ -35990,45 +35599,6 @@ }, /turf/simulated/floor/shuttle/black, /area/shuttle/distress) -"fcm" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/medical{ - dir = 1; - name = "Intensive Care Unit"; - req_access = list(5) - }, -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 2; - icon_state = "shutter0"; - id = "LCKDshutters"; - name = "Medical Lockdown Shutters"; - opacity = 0 - }, -/turf/simulated/floor/tiled/full, -/area/medical/icu) -"fcp" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/central) -"fcq" = ( -/obj/effect/floor_decal/corner_wide/yellow{ - dir = 5 - }, -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled, -/area/hallway/engineering/rust) "fcv" = ( /obj/effect/floor_decal/corner/dark_blue{ dir = 6 @@ -36042,89 +35612,64 @@ /obj/effect/floor_decal/industrial/warning/corner, /turf/simulated/floor/tiled, /area/horizon/security/hallway) -"fcN" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 +"fcC" = ( +/obj/effect/floor_decal/corner_wide/lime{ + dir = 9 }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/floor_decal/industrial/loading/yellow{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/engine_room/rust) -"fcS" = ( -/obj/structure/shuttle_part/scc_space_ship{ - icon_state = "d3-5-f" - }, -/turf/simulated/wall, -/area/maintenance/wing/starboard) -"fcZ" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ +/obj/machinery/light/floor{ dir = 8 }, -/obj/effect/floor_decal/spline/fancy/wood/cee, -/obj/structure/flora/pottedplant{ - icon_state = "plant-28" +/obj/effect/floor_decal/industrial/outline/medical, +/obj/structure/closet/walllocker/medical/firstaid{ + pixel_x = -32 }, -/turf/simulated/floor/wood, -/area/chapel/main) +/turf/simulated/floor/tiled/white, +/area/horizon/medical/reception) +"fcK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor, +/area/horizon/maintenance/deck_2/wing/starboard/far) +"fcL" = ( +/obj/machinery/power/generator{ + anchored = 1; + dir = 4 + }, +/obj/structure/cable/yellow, +/turf/simulated/floor/plating, +/area/horizon/engineering/reactor/supermatter/mainchamber) "fde" = ( /obj/machinery/chem_master{ dir = 4 }, /turf/unsimulated/floor, /area/centcom/legion/hangar5) -"fdf" = ( -/obj/machinery/suit_storage_unit/standard_unit, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/light/small/emergency{ - dir = 8 +"fdh" = ( +/obj/random/pottedplant, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/carpet/rubber, +/area/horizon/command/bridge/controlroom) +"fdi" = ( +/turf/simulated/wall/shuttle/scc_space_ship/cardinal, +/area/horizon/service/dining_hall) +"fdm" = ( +/obj/effect/landmark/entry_point/fore{ + name = "fore, secondary hangar starboard" }, -/turf/simulated/floor/tiled/dark/full, -/area/bridge/aibunker) -"fdk" = ( -/obj/effect/floor_decal/spline/plain{ +/turf/unsimulated/wall/fakepdoor{ + dir = 4 + }, +/area/horizon/hangar/auxiliary) +"fdo" = ( +/obj/machinery/atmospherics/pipe/simple/visible/purple{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/structure/bed/stool/chair/office/dark{ dir = 1 }, -/obj/structure/table/stone/marble, -/obj/machinery/chemical_dispenser/coffeemaster/full{ - pixel_y = 7 - }, -/turf/simulated/floor/marble/dark, -/area/bridge/minibar) -"fdl" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 8 - }, -/obj/effect/floor_decal/corner/yellow, -/obj/machinery/atmospherics/portables_connector{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/dark, -/area/engineering/engine_room/turbine) -"fdn" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/corner/brown{ - dir = 10 - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/operations/break_room) +/turf/simulated/floor/plating, +/area/horizon/engineering/atmos/propulsion/starboard) "fdq" = ( /obj/structure/table/rack, /obj/item/melee/energy/sword/knife{ @@ -36145,31 +35690,7 @@ /area/centcom/legion/hangar5) "fdr" = ( /turf/simulated/wall/shuttle/scc_space_ship/cardinal, -/area/outpost/research/anomaly_storage) -"fdt" = ( -/obj/effect/floor_decal/corner_wide/paleblue/full{ - dir = 4 - }, -/obj/structure/table/standard, -/obj/machinery/button/switch/windowtint{ - dir = 4; - id = "surgery2"; - pixel_x = 21; - pixel_y = 10; - req_access = list(66) - }, -/obj/item/storage/box/gloves, -/obj/item/storage/box/masks{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/machinery/button/switch/holosign{ - dir = 4; - id = 2; - pixel_x = 21 - }, -/turf/simulated/floor/tiled/white, -/area/medical/ors) +/area/horizon/rnd/xenoarch/anomaly_storage) "fdu" = ( /obj/effect/floor_decal/corner/dark_blue{ dir = 9 @@ -36199,75 +35720,74 @@ }, /turf/simulated/floor/tiled, /area/horizon/security/hallway) -"fdA" = ( -/obj/structure/tank_wall{ - icon_state = "m-2" +"fdx" = ( +/obj/structure/ladder/up{ + pixel_y = 13 }, -/obj/effect/floor_decal/industrial/warning{ +/obj/structure/lattice/catwalk/indoor, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/wing/port/far) +"fdz" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 1 }, -/turf/simulated/floor/plating, -/area/engineering/atmos) -"fdB" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 +/obj/structure/cable/green{ + icon_state = "2-8" }, -/obj/effect/floor_decal/corner/white{ +/obj/effect/floor_decal/corner/dark_blue{ dir = 10 }, -/turf/simulated/floor/tiled/dark, -/area/storage/eva) +/turf/simulated/floor/tiled, +/area/horizon/hangar/intrepid) "fdC" = ( /obj/structure/shuttle/engine/propulsion/burst/right, /turf/unsimulated/floor/plating, /area/shuttle/skipjack) -"fdD" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/bluespace_drive) "fdF" = ( /turf/unsimulated/floor/wood, /area/centcom/bar) -"fdH" = ( -/obj/structure/window/shuttle/scc_space_ship, -/obj/structure/grille, -/obj/machinery/door/firedoor, +"fdI" = ( +/obj/machinery/portable_atmospherics/canister/air/airlock, +/obj/machinery/atmospherics/portables_connector{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/plating, -/area/engineering/engine_room) -"fdK" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 4 +/area/horizon/engineering/reactor/supermatter/airlock) +"fdJ" = ( +/obj/structure/cable/green{ + icon_state = "1-2" }, -/obj/structure/disposalpipe/junction{ +/obj/effect/floor_decal/corner/dark_green{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_3/central) +"fdS" = ( +/obj/structure/table/steel, +/obj/item/material/ashtray/bronze{ + pixel_x = -8; + pixel_y = -5 + }, +/obj/random/pottedplant_small{ + pixel_x = 9; + pixel_y = 3 + }, +/obj/machinery/button/remote/blast_door{ dir = 1; - icon_state = "pipe-j2" + id = "shutters_deck3_engibreakwindows"; + name = "Viewing Shutters"; + pixel_x = -7; + pixel_y = 7 }, -/turf/simulated/floor/wood, -/area/horizon/crew_quarters/lounge/bar) -"fdP" = ( -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/effect/floor_decal/corner/dark_blue/full{ - dir = 4 - }, -/obj/item/modular_computer/console/preset/command{ - dir = 1 - }, -/obj/structure/railing/mapped, /turf/simulated/floor/tiled/dark, -/area/bridge/controlroom) +/area/horizon/engineering/break_room) "fdW" = ( /obj/structure/closet/crate/drop/grey, /obj/random/coin, @@ -36276,35 +35796,19 @@ }, /turf/unsimulated/floor/wood, /area/antag/mercenary) -"fdX" = ( -/obj/effect/landmark{ - name = "Revenant" +"feb" = ( +/obj/structure/table/wood, +/obj/effect/floor_decal/spline/fancy/wood, +/obj/machinery/newscaster/south, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/obj/random/pottedplant_small{ + pixel_x = -3; + pixel_y = -2 }, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard/far) -"fdY" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, /turf/simulated/floor/wood, -/area/horizon/bar) -"fee" = ( -/obj/effect/floor_decal/industrial/outline_door/service{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/outline_segment/service{ - dir = 6 - }, -/obj/machinery/ringer_button{ - pixel_y = -26; - pixel_x = 23; - id = "ringer_hydroponics"; - name = "hydroponics ringer button" - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_two/fore) +/area/horizon/hallway/primary/deck_1/central) "fef" = ( /obj/structure/bed/stool/padded/brown{ dir = 8 @@ -36314,39 +35818,87 @@ }, /turf/simulated/floor/lino, /area/merchant_station) -"fep" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/engineering) -"fet" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 1 - }, +"feh" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/effect/floor_decal/corner/dark_green{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_1/central) +"fej" = ( +/obj/machinery/mineral/unloading_machine{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/plating, +/area/horizon/operations/mining_main/refinery) +"feo" = ( +/obj/structure/closet/crate/freezer{ + name = "Fridge" + }, +/obj/item/storage/box/freezer/organcooler, +/obj/machinery/light/small, +/obj/machinery/alarm/cold/north, +/obj/effect/floor_decal/industrial/hatch/grey, +/obj/item/storage/box/monkeycubes, +/obj/machinery/firealarm/south, +/turf/simulated/floor/tiled/freezer{ + name = "cold storage tiles"; + temperature = 278 + }, +/area/horizon/medical/surgery/storage) +"fer" = ( +/obj/structure/table/standard, +/obj/item/folder/purple, +/obj/item/stamp/rd{ + pixel_x = -8; + pixel_y = 10 + }, +/obj/item/device/eftpos{ + eftpos_name = "Research EFTPOS scanner" + }, +/obj/machinery/light/floor{ dir = 4 }, -/obj/structure/cable/green{ - icon_state = "1-4" +/obj/item/paper/monitorkey{ + pixel_y = -6; + pixel_x = 9 }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/papershredder, -/turf/simulated/floor/wood, -/area/lawoffice/consular) +/turf/simulated/floor/carpet/purple, +/area/horizon/command/heads/rd) "feu" = ( /obj/effect/floor_decal/industrial/warning/corner{ dir = 4 }, /turf/simulated/floor/tiled, /area/merchant_station/warehouse) +"fev" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/corner/dark_green{ + dir = 6 + }, +/obj/structure/disposalpipe/junction{ + dir = 1; + icon_state = "pipe-j2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_3/central) "fex" = ( /obj/machinery/vending/coffee/free{ pixel_x = -1 @@ -36418,72 +35970,42 @@ }, /turf/unsimulated/floor, /area/centcom/bar) -"feD" = ( -/obj/structure/cable{ +"feM" = ( +/obj/machinery/light/small/emergency, +/obj/structure/cable/green{ icon_state = "4-8" }, -/obj/structure/cable{ - icon_state = "2-4" - }, +/obj/structure/lattice/catwalk/indoor/grate/dark, /turf/simulated/floor/plating, -/area/maintenance/substation/security) -"feE" = ( -/obj/machinery/holosign/service{ - id = 3 +/area/horizon/maintenance/deck_1/operations/starboard/far) +"feR" = ( +/obj/machinery/door/firedoor, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/airlock/glass_command{ + dir = 4; + name = "Expedition EVA Storage"; + req_one_access = list(18,29,47) }, -/turf/simulated/wall, -/area/horizon/crew_quarters/lounge/bar) -"feI" = ( -/obj/machinery/door/airlock/external{ - dir = 4 - }, -/obj/effect/map_effect/marker/airlock{ - frequency = 1003; - master_tag = "airlock_horizon_deck_1_aft_port_1"; - name = "airlock_horizon_deck_1_aft_port_1" - }, -/obj/effect/map_effect/marker_helper/airlock/exterior, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"feK" = ( -/obj/random/junk{ - pixel_y = -7; - pixel_x = -11 - }, -/obj/random/dirt_75, -/turf/simulated/floor/plating, -/area/maintenance/wing/port/far) -"feO" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/carpet, -/area/horizon/security/head_of_security) -"feW" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/airlock/multi_tile/glass{ - name = "Hangar" - }, -/obj/machinery/door/firedoor/multi_tile, /obj/machinery/door/blast/regular/open{ - dir = 8; id = "hangarlockdown"; name = "Hangar Lockdown" }, /turf/simulated/floor/tiled/full, -/area/hangar/intrepid) -"feY" = ( -/obj/structure/cable/green{ - icon_state = "4-8" +/area/horizon/rnd/eva) +"feT" = ( +/obj/machinery/computer/ship/helm/terminal{ + dir = 1; + req_access = list(73) }, -/obj/machinery/alarm/north, -/turf/simulated/floor/plating, -/area/maintenance/operations) -"ffa" = ( -/turf/simulated/floor/marble/dark, -/area/bridge/minibar) +/obj/effect/floor_decal/industrial/outline/security, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/shuttle/intrepid/flight_deck) +"feU" = ( +/turf/simulated/floor/bluegrid{ + name = "cooled mainframe floor"; + temperature = 278 + }, +/area/horizon/ai/chamber) "ffb" = ( /obj/structure/morgue{ dir = 2; @@ -36492,29 +36014,42 @@ /obj/effect/floor_decal/industrial/outline/grey, /turf/simulated/floor/tiled/dark, /area/horizon/security/evidence_storage) -"ffj" = ( +"ffd" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor, +/area/horizon/maintenance/deck_3/aft/starboard/far) +"ffl" = ( +/obj/machinery/disposal/small/south, +/obj/structure/disposalpipe/trunk, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, /obj/effect/floor_decal/spline/fancy/wood{ dir = 1 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/obj/machinery/light{ + dir = 1 }, /turf/simulated/floor/wood, -/area/rnd/hallway/secondary) +/area/horizon/repoffice/representative_two) "ffm" = ( /turf/simulated/wall/shuttle/unique/mercenary/small{ icon_state = "2,2" }, /area/shuttle/syndicate_elite) -"ffn" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/engine_room/rust) "ffo" = ( /obj/structure/flora/bush/grove, /obj/effect/floor_decal/spline/plain{ @@ -36530,15 +36065,14 @@ icon_state = "water" }, /area/horizon/holodeck/source_moghes) -"ffv" = ( -/obj/machinery/sleeper{ +"fft" = ( +/obj/effect/floor_decal/corner/green/diagonal, +/obj/structure/bed/stool/chair/plastic{ dir = 4 }, -/obj/effect/floor_decal/corner/beige{ - dir = 10 - }, -/turf/simulated/floor/tiled/dark, -/area/medical/icu) +/obj/structure/engineer_maintenance/pipe/wall, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/ward/isolation) "ffw" = ( /obj/structure/noticeboard{ pixel_x = 4; @@ -36546,25 +36080,42 @@ }, /turf/simulated/floor/wood, /area/merchant_station) -"ffz" = ( +"ffy" = ( +/obj/structure/shuttle_part/scc/scout{ + density = 0; + icon_state = "6,11"; + outside_part = 0 + }, +/obj/machinery/atmospherics/unary/engine/scc_shuttle, +/turf/simulated/floor/plating, +/area/horizon/shuttle/canary) +"ffA" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_1/central) +"ffB" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black, +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/reactor/supermatter/waste) +"ffD" = ( /obj/effect/floor_decal/corner/dark_blue{ dir = 10 }, -/obj/machinery/atmospherics/pipe/simple/hidden/aux, -/obj/structure/cable/green{ - icon_state = "1-4" +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 }, -/turf/simulated/floor/tiled/dark, -/area/bridge/aibunker) -"ffG" = ( -/obj/structure/bed/stool/chair/office/light{ - dir = 1 +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology/xenological) +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_3/port/docks) +"ffJ" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/light/small/emergency, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/port/far) "ffK" = ( /turf/unsimulated/floor/plating, /area/antag/mercenary) @@ -36577,58 +36128,117 @@ }, /turf/unsimulated/floor/plating, /area/shuttle/legion) -"ffT" = ( -/obj/effect/floor_decal/corner/grey/diagonal, +"ffP" = ( /obj/effect/floor_decal/spline/plain{ + dir = 8 + }, +/turf/simulated/floor/lino, +/area/horizon/service/cafeteria) +"ffQ" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/starboard/nacelle) +"ffW" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/horizon/operations/warehouse) +"ffX" = ( +/obj/effect/floor_decal/corner/mauve/full{ dir = 1 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, /obj/structure/cable/green{ icon_state = "4-8" }, /turf/simulated/floor/tiled/white, -/area/horizon/kitchen) -"fga" = ( -/obj/structure/cable/green{ +/area/horizon/rnd/xenobiology) +"fgb" = ( +/obj/structure/cable{ icon_state = "1-2" }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/effect/floor_decal/corner/dark_green/full{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hangar/intrepid) -"fgd" = ( -/obj/structure/platform_stairs/south_north_solo{ +/obj/machinery/door/firedoor, +/obj/effect/floor_decal/industrial/hatch_door/red{ dir = 1 }, -/turf/simulated/floor/wood, -/area/horizon/bar) +/obj/machinery/door/airlock/maintenance_hatch{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/maintenance/deck_2/wing/starboard/far) "fgf" = ( /obj/effect/floor_decal/corner/red{ dir = 6 }, /turf/unsimulated/floor, /area/centcom/control) -"fgx" = ( -/obj/structure/cable/green{ - icon_state = "1-8" +"fgq" = ( +/obj/machinery/vending/medical{ + density = 0; + pixel_x = -1; + pixel_y = -32 }, -/obj/effect/floor_decal/corner/dark_blue{ +/obj/effect/floor_decal/corner_wide/green{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/gen_treatment) +"fgr" = ( +/obj/structure/grille, +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/window/shuttle/scc_space_ship/cardinal, +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id = "bridge blast"; + name = "Bridge Blast Doors"; + opacity = 0 + }, +/obj/machinery/door/blast/shutters{ + dir = 4; + id = "shutters_deck3_captain"; + name = "Safety Shutter" + }, +/turf/simulated/floor/plating, +/area/horizon/command/heads/captain) +"fgs" = ( +/obj/machinery/chemical_dispenser/full{ + dir = 1 + }, +/obj/effect/floor_decal/spline/plain{ dir = 5 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/dark, -/area/security/checkpoint2) +/turf/simulated/floor/carpet/rubber, +/area/horizon/medical/pharmacy) +"fgw" = ( +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/structure/closet/crate/freezer/rations, +/obj/machinery/power/apc/super/critical/west, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor, +/area/horizon/command/bridge/aibunker) "fgz" = ( /obj/machinery/washing_machine, /obj/machinery/light{ @@ -36638,60 +36248,34 @@ icon_state = "wood" }, /area/centcom/legion) -"fgF" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 5 - }, -/obj/structure/sign/directions/all{ - dir = 1; - pixel_y = 39 - }, -/obj/structure/cable{ +"fgA" = ( +/obj/structure/cable/green{ icon_state = "4-8" }, -/obj/structure/sign/directions/civ{ - desc = "A sign pointing out that a lift leads to the ship's residential deck."; - dir = 4; - name = "\improper Lifts to Residential Deck sign"; - pixel_y = 26 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/aft) -"fgG" = ( -/obj/effect/floor_decal/corner/brown/full, /obj/structure/disposalpipe/segment{ dir = 4 }, +/obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/obj/structure/cable/green{ - icon_state = "4-8" +/obj/machinery/door/airlock/glass_command{ + dir = 4; + name = "Break Room"; + req_one_access = list(19,38) + }, +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id = "bridge blast"; + name = "Bridge Blast Doors"; + opacity = 0 }, /turf/simulated/floor/tiled, -/area/operations/office) -"fgH" = ( -/obj/effect/floor_decal/corner_wide/green/full{ - dir = 1 - }, -/obj/effect/floor_decal/sign/paramedic, -/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/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/medical/gen_treatment) +/area/horizon/command/bridge/minibar) "fgI" = ( /obj/machinery/optable, /obj/machinery/light, @@ -36699,40 +36283,6 @@ icon_state = "white" }, /area/centcom/holding) -"fgJ" = ( -/obj/structure/table/reinforced/steel, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/button/remote/airlock{ - dir = 1; - id = "intrepid_flightdeck"; - name = "Flight Deck Bolts Control"; - specialfunctions = 4; - pixel_y = 6; - pixel_x = 6 - }, -/obj/item/pen{ - pixel_x = 6; - pixel_y = -13 - }, -/obj/machinery/firealarm/north, -/obj/machinery/button/remote/blast_door{ - dir = 1; - id = "intrepid_bay_outer"; - name = "Airlock Shutters"; - pixel_x = -6; - pixel_y = 6 - }, -/obj/machinery/button/remote/blast_door{ - dir = 1; - id = "intrepid_bay_windows"; - name = "Window Shutters"; - pixel_x = -6; - pixel_y = -5 - }, -/turf/simulated/floor/tiled/dark/full, -/area/shuttle/intrepid/flight_deck) "fgP" = ( /obj/machinery/vending/tacticool/ert, /turf/simulated/floor/shuttle/black, @@ -36744,130 +36294,77 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/security/office) -"fgU" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/door/airlock/glass_service{ - dir = 4; - name = "Bar - Preparations"; - req_access = list(25) - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/full, -/area/horizon/bar) -"fgW" = ( -/obj/machinery/artifact_analyser, -/obj/effect/floor_decal/spline/plain{ - dir = 6 - }, -/turf/simulated/floor/bluegrid, -/area/rnd/isolation_b) -"fgZ" = ( -/obj/effect/floor_decal/corner_wide/yellow{ - dir = 9 - }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/light{ +"fgS" = ( +/obj/effect/floor_decal/spline/plain/corner{ dir = 8 }, -/turf/simulated/floor/tiled, -/area/hallway/engineering/rust) -"fhb" = ( -/obj/machinery/button/remote/blast_door{ - dir = 10; - id = "bridge blast"; - name = "Bridge Lockdown"; - pixel_x = -5; - pixel_y = -18; - req_access = list(19) +/obj/effect/floor_decal/spline/plain/corner, +/obj/effect/floor_decal/spline/plain{ + dir = 1 }, -/obj/machinery/button/remote/blast_door{ - dir = 6; - id = "shutters_deck3_bridgesafety"; - name = "Bridge Safety Shutters"; - pixel_x = 6; - pixel_y = -18 +/obj/machinery/light{ + dir = 1 }, -/obj/structure/railing/mapped{ +/turf/simulated/floor/carpet/rubber, +/area/horizon/tcommsat/chamber) +"fgV" = ( +/obj/machinery/power/terminal{ dir = 4 }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 6 +/obj/structure/cable{ + icon_state = "0-8" }, -/obj/item/folder/blue{ - pixel_y = 7; - pixel_x = 5 - }, -/obj/item/folder/blue{ - pixel_y = 7; - pixel_x = 5 - }, -/obj/structure/table/reinforced/steel, -/obj/item/folder/red{ - pixel_y = 4; - pixel_x = 5 - }, -/obj/machinery/light_switch{ - dir = 6; - pixel_x = 5; - pixel_y = -7 - }, -/obj/random/pottedplant_small{ - pixel_x = -6; - pixel_y = 4 - }, -/obj/machinery/button/remote/blast_door{ - dir = 6; - id = "bridge_foyer"; - name = "Bridge Bolt Control"; - pixel_x = 6; - pixel_y = -27; - req_access = list(19) - }, -/obj/machinery/button/remote/blast_door{ - dir = 10; - id = "hangarlockdown"; - name = "Hangar Lockdoor"; - pixel_x = -5; - pixel_y = -27 +/obj/machinery/camera/network/command{ + c_tag = "AI Core - Upload Airlock" }, +/turf/simulated/floor, +/area/horizon/ai/upload_foyer) +"fgY" = ( +/obj/machinery/firealarm/south, +/obj/effect/floor_decal/corner/dark_blue/full, +/obj/machinery/alarm/west, /turf/simulated/floor/tiled/dark, -/area/bridge/controlroom) -"fhf" = ( -/obj/structure/cable/green, -/obj/machinery/power/apc/critical/south, -/obj/effect/floor_decal/industrial/warning/full, -/obj/machinery/porta_turret, -/obj/structure/sign/nosmoking_1{ - pixel_x = 32 +/area/horizon/ai/upload_foyer) +"fha" = ( +/obj/item/modular_computer/console/preset/supply, +/obj/machinery/button/remote/blast_door{ + dir = 1; + id = "cargo_desk"; + pixel_x = -7; + pixel_y = 25 }, -/obj/machinery/camera/motion{ - c_tag = "Secure Ammunition Storage"; - dir = 8; - network = list("Command","Security") +/obj/effect/floor_decal/corner/brown/full{ + dir = 1 }, -/turf/simulated/floor/reinforced, -/area/horizon/secure_ammunition_storage) +/obj/machinery/ringer/east{ + department = "Cargo"; + id = "cargo_ringer"; + pixel_y = 17; + req_access = list(31) + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled, +/area/horizon/operations/office) "fhi" = ( /obj/effect/floor_decal/corner/paleblue{ dir = 4 }, /turf/unsimulated/floor, /area/centcom/distress_prep) -"fhk" = ( -/obj/effect/floor_decal/corner/dark_green/diagonal, -/obj/structure/table/standard, +"fhn" = ( +/obj/effect/floor_decal/corner/lime{ + dir = 6 + }, +/obj/structure/sink/kitchen{ + dir = 8; + name = "sink"; + pixel_x = 21 + }, /turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/starboard) +/area/horizon/rnd/xenobiology/xenoflora) +"fhr" = ( +/turf/simulated/wall/shuttle/scc_space_ship/cardinal, +/area/horizon/command/heads/cmo) "fhs" = ( /obj/effect/floor_decal/corner/brown/diagonal, /obj/structure/table/wood, @@ -36884,72 +36381,94 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/holodeck_control/beta) -"fhw" = ( -/obj/machinery/chem_heater, -/obj/effect/floor_decal/corner/mauve/diagonal, -/turf/simulated/floor/tiled/white, -/area/rnd/chemistry) -"fhz" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/carpet/rubber, -/area/rnd/lab) -"fhF" = ( -/turf/simulated/floor/tiled, -/area/horizon/stairwell/central) -"fhZ" = ( -/obj/machinery/door/airlock/external{ - dir = 4; - frequency = 1380; - icon_state = "door_locked"; - id_tag = "escape_pod_3_hatch"; - locked = 1; - name = "Escape Pod Hatch"; - req_access = list(13) +"fhu" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 }, -/turf/simulated/floor/tiled, -/area/shuttle/escape_pod/pod3) -"fif" = ( -/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/lattice/catwalk/indoor/grate, /turf/simulated/floor/plating, -/area/maintenance/wing/starboard/deck1) -"fig" = ( -/obj/random/pottedplant, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 10 +/area/horizon/hallway/primary/deck_2/fore) +"fhx" = ( +/obj/structure/cable{ + icon_state = "4-8" }, -/obj/machinery/light, -/turf/simulated/floor/wood, -/area/crew_quarters/lounge) +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/horizon/stairwell/engineering/deck_2) +"fhJ" = ( +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/manifold/visible/cyan{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/atmos/turbine) +"fhN" = ( +/obj/item/folder, +/obj/structure/table/glass{ + table_reinf = "glass" + }, +/obj/structure/curtain/open/medical, +/obj/effect/floor_decal/corner_wide/green{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/ward) +"fhV" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/horizon/operations/warehouse) +"fhX" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/structure/cable/green{ + icon_state = "4-8"; + d1 = 4; + d2 = 8 + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/cargo_compartment) "fip" = ( /obj/structure/sign/nosmoking_2, /turf/simulated/wall, /area/merchant_station/warehouse) -"fit" = ( -/obj/effect/floor_decal/corner/yellow{ - dir = 5 +"fiu" = ( +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/full, +/area/horizon/engineering/hallway/fore) +"fiB" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance_hatch{ + dir = 4 }, -/obj/machinery/vending/tool{ - random_itemcount = 0 - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled, -/area/engineering/storage_eva) -"fiC" = ( -/obj/effect/floor_decal/spline/fancy/wood{ +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/port/near) +"fiE" = ( +/obj/effect/floor_decal/corner/grey/diagonal, +/obj/effect/floor_decal/spline/plain{ dir = 8 }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 4 - }, -/obj/structure/bookcase/libraryspawn/religion, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/chapel/main) -"fiI" = ( -/turf/simulated/wall/r_wall, -/area/engineering/engine_monitoring) +/obj/effect/floor_decal/spline/plain/corner, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/white, +/area/horizon/service/kitchen) "fiK" = ( /obj/structure/railing/mapped{ dir = 4 @@ -36962,52 +36481,42 @@ /obj/effect/floor_decal/corner/grey/diagonal, /turf/simulated/floor/marble, /area/horizon/holodeck/source_trinary) -"fiL" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/structure/cable{ - icon_state = "1-4" - }, -/turf/simulated/floor/plating, -/area/maintenance/wing/port/deck1) -"fiN" = ( -/obj/structure/ladder{ - pixel_y = 8 - }, -/turf/simulated/open, -/area/maintenance/wing/starboard) -"fiO" = ( -/obj/structure/cable/green{ - icon_state = "1-4" - }, +"fiR" = ( /obj/structure/cable/green{ icon_state = "2-4" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 +/obj/machinery/atmospherics/pipe/manifold/hidden, +/obj/effect/floor_decal/corner/yellow/diagonal, +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/aft_airlock) +"fiX" = ( +/obj/structure/cable{ + icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance{ + dir = 1; + name = "INDRA Reactor Maintenance"; + req_one_access = list(11,24) }, -/obj/effect/floor_decal/corner/brown{ - dir = 4 +/turf/simulated/floor/tiled/dark/full, +/area/horizon/maintenance/deck_2/aft) +"fjc" = ( +/obj/machinery/door/firedoor, +/obj/machinery/light{ + dir = 1 }, -/turf/simulated/floor/tiled, -/area/operations/storage) -"fja" = ( -/obj/structure/shuttle_part/scc/mining{ - icon_state = "1,1" +/obj/structure/table/stone/marble, +/obj/machinery/door/blast/shutters{ + dir = 8; + id = "bar_shutter"; + name = "Bar Shutter" }, -/turf/simulated/floor/plating, -/area/shuttle/mining) +/turf/simulated/floor/tiled/dark, +/area/horizon/service/bar) "fjf" = ( /obj/structure/table/reinforced/steel, /obj/machinery/button/remote/blast_door{ @@ -37025,80 +36534,33 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled/dark/full, /area/shuttle/mercenary) -"fjs" = ( -/obj/structure/table/rack/retail_shelf, -/obj/random/loot{ - pixel_x = 8; - pixel_y = 12 - }, -/obj/machinery/light/small{ +"fji" = ( +/obj/machinery/light/floor, +/turf/simulated/floor/tiled/dark, +/area/horizon/service/bar) +"fjk" = ( +/turf/simulated/wall, +/area/horizon/maintenance/deck_2/wing/starboard/far) +"fjm" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/random/loot{ - pixel_x = -7; - pixel_y = 12 - }, -/obj/random/loot{ - pixel_x = -7; - pixel_y = -2 - }, -/obj/random/loot{ - pixel_x = 8; - pixel_y = -2 - }, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/commissary) -"fju" = ( -/obj/effect/floor_decal/corner_wide/grey/diagonal, -/obj/machinery/vending/snack, -/obj/effect/floor_decal/spline/plain{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/operations/break_room) -"fjv" = ( -/obj/machinery/atmospherics/pipe/simple/visible/cyan, -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"fjz" = ( -/obj/effect/floor_decal/corner_wide/green{ - dir = 10 - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 +/obj/effect/floor_decal/corner/brown{ + dir = 10 }, -/obj/structure/closet/secure_closet/personal/patient, -/turf/simulated/floor/tiled/white, -/area/medical/ward) -"fjA" = ( -/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, -/obj/structure/cable/green{ - icon_state = "2-4" - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/structure/cable/green{ - icon_state = "1-4" +/turf/simulated/floor/tiled, +/area/horizon/operations/break_room) +"fjq" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/cyan, +/obj/machinery/meter, +/obj/machinery/light{ + dir = 1 }, /turf/simulated/floor/plating, -/area/shuttle/intrepid/main_compartment) +/area/horizon/engineering/atmos/air) "fjB" = ( /obj/effect/floor_decal/corner/red{ dir = 9 @@ -37110,60 +36572,53 @@ }, /turf/unsimulated/floor, /area/centcom/control) -"fjD" = ( -/turf/simulated/floor/tiled/dark/full, -/area/bridge/aibunker) -"fjK" = ( -/obj/effect/floor_decal/corner/dark_blue{ +"fjG" = ( +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/effect/floor_decal/corner/dark_green{ dir = 9 }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_3/port) +"fjL" = ( +/obj/structure/railing/mapped{ dir = 4 }, -/obj/item/crowbar, -/obj/item/device/flashlight/heavy{ - pixel_y = 6 +/obj/effect/floor_decal/corner/brown{ + dir = 9 }, -/obj/item/device/flashlight/heavy{ - pixel_y = 6 - }, -/obj/item/device/flashlight/heavy{ - pixel_y = 6 - }, -/obj/item/device/camera, -/obj/structure/table/steel, -/turf/simulated/floor/tiled/dark, -/area/security/checkpoint2) +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled, +/area/horizon/operations/office_aux) "fjM" = ( /obj/structure/shuttle/engine/propulsion/burst, /turf/unsimulated/floor/plating, /area/shuttle/distress) -"fjR" = ( -/obj/effect/floor_decal/industrial/hatch/red, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/reinforced/airless, -/area/engineering/engine_room/rust) -"fjS" = ( -/obj/structure/ladder/up{ - pixel_y = 13 - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard/deck1) -"fjW" = ( -/obj/machinery/computer/ship/engines/cockpit{ - pixel_x = 27 - }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 +"fjN" = ( +/obj/machinery/light/small/emergency{ + dir = 8 }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, /turf/simulated/floor/tiled/dark, -/area/shuttle/mining) +/area/horizon/maintenance/deck_2/wing/starboard) "fjX" = ( /obj/vehicle/droppod/syndie{ connected_blastdoor = "merc_droppod_2" @@ -37172,6 +36627,14 @@ icon_state = "dark_preview" }, /area/antag/mercenary) +"fjY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/table/standard{ + no_cargo = 1 + }, +/obj/random/plushie, +/turf/simulated/floor/tiled, +/area/horizon/maintenance/deck_1/wing/starboard/far) "fjZ" = ( /obj/machinery/door/airlock/multi_tile/glass{ name = "Equipment Room"; @@ -37193,12 +36656,6 @@ }, /turf/simulated/floor/holofloor/grass, /area/horizon/holodeck/source_wildlife) -"fkc" = ( -/obj/structure/shuttle_part/scc_space_ship{ - icon_state = "d3-6" - }, -/turf/simulated/wall/r_wall, -/area/rnd/xenobiology/xenoflora) "fkg" = ( /obj/structure/table/reinforced/steel, /obj/machinery/door/blast/shutters/open{ @@ -37217,12 +36674,6 @@ }, /turf/simulated/floor/holofloor/tiled, /area/horizon/holodeck/source_thunderdomecourt) -"fkj" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/turf/simulated/floor, -/area/maintenance/wing/port/far) "fkk" = ( /obj/machinery/conveyor_switch/oneway{ id = "hideout_shipping"; @@ -37240,21 +36691,6 @@ }, /turf/unsimulated/floor, /area/centcom/legion/hangar5) -"fkq" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/sign/double/barsign{ - dir = 4; - pixel_x = -64 - }, -/obj/effect/floor_decal/corner/dark_green/full, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_two/fore) "fkw" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/fake_object{ @@ -37267,101 +36703,96 @@ }, /turf/unsimulated/floor, /area/antag/raider) -"fky" = ( +"fkx" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/cable/orange{ + icon_state = "1-2" + }, /obj/structure/cable/green{ icon_state = "4-8" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ +/obj/structure/lattice/catwalk/indoor, +/turf/simulated/floor/plating, +/area/horizon/engineering/bluespace_drive) +"fkE" = ( +/obj/effect/floor_decal/corner/dark_green/full{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/extinguisher_cabinet/south, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/corner/brown{ - dir = 10 - }, /turf/simulated/floor/tiled, -/area/operations/office) -"fkD" = ( -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 2; - icon_state = "shutter0"; - id = "entrance_shutters"; - name = "Entrance Lockdown Shutters"; - opacity = 0 +/area/horizon/hallway/primary/deck_2/central) +"fkI" = ( +/obj/structure/railing/mapped{ + dir = 8 }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/full, -/area/medical/gen_treatment) -"fkH" = ( -/obj/machinery/atmospherics/pipe/simple/visible/yellow, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 +/obj/effect/floor_decal/corner/dark_green/full, +/obj/machinery/light, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/engineering/atmos) +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_3/port) "fkM" = ( /obj/structure/bed/stool/chair/folding{ dir = 4 }, /turf/simulated/floor/exoplanet/grass, /area/centcom/shared_dream) -"fkN" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/maintenance/hangar/starboard) -"fkR" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 9 +"fkO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 }, -/obj/machinery/atmospherics/unary/vent_pump/on{ +/turf/simulated/floor/plating, +/area/horizon/engineering/drone_fabrication) +"fkQ" = ( +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4 }, -/obj/machinery/requests_console/north{ - announcementConsole = 1; - department = "Consular's Office A"; - departmentType = 5; - name = "Consular's Office requests console"; - pixel_y = 34 +/turf/simulated/floor/tiled/dark, +/area/horizon/rnd/xenoarch/storage) +"fkV" = ( +/obj/machinery/camera/network/service{ + c_tag = "Service - Deck 2 - Dining Hall 2"; + dir = 4 }, -/obj/structure/cable/green{ - icon_state = "4-8" +/obj/structure/synthesized_instrument/synthesizer/piano, +/obj/structure/platform{ + dir = 4 }, /turf/simulated/floor/wood, -/area/lawoffice/consular) -"fkT" = ( -/obj/effect/map_effect/window_spawner/full/reinforced/grille/firedoor, -/obj/machinery/door/blast/regular/open{ - name = "Command Bunker Lockdown"; - id = "command_bunker_lockdown" - }, -/turf/simulated/floor/tiled/dark/full, -/area/bridge/aibunker) -"fkX" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/structure/table/wood, -/obj/machinery/light_switch{ - dir = 4; - pixel_x = 22; - pixel_y = -16 - }, -/obj/machinery/disposal/small/south, -/obj/machinery/light{ +/area/horizon/service/dining_hall) +"fkY" = ( +/obj/effect/floor_decal/corner/dark_blue/full{ dir = 4 }, -/obj/item/material/ashtray/glass, -/turf/simulated/floor/wood/walnut, -/area/medical/smoking) +/obj/machinery/light, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_3/starboard/docks) +"flc" = ( +/obj/structure/platform{ + dir = 8 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/wood, +/area/horizon/command/bridge/meeting_room) "fle" = ( /obj/effect/floor_decal/industrial/outline/security, /obj/structure/sign/nosmoking_2{ @@ -37369,132 +36800,249 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/security/firing_range) -"fll" = ( -/obj/machinery/light{ - dir = 8 +"flf" = ( +/obj/structure/cable/green{ + icon_state = "1-2" }, -/turf/simulated/floor/tiled/dark, -/area/horizon/stairwell/bridge) +/obj/structure/disposalpipe/segment, +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor/plating, +/area/horizon/hangar/intrepid/interstitial) +"flm" = ( +/obj/structure/table/wood, +/obj/item/paper_bin{ + pixel_x = 5; + pixel_y = 4 + }, +/obj/item/stamp/denied{ + pixel_x = -7; + pixel_y = 7 + }, +/obj/item/folder/yellow{ + pixel_x = 5; + pixel_y = 4 + }, +/obj/item/pen/multi{ + pixel_x = 5; + pixel_y = 5 + }, +/obj/item/stamp/op{ + pixel_x = -7; + pixel_y = 4 + }, +/obj/machinery/power/outlet{ + pixel_y = -5; + pixel_x = -7 + }, +/obj/item/clipboard{ + pixel_y = 3; + pixel_x = 5 + }, +/turf/simulated/floor/carpet, +/area/horizon/command/heads/om) "flo" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /obj/structure/bed/stool/chair/shuttle, /turf/simulated/floor/tiled/dark/full, /area/shuttle/skipjack) -"flr" = ( -/obj/effect/floor_decal/corner/dark_green/full{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ +"flq" = ( +/obj/effect/floor_decal/spline/plain{ dir = 8 }, -/obj/machinery/light{ +/obj/effect/floor_decal/spline/plain/corner{ + dir = 1 + }, +/obj/effect/floor_decal/spline/plain{ dir = 4 }, -/obj/machinery/firealarm/south, -/obj/item/device/radio/intercom/east, -/turf/simulated/floor/tiled, -/area/horizon/stairwell/central) +/obj/machinery/atmospherics/pipe/simple/hidden/black, +/turf/simulated/floor/carpet/rubber, +/area/horizon/tcommsat/chamber) +"flt" = ( +/obj/machinery/door/firedoor, +/obj/structure/platform_stairs/full{ + dir = 4 + }, +/obj/structure/platform{ + dir = 1 + }, +/obj/machinery/light, +/turf/simulated/floor/tiled/dark, +/area/horizon/service/bar) "flu" = ( /obj/effect/decal/cleanable/blood/drip, /turf/unsimulated/floor{ icon_state = "wood" }, /area/centcom/legion) -"flw" = ( -/obj/effect/floor_decal/corner/yellow{ - dir = 1 +"flA" = ( +/obj/effect/floor_decal/corner_wide/purple{ + dir = 6 }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 4 - }, -/obj/effect/floor_decal/corner/dark_blue{ +/obj/effect/floor_decal/corner_wide/purple{ dir = 8 }, -/obj/machinery/alarm/west, -/obj/structure/engineer_maintenance/pipe/wall, -/turf/simulated/floor/tiled/dark, -/area/engineering/atmos) -"flH" = ( -/turf/simulated/floor/beach/water/alt, -/area/horizon/hallway/deck_three/primary/starboard) -"flN" = ( -/obj/structure/engineer_maintenance/pipe/wall, -/turf/simulated/floor/tiled/freezer{ - name = "cooled tiles"; - temperature = 278.15 - }, -/area/medical/morgue/lower) -"flR" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - icon_state = "1-2" - }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/industrial/warning{ +/obj/effect/floor_decal/sign/a, +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/xenoarch/atrium) +"flC" = ( +/obj/structure/table/standard, +/obj/effect/floor_decal/corner_wide/green{ + dir = 10 + }, +/obj/item/reagent_containers/spray/cleaner{ + pixel_y = 2 + }, +/obj/structure/railing/mapped, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/hallway) +"flJ" = ( +/obj/machinery/status_display/supply_display{ + pixel_y = 32 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/platform/ledge, +/turf/simulated/open, +/area/horizon/operations/office) +"flT" = ( +/obj/machinery/light{ dir = 4 }, +/obj/effect/floor_decal/corner_wide/green{ + dir = 6 + }, +/obj/effect/landmark/start{ + name = "Surgeon" + }, +/obj/structure/bed/stool/chair{ + dir = 8 + }, /turf/simulated/floor/tiled/white, -/area/medical/gen_treatment) -"fmf" = ( -/obj/structure/table/reinforced/steel, -/obj/random/contraband, -/turf/unsimulated/floor/plating, -/area/centcom/holding) -"fmi" = ( -/obj/structure/cable{ +/area/horizon/medical/hallway/upper) +"flU" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/green, +/turf/simulated/floor/plating, +/area/horizon/engineering/reactor/supermatter/mainchamber) +"flY" = ( +/obj/structure/cable/green{ icon_state = "4-8" }, +/obj/effect/floor_decal/corner/dark_green{ + dir = 10 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/random/junk, -/turf/simulated/floor/plating, -/area/maintenance/wing/port/deck1) -"fmw" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 9 +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_3/central) +"fmd" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" }, -/obj/structure/extinguisher_cabinet/west, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/engine_room) -"fmB" = ( -/obj/machinery/bluespacerelay, -/turf/simulated/floor/bluegrid, -/area/tcommsat/chamber) +/turf/simulated/floor/tiled, +/area/horizon/engineering/locker_room) +"fmf" = ( +/obj/structure/table/reinforced/steel, +/obj/random/contraband, +/turf/unsimulated/floor/plating, +/area/centcom/holding) +"fmo" = ( +/obj/structure/shuttle_part/scc/scout{ + icon_state = "2,10"; + opacity = 1; + outside_part = 0 + }, +/obj/structure/shuttle_part/scc/scout{ + icon = 'icons/obj/spaceship/scc/ship_engine.dmi'; + icon_state = "nozzle"; + opacity = 1; + outside_part = 0 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel, +/turf/simulated/floor/reinforced{ + blocks_air = 1; + density = 1; + name = "thruster mount"; + opacity = 1 + }, +/area/horizon/shuttle/canary) +"fmp" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor, +/area/horizon/command/bridge/upperdeck) +"fmq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/universal{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/rnd/xenobiology/xenoflora) +"fmt" = ( +/obj/machinery/door/airlock/external, +/obj/effect/map_effect/marker_helper/airlock/interior, +/obj/effect/map_effect/marker/airlock/docking{ + landmark_tag = "nav_horizon_dock_deck_3_starboard_2"; + master_tag = "airlock_horizon_dock_deck_3_starboard_2"; + name = "airlock_horizon_dock_deck_3_starboard_2" + }, +/turf/simulated/floor/plating, +/area/horizon/hallway/primary/deck_3/port/docks) +"fmx" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/maintenance/substation/wing_port) +"fmD" = ( +/obj/structure/table/rack, +/obj/random/loot, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor, +/area/horizon/maintenance/deck_3/aft/port) "fmG" = ( /obj/effect/floor_decal/industrial/warning{ dir = 10 }, /turf/unsimulated/floor, /area/antag/ninja) -"fmL" = ( -/obj/structure/morgue/crematorium{ - _wifi_id = "medical_crema" +"fmH" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 }, -/obj/machinery/button/switch/crematorium{ - _wifi_id = "medical_crema"; - dir = 4; - pixel_x = 20; - pixel_y = 8; - req_access = null - }, -/obj/effect/floor_decal/corner/lime{ - dir = 5 - }, -/obj/effect/floor_decal/industrial/outline/red, -/obj/machinery/camera/network/medbay{ - c_tag = "Medical - Autopsy and Cremation" - }, -/turf/simulated/floor/tiled/white{ - name = "cooled white floor"; - temperature = 278.15 - }, -/area/medical/morgue/lower) +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled, +/area/horizon/stairwell/starboard/deck_3) "fmM" = ( /obj/structure/shuttle_part/mercenary/small{ icon_state = "0,5" @@ -37506,18 +37054,6 @@ }, /turf/unsimulated/floor/plating, /area/shuttle/syndicate_elite) -"fmN" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/floor_decal/corner/dark_green{ - dir = 10 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/central) "fmO" = ( /obj/structure/bed/stool/padded/brown{ dir = 8 @@ -37527,48 +37063,80 @@ }, /turf/unsimulated/floor, /area/antag/mercenary) -"fmV" = ( -/obj/structure/cable{ - icon_state = "1-2" +"fmX" = ( +/obj/structure/shuttle_part/scc/scout{ + icon_state = "7,7" }, -/obj/effect/floor_decal/corner/dark_green{ - dir = 10 +/obj/structure/shuttle_part/scc/scout{ + icon_state = "8,7"; + pixel_x = 32 }, -/turf/simulated/floor/tiled, -/area/hangar/intrepid/interstitial) -"fnc" = ( -/obj/effect/floor_decal/corner/dark_green/full, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 +/obj/item/hullbeacon/red{ + pixel_x = 10; + pixel_y = 8 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"fnh" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, /turf/simulated/floor/plating, -/area/horizon/maintenance/deck_two/fore/starboard) +/area/horizon/shuttle/canary) +"fnb" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/multi_tile/glass{ + dir = 2; + name = "Deck 3 Port Docks" + }, +/turf/simulated/floor/tiled/full, +/area/horizon/hallway/primary/deck_3/starboard/docks) +"fnd" = ( +/obj/structure/bed/stool/chair/office/dark, +/obj/effect/landmark/start{ + name = "Janitor" + }, +/obj/machinery/newscaster/west, +/obj/effect/floor_decal/corner/purple/full{ + dir = 8 + }, +/obj/machinery/alarm/north, +/turf/simulated/floor/tiled, +/area/horizon/service/custodial) "fnj" = ( /obj/structure/ship_weapon_dummy, /turf/template_noop, /area/template_noop) +"fnk" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/horizon/rnd/hallway) +"fnq" = ( +/obj/effect/floor_decal/corner_wide/yellow{ + dir = 9 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/horizon/engineering/hallway/interior) "fnr" = ( /obj/effect/map_effect/window_spawner/full/reinforced/indestructible, /obj/machinery/status_display/arrivals_display, @@ -37576,6 +37144,19 @@ icon_state = "plating" }, /area/centcom/spawning) +"fns" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/obj/random/junk, +/obj/machinery/atmospherics/pipe/simple/hidden/aux, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/operations/starboard/amidships) "fnt" = ( /obj/machinery/light{ dir = 8 @@ -37587,160 +37168,122 @@ icon_state = "wood" }, /area/centcom/holding) -"fnB" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/purple, -/obj/effect/floor_decal/corner_wide/black{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/engineering/atmos/propulsion) -"fnD" = ( -/obj/effect/floor_decal/corner_wide/yellow/full, -/obj/effect/floor_decal/industrial/warning{ +"fnA" = ( +/obj/structure/railing/mapped{ dir = 8 }, -/turf/simulated/floor/tiled, -/area/hallway/engineering) -"fnL" = ( -/obj/structure/lattice/catwalk/indoor, -/obj/structure/cable{ +/obj/structure/table/reinforced/steel, +/obj/machinery/atmospherics/unary/vent_pump/aux, +/obj/random/pottedplant_small{ + pixel_x = 6; + pixel_y = 1 + }, +/obj/machinery/recharger{ + pixel_y = 8; + pixel_x = -5 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/command/bridge/aibunker) +"fnJ" = ( +/obj/structure/cable/green{ icon_state = "1-2" }, +/obj/machinery/door/airlock/command{ + dir = 1; + id_tag = "hopdoor"; + name = "Executive Officer's Office"; + req_access = list(57) + }, +/obj/machinery/door/firedoor, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id = "bridge blast"; + name = "Bridge Blast Doors"; + opacity = 0 + }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/airlock/hatch{ - dir = 1; - name = "Port Propulsion"; - req_one_access = list(11,24) +/turf/simulated/floor/tiled, +/area/horizon/command/heads/xo) +"fnR" = ( +/obj/structure/cable/green{ + icon_state = "4-8" }, /obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/green, -/turf/simulated/floor/plating, -/area/engineering/atmos/propulsion) -"fnM" = ( -/obj/structure/railing/mapped{ - dir = 4 +/obj/machinery/door/airlock/glass_engineering{ + dir = 4; + name = "Engineering Hallway"; + req_access = list(10) }, -/obj/structure/railing/mapped{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"fnS" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/medical{ - dir = 1; - name = "Deck 3 Medical"; - req_access = list(5) - }, -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 2; - icon_state = "shutter0"; - id = "LCKDshutters"; - name = "Medical Lockdown Shutters"; - opacity = 0 - }, -/turf/simulated/floor/tiled/full, -/area/hallway/medical/upper) -"fnU" = ( +/turf/simulated/floor/tiled, +/area/horizon/stairwell/engineering/deck_2) +"fnZ" = ( /obj/effect/floor_decal/industrial/warning{ dir = 1 }, -/turf/simulated/floor/reinforced/airless, -/area/engineering/engine_room/rust) +/turf/simulated/floor/reinforced, +/area/horizon/weapons/grauwolf) +"foa" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor, +/area/horizon/hallway/primary/deck_3/starboard) "fof" = ( /obj/effect/floor_decal/corner/green/full{ dir = 8 }, /turf/simulated/floor/holofloor/tiled, /area/horizon/holodeck/source_thunderdomecourt) -"foh" = ( -/obj/effect/floor_decal/corner/dark_green/diagonal, -/turf/simulated/floor/tiled, -/area/security/checkpoint2) -"fol" = ( -/obj/effect/floor_decal/corner/brown{ - dir = 10 +"fok" = ( +/obj/machinery/door/firedoor/multi_tile, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/airlock/multi_tile/glass{ + name = "Human Resources Lounge" }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/structure/extinguisher_cabinet/south, /turf/simulated/floor/tiled, -/area/operations/lobby) +/area/horizon/command/bridge/cciaroom/lounge) "fom" = ( /obj/effect/floor_decal/corner/grey{ dir = 8 }, /turf/unsimulated/floor, /area/centcom/control) -"foo" = ( -/obj/structure/platform{ - dir = 8 +"fos" = ( +/obj/structure/table/standard, +/obj/machinery/computer/security/telescreen{ + name = "Access Monitor"; + network = list("Xeno_Bio"); + req_access = list(55) }, -/obj/machinery/mech_recharger, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/dark/full, -/area/operations/lower/machinist) -"fop" = ( -/obj/effect/floor_decal/spline/plain, -/obj/effect/floor_decal/spline/plain{ - dir = 1 +/obj/effect/floor_decal/corner/mauve{ + dir = 10 }, -/obj/machinery/power/apc/super/critical/north, -/obj/structure/cable/green{ - icon_state = "0-8" +/obj/structure/net_dispenser{ + pixel_y = -32 }, -/turf/simulated/floor/carpet/rubber, -/area/tcommsat/chamber) -"fot" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/window/westleft{ - req_access = list(35); - name = "Hydroponics Desk" - }, -/obj/machinery/door/blast/shutters{ - dir = 4; - id = "shutters_deck2_hydroponicsdesk"; - name = "Hydroponics Desk Shutter" - }, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/hydroponics) +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/xenobiology) "fou" = ( /turf/simulated/floor/carpet/magenta, /area/horizon/holodeck/source_cafe) -"fox" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/effect/floor_decal/corner/dark_green/full, -/turf/simulated/floor/tiled, -/area/hangar/intrepid) -"foG" = ( -/turf/simulated/wall/shuttle/scc, -/area/shuttle/intrepid/engineering) -"foN" = ( -/obj/structure/tank_wall/hydrogen{ - icon_state = "h3" - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/visible/red, -/turf/simulated/floor/airless, -/area/engineering/atmos) -"foO" = ( -/turf/simulated/wall/shuttle/scc_space_ship/cardinal, -/area/engineering/engine_room) +"fov" = ( +/turf/simulated/wall/r_wall, +/area/horizon/engineering/storage_hard) "foQ" = ( /obj/structure/table/rack, /obj/item/rig/retro/equipped, @@ -37750,32 +37293,77 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/unsimulated/floor, /area/centcom/legion/hangar5) -"foZ" = ( -/obj/effect/floor_decal/corner/dark_blue{ +"foT" = ( +/obj/machinery/camera/network/reactor{ + c_tag = "Engineering - Supermatter Reactor 3" + }, +/obj/structure/extinguisher_cabinet/north, +/obj/structure/railing/mapped{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/horizon/engineering/reactor/supermatter/mainchamber) +"foV" = ( +/obj/effect/floor_decal/corner/dark_green{ dir = 6 }, -/turf/simulated/floor/tiled/dark, -/area/turret_protected/ai_upload_foyer) -"fpa" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/spline/plain/red, -/obj/effect/floor_decal/spline/plain{ - dir = 1 +/obj/structure/cable/green{ + icon_state = "4-8" }, /turf/simulated/floor/tiled, -/area/horizon/hydroponics) -"fpd" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 7 +/area/horizon/hallway/primary/deck_2/central) +"foX" = ( +/obj/structure/cable/green{ + icon_state = "1-2" }, -/obj/random/pottedplant, -/turf/simulated/floor/wood, -/area/bridge/meeting_room) +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/engineering{ + dir = 1; + name = "Deck 1 Research Substation"; + req_one_access = list(11,24) + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/substation/xenoarchaeology) +"fpb" = ( +/obj/structure/filingcabinet/chestdrawer{ + pixel_x = 8 + }, +/obj/structure/filingcabinet{ + pixel_x = -8 + }, +/turf/simulated/floor/carpet, +/area/horizon/repoffice/representative_one) +"fpe" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/corner_wide/yellow{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/shields) +"fpi" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black, +/obj/machinery/meter, +/obj/effect/floor_decal/corner/yellow, +/obj/effect/floor_decal/corner/dark_blue{ + dir = 4 + }, +/obj/effect/floor_decal/corner/dark_blue{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/atmos) +"fpl" = ( +/obj/effect/floor_decal/corner/green/diagonal{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/ward) "fpn" = ( /obj/structure/shuttle_part/ert{ icon_state = "3,0"; @@ -37783,21 +37371,6 @@ }, /turf/unsimulated/floor/plating, /area/centcom/specops) -"fpp" = ( -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/effect/floor_decal/corner/black{ - dir = 6 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/hangar/intrepid) "fps" = ( /obj/structure/table/rack, /obj/item/tank/oxygen/red, @@ -37817,88 +37390,126 @@ /obj/effect/decal/cleanable/dirt, /turf/unsimulated/floor, /area/antag/burglar) -"fpx" = ( -/turf/simulated/wall/shuttle/scc_space_ship/cardinal, -/area/horizon/hydroponics) -"fpy" = ( -/obj/machinery/light{ +"fpA" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 10 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/horizon/engineering/hallway/fore) +"fpB" = ( +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/closet/crate, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/corner/brown{ - dir = 6 +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor/plating, +/area/horizon/operations/lobby) +"fpG" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled, -/area/operations/loading) -"fpE" = ( -/obj/structure/bed/stool/chair/office/bridge/generic, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 6 +/area/horizon/service/custodial) +"fpH" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + icon_state = "1-2" }, -/turf/simulated/floor/tiled/dark, -/area/horizon/grauwolf) -"fpF" = ( +/obj/machinery/door/airlock/atmos{ + dir = 1; + req_one_access = list(11,24) + }, +/obj/effect/floor_decal/industrial/hatch_door/engineering{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/atmos/air) +"fpI" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/full, +/area/horizon/operations/office_aux) +"fpM" = ( /obj/structure/cable/green{ icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/highsecurity{ + dir = 4; + id_tag = "sat2"; + locked = 1; + name = "Scuttling Device Chamber"; + req_access = list(20) + }, +/obj/machinery/door/blast/regular{ + id = "sat_blast"; + name = "Scuttling Device Chamber Blast Door" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/aux{ dir = 4 }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/command/bridge/selfdestruct) +"fpY" = ( +/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/horizon/hallway/deck_three/primary/central) -"fpJ" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/obj/structure/lattice/catwalk/indoor/grate, -/turf/simulated/floor, -/area/horizon/hallway/deck_three/primary/port) -"fpK" = ( -/turf/simulated/wall, -/area/medical/psych) -"fpL" = ( -/obj/structure/table/standard, -/obj/item/device/flashlight/lamp/off{ - pixel_x = -5; - pixel_y = 5 - }, -/turf/simulated/floor/plating, -/area/engineering/rust_office) -"fpW" = ( -/obj/machinery/meter, -/obj/machinery/light, -/obj/machinery/atmospherics/pipe/manifold/visible{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/engineering/atmos/air) +/area/horizon/hangar/auxiliary) "fpZ" = ( /obj/effect/floor_decal/industrial/warning{ dir = 5 }, /turf/unsimulated/floor, /area/antag/mercenary) -"fqp" = ( +"fqe" = ( /obj/machinery/door/firedoor, +/obj/structure/window/shuttle/scc_space_ship, +/obj/machinery/door/blast/shutters/open{ + dir = 8; + id = "bar_viewing_shutters"; + name = "Bar Viewing Shutters" + }, /obj/structure/grille, -/obj/structure/window/shuttle/scc_space_ship/cardinal, -/turf/simulated/floor/tiled/dark/full, -/area/rnd/xenobiology/xenoflora) +/obj/effect/landmark/entry_point/starboard{ + name = "starboard, bar" + }, +/turf/simulated/floor/plating, +/area/horizon/service/bar) +"fqk" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/service/bar) "fqs" = ( /obj/effect/floor_decal/spline/plain{ dir = 10 @@ -37914,38 +37525,25 @@ }, /turf/simulated/floor/exoplanet/barren/raskara, /area/centcom/shared_dream) -"fqA" = ( -/obj/effect/floor_decal/corner_wide/purple{ +"fqw" = ( +/obj/effect/floor_decal/corner/mauve{ dir = 5 }, -/obj/effect/floor_decal/corner_wide/purple{ - dir = 8 - }, -/obj/machinery/atmospherics/valve/digital/open{ - dir = 1; - name = "Exotic Energy Harvesting" - }, -/obj/structure/cable/green{ - icon_state = "1-2" +/obj/machinery/light/floor{ + dir = 1 }, /turf/simulated/floor/tiled/white, -/area/rnd/xenoarch_atrium) -"fqE" = ( -/obj/machinery/conveyor{ - id = "cargo_1" +/area/horizon/rnd/conference) +"fqO" = ( +/obj/structure/railing/mapped, +/obj/effect/floor_decal/corner/black{ + dir = 10 }, -/turf/simulated/floor/tiled, -/area/hangar/operations) -"fqK" = ( -/obj/structure/bed/stool/chair/office/dark, -/obj/effect/landmark/start{ - name = "Assistant" - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/storage/primary) +/turf/simulated/floor/tiled/dark, +/area/horizon/hangar/auxiliary) +"fqQ" = ( +/turf/simulated/floor/shuttle/dark_blue, +/area/horizon/shuttle/escape_pod/pod3) "fqW" = ( /obj/structure/table/rack, /obj/item/device/radio/sec{ @@ -38022,25 +37620,12 @@ /obj/effect/floor_decal/industrial/outline/security, /turf/simulated/floor/tiled, /area/horizon/security/equipment) -"frb" = ( -/turf/simulated/wall, -/area/medical/ward/isolation) -"frd" = ( -/obj/effect/floor_decal/corner_wide/black{ - dir = 10 - }, -/obj/effect/floor_decal/industrial/warning, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/engineering/atmos/propulsion) +"frc" = ( +/obj/structure/railing/mapped, +/obj/effect/floor_decal/corner/dark_green/diagonal, +/obj/effect/floor_decal/spline/fancy/wood, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_3/port) "fre" = ( /obj/structure/table/reinforced/steel, /obj/machinery/door/firedoor, @@ -38050,12 +37635,29 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/security/warden) -"frj" = ( +"fro" = ( +/obj/effect/floor_decal/corner/grey/diagonal, +/obj/effect/floor_decal/spline/plain{ + dir = 8 + }, /obj/effect/floor_decal/spline/plain{ dir = 4 }, -/turf/simulated/floor/tiled/dark, -/area/hallway/primary/central_one) +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/white, +/area/horizon/service/kitchen) "frr" = ( /obj/machinery/light/small/emergency{ dir = 4; @@ -38065,33 +37667,29 @@ }, /turf/unsimulated/floor/plating, /area/centcom/distress_prep) +"frt" = ( +/obj/structure/curtain/black{ + icon_state = "open"; + opacity = 0 + }, +/obj/effect/floor_decal/spline/fancy/wood, +/obj/machinery/door/firedoor, +/turf/simulated/floor/wood, +/area/horizon/service/dining_hall) +"fru" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 1 + }, +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/machinery/computer/ship/navigation, +/turf/simulated/floor/tiled/dark, +/area/horizon/hallway/primary/deck_2/central) "frv" = ( /obj/effect/floor_decal/corner/blue/diagonal, /turf/simulated/floor/tiled/white, /area/horizon/security/autopsy_laboratory) -"fry" = ( -/obj/structure/bed/stool/chair/shuttle{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/outline/security, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/structure/extinguisher_cabinet/north, -/turf/simulated/floor/tiled/dark/full, -/area/shuttle/intrepid/flight_deck) -"frA" = ( -/obj/effect/floor_decal/spline/fancy/wood/cee{ - dir = 8 - }, -/obj/structure/filingcabinet/chestdrawer{ - pixel_x = 8 - }, -/obj/structure/filingcabinet{ - pixel_x = -8 - }, -/turf/simulated/floor/wood, -/area/lawoffice/representative_two) "frB" = ( /obj/effect/map_effect/window_spawner/full/reinforced/grille/firedoor, /obj/structure/cable/green{ @@ -38099,56 +37697,69 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/security/office) -"frK" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 8 +"frD" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 10 }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 8 +/obj/structure/sign/science{ + pixel_y = -31 }, -/obj/effect/floor_decal/spline/fancy/wood{ +/obj/machinery/light/floor, +/turf/simulated/floor/tiled, +/area/horizon/rnd/hallway) +"frH" = ( +/obj/structure/railing/mapped{ dir = 4 }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/wood, -/area/horizon/security/head_of_security) +/obj/structure/platform/ledge, +/obj/structure/platform/ledge{ + dir = 8 + }, +/obj/structure/platform_deco/ledge{ + dir = 9 + }, +/turf/simulated/open, +/area/horizon/hallway/primary/deck_2/central) "frO" = ( /obj/effect/map_effect/perma_light/starlight/wide, /turf/space/dynamic, /area/template_noop) -"frV" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 4 +"frY" = ( +/turf/simulated/wall/r_wall, +/area/horizon/hangar/intrepid) +"fsc" = ( +/obj/effect/floor_decal/spline/fancy/wood, +/obj/structure/table/reinforced/wood, +/obj/machinery/button/remote/airlock{ + dir = 9; + id = "conference_room"; + name = "Conference Room Bolts"; + pixel_x = -3; + pixel_y = 8; + specialfunctions = 4 }, -/turf/simulated/floor/wood, -/area/bridge/meeting_room) -"frX" = ( -/obj/effect/floor_decal/corner/mauve/full{ - dir = 4 +/obj/machinery/button/switch/windowtint{ + dir = 5; + id = "bridgeconf"; + pixel_x = -3 }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology) +/turf/simulated/floor/carpet, +/area/horizon/command/bridge/meeting_room) "fse" = ( /obj/effect/floor_decal/corner/grey{ dir = 1 }, /turf/unsimulated/floor/dark, /area/antag/actor) -"fsh" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/central) -"fsi" = ( -/obj/machinery/disposal/small/south, -/obj/structure/disposalpipe/trunk, -/obj/effect/floor_decal/corner/yellow{ +"fsf" = ( +/obj/effect/floor_decal/corner_wide/paleblue{ dir = 5 }, -/turf/simulated/floor/tiled, -/area/engineering/locker_room) +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/hallway) "fsj" = ( /obj/structure/bed/stool/chair/shuttle{ dir = 8 @@ -38161,10 +37772,25 @@ }, /turf/simulated/floor/tiled/dark, /area/shuttle/legion) -"fsp" = ( -/obj/structure/table/stone/marble, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/kitchen) +"fsl" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/airlock/glass{ + dir = 4 + }, +/turf/simulated/floor/tiled/full, +/area/horizon/hallway/primary/deck_3/port) "fst" = ( /obj/structure/cable/green{ icon_state = "1-2" @@ -38178,18 +37804,6 @@ /obj/structure/lattice/catwalk/indoor/grate, /turf/simulated/floor/plating, /area/horizon/security/hallway) -"fsv" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/corner/brown{ - dir = 5 - }, -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/turf/simulated/floor/tiled, -/area/operations/office) "fsw" = ( /obj/machinery/vending/snack{ name = "hacked Getmore Chocolate Corp"; @@ -38215,40 +37829,73 @@ }, /obj/structure/anomaly_container, /turf/simulated/floor/tiled, -/area/outpost/research/anomaly_harvest) +/area/horizon/rnd/xenoarch/anomaly_harvest) +"fsB" = ( +/obj/machinery/portable_atmospherics/hydroponics, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/atmospherics/portables_connector{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/service/hydroponics/lower) +"fsC" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/port/near) +"fsE" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/obj/machinery/fusion_fuel_compressor, +/obj/machinery/light/spot, +/turf/simulated/floor/carpet/rubber, +/area/horizon/engineering/reactor/indra/mainchamber) "fsF" = ( /obj/effect/floor_decal/corner/white{ dir = 5 }, /turf/simulated/floor/holofloor/tiled/dark, /area/horizon/holodeck/source_boxingcourt) -"fsR" = ( -/obj/structure/table/standard, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 9 +"fsH" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 1 }, -/turf/simulated/floor/wood, -/area/crew_quarters/heads/hop/xo) -"fsS" = ( -/obj/structure/shuttle_part/scc/scout{ - icon_state = "7,6" +/obj/structure/table/reinforced/steel, +/obj/random/desktoy{ + pixel_y = 4 }, -/turf/simulated/floor/plating, -/area/shuttle/canary) -"fsU" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - icon_state = "1-2" +/turf/simulated/floor/carpet/rubber, +/area/horizon/engineering/bluespace_drive/monitoring) +"fsK" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 10 + }, +/turf/simulated/wall/shuttle/scc_space_ship/cardinal, +/area/horizon/engineering/atmos/propulsion/starboard) +"fsO" = ( +/obj/effect/floor_decal/corner/red/diagonal, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/emergency{ + dir = 1 }, /turf/simulated/floor/tiled, -/area/bridge/cciaroom/lounge) -"fsV" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/wall, -/area/maintenance/engineering) +/area/horizon/maintenance/deck_3/aft/holodeck) +"fsQ" = ( +/obj/structure/table/wood, +/turf/simulated/floor/carpet, +/area/horizon/crew/journalistoffice) +"fsT" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/horizon/maintenance/deck_1/hangar/starboard) "fsY" = ( /obj/effect/floor_decal/spline/plain{ dir = 8 @@ -38260,89 +37907,81 @@ }, /turf/simulated/floor/exoplanet/grass/grove, /area/centcom/shared_dream) -"fte" = ( -/obj/structure/cable/green{ - icon_state = "1-2" +"fsZ" = ( +/obj/structure/flora/ausbushes/brflowers, +/turf/simulated/floor/grass/no_edge, +/area/horizon/service/cafeteria) +"ftj" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/corner/brown{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/operations/office) -"ftg" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/obj/structure/cable/green{ - icon_state = "4-8" + dir = 1 }, /turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/central) -"ftk" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, +/area/horizon/hallway/primary/deck_2/starboard) +"ftv" = ( /obj/structure/disposalpipe/segment{ - dir = 4 + dir = 8; + icon_state = "pipe-c" }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/full, -/area/hallway/engineering/rust) -"ftn" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/lattice/catwalk/indoor/grate, -/turf/simulated/floor/plating, -/area/hangar/intrepid/interstitial) -"ftu" = ( -/obj/effect/floor_decal/corner/brown{ - dir = 9 - }, -/obj/machinery/light/floor{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/operations/office) -"ftB" = ( -/obj/effect/floor_decal/corner/dark_green, -/turf/simulated/floor/tiled/dark, -/area/hangar/intrepid) -"ftC" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor, +/area/horizon/maintenance/deck_3/aft/starboard) +"ftx" = ( /obj/structure/table/standard, /obj/item/reagent_containers/glass/beaker/large, -/obj/item/device/hand_labeler{ - pixel_y = 10 - }, -/obj/effect/floor_decal/corner_wide/orange{ - dir = 9 - }, -/obj/machinery/power/apc/low/west, -/obj/structure/cable/green{ - icon_state = "0-4" +/obj/effect/floor_decal/corner_wide/orange/full, +/obj/structure/sign/poster/medical/bay_39{ + pixel_x = -29 }, /turf/simulated/floor/tiled/white, -/area/medical/pharmacy) -"ftL" = ( -/obj/structure/tank_wall/hydrogen{ - icon_state = "h10" +/area/horizon/medical/pharmacy) +"fty" = ( +/obj/machinery/power/apc/super/west, +/obj/structure/cable{ + icon_state = "0-4" }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 +/obj/machinery/power/sensor{ + name = "Powernet Sensor - Master Grid"; + name_tag = "Master Grid" }, -/turf/simulated/floor/airless, -/area/engineering/atmos) +/obj/effect/floor_decal/corner/yellow/full, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/reactor/supermatter/waste) +"ftF" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/operations/starboard) +"ftT" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/floor_decal/corner/mauve{ + dir = 6 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/closet/secure_closet/chemical{ + req_access = list(7) + }, +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/chemistry) +"ftU" = ( +/obj/structure/table/standard, +/obj/item/autopsy_scanner{ + pixel_x = -11 + }, +/obj/item/device/mass_spectrometer{ + pixel_x = 10 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/rnd/xenobiology/dissection) "ftV" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/machinery/door/airlock/glass_security{ @@ -38358,20 +37997,29 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled/full, /area/horizon/security/holding_cell_b) -"ftY" = ( -/obj/effect/floor_decal/corner_wide/yellow/full{ - dir = 1 +"ftW" = ( +/turf/simulated/floor/greengrid/nitrogen, +/area/horizon/engineering/drone_fabrication) +"ftX" = ( +/obj/structure/lattice/catwalk/indoor, +/obj/structure/cable{ + icon_state = "1-2" }, -/obj/structure/sign/securearea{ - desc = "A caution sign which reads 'DISPOSALS' and 'AUTHORIZED PERSONNEL ONLY'."; - name = "\improper DISPOSALS sign"; - pixel_y = 32 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/airlock/hatch{ + dir = 1; + name = "Port Propulsion"; + req_one_access = list(11,24) }, -/turf/simulated/floor/tiled, -/area/hallway/engineering) -"fug" = ( -/turf/simulated/floor/tiled, -/area/operations/lower/machinist) +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/green, +/turf/simulated/floor/plating, +/area/horizon/engineering/atmos/propulsion/starboard) +"fua" = ( +/obj/random/dirt_75, +/turf/simulated/floor/carpet/rubber, +/area/horizon/crew/fitness/gym) "fuh" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/flora/pottedplant{ @@ -38386,139 +38034,173 @@ /turf/unsimulated/floor, /area/antag/raider) "fui" = ( +/obj/structure/bed/stool/bar/padded/red{ + dir = 1 + }, +/turf/simulated/floor/lino, +/area/horizon/service/bar) +"fuk" = ( +/obj/machinery/atmospherics/unary/vent_pump/siphon/on/atmos{ + dir = 1; + id_tag = "n_out" + }, +/turf/simulated/floor/reinforced/nitrogen, +/area/horizon/engineering/atmos/air) +"fuu" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 10 + }, +/obj/machinery/camera/network/second_deck{ + c_tag = "Second Deck - Service Entrance"; + dir = 1 + }, +/obj/structure/sign/double/barsign/kitchensign/mirrored{ + pixel_y = -32 + }, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_2/fore) +"fuw" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/power/apc/east, +/obj/structure/cable{ + icon_state = "0-2" + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/operations/starboard/far) +"fuE" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 5 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/closet/crate, +/obj/item/weldingtool/emergency{ + pixel_y = 6 + }, +/obj/item/ladder_mobile, +/obj/item/clothing/glasses/welding/emergency{ + pixel_y = -6 + }, +/obj/item/paper/fluff/bridge, +/obj/item/crowbar/red, +/turf/simulated/floor/tiled, +/area/horizon/command/bridge/bridge_crew) +"fuM" = ( +/obj/machinery/photocopier, /obj/machinery/light/small{ dir = 8 }, -/turf/simulated/floor/plating, -/area/turbolift/primary/deck_1) -"fuj" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 4 - }, -/obj/machinery/light/small/floor, -/turf/simulated/floor/wood, -/area/horizon/cafeteria) -"fut" = ( -/obj/effect/floor_decal/spline/fancy/wood, -/obj/machinery/firealarm/west{ - dir = 2; - pixel_x = 0; - pixel_y = -22 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 +/turf/unsimulated/floor/marble, +/area/antag/wizard) +"fuN" = ( +/obj/structure/table/wood, +/obj/machinery/librarycomp{ + pixel_y = 4 }, +/turf/simulated/floor/carpet/red, +/area/horizon/service/library) +"fuP" = ( +/obj/effect/floor_decal/corner/lime/diagonal, /obj/structure/cable/green{ icon_state = "4-8" }, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/machinery/disposal/small/north, -/turf/simulated/floor/wood, -/area/lawoffice/consular) -"fuJ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/platform_deco{ - dir = 4 - }, -/turf/simulated/floor/lino, -/area/chapel/main) -"fuL" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 6 +/turf/simulated/floor/tiled/white, +/area/horizon/shuttle/intrepid/medical) +"fuR" = ( +/obj/structure/sign/emergency/evacuation{ + dir = 8 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, -/area/hangar/intrepid/interstitial) -"fuS" = ( -/obj/machinery/atmospherics/portables_connector, -/obj/structure/stairs_lower{ - pixel_y = 9 - }, -/obj/machinery/portable_atmospherics/powered/scrubber, -/obj/effect/floor_decal/industrial/outline/red, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/atmos/storage) -"fuX" = ( -/obj/effect/map_effect/window_spawner/full/reinforced/polarized/grille/firedoor{ - id = "consularB" - }, +/area/horizon/hangar/operations) +"fuY" = ( /obj/structure/cable/green{ - icon_state = "0-8" + icon_state = "1-2" }, -/turf/simulated/floor, -/area/lawoffice/consular_two) +/obj/structure/bed/handrail{ + dir = 8 + }, +/obj/machinery/embedded_controller/radio/airlock/docking_port{ + dir = 8; + pixel_x = 25; + pixel_y = 5 + }, +/obj/machinery/airlock_sensor{ + dir = 8; + pixel_x = 25; + pixel_y = -7 + }, +/obj/effect/map_effect/marker_helper/airlock/out, +/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/pipe/manifold/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 4 + }, +/obj/structure/lattice/catwalk/indoor, +/turf/simulated/floor/plating, +/area/horizon/shuttle/mining) +"fuZ" = ( +/obj/machinery/atmospherics/unary/vent_pump/engine{ + dir = 8; + external_pressure_bound = 100; + external_pressure_bound_default = 0; + icon_state = "map_vent_in"; + id_tag = "cooling_out"; + initialize_directions = 1; + pump_direction = 0; + use_power = 1 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/reinforced/reactor, +/area/horizon/engineering/reactor/supermatter/mainchamber) +"fvc" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/port) +"fve" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/structure/tank_wall/phoron{ + icon_state = "ph14" + }, +/obj/machinery/atmospherics/pipe/simple/visible/purple{ + dir = 9 + }, +/turf/simulated/floor/airless, +/area/horizon/engineering/atmos) "fvk" = ( /obj/effect/floor_decal/corner/red/diagonal, /turf/simulated/floor/marble/dark, /area/horizon/holodeck/source_tribunal) -"fvn" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/closet/crate, -/turf/simulated/floor/tiled, -/area/operations/storage) -"fvq" = ( -/obj/machinery/atmospherics/pipe/simple/visible/black{ +"fvz" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ dir = 4 }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, +/obj/structure/table/standard, /turf/simulated/floor/tiled/dark, -/area/engineering/atmos/propulsion) -"fvr" = ( -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/structure/cable/green{ - icon_state = "2-4" - }, -/obj/structure/lattice/catwalk/indoor/grate, -/turf/simulated/floor/plating, -/area/hallway/primary/central_two) -"fvt" = ( -/obj/effect/floor_decal/corner_wide/lime/diagonal, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/reception) -"fvu" = ( -/obj/structure/bookcase/libraryspawn/religion, +/area/horizon/rnd/xenobiology/xenoflora) +"fvA" = ( +/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, /turf/simulated/floor/tiled/dark/full, -/area/horizon/library) -"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 = null; - req_one_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) +/area/horizon/hallway/primary/deck_2/fore) "fvG" = ( /obj/machinery/flasher{ id = "permflash" @@ -38532,6 +38214,13 @@ }, /turf/simulated/floor/tiled, /area/horizon/security/brig) +"fvH" = ( +/obj/structure/closet/walllocker/medical/firstaid{ + pixel_x = -32 + }, +/obj/effect/floor_decal/industrial/outline/medical, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/command/bridge/aibunker) "fvI" = ( /obj/structure/table/rack, /obj/item/clothing/under/color/green, @@ -38539,21 +38228,30 @@ /obj/item/melee/energy/axe, /turf/simulated/floor, /area/tdome/tdome1) -"fvO" = ( -/obj/effect/map_effect/window_spawner/full/reinforced/polarized/firedoor{ - id = "repb" - }, -/turf/simulated/floor/tiled, -/area/lawoffice/representative_two) -"fvR" = ( -/obj/effect/floor_decal/corner/dark_blue/full{ +"fvJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/obj/structure/platform_stairs/full{ +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner/dark_green/full{ + dir = 8 + }, +/obj/effect/floor_decal/spline/plain/corner{ + dir = 8 + }, +/obj/effect/floor_decal/spline/plain/purple{ dir = 1 }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, /turf/simulated/floor/tiled, -/area/bridge) +/area/horizon/service/hydroponics) "fwa" = ( /obj/machinery/papershredder, /turf/unsimulated/floor/marble, @@ -38574,30 +38272,7 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/outpost/research/anomaly_storage) -"fwf" = ( -/turf/simulated/open, -/area/horizon/stairwell/central) -"fwh" = ( -/obj/effect/floor_decal/corner/brown{ - dir = 9 - }, -/obj/effect/floor_decal/industrial/loading/yellow{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/refinery) -"fwj" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/lattice/catwalk/indoor/grate, -/turf/simulated/floor/plating, -/area/rnd/hallway/secondary) +/area/horizon/rnd/xenoarch/anomaly_storage) "fwl" = ( /obj/effect/floor_decal/corner/blue{ dir = 9 @@ -38613,42 +38288,46 @@ /obj/machinery/door/window/southleft, /turf/simulated/floor/tiled/dark, /area/horizon/holodeck_control) -"fwr" = ( -/obj/structure/table/steel, -/obj/item/paper_bin{ - pixel_x = -3 - }, -/obj/item/pen/red, -/obj/item/stack/packageWrap, -/obj/item/device/hand_labeler, -/turf/simulated/floor/tiled/dark/full, -/area/outpost/mining_main/refinery) "fws" = ( /turf/simulated/wall/r_wall, /area/horizon/security/holding_cell_b) -"fwA" = ( -/obj/effect/floor_decal/industrial/hatch/red, -/obj/machinery/portable_atmospherics/canister/boron, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/bluespace_drive) -"fwF" = ( -/obj/structure/table/steel, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 6 - }, -/obj/machinery/firealarm/east, -/obj/item/device/radio/off, -/obj/item/device/radio/off, -/obj/item/device/radio/off, -/obj/item/device/radio/off, -/turf/simulated/floor/tiled/dark, -/area/storage/eva) "fwJ" = ( /obj/structure/bed/stool/chair/shuttle{ dir = 4 }, /turf/simulated/floor/shuttle/black, /area/shuttle/hapt) +"fwN" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled, +/area/horizon/engineering/break_room) +"fwQ" = ( +/obj/effect/floor_decal/corner_wide/purple{ + dir = 9 + }, +/obj/effect/floor_decal/corner_wide/purple{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/visible/yellow{ + dir = 8 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/structure/platform{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/xenoarch/atrium) "fwS" = ( /turf/unsimulated/floor{ icon_state = "ramptop"; @@ -38671,6 +38350,11 @@ /obj/structure/lattice/catwalk/indoor/grate/dark, /turf/simulated/floor/plating, /area/shuttle/mercenary) +"fwY" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/vending/zora, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/hallway/fore) "fxb" = ( /obj/effect/floor_decal/corner/teal{ dir = 8 @@ -38689,13 +38373,19 @@ }, /turf/unsimulated/floor/dark, /area/antag/actor) -"fxl" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/effect/floor_decal/corner/dark_green{ - dir = 5 +"fxe" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 10 }, +/obj/structure/railing/mapped, /turf/simulated/floor/tiled, -/area/hallway/primary/central_two) +/area/horizon/operations/loading) +"fxm" = ( +/obj/structure/platform{ + dir = 4 + }, +/turf/simulated/floor/lino, +/area/horizon/service/chapel/main) "fxo" = ( /obj/machinery/shower{ dir = 1 @@ -38706,6 +38396,25 @@ }, /turf/unsimulated/floor/freezer, /area/antag/mercenary) +"fxp" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 6 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_1/central) +"fxq" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/turf/simulated/floor/tiled, +/area/horizon/hangar/auxiliary) "fxt" = ( /obj/effect/decal/fake_object{ dir = 1; @@ -38715,29 +38424,38 @@ }, /turf/unsimulated/floor, /area/centcom/legion/hangar5) -"fxA" = ( -/obj/structure/cable/green{ - icon_state = "4-8" +"fxu" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 9 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 + 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 }, -/turf/simulated/floor/tiled/full, -/area/hallway/primary/central_two) -"fxC" = ( -/obj/structure/window/shuttle/scc_space_ship, -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/aux, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 1 +/obj/effect/floor_decal/industrial/outline_straight/red{ + dir = 8 }, -/obj/machinery/atmospherics/pipe/simple/hidden/green, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/turf/simulated/floor/tiled, +/area/horizon/shuttle/quark/cargo_hold) +"fxx" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/obj/structure/lattice/catwalk/indoor/grate/dark, /turf/simulated/floor/plating, -/area/hallway/engineering) +/area/horizon/maintenance/deck_1/operations/starboard) "fxF" = ( /obj/effect/decal/fake_object{ desc = "A panel that controls the elevator."; @@ -38748,28 +38466,44 @@ }, /turf/simulated/floor/tiled/dark, /area/centcom/bar) -"fxI" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/vending/snack, -/turf/simulated/floor/tiled/dark, -/area/operations/lobby) -"fxK" = ( -/obj/machinery/door/firedoor, -/obj/effect/floor_decal/corner_wide/yellow{ - dir = 9 +"fxG" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 5 }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/full, -/area/hallway/engineering) -"fxV" = ( +/obj/structure/bed/stool/chair/padded/brown, /obj/machinery/light{ dir = 4 }, -/obj/effect/floor_decal/corner/dark_green{ - dir = 6 +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 }, -/turf/simulated/floor/tiled, -/area/engineering/lobby) +/turf/simulated/floor/wood, +/area/horizon/command/heads/om) +"fxO" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/structure/railing/mapped, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/hallway/primary/deck_2/central) +"fxS" = ( +/obj/machinery/door/airlock/external{ + dir = 1; + frequency = 1380; + icon_state = "door_locked"; + id_tag = "centcom_shuttle_dock_outer"; + locked = 1; + name = "Docking Port Airlock"; + req_access = list(13) + }, +/obj/machinery/access_button{ + command = "cycle_exterior"; + frequency = 1380; + master_tag = "centcom_shuttle_dock_airlock"; + name = "exterior access button"; + pixel_x = 25; + req_one_access = list(13,65) + }, +/turf/simulated/floor/plating, +/area/horizon/security/checkpoint2) "fxW" = ( /obj/structure/sink{ pixel_y = 18 @@ -38782,18 +38516,34 @@ }, /turf/simulated/floor/tiled/white, /area/merchant_station) -"fyb" = ( -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment{ - dir = 4 +"fye" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 }, -/obj/machinery/door/airlock/service{ - dir = 4; - name = "Custodial Closet"; - req_access = list(26) +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 }, /turf/simulated/floor/tiled, -/area/horizon/custodial) +/area/horizon/storage/primary) +"fyf" = ( +/obj/effect/floor_decal/corner_wide/yellow/diagonal, +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/break_room) +"fyg" = ( +/obj/effect/floor_decal/corner_wide/green{ + dir = 1 + }, +/obj/effect/floor_decal/corner_wide/paleblue{ + dir = 4 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/vending/wallmed2{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/hallway) "fyk" = ( /obj/structure/bed/stool/chair/office/dark{ dir = 1 @@ -38802,20 +38552,12 @@ icon_state = "dark_preview" }, /area/centcom/checkpoint/fore) -"fyo" = ( -/obj/structure/cable{ - icon_state = "1-2" +"fyq" = ( +/obj/machinery/atmospherics/pipe/manifold/visible{ + dir = 1 }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/full, -/area/engineering/lobby) -"fyt" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/turf/simulated/floor/tiled/full, -/area/hallway/primary/central_one) +/turf/simulated/floor/tiled/dark, +/area/horizon/rnd/xenobiology/xenoflora) "fyw" = ( /obj/machinery/door/airlock/glass_command{ dir = 1; @@ -38824,65 +38566,63 @@ }, /turf/unsimulated/floor, /area/centcom/legion) -"fyz" = ( -/obj/machinery/atmospherics/pipe/simple/visible/black{ - dir = 4 - }, -/turf/simulated/wall/shuttle/scc_space_ship/cardinal, -/area/engineering/atmos/propulsion/starboard) "fyA" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 }, /turf/simulated/floor/tiled, /area/horizon/security/brig) -"fyD" = ( -/obj/effect/floor_decal/corner_wide/green{ - dir = 5 - }, -/obj/effect/floor_decal/corner_wide/green, -/turf/simulated/floor/tiled/white, -/area/medical/exam) -"fyG" = ( -/obj/structure/bed/stool/chair/office/dark{ +"fyE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/effect/floor_decal/corner/brown{ - dir = 6 +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/structure/cable/green{ + icon_state = "4-8" }, -/turf/simulated/floor/tiled, -/area/operations/office) -"fyQ" = ( -/obj/effect/floor_decal/industrial/warning{ +/obj/effect/floor_decal/spline/plain/corner{ dir = 8 }, -/obj/structure/closet, -/obj/random/junk, -/turf/simulated/floor, -/area/maintenance/security_port) -"fyZ" = ( -/obj/machinery/media/jukebox/audioconsole{ - anchored = 1 - }, -/obj/machinery/light{ +/turf/simulated/floor/carpet/rubber, +/area/horizon/tcommsat/entrance) +"fyT" = ( +/obj/effect/floor_decal/corner/dark_blue/diagonal, +/obj/effect/floor_decal/industrial/warning{ dir = 1 }, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/crew_quarters/lounge/bar) -"fzc" = ( -/obj/effect/floor_decal/corner_wide/lime/diagonal, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/white, -/area/medical/reception) -"fzi" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor, -/area/horizon/maintenance/deck_three/aft/starboard) +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/shuttle/intrepid/flight_deck) +"fza" = ( +/obj/structure/window/shuttle/scc_space_ship/cardinal, +/obj/structure/grille, +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + icon_state = "0-8" + }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id = "bridge blast"; + name = "Bridge Blast Doors"; + opacity = 0 + }, +/obj/machinery/door/blast/shutters{ + dir = 4; + id = "shutters_deck3_captain"; + name = "Safety Shutter" + }, +/turf/simulated/floor/plating, +/area/horizon/command/heads/captain) "fzj" = ( /obj/effect/floor_decal/industrial/warning{ dir = 1 @@ -38901,13 +38641,6 @@ }, /turf/unsimulated/floor, /area/centcom/spawning) -"fzm" = ( -/obj/machinery/computer/ship/navigation, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/horizon/longbow) "fzn" = ( /obj/structure/grille, /obj/structure/window/reinforced, @@ -38920,6 +38653,43 @@ }, /turf/unsimulated/floor/plating, /area/centcom/legion/hangar5) +"fzq" = ( +/obj/effect/floor_decal/corner_wide/green, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/hallway) +"fzs" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 9 + }, +/obj/effect/floor_decal/spline/plain/blue{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/horizon/service/hydroponics/lower) +"fzv" = ( +/obj/machinery/door/airlock/hatch{ + name = "Port Nacelle" + }, +/obj/effect/floor_decal/industrial/hatch_door/yellow{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/shuttle/intrepid/port_storage) "fzw" = ( /obj/effect/decal/fake_object{ color = "#ff0000"; @@ -38932,44 +38702,66 @@ icon_state = "desert4" }, /area/horizon/holodeck/source_beach) -"fzx" = ( -/obj/effect/floor_decal/spline/fancy/wood/cee, -/obj/structure/bed/stool/chair/sofa/left/red{ - dir = 8 - }, -/obj/structure/railing/mapped{ +"fzC" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/simulated/floor/wood, -/area/horizon/cafeteria) -"fzy" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/closet, -/obj/random/loot, -/obj/random/junk, -/turf/simulated/floor/plating, -/area/maintenance/wing/port) -"fzA" = ( -/obj/structure/sign/nosmoking_1{ - pixel_x = 32 +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 }, -/obj/machinery/light{ +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/simulated/floor, +/area/horizon/maintenance/deck_3/aft/starboard/far) +"fzD" = ( +/obj/machinery/door/blast/shutters/open{ + dir = 4; + id = "seconddeckdocksaf"; + name = "Security Checkpoint Shutter" + }, +/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/security/checkpoint2) +"fzF" = ( +/obj/effect/floor_decal/corner_wide/green{ dir = 4 }, -/obj/effect/floor_decal/corner/dark_green/full{ - dir = 4 +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/hallway/upper) +"fzJ" = ( +/obj/effect/floor_decal/corner_wide/yellow{ + dir = 5 + }, +/obj/structure/cable/green{ + icon_state = "4-8" }, -/obj/effect/floor_decal/industrial/outline/firefighting_closet, -/obj/structure/closet/firecloset, /turf/simulated/floor/tiled, -/area/horizon/crew_quarters/cryo/living_quarters_lift) -"fzG" = ( -/obj/effect/landmark/entry_point/port{ - name = "port, medical" - }, -/turf/simulated/wall/shuttle/scc, -/area/shuttle/intrepid/medical) +/area/horizon/engineering/hallway/interior) +"fzK" = ( +/obj/structure/window/shuttle/scc_space_ship, +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/simple/visible/red, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/horizon/engineering/atmos) "fzL" = ( /obj/effect/step_trigger/teleporter/random{ affect_ghosts = 1; @@ -38983,139 +38775,150 @@ }, /turf/space/transit/east, /area/template_noop) -"fzM" = ( -/obj/effect/floor_decal/corner_wide/yellow{ - dir = 10 - }, -/obj/item/modular_computer/console/preset/engineering, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/camera/network/engineering{ - c_tag = "Engineering - Lobby"; - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/engineering/lobby) -"fzO" = ( -/obj/structure/cable/green{ +"fzQ" = ( +/obj/structure/cable{ icon_state = "4-8" }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/maintenance{ - dir = 4; - req_one_access = list(12,19) +/obj/structure/cable{ + icon_state = "1-4" }, /turf/simulated/floor, -/area/horizon/hallway/deck_three/primary/central) -"fzU" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/effect/floor_decal/corner/purple{ - dir = 5 - }, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 1 - }, -/obj/structure/sign/deathsposal{ - desc = "A warning sign which reads 'DANGER: MASS DRIVER'."; - name = "\improper DANGER: MASS DRIVER sign"; - pixel_y = 32 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/red{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/horizon/custodial/disposals) +/area/horizon/maintenance/substation/civ_d3) +"fzV" = ( +/obj/effect/landmark/latejoincryo, +/obj/effect/floor_decal/corner/dark_green/diagonal, +/turf/simulated/floor/tiled, +/area/horizon/crew/fitness/changing) "fAf" = ( /turf/unsimulated/floor/grass, /area/antag/actor) -"fAn" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/effect/floor_decal/industrial/warning{ - dir = 6 +"fAh" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 4 }, -/turf/simulated/floor/reinforced, -/area/rnd/xenobiology) +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/visible/supply{ + dir = 10 + }, +/obj/structure/lattice/catwalk/indoor, +/turf/simulated/floor/plating, +/area/horizon/engineering/atmos/air) +"fAi" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/vending/coffee, +/turf/simulated/floor/tiled/dark, +/area/horizon/operations/lobby) +"fAj" = ( +/obj/structure/flora/ausbushes/sparsegrass, +/obj/structure/flora/bush/grove, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/grass/no_edge, +/area/horizon/hallway/primary/deck_2/fore) +"fAl" = ( +/obj/structure/table/standard, +/obj/machinery/photocopier/faxmachine{ + department = "Chief Engineer's Office" + }, +/obj/machinery/button/remote/airlock{ + desc = "A remote control-switch for the engine core airlock hatch bolts."; + id = "engine_access_hatch"; + name = "Supermatter Reactor Crystal Access Bolts Control"; + pixel_x = -6; + pixel_y = 28; + req_access = list(10); + specialfunctions = 4; + dir = 1 + }, +/obj/machinery/button/remote/blast_door{ + desc = "A remote control-switch for engine core."; + id = "EngineVent"; + name = "Supermatter Reactor Emergency Ventilatory Control"; + pixel_x = 6; + pixel_y = 28; + req_access = list(10); + dir = 1 + }, +/obj/machinery/button/remote/driver{ + id = "enginecore"; + name = "Supermatter Reactor Emergency Crystal Ejection"; + pixel_y = 38; + req_access = list(10); + pixel_x = -7 + }, +/turf/simulated/floor/wood, +/area/horizon/command/heads/chief) "fAo" = ( /turf/simulated/wall/shuttle/unique/tcfl{ icon_state = "12,0" }, /area/shuttle/legion) -"fAA" = ( -/obj/structure/table/stone/marble, -/obj/machinery/reagentgrinder{ - pixel_x = 1; - pixel_y = 7 - }, -/obj/random/pottedplant_small{ - pixel_x = -9; - pixel_y = 1 - }, -/obj/random/pottedplant_small{ - pixel_x = 9; - pixel_y = -15 +"fAq" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 1 }, +/obj/item/device/megaphone/stagemicrophone, /turf/simulated/floor/tiled/dark, -/area/horizon/hydroponics/garden) -"fAL" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ +/area/horizon/service/bar) +"fAv" = ( +/obj/effect/floor_decal/corner/grey{ + dir = 5 + }, +/obj/machinery/requests_console/north{ + department = "Bar"; + departmentType = 1; + name = "Bar Requests Console" + }, +/obj/structure/closet/crate/drinks, +/obj/item/storage/box/fancy/yoke/grape_juice, +/obj/item/storage/box/fancy/yoke/beetle_milk, +/turf/simulated/floor/lino, +/area/horizon/service/bar) +"fAw" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 +/obj/structure/cable/green{ + icon_state = "4-8" }, -/obj/effect/floor_decal/corner_wide/green{ - dir = 10 - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/white, -/area/hallway/medical/upper) +/obj/machinery/atmospherics/pipe/simple/visible/cyan, +/obj/structure/lattice/catwalk/indoor, +/turf/simulated/floor/plating, +/area/horizon/engineering/atmos/air) +"fAy" = ( +/obj/structure/table/rack, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/research) "fAN" = ( /obj/machinery/teleport/pad/ninja, /turf/unsimulated/floor/monotile, /area/antag/jockey) +"fAR" = ( +/obj/machinery/chem_master, +/obj/effect/floor_decal/spline/plain{ + dir = 9 + }, +/obj/structure/extinguisher_cabinet/west, +/turf/simulated/floor/carpet/rubber, +/area/horizon/medical/pharmacy) "fAU" = ( /obj/structure/bed/stool/padded/red, /obj/effect/floor_decal/corner/brown/diagonal, /obj/structure/engineer_maintenance/electric/wall, /turf/simulated/floor/tiled/dark, /area/horizon/holodeck_control) -"fAZ" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 5 +"fAX" = ( +/obj/machinery/iff_beacon/horizon/shuttle{ + pixel_y = -21 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/effect/floor_decal/industrial/warning{ + dir = 10 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/effect/floor_decal/spline/plain{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_two/fore) +/turf/simulated/floor/reinforced, +/area/horizon/shuttle/intrepid/flight_deck) "fBb" = ( /obj/effect/floor_decal/corner/lime{ dir = 6 @@ -39125,80 +38928,18 @@ 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{ +"fBn" = ( +/obj/structure/cable/green{ 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" +/obj/machinery/door/airlock/engineering{ + dir = 1; + name = "Deck 1, 2, and 3 Medical Substation"; + req_access = list(66) }, +/obj/machinery/door/firedoor, /turf/simulated/floor/plating, -/area/shuttle/quark/cargo_hold) -"fBf" = ( -/obj/effect/floor_decal/corner_wide/yellow{ - dir = 5 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/hallway/engineering/rust) -"fBg" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 6 - }, -/turf/simulated/floor/plating, -/area/maintenance/engineering) -"fBi" = ( -/obj/structure/cable{ - 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/dark_green/full{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hangar/auxiliary) -"fBp" = ( -/obj/structure/table/standard, -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/machinery/door/window{ - name = "Reception Desk"; - req_access = list(5) - }, -/obj/item/reagent_containers/spray/cleaner{ - pixel_x = -7; - pixel_y = 4 - }, -/obj/random/pottedplant_small{ - pixel_x = 9; - pixel_y = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/reception) +/area/horizon/maintenance/substation/medical) "fBr" = ( /obj/effect/floor_decal/corner/lime{ dir = 9 @@ -39211,34 +38952,99 @@ icon_state = "dark_preview" }, /area/centcom/holding) -"fBs" = ( -/obj/machinery/atmospherics/pipe/simple/visible/black, -/obj/structure/shuttle/engine/heater{ +"fBz" = ( +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/effect/floor_decal/industrial/warning{ dir = 1 }, /obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/structure/railing/mapped, -/turf/simulated/floor/plating, -/area/engineering/atmos/propulsion/starboard) -"fBE" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 9 +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 }, -/obj/machinery/disposal/small/east, -/obj/structure/disposalpipe/trunk{ +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/port/near) +"fBB" = ( +/obj/effect/floor_decal/spline/fancy/wood{ dir = 4 }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_two) +/obj/machinery/papershredder, +/turf/simulated/floor/wood, +/area/horizon/service/library) +"fBH" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/effect/floor_decal/spline/plain{ + dir = 1 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/carpet/rubber, +/area/horizon/tcommsat/entrance) "fBK" = ( /turf/simulated/floor/tiled/ramp/bottom, /area/centcom/legion) +"fBM" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/horizon/engineering/locker_room) +"fBO" = ( +/obj/effect/floor_decal/corner_wide/paleblue/full{ + dir = 8 + }, +/obj/structure/table/glass{ + table_reinf = "glass" + }, +/obj/machinery/photocopier/faxmachine{ + department = "Chief Medical Officer's Office" + }, +/obj/machinery/newscaster/north, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/command/heads/cmo) +"fBR" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/structure/plasticflaps/airtight{ + dir = 8 + }, +/obj/machinery/door/window/westleft{ + name = "Server Room" + }, +/obj/machinery/door/window/eastleft{ + name = "Server Room" + }, +/turf/simulated/floor/bluegrid/server, +/area/horizon/rnd/server) "fBS" = ( /obj/structure/bed/stool/padded/brown{ dir = 1 }, /turf/simulated/floor/lino, /area/merchant_station) +"fBT" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/item/hullbeacon/red, +/obj/machinery/light/spot{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/horizon/hangar/intrepid) "fBU" = ( /obj/effect/floor_decal/industrial/warning{ dir = 1 @@ -39258,38 +39064,26 @@ /obj/structure/window/reinforced/holowindow, /turf/simulated/floor/holofloor/wood, /area/horizon/holodeck/source_courtroom) -"fCd" = ( -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ +"fCe" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden{ dir = 4 }, -/turf/simulated/floor/tiled/dark, -/area/engineering/atmos/propulsion) +/obj/machinery/door/airlock/external, +/obj/effect/map_effect/marker/airlock/docking{ + landmark_tag = "nav_horizon_dock_deck_3_port_2"; + master_tag = "airlock_horizon_dock_deck_3_port_2"; + name = "airlock_horizon_dock_deck_3_port_2" + }, +/obj/effect/map_effect/marker_helper/airlock/interior, +/obj/machinery/access_button{ + pixel_x = 28 + }, +/turf/simulated/floor/plating, +/area/horizon/hallway/primary/deck_3/starboard/docks) "fCf" = ( /obj/effect/floor_decal/corner/black/diagonal, /turf/simulated/floor/tiled/dark, /area/shuttle/burglar) -"fCj" = ( -/obj/machinery/telecomms/hub/preset, -/turf/simulated/floor/bluegrid, -/area/tcommsat/chamber) -"fCo" = ( -/obj/structure/window/shuttle/scc_space_ship, -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "bridge blast"; - name = "Bridge Blast Doors"; - opacity = 0 - }, -/obj/machinery/door/blast/shutters/open{ - dir = 4; - id = "shutters_deck3_bridgesafety"; - name = "Safety Shutter" - }, -/turf/simulated/floor/tiled/dark/full, -/area/lawoffice/representative_two) "fCp" = ( /obj/effect/floor_decal/corner/black{ dir = 9 @@ -39307,32 +39101,21 @@ icon_state = "wood" }, /area/centcom/legion) -"fCt" = ( -/obj/structure/platform_stairs/full/east_west_cap, -/obj/structure/platform/cutout{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/maintenance/wing/starboard) -"fCv" = ( +"fCw" = ( /obj/structure/cable/green{ - icon_state = "2-8" + icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/simple/hidden/red, -/turf/simulated/floor/tiled/dark, -/area/horizon/custodial/disposals) -"fCy" = ( -/obj/item/stack/material/wood/full, -/obj/item/stack/material/steel/full, -/obj/item/stack/material/bronze/full, -/obj/structure/closet/crate{ - name = "Cremation Urn Materials" +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/corner/brown{ + dir = 9 }, -/obj/machinery/light, -/obj/item/stack/material/glass/full, -/obj/item/device/hand_labeler, -/turf/simulated/floor/tiled/dark, -/area/chapel/office) +/obj/effect/landmark/start{ + name = "Hangar Technician" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/horizon/operations/office) "fCC" = ( /obj/machinery/button/remote/blast_door{ dir = 4; @@ -39344,6 +39127,15 @@ }, /turf/unsimulated/floor/plating, /area/antag/mercenary) +"fCD" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled/full, +/area/horizon/engineering/storage_hard) "fCE" = ( /obj/structure/sign/flag/biesel{ pixel_x = -5; @@ -39351,15 +39143,69 @@ }, /turf/unsimulated/floor, /area/centcom/legion) -"fCT" = ( +"fCI" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/effect/decal/cleanable/cobweb, /turf/simulated/floor/plating, -/area/maintenance/operations) +/area/horizon/maintenance/deck_1/wing/starboard) +"fCJ" = ( +/obj/machinery/power/apc/north, +/obj/structure/cable/green{ + icon_state = "0-8" + }, +/obj/effect/floor_decal/corner/yellow/full{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/aft_airlock) +"fCL" = ( +/turf/simulated/open, +/area/horizon/stairwell/bridge) +"fCM" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 9 + }, +/obj/machinery/smartfridge/secure, +/obj/effect/floor_decal/spline/plain{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/horizon/service/hydroponics) +"fCO" = ( +/obj/effect/landmark/entry_point/fore{ + name = "fore, main hangar" + }, +/turf/unsimulated/wall/fakepdoor{ + dir = 4 + }, +/area/horizon/hangar/intrepid) "fCV" = ( /obj/effect/floor_decal/corner/beige{ dir = 5 }, /turf/simulated/floor/tiled/dark, /area/shuttle/merchant) +"fCW" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/airlock/glass_service{ + dir = 4; + name = "Custodial Closet Storage"; + req_access = list(26) + }, +/turf/simulated/floor/tiled, +/area/horizon/service/custodial) "fCZ" = ( /obj/structure/table/reinforced/wood, /obj/effect/floor_decal/spline/fancy/wood{ @@ -39369,6 +39215,11 @@ icon_state = "wood" }, /area/centcom/control) +"fDg" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/aft) "fDj" = ( /obj/structure/sign/directions/dock{ dir = 4; @@ -39379,23 +39230,58 @@ }, /turf/unsimulated/floor, /area/centcom/spawning) -"fDu" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/floor_decal/spline/fancy/wood{ +"fDm" = ( +/obj/effect/floor_decal/corner/dark_green{ dir = 10 }, -/obj/machinery/light_switch{ - dir = 8; - pixel_x = -22; - pixel_y = 23 +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" }, -/obj/structure/flora/pottedplant{ - icon_state = "plant-33" +/turf/simulated/floor/tiled, +/area/horizon/crew/fitness/changing) +"fDo" = ( +/obj/structure/bed/stool/chair/padded/black, +/obj/effect/floor_decal/corner/dark_green{ + dir = 9 }, -/turf/simulated/floor/wood, -/area/chapel/main) +/obj/item/device/radio/intercom/north, +/turf/simulated/floor/tiled, +/area/horizon/security/checkpoint2) +"fDq" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/disposalpipe/junction{ + icon_state = "pipe-j2" + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/reactor/indra/smes) +"fDv" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner/dark_green{ + dir = 5 + }, +/obj/machinery/alarm/north, +/turf/simulated/floor/tiled, +/area/horizon/hangar/auxiliary) +"fDx" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 9 + }, +/turf/simulated/floor/reinforced/airless, +/area/horizon/engineering/atmos/propulsion/starboard) "fDy" = ( /obj/structure/table/reinforced/wood, /obj/item/storage/box/fancy/cookiesnack, @@ -39408,161 +39294,102 @@ }, /turf/simulated/floor/reinforced/airless, /area/horizon/exterior) -"fDB" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +"fDF" = ( +/obj/structure/bed/stool/chair/office/light{ + dir = 8 }, -/obj/machinery/vending/dinnerware/plastic{ - density = 0; - pixel_x = 10; - pixel_y = 24 +/obj/effect/floor_decal/corner_wide/purple/diagonal, +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/test_range) +"fDG" = ( +/turf/simulated/floor/reinforced/airless, +/area/horizon/engineering/atmos) +"fDH" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 10 }, -/obj/machinery/camera/network/service{ - c_tag = "Dinner - Kitchen Service"; - pixel_x = 5 +/obj/machinery/light/floor, +/obj/machinery/alarm/south, +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/conference) +"fDJ" = ( +/obj/effect/floor_decal/corner/white/diagonal, +/obj/structure/cable/green{ + icon_state = "1-8" }, -/turf/simulated/floor/lino, -/area/horizon/crew_quarters/lounge/bar) -"fDC" = ( -/turf/simulated/floor/tiled/dark, -/area/horizon/bar) -"fDD" = ( -/turf/simulated/floor/plating, -/area/medical/morgue/lower) -"fDL" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/floor_decal/industrial/warning, -/obj/structure/trash_pile, -/turf/simulated/floor/plating, -/area/maintenance/wing/port/deck1) -"fDO" = ( -/obj/machinery/atmospherics/pipe/simple/visible{ +/obj/item/device/radio/intercom/south, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 9 }, -/turf/simulated/floor/reinforced/airmix, -/area/engineering/atmos/air) -"fDP" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 + dir = 9 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor, -/area/maintenance/engineering_ladder) -"fDR" = ( -/obj/effect/floor_decal/spline/fancy/wood/corner{ - dir = 4 - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 5 - }, -/turf/simulated/floor/wood, -/area/horizon/cafeteria) -"fDU" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lime{ - dir = 10 - }, -/obj/effect/floor_decal/corner/dark_blue{ +/turf/simulated/floor/tiled, +/area/horizon/medical/paramedic) +"fDN" = ( +/obj/structure/railing/mapped, +/obj/structure/railing/mapped{ dir = 1 }, -/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{ +/turf/simulated/floor/reinforced/airless, +/area/horizon/command/bridge/controlroom) +"fDQ" = ( +/obj/structure/bed/stool/chair/padded/brown{ dir = 8 }, -/turf/simulated/floor/tiled, -/area/hallway/engineering) -"fDX" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/structure/disposalpipe/segment{ - icon_state = "pipe-c" - }, -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/obj/structure/lattice/catwalk/indoor/grate, -/turf/simulated/floor, -/area/horizon/hallway/deck_three/primary/central) -"fEe" = ( /obj/effect/floor_decal/spline/fancy/wood{ - dir = 5 - }, -/obj/random/pottedplant, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/platform{ - dir = 8; - pixel_y = 13 + dir = 6 }, /turf/simulated/floor/wood, -/area/horizon/crew_quarters/lounge/bar) -"fEl" = ( -/obj/machinery/door/window/northleft, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/computer/shuttle_control/multi/lift/operations{ - pixel_x = -27; - pixel_y = 16 +/area/horizon/hallway/primary/deck_3/central) +"fDW" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/effect/floor_decal/corner/brown{ + dir = 9 }, /turf/simulated/floor/tiled, -/area/operations/office_aux) -"fEu" = ( -/obj/machinery/mineral/stacking_machine{ - id = "horizon_stacking_2"; - dir = 8 +/area/horizon/operations/lobby) +"fDY" = ( +/obj/structure/cable{ + icon_state = "1-2" }, -/obj/effect/floor_decal/industrial/warning/full, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, /turf/simulated/floor/plating, -/area/outpost/mining_main/refinery) -"fEy" = ( +/area/horizon/maintenance/deck_2/aft) +"fEk" = ( +/obj/structure/table/wood, +/turf/simulated/floor/wood/mahogany, +/area/horizon/service/dining_hall) +"fEm" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/starboard/far) +"fEx" = ( +/obj/structure/railing/mapped, /obj/structure/railing/mapped{ dir = 4 }, -/obj/effect/floor_decal/corner/black{ - dir = 6 - }, -/obj/effect/floor_decal/industrial/loading/yellow{ +/obj/structure/platform/ledge{ dir = 1 }, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 +/obj/structure/platform/ledge{ + dir = 8 }, -/turf/simulated/floor/tiled/dark, -/area/hangar/intrepid) +/turf/simulated/open, +/area/horizon/medical/hallway/upper) "fEz" = ( /obj/effect/floor_decal/corner/beige{ dir = 5 @@ -39578,6 +39405,21 @@ /obj/item/storage/box/sharps, /turf/simulated/floor/tiled/white, /area/horizon/security/forensic_laboratory) +"fEA" = ( +/obj/effect/floor_decal/corner_wide/yellow{ + dir = 9 + }, +/obj/effect/floor_decal/spline/plain{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/horizon/engineering/break_room) "fEC" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/structure/railing/mapped{ @@ -39585,10 +39427,12 @@ }, /turf/simulated/floor/reinforced/airless, /area/horizon/exterior) -"fEG" = ( -/obj/random/dirt_75, -/turf/simulated/floor/tiled, -/area/maintenance/wing/port/far) +"fEE" = ( +/obj/structure/bed/stool/chair/padded/brown{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/horizon/command/heads/chief) "fEH" = ( /obj/structure/table/rack, /obj/item/clothing/accessory/storage/white_vest{ @@ -39644,9 +39488,17 @@ }, /turf/simulated/floor/exoplanet/snow, /area/centcom/shared_dream) -"fFb" = ( -/turf/simulated/floor/airless, -/area/hangar/operations) +"fEZ" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/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, +/area/horizon/command/bridge/aibunker) "fFc" = ( /obj/effect/floor_decal/spline/plain/cee{ dir = 1 @@ -39654,39 +39506,6 @@ /obj/structure/flora/ausbushes/lavendergrass, /turf/simulated/floor/exoplanet/grass/grove, /area/centcom/shared_dream) -"fFd" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/alarm/north, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard/far) -"fFf" = ( -/obj/machinery/atmospherics/binary/pump/fuel{ - name = "Fuel Tank to Thrusters" - }, -/obj/item/device/radio/intercom/east{ - pixel_y = 6 - }, -/obj/effect/floor_decal/corner/dark_blue/full{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/structure/bed/handrail{ - dir = 8 - }, -/obj/machinery/embedded_controller/radio/simple_docking_controller{ - dir = 8; - frequency = 1386; - id_tag = "canary"; - name = "port docking controller"; - pixel_x = 22; - pixel_y = 12; - tag_door = "canary_out" - }, -/turf/simulated/floor/tiled/dark/full, -/area/shuttle/canary) "fFi" = ( /obj/effect/floor_decal/industrial/warning{ dir = 1 @@ -39710,67 +39529,39 @@ /obj/structure/table/standard, /turf/unsimulated/floor/plating, /area/centcom/specops) -"fFj" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/machinery/light/small/emergency{ +"fFs" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ dir = 4 }, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard/deck1) -"fFl" = ( -/obj/machinery/power/apc/super/east, -/obj/structure/cable/green, -/obj/effect/floor_decal/corner/dark_blue/full{ - dir = 4 +/obj/machinery/door/blast/regular{ + dir = 2; + id = "EngineEmitterPortWest"; + name = "Supermatter Reactor Waste Management Blast Door" }, -/obj/machinery/camera/network/command{ - c_tag = "Bridge - Crewman Lockeroom"; +/turf/simulated/floor/tiled/full, +/area/horizon/engineering/reactor/supermatter/waste) +"fFB" = ( +/obj/machinery/firealarm/south, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 1 }, -/obj/machinery/firealarm/south, -/obj/structure/closet/emcloset, -/obj/effect/floor_decal/industrial/outline/emergency_closet, -/turf/simulated/floor/tiled, -/area/bridge/bridge_crew) -"fFm" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/structure/tank_wall/carbon_dioxide{ - icon_state = "co2-15" +/obj/effect/floor_decal/spline/plain, +/turf/simulated/floor/carpet/rubber, +/area/horizon/engineering/reactor/indra/monitoring) +"fFD" = ( +/obj/machinery/door/firedoor, +/obj/structure/table/stone/marble, +/obj/machinery/door/blast/shutters/open{ + dir = 8; + id = "shutters_deck3_cafedesk"; + name = "Cafe Desk Shutter" }, -/obj/machinery/atmospherics/pipe/simple/visible/black, -/turf/simulated/floor/airless, -/area/engineering/atmos) -"fFo" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 +/obj/random/pottedplant_small{ + pixel_x = 10; + pixel_y = -7 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/maintenance/engineering_ladder) -"fFx" = ( -/obj/effect/floor_decal/corner/lime/diagonal, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/white, -/area/shuttle/intrepid/medical) +/turf/simulated/floor/tiled/dark/full, +/area/horizon/service/cafeteria) "fFF" = ( /obj/machinery/light/small{ dir = 1 @@ -39782,37 +39573,18 @@ icon_state = "wood" }, /area/centcom/distress_prep) -"fFH" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/cyan, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"fFK" = ( -/obj/structure/platform/ledge, -/obj/structure/platform/ledge{ - dir = 8 +"fFN" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 }, -/obj/structure/platform_deco/ledge{ - dir = 9 - }, -/turf/simulated/open, -/area/horizon/hallway/deck_three/primary/central) +/turf/simulated/floor/wood, +/area/horizon/service/cafeteria) "fFO" = ( /obj/effect/shuttle_landmark/merchant/interim{ dir = 1 }, /turf/space/transit/east, /area/template_noop) -"fFR" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/machinery/atmospherics/binary/pump{ - name = "Mix to Connector"; - dir = 4 - }, -/turf/simulated/floor/plating, -/area/engineering/storage/lower) "fFV" = ( /obj/machinery/flasher{ id = "permflash" @@ -39820,69 +39592,25 @@ /obj/effect/floor_decal/industrial/outline/security, /turf/simulated/floor/tiled, /area/horizon/security/brig) -"fFX" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 5 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/horizon/bar) -"fGc" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/dark/full, -/area/storage/shields) -"fGh" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard) -"fGi" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/effect/floor_decal/corner/dark_green{ - dir = 6 - }, -/obj/machinery/button/remote/blast_door{ - dir = 4; - id = "shutters_deck2_hydroponicswindowssafety"; - name = "Viewing Shutters"; - pixel_x = 21; - pixel_y = 7 - }, -/obj/effect/floor_decal/spline/plain/green{ +"fGg" = ( +/obj/effect/floor_decal/industrial/warning{ dir = 8 }, -/obj/machinery/disposal/small/west, -/obj/structure/disposalpipe/trunk{ - dir = 1 +/obj/machinery/light/small/emergency{ + dir = 4 }, -/turf/simulated/floor/tiled, -/area/horizon/hydroponics/lower) +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/port) +"fGk" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/light/small/emergency{ + dir = 8 + }, +/turf/simulated/floor, +/area/horizon/maintenance/deck_3/security/port) "fGm" = ( /obj/structure/shuttle_part/ert{ icon_state = "1,0"; @@ -39899,24 +39627,12 @@ icon_state = "dark" }, /area/centcom/legion) -"fGD" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 8 - }, -/obj/structure/bed/stool/chair/shuttle/double{ - pixel_x = -8 - }, -/obj/effect/floor_decal/corner/brown{ - dir = 6 - }, -/obj/effect/floor_decal/spline/plain/black{ - dir = 5 - }, -/obj/structure/cable/green{ - icon_state = "4-8" +"fGB" = ( +/obj/effect/floor_decal/corner/black/full{ + dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/shuttle/intrepid/main_compartment) +/area/horizon/hangar/intrepid) "fGF" = ( /obj/effect/floor_decal/corner/blue/full, /obj/structure/table/rack, @@ -39931,19 +39647,6 @@ icon_state = "dark_preview" }, /area/centcom/control) -"fGK" = ( -/obj/structure/cable/green{ - icon_state = "2-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/operations/mail_room) "fGL" = ( /obj/machinery/light/colored/red{ dir = 4 @@ -39952,30 +39655,6 @@ /obj/effect/floor_decal/industrial/warning/full, /turf/simulated/floor/reinforced, /area/shuttle/hapt) -"fGN" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/structure/disposalpipe/sortjunction/flipped{ - name = "Deck 3 Cafe"; - sortType = "Deck 3 Cafe" - }, -/obj/effect/floor_decal/corner/red/diagonal, -/obj/effect/floor_decal/spline/plain/corner{ - dir = 4 - }, -/turf/simulated/floor/lino, -/area/horizon/cafeteria) -"fGO" = ( -/obj/machinery/recharger{ - pixel_y = 6 - }, -/obj/structure/table/standard, -/obj/effect/floor_decal/corner/mauve{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology/xenological) "fGS" = ( /obj/effect/floor_decal/industrial/warning{ dir = 6 @@ -39983,30 +39662,36 @@ /obj/item/hullbeacon/red, /turf/simulated/floor/reinforced/airless, /area/horizon/exterior) -"fGV" = ( -/obj/effect/floor_decal/corner/mauve{ +"fGY" = ( +/obj/effect/floor_decal/industrial/warning{ dir = 9 }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology) -"fGX" = ( -/obj/random/pottedplant, -/obj/machinery/power/apc/west, -/obj/effect/floor_decal/corner_wide/lime{ - dir = 9 +/obj/machinery/atmospherics/unary/vent_pump/high_volume/aux{ + dir = 4 }, -/obj/structure/cable/green{ - icon_state = "0-4" +/obj/item/hullbeacon/green{ + pixel_y = 6; + pixel_x = 8 }, -/turf/simulated/floor/tiled/white, -/area/medical/reception) -"fGZ" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 1 +/obj/structure/bed/handrail{ + dir = 8; + pixel_x = 2 }, -/turf/simulated/floor/wood, -/area/horizon/crew_quarters/lounge/bar) +/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/horizon/shuttle/quark/cargo_hold) "fHa" = ( /obj/effect/floor_decal/corner/blue{ dir = 10 @@ -40028,6 +39713,13 @@ icon_state = "carpet" }, /area/antag/raider) +"fHg" = ( +/obj/machinery/ammunition_loader/longbow{ + weapon_id = "Longbow Cannon" + }, +/obj/effect/floor_decal/industrial/hatch/red, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/weapons/longbow) "fHh" = ( /obj/machinery/door/blast/regular{ dir = 4; @@ -40036,125 +39728,139 @@ }, /turf/simulated/floor/tiled/dark/full, /area/shuttle/hapt) -"fHi" = ( -/obj/structure/table/standard, -/obj/effect/floor_decal/corner_wide/green{ - dir = 5 +"fHj" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/shutters/open{ + dir = 2; + id = "warehouse3"; + name = "Warehouse Shutter" }, -/obj/machinery/light{ - dir = 1 - }, -/obj/item/storage/firstaid/regular{ - pixel_x = -4; - pixel_y = 8 - }, -/obj/item/storage/firstaid/regular{ - pixel_x = -4; - pixel_y = 3 - }, -/turf/simulated/floor/tiled/white, -/area/medical/main_storage) -"fHn" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 6 - }, -/obj/effect/floor_decal/corner/yellow{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/storage/eva) -"fHw" = ( -/obj/machinery/atmospherics/pipe/simple/visible{ +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/full, +/area/horizon/operations/warehouse) +"fHm" = ( +/obj/effect/floor_decal/corner_wide/purple{ dir = 9 }, -/obj/effect/floor_decal/corner/lime{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 +/obj/effect/floor_decal/corner_wide/purple{ + dir = 4 }, /obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora) -"fHz" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_two) -"fHA" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/visible/yellow, /turf/simulated/floor/tiled/white, -/area/rnd/isolation_b) -"fHN" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/machinery/requests_console/north{ - announcementConsole = 1; - department = "Consular's Office B"; - departmentType = 5; - name = "Consular's Office requests console"; - pixel_y = 34 - }, +/area/horizon/rnd/xenoarch/atrium) +"fHs" = ( +/obj/machinery/power/apc/east, /obj/structure/cable/green{ - icon_state = "4-8" + icon_state = "0-8" }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 5 +/turf/simulated/floor/tiled, +/area/horizon/operations/machinist/surgicalbay) +"fHu" = ( +/obj/machinery/door/airlock/maintenance{ + dir = 4; + name = "Deck 3 Medical Maintenance"; + req_access = list(5) }, -/turf/simulated/floor/wood, -/area/lawoffice/consular_two) -"fHP" = ( -/obj/machinery/atmospherics/unary/vent_pump/engine{ - dir = 8; - external_pressure_bound = 100; - external_pressure_bound_default = 0; - icon_state = "map_vent_in"; - id_tag = "cooling_out"; - initialize_directions = 1; - pump_direction = 0; - use_power = 1 +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 4; + icon_state = "shutter0"; + id = "LCKDshutters"; + name = "Medical Lockdown Shutters"; + opacity = 0 }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/reinforced/reactor, -/area/engineering/engine_room) -"fHS" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/structure/railing/mapped{ - dir = 8 +/turf/simulated/floor/tiled/full, +/area/horizon/maintenance/deck_3/aft/holodeck) +"fHC" = ( +/obj/machinery/alarm/south{ + req_one_access = list(11, 24, 47, 65) }, +/obj/effect/floor_decal/corner/grey/diagonal, +/obj/structure/table/stone/marble, +/turf/simulated/floor/tiled/white, +/area/horizon/shuttle/intrepid/buffet) +"fHQ" = ( +/obj/structure/table/reinforced, /obj/effect/floor_decal/industrial/warning{ dir = 4 }, -/obj/structure/railing/mapped{ +/obj/machinery/door/firedoor, +/obj/machinery/door/window/eastright, +/turf/simulated/floor/reinforced, +/area/horizon/rnd/test_range) +"fHT" = ( +/obj/machinery/light{ dir = 4 }, -/obj/machinery/power/apc/south, -/obj/structure/cable/green, +/obj/structure/table/standard, +/obj/structure/lattice/catwalk/indoor/grate/dark, /turf/simulated/floor/plating, -/area/horizon/maintenance/deck_two/fore/starboard) -"fIg" = ( -/obj/effect/floor_decal/industrial/warning{ +/area/horizon/engineering/reactor/indra/smes) +"fHU" = ( +/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, +/obj/machinery/door/airlock/maintenance_hatch{ + dir = 1; + req_access = list(12) + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/aft) +"fHW" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/table/reinforced/steel, +/obj/item/device/destTagger{ + pixel_y = 5 + }, +/obj/item/stack/packageWrap, +/turf/simulated/floor/tiled/dark, +/area/horizon/rnd/xenoarch/atrium) +"fHY" = ( +/obj/effect/floor_decal/corner/dark_green/full{ + dir = 4 + }, +/obj/machinery/light, +/obj/machinery/computer/shuttle_control/multi/lift/robotics{ + pixel_x = 11; + pixel_y = 21 + }, +/turf/simulated/floor/tiled, +/area/horizon/stairwell/port/deck_3) +"fHZ" = ( +/obj/effect/floor_decal/industrial/outline/operations, +/obj/structure/dispenser, +/obj/machinery/firealarm/south, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/atmos/storage) +"fIb" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/tank/air/scc_shuttle/airlock{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning/cee, +/turf/simulated/floor/tiled/dark, +/area/horizon/shuttle/mining) +"fIc" = ( +/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/plating, -/area/maintenance/research_port) +/turf/simulated/floor/tiled, +/area/horizon/hangar/auxiliary) "fIm" = ( /obj/machinery/door/blast/regular/open{ id = "tcflcheckpointouter"; @@ -40165,110 +39871,36 @@ }, /turf/unsimulated/floor, /area/centcom/legion) -"fIp" = ( -/obj/machinery/portable_atmospherics/canister/nitrogen, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/reinforced, -/area/rnd/xenoarch_atrium) -"fIq" = ( -/obj/effect/floor_decal/corner_wide/yellow{ - dir = 10 +"fIo" = ( +/obj/structure/cable/green{ + icon_state = "4-8" }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/hallway/engineering) -"fIC" = ( -/obj/effect/floor_decal/corner/purple{ - dir = 5 +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/effect/floor_decal/industrial/warning{ +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 1 }, -/obj/effect/floor_decal/industrial/loading/yellow{ - dir = 1 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/red{ +/turf/simulated/floor/tiled/white, +/area/horizon/medical/gen_treatment) +"fIE" = ( +/obj/effect/floor_decal/corner/yellow{ dir = 6 }, -/turf/simulated/floor/tiled/dark, -/area/horizon/custodial/disposals) -"fID" = ( -/turf/simulated/wall, -/area/horizon/commissary) -"fII" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/honey_extractor{ - density = 1 - }, -/obj/effect/floor_decal/industrial/outline/service, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/hydroponics/lower) +/turf/simulated/floor/tiled, +/area/horizon/engineering/lobby) "fIM" = ( /obj/effect/floor_decal/corner/paleblue{ dir = 10 }, /turf/unsimulated/floor/freezer, /area/antag/mercenary) -"fIT" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 10 - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/structure/platform{ - dir = 1 - }, -/obj/machinery/door/firedoor{ - dir = 4 - }, -/turf/simulated/floor/tiled/full, -/area/bridge/upperdeck) -"fIV" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 5 - }, -/obj/machinery/status_display{ - pixel_y = 32 - }, -/obj/machinery/light/floor{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/starboard) -"fIW" = ( -/obj/machinery/portable_atmospherics/canister/empty/carbon_dioxide, -/obj/effect/floor_decal/industrial/outline/grey, -/turf/simulated/floor/tiled/dark, -/area/horizon/maintenance/deck_three/aft/starboard) -"fJb" = ( -/obj/structure/grille, -/obj/structure/window/shuttle/scc_space_ship, -/obj/machinery/door/blast/shutters/open{ - id = "shutters_deck3_engibreakwindows"; - name = "Viewing Shutter" - }, -/turf/simulated/floor/plating, -/area/engineering/break_room) "fJc" = ( /turf/simulated/floor/shuttle/tan, /area/centcom/bar) -"fJe" = ( -/obj/effect/floor_decal/corner_wide/lime{ - dir = 9 - }, -/obj/machinery/light/floor{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/outline/medical, -/obj/structure/closet/walllocker/medical/firstaid{ - pixel_x = -32 - }, -/turf/simulated/floor/tiled/white, -/area/medical/reception) "fJj" = ( /obj/structure/flora/grass/jungle, /obj/effect/floor_decal/spline/plain/corner{ @@ -40276,18 +39908,6 @@ }, /turf/simulated/floor/exoplanet/grass, /area/centcom/shared_dream) -"fJl" = ( -/obj/machinery/door/window{ - req_access = list(37); - name = "Library Desk" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/lino/diamond, -/area/horizon/library) "fJm" = ( /obj/machinery/light{ dir = 8 @@ -40297,6 +39917,24 @@ }, /turf/unsimulated/floor, /area/centcom/distress_prep) +"fJr" = ( +/obj/structure/table/reinforced/steel, +/obj/random/toolbox, +/obj/random/tool, +/turf/simulated/floor/carpet/rubber, +/area/horizon/maintenance/deck_1/workshop) +"fJs" = ( +/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/horizon/rnd/xenoarch/atrium) "fJt" = ( /obj/machinery/photocopier, /turf/unsimulated/floor{ @@ -40312,28 +39950,53 @@ /obj/effect/floor_decal/industrial/outline/security, /turf/simulated/floor/tiled/white, /area/horizon/security/forensic_laboratory) -"fJx" = ( -/obj/machinery/washing_machine, -/obj/effect/floor_decal/corner/dark_green{ - dir = 10 +"fJy" = ( +/obj/effect/map_effect/door_helper/unres, +/obj/machinery/door/firedoor, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/airlock/glass_command{ + dir = 1; + id_tag = "command_foyer"; + name = "Bridge"; + req_one_access = list(19,38,72) }, -/turf/simulated/floor/tiled, -/area/horizon/crew_quarters/fitness/changing) -"fJF" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 10 +/obj/effect/map_effect/door_helper/level_access/command_foyer{ + req_one_access_by_level = list("green","yellow"=list(19,38,72),"blue"=list(19,38,72),"red"=list(19,38,72),"delta"=list(19,38,72)); + access_by_level = null }, +/turf/simulated/floor/tiled/full, +/area/horizon/command/bridge/upperdeck) +"fJz" = ( +/obj/effect/floor_decal/corner/green/diagonal, +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/closet/emcloset, +/obj/item/storage/toolbox/emergency, +/obj/item/crowbar/red, +/obj/effect/floor_decal/industrial/outline/emergency_closet, +/turf/simulated/floor/tiled/white, +/area/horizon/crew/fitness/changing) +"fJC" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/ladder/up{ + pixel_y = 10 + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, /obj/structure/disposalpipe/segment{ dir = 8; icon_state = "pipe-c" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/port) +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/hangar/port) "fJG" = ( /obj/effect/decal/fake_object{ desc = "Ding."; @@ -40345,49 +40008,104 @@ icon_state = "dark_preview" }, /area/centcom/spawning) -"fJM" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable/green{ - icon_state = "11-1"; - d1 = 11 +"fJJ" = ( +/obj/structure/table/reinforced, +/obj/machinery/ringer_button{ + id = "cargo_ringer"; + pixel_x = 6; + pixel_y = 5 }, -/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers{ - dir = 1 +/obj/machinery/door/firedoor, +/obj/machinery/door/window/desk/southright{ + name = "Operations Desk Interior Access"; + req_access = list(50) }, -/obj/machinery/atmospherics/pipe/zpipe/down/supply{ - dir = 1 +/obj/machinery/door/blast/shutters{ + dir = 2; + id = "cargo_desk" }, -/turf/simulated/open, -/area/maintenance/security_port) +/turf/simulated/floor/tiled/dark/full, +/area/horizon/operations/office_aux) +"fJL" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/wing/starboard) "fJO" = ( /turf/unsimulated/wall/fakepdoor{ dir = 1; name = "shuttle bay blast door" }, /area/centcom/ferry) -"fJR" = ( -/obj/structure/window/shuttle/scc_space_ship, -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/shutters{ - dir = 4; - id = "shutters_disposals"; - name = "\improper Viewing Shutter" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/purple{ +"fJT" = ( +/obj/effect/floor_decal/corner/dark_green{ dir = 10 }, -/turf/simulated/floor/plating, -/area/horizon/custodial/disposals) -"fJS" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/simulated/floor/tiled/dark, -/area/maintenance/wing/port/far) -"fJY" = ( +/turf/simulated/floor/tiled, +/area/horizon/engineering/hallway/fore) +"fJX" = ( +/turf/simulated/wall, +/area/horizon/maintenance/deck_2/wing/starboard) +"fKe" = ( +/obj/structure/closet/secure_closet/freezer/meat, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/machinery/light, +/turf/simulated/floor/tiled/freezer{ + name = "cooled tiles"; + temperature = 253.15 + }, +/area/horizon/service/kitchen/freezer) +"fKf" = ( +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/obj/effect/floor_decal/corner/yellow{ + dir = 5 + }, /obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/seed_storage/garden/xenobotany, +/obj/item/stock_parts/console_screen{ + pixel_y = 8 + }, +/obj/item/stock_parts/console_screen, +/obj/item/circuitboard/arcade/orion_trail{ + pixel_y = -4 + }, +/obj/item/circuitboard/arcade/battle{ + pixel_y = -8 + }, +/obj/structure/table/rack{ + dir = 8 + }, +/obj/machinery/power/apc/north, /turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology/xenoflora) +/area/horizon/engineering/storage/tech) +"fKg" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/light/small/emergency{ + dir = 4 + }, +/obj/structure/table/rack, +/obj/random/loot, +/obj/random/contraband, +/turf/simulated/floor, +/area/horizon/maintenance/deck_3/security/port) +"fKi" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/corner/dark_blue{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/horizon/command/bridge/supply) "fKj" = ( /obj/item/modular_computer/console/preset/security, /obj/machinery/requests_console/north{ @@ -40399,74 +40117,41 @@ }, /turf/simulated/floor/tiled, /area/horizon/security/office) -"fKm" = ( -/obj/machinery/power/apc/low/east, -/obj/structure/cable/green{ - icon_state = "0-8" +"fKy" = ( +/obj/machinery/light/small/emergency{ + dir = 8 }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark, +/area/horizon/maintenance/deck_2/wing/starboard/nacelle) +"fKK" = ( +/obj/machinery/power/radial_floodlight, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/light{ + dir = 8 }, -/obj/structure/table/standard, -/obj/item/device/hand_labeler, -/obj/item/device/destTagger, -/obj/effect/floor_decal/corner/brown{ - dir = 6 - }, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/operations/mail_room) -"fKp" = ( -/turf/simulated/wall/shuttle/scc, -/area/shuttle/intrepid/port_compartment) -"fKB" = ( -/obj/structure/flora/ausbushes/sparsegrass, -/obj/item/bikehorn/rubberducky{ - pixel_x = -9; - pixel_y = -8 - }, -/obj/machinery/camera/network/service{ - c_tag = "Service - Hydroponics Lower 3"; +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/storage_hard) +"fKP" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 }, -/turf/simulated/floor/grass/no_edge, -/area/horizon/hydroponics/lower) -"fKC" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/machinery/door/airlock/maintenance{ - dir = 1; - req_one_access = list(5,12) - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor, -/area/horizon/maintenance/deck_three/aft/starboard) -"fKD" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/effect/floor_decal/corner/dark_green{ - dir = 5 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/alarm/north, +/obj/structure/closet/gmcloset, +/obj/item/flame/lighter/zippo, +/obj/item/storage/box/fancy/candle_box, +/obj/item/storage/box/fancy/candle_box, +/obj/item/device/quikpay, +/obj/item/storage/box/fancy/matches, +/obj/structure/extinguisher_cabinet/west, +/obj/effect/floor_decal/industrial/outline/grey, +/turf/simulated/floor/tiled/dark, +/area/horizon/service/bar/backroom) +"fKQ" = ( +/obj/structure/closet/emcloset, +/obj/effect/floor_decal/corner/dark_green/diagonal, +/obj/effect/floor_decal/industrial/outline/emergency_closet, /turf/simulated/floor/tiled, -/area/horizon/stairwell/central) +/area/horizon/security/checkpoint2) "fKS" = ( /obj/structure/heavy_vehicle_frame, /obj/machinery/mech_recharger, @@ -40510,60 +40195,62 @@ }, /turf/simulated/floor/tiled, /area/horizon/security/brig) -"fLg" = ( -/obj/effect/floor_decal/corner_wide/yellow/diagonal, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 +"fKY" = ( +/obj/structure/window/shuttle/scc_space_ship, +/obj/structure/grille, +/obj/machinery/door/firedoor, +/obj/effect/landmark/entry_point/aft{ + name = "aft, medical equipment room" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 2; + icon_state = "shutter0"; + id = "LCKDshutters"; + name = "MedBay Lockdown Shutters"; + opacity = 0 }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/light, +/turf/simulated/floor/plating, +/area/horizon/medical/equipment) +"fLc" = ( /obj/structure/cable/green{ - icon_state = "4-8" + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor, +/area/horizon/maintenance/deck_3/aft/holodeck) +"fLf" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 9 + }, +/obj/structure/bed/stool/chair/office/bridge{ + dir = 4 + }, +/obj/effect/landmark/start{ + name = "Bridge Crew" }, /turf/simulated/floor/tiled/dark, -/area/engineering/break_room) -"fLh" = ( -/obj/machinery/door/airlock/external, -/obj/effect/map_effect/marker/airlock/docking{ - landmark_tag = "nav_horizon_dock_deck_3_port_4"; - master_tag = "airlock_horizon_dock_deck_3_port_4"; - name = "airlock_horizon_dock_deck_3_port_4" +/area/horizon/command/bridge/meeting_room) +"fLk" = ( +/turf/simulated/wall/r_wall, +/area/horizon/tcommsat/entrance) +"fLn" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 6 }, -/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" +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/atmospherics/unary/freezer{ + dir = 8; + icon_state = "freezer" }, -/obj/effect/floor_decal/corner/dark_green{ - dir = 10 - }, -/obj/structure/railing/mapped, -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/central) -"fLo" = ( -/obj/structure/cable/orange{ - icon_state = "4-8" - }, -/obj/effect/floor_decal/corner_wide/yellow{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/engineering/bluespace_drive) +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/reactor/supermatter/waste) "fLp" = ( /obj/structure/shuttle_part/ert{ icon_state = "2,0"; @@ -40582,40 +40269,50 @@ }, /turf/simulated/floor/holofloor/tiled, /area/horizon/holodeck/source_thunderdomecourt) -"fLz" = ( -/obj/structure/tank_wall{ - icon_state = "m-9" - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/engineering/atmos) -"fLF" = ( +"fLu" = ( +/obj/machinery/telecomms/server/presets/unused, +/turf/simulated/floor/bluegrid, +/area/horizon/tcommsat/chamber) +"fLv" = ( /obj/structure/cable/green{ - icon_state = "4-8" + icon_state = "1-2" }, -/obj/effect/floor_decal/corner_wide/yellow/full, +/obj/effect/floor_decal/corner/dark_blue/full{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/ai/upload_foyer) +"fLA" = ( +/obj/random/loot, +/obj/structure/closet, /turf/simulated/floor/tiled, -/area/engineering/lobby) -"fLG" = ( -/obj/effect/landmark{ - name = "Revenant" - }, -/obj/machinery/power/apc/low/north, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/random/dirt_75, -/turf/simulated/floor/plating, -/area/maintenance/wing/port/far) +/area/horizon/maintenance/deck_2/wing/starboard/auxatmos) "fLH" = ( /obj/structure/table/reinforced/steel, /obj/item/device/multitool, /obj/structure/fireaxecabinet/west, /turf/unsimulated/floor, /area/centcom/legion/hangar5) +"fLJ" = ( +/obj/structure/shuttle_part/scc/scout{ + density = 0; + icon_state = "2,2"; + outside_part = 0 + }, +/obj/effect/floor_decal/industrial/warning/cee, +/obj/structure/ship_weapon_dummy, +/obj/machinery/ship_weapon/francisca/compact{ + pixel_x = -40; + pixel_y = -64; + weapon_id = "Francisca Rotary Gun" + }, +/turf/simulated/floor/reinforced, +/area/horizon/shuttle/canary) "fLN" = ( /obj/effect/floor_decal/industrial/warning{ dir = 1 @@ -40626,6 +40323,34 @@ /obj/machinery/light/small/emergency, /turf/simulated/floor/plating, /area/shuttle/mercenary) +"fLQ" = ( +/obj/structure/table/rack, +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/obj/random/tool, +/obj/structure/sign/fire{ + desc = "A caution sign which reads 'COMBUSTION TURBINE'."; + name = "\improper COMBUSTION TURBINE sign"; + pixel_y = -32 + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/auxatmos) +"fLR" = ( +/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/dark_green{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/horizon/hangar/intrepid) "fLT" = ( /obj/structure/shuttle/engine/heater{ dir = 1 @@ -40658,23 +40383,62 @@ }, /turf/unsimulated/floor/plating, /area/centcom/legion) +"fLX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_command{ + dir = 4; + name = "EVA Storage"; + req_access = list(18) + }, +/obj/effect/map_effect/door_helper/unres{ + dir = 4 + }, +/turf/simulated/floor/tiled/full, +/area/horizon/storage/eva) "fLZ" = ( /obj/structure/mirror{ pixel_y = 32 }, /turf/simulated/floor/wood, /area/merchant_station) -"fMe" = ( -/obj/effect/floor_decal/corner/brown/diagonal, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 +"fMf" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/effect/floor_decal/industrial/warning, +/obj/structure/trash_pile, +/obj/machinery/alarm/north, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/wing/port/far) +"fMl" = ( +/obj/structure/cable{ + icon_state = "1-2" }, -/obj/effect/floor_decal/industrial/warning{ +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4 }, -/turf/simulated/floor/tiled/dark, -/area/operations/office) +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/rnd/xenoarch/atrium) +"fMs" = ( +/obj/machinery/door/airlock/multi_tile/glass{ + name = "Hangar" + }, +/obj/machinery/door/firedoor/multi_tile, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/full, +/area/horizon/hangar/intrepid/interstitial) "fMu" = ( /obj/machinery/door/window/brigdoor/westright{ name = "cockpit"; @@ -40702,36 +40466,19 @@ }, /turf/simulated/floor/airless, /area/horizon/exterior) -"fMx" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 1 - }, -/obj/structure/table/reinforced/steel, -/obj/random/desktoy{ - pixel_y = 4 - }, -/turf/simulated/floor/carpet/rubber, -/area/engineering/bluespace_drive/monitoring) "fMy" = ( /obj/structure/bed/stool/chair/shuttle{ dir = 4 }, /turf/simulated/floor/tiled/dark, /area/shuttle/legion) -"fMB" = ( -/obj/effect/decal/cleanable/spiderling_remains, -/turf/simulated/floor/carpet/rubber, -/area/maintenance/engineering/auxillary) -"fMG" = ( -/obj/effect/floor_decal/industrial/hatch/red, -/obj/structure/railing/mapped{ - dir = 4 +"fMA" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 }, -/obj/structure/railing/mapped{ - dir = 8 - }, -/turf/simulated/floor/carpet/rubber, -/area/engineering/engine_room/rust) +/obj/effect/floor_decal/corner/brown/diagonal, +/turf/simulated/floor/tiled, +/area/horizon/operations/loading) "fMH" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -40747,47 +40494,31 @@ }, /turf/simulated/floor/tiled, /area/horizon/security/armoury) -"fMK" = ( -/obj/structure/cable/green{ - icon_state = "1-8" +"fMO" = ( +/obj/machinery/door/blast/shutters{ + dir = 2; + id = "medicalisolation"; + name = "Isolation Ward Shutters" }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" +/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/medical/ward/isolation) +"fMV" = ( +/obj/machinery/vending/coffee, +/obj/machinery/light{ + dir = 1 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ +/obj/effect/floor_decal/spline/fancy/wood{ dir = 9 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 +/turf/simulated/floor/wood, +/area/horizon/crew/lounge) +"fMW" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 }, -/obj/effect/floor_decal/corner_wide/green{ - dir = 10 - }, -/obj/structure/railing/mapped, -/turf/simulated/floor/tiled/white, -/area/hallway/medical/upper) -"fMM" = ( -/obj/machinery/door/airlock/multi_tile/glass, -/obj/machinery/door/firedoor/multi_tile, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/full, -/area/hangar/intrepid/interstitial) -"fMQ" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 9 - }, -/obj/effect/floor_decal/spline/plain/blue{ - dir = 4 - }, -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/manifold/hidden{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/horizon/hydroponics/lower) +/turf/simulated/floor/reinforced, +/area/horizon/rnd/test_range) "fMY" = ( /obj/effect/floor_decal/industrial/outline/yellow, /obj/structure/table/rack, @@ -40808,27 +40539,18 @@ }, /turf/unsimulated/floor, /area/centcom/legion/hangar5) -"fNa" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 10 +"fNd" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 7 }, -/obj/effect/floor_decal/spline/plain/blue{ - dir = 1 +/obj/structure/cable/green{ + icon_state = "1-2" }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 +/obj/structure/cable/green{ + icon_state = "2-8" }, -/turf/simulated/floor/tiled, -/area/horizon/hydroponics/lower) -"fNb" = ( -/obj/effect/floor_decal/corner/lime/full{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora) +/turf/simulated/floor/wood, +/area/horizon/command/heads/captain) "fNe" = ( /obj/structure/bed/stool/chair/shuttle{ dir = 8 @@ -40838,50 +40560,44 @@ }, /turf/simulated/floor/shuttle/black, /area/shuttle/distress) -"fNl" = ( -/obj/effect/floor_decal/spline/plain/lime{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/horizon/hydroponics/garden) -"fNq" = ( -/obj/machinery/door/firedoor, -/obj/effect/map_effect/door_helper/unres{ +"fNg" = ( +/obj/structure/railing/mapped{ dir = 1 }, -/obj/machinery/door/airlock/engineering{ - name = "Engineering Lobby"; - req_one_access = list(10) +/obj/effect/floor_decal/corner/dark_green{ + dir = 5 }, -/turf/simulated/floor/tiled/full, -/area/engineering/lobby) -"fNt" = ( -/obj/effect/map_effect/window_spawner/full/shuttle/scc{ - spawn_firedoor = 1; - spawn_grille = 1 - }, -/obj/effect/landmark/entry_point/fore{ - name = "fore, cockpit" - }, -/obj/machinery/door/blast/shutters/open{ - id = "intrepid_bay_windows"; - name = "Intrepid Shutter" - }, -/turf/simulated/floor/plating, -/area/shuttle/intrepid/flight_deck) -"fNz" = ( -/obj/machinery/power/smes/buildable/substation{ - RCon_tag = "Substation - Deck 3 Command" - }, -/obj/structure/cable, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_2/central) +"fNj" = ( +/obj/effect/map_effect/window_spawner/full/reinforced/grille/firedoor, +/obj/structure/cable/green, /obj/structure/cable/green{ - icon_state = "0-2" + icon_state = "1-4" }, -/obj/effect/floor_decal/industrial/warning{ +/turf/simulated/floor/tiled/dark/full, +/area/horizon/tcommsat/chamber) +"fNr" = ( +/obj/effect/floor_decal/corner/purple{ dir = 10 }, -/turf/simulated/floor, -/area/maintenance/substation/command) +/obj/effect/floor_decal/industrial/outline/custodial, +/obj/structure/janitorialcart, +/turf/simulated/floor/tiled, +/area/horizon/service/custodial) +"fNz" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/starboard/near) "fNB" = ( /obj/machinery/camera/network/crescent{ c_tag = "Crescent Departures"; @@ -40890,124 +40606,230 @@ }, /turf/unsimulated/floor/plating, /area/centcom/spawning) -"fNT" = ( -/obj/structure/railing/mapped{ - dir = 8 +"fNF" = ( +/obj/structure/cable/green{ + icon_state = "4-8" }, -/turf/simulated/floor/reinforced/airless, -/area/template_noop) -"fOa" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/bed/handrail{ +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/obj/machinery/light/small{ +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/gen_treatment) +"fNI" = ( +/obj/effect/floor_decal/corner/dark_green/full{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/horizon/operations/commissary) +"fNL" = ( +/obj/structure/table/rack{ + dir = 8 + }, +/obj/effect/floor_decal/corner/yellow/diagonal, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/item/aicard, +/obj/item/circuitboard/security/mining{ + pixel_y = 4 + }, +/obj/item/circuitboard/autolathe, +/obj/item/aiModule/reset{ + pixel_y = -4 + }, +/obj/machinery/alarm/south, +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/storage/tech) +"fNM" = ( +/obj/machinery/conveyor_switch/oneway{ + desc = "A conveyor control switch. It appears to only go in one direction. Controls the components conveyor belt."; + id = "Robocompo"; + pixel_x = 19; + pixel_y = 27 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/operations/machinist) +"fNO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/red, +/turf/simulated/wall/shuttle/unique/scc/mining{ + icon_state = "7,7" + }, +/area/horizon/shuttle/mining) +"fNU" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden{ dir = 1 }, /turf/simulated/floor/plating, -/area/shuttle/intrepid/starboard_compartment) -"fOe" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/industrial/warning, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/machinery/alarm/east{ - req_one_access = list(24,11,55) - }, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"fOp" = ( -/obj/structure/cable/green, +/area/horizon/maintenance/deck_1/hangar/starboard) +"fNY" = ( /obj/structure/cable/green{ icon_state = "1-2" }, -/obj/effect/map_effect/window_spawner/full/reinforced/polarized/grille/firedoor{ - id = "bridgeconf" - }, +/obj/structure/lattice/catwalk/indoor/grate/dark, /turf/simulated/floor, -/area/bridge/meeting_room) -"fOs" = ( -/obj/structure/closet/secure_closet/medical3, -/obj/effect/floor_decal/corner_wide/green/full{ - dir = 8 +/area/horizon/maintenance/deck_3/security/port) +"fOd" = ( +/obj/structure/cable/green{ + icon_state = "4-8" }, -/turf/simulated/floor/tiled/white, -/area/medical/equipment) +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/engineering{ + dir = 4; + name = "Engineering Substation"; + req_one_access = list(11,24) + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/substation/engineering/lower) +"fOj" = ( +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/effect/floor_decal/corner/black{ + dir = 6 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/hangar/intrepid) +"fOk" = ( +/obj/machinery/door/blast/shutters{ + dir = 2; + id = "miningbay"; + name = "Mining Bay" + }, +/obj/machinery/door/firedoor, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/full, +/area/horizon/operations/mining_main/refinery) +"fOn" = ( +/obj/structure/table/wood, +/obj/item/material/ashtray/bronze{ + pixel_y = -4 + }, +/obj/machinery/power/outlet{ + pixel_y = -3 + }, +/obj/machinery/power/outlet{ + pixel_y = 9 + }, +/turf/simulated/floor/carpet/art, +/area/horizon/crew/lounge) +"fOo" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 5 + }, +/obj/structure/table/rack, +/obj/item/stack/material/plasteel{ + amount = 10; + pixel_x = 4; + pixel_y = -4 + }, +/obj/item/stack/material/plasteel{ + amount = 10 + }, +/obj/item/stack/material/plasteel{ + amount = 10; + pixel_x = -4; + pixel_y = 4 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled, +/area/horizon/engineering/storage_eva) "fOx" = ( /obj/structure/flora/ausbushes/ywflowers, /obj/effect/floor_decal/spline/fancy/wood/cee, /turf/simulated/floor/holofloor/grass, /area/horizon/holodeck/source_battlemonsters) -"fOy" = ( -/obj/machinery/alarm/east, -/obj/machinery/papershredder, -/obj/effect/floor_decal/corner/beige{ - dir = 6 +"fOA" = ( +/obj/machinery/blackbox_recorder, +/turf/simulated/floor/bluegrid, +/area/horizon/tcommsat/chamber) +"fOB" = ( +/obj/structure/cable/green{ + icon_state = "1-2" }, -/turf/simulated/floor/tiled, -/area/security/vacantoffice) -"fOz" = ( -/obj/machinery/alarm/east, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 4 +/obj/structure/cable/green{ + icon_state = "1-4" }, -/turf/simulated/floor/wood, -/area/crew_quarters/lounge) -"fOC" = ( -/obj/structure/tank_wall/hydrogen{ - icon_state = "h8" - }, -/obj/effect/floor_decal/industrial/warning{ +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 8 }, -/turf/simulated/floor/airless, -/area/engineering/atmos) -"fOM" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 5 +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/effect/floor_decal/corner/lime{ + dir = 4 }, -/obj/machinery/power/apc/west, -/obj/structure/cable/green{ - icon_state = "0-4" +/turf/simulated/floor/tiled, +/area/horizon/medical/emergency_storage) +"fOH" = ( +/obj/effect/floor_decal/corner/dark_blue/diagonal{ + dir = 8 }, -/turf/simulated/floor/carpet/rubber, -/area/server) -"fON" = ( -/obj/structure/cable/green{ - icon_state = "0-2" +/obj/structure/platform{ + dir = 8 }, -/obj/effect/map_effect/window_spawner/full/reinforced/polarized/grille/firedoor{ - id = "consularB" +/turf/simulated/floor/tiled, +/area/horizon/command/bridge/upperdeck) +"fOI" = ( +/obj/machinery/alarm/north, +/obj/machinery/light/floor{ + dir = 1 }, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "bridge blast"; - name = "Bridge Blast Doors"; - opacity = 0 - }, -/turf/simulated/floor, -/area/lawoffice/consular_two) +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_2/central) +"fOO" = ( +/obj/effect/floor_decal/industrial/outline/emergency_closet, +/obj/structure/closet/emcloset, +/obj/structure/engineer_maintenance/pipe/wall, +/turf/simulated/floor/plating, +/area/horizon/hangar/intrepid) "fOQ" = ( /obj/structure/window/shuttle/unique/mercenary/small, /turf/simulated/floor/plating, /area/shuttle/syndicate_elite) -"fOT" = ( -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/structure/cable{ - icon_state = "0-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/wing/port/far) -"fOV" = ( -/obj/structure/disposalpipe/junction/yjunction{ +"fOR" = ( +/obj/machinery/light{ dir = 8 }, -/obj/structure/lattice/catwalk/indoor/grate, +/obj/machinery/honey_extractor{ + density = 1 + }, +/obj/effect/floor_decal/industrial/outline/service, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/service/hydroponics/lower) +"fOU" = ( +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/item/material/shard, +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, /turf/simulated/floor/plating, -/area/hallway/primary/aft) +/area/horizon/maintenance/deck_1/main/port) +"fOW" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 10 + }, +/obj/structure/extinguisher_cabinet/south, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_3/starboard/docks) "fPa" = ( /obj/machinery/door/airlock/centcom{ name = "Entertainment Wing Maintenance"; @@ -41022,46 +40844,40 @@ icon_state = "dark_preview" }, /area/centcom/specops) -"fPl" = ( -/obj/machinery/alarm/north, -/obj/structure/table/rack, -/obj/item/clothing/ears/earmuffs, -/obj/item/clothing/ears/earmuffs, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 5 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/dark, -/area/horizon/longbow) "fPo" = ( /turf/simulated/floor/holofloor/beach/sand{ icon_state = "desert4" }, /area/horizon/holodeck/source_desert) -"fPp" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 +"fPs" = ( +/obj/machinery/light{ + dir = 1 }, +/obj/machinery/computer/general_air_control/large_tank_control/terminal{ + sensors = list("ph_sensor"="Tank"); + output_tag = "ph_out"; + name = "Phoron Supply Console"; + input_tag = "ph_in" + }, +/obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled/dark/full, -/area/engineering/engine_room/rust) -"fPt" = ( -/obj/effect/floor_decal/industrial/outline/grey, -/obj/structure/closet/crate{ - name = "tents crate" +/area/horizon/engineering/atmos) +"fPv" = ( +/obj/effect/shuttle_landmark/horizon/dock/deck_3/port_2{ + dir = 1 + }, +/obj/machinery/door/airlock/external, +/obj/effect/map_effect/marker/airlock/docking{ + landmark_tag = "nav_horizon_dock_deck_3_port_4"; + master_tag = "airlock_horizon_dock_deck_3_port_4"; + name = "airlock_horizon_dock_deck_3_port_4" + }, +/obj/effect/map_effect/marker_helper/airlock/exterior, +/obj/machinery/access_button{ + pixel_x = 28 }, -/obj/item/tent, -/obj/item/tent, -/obj/item/tent/big/scc, -/obj/item/tent, -/obj/item/tent, /turf/simulated/floor/plating, -/area/hangar/intrepid) -"fPu" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/gen_treatment) +/area/horizon/hallway/primary/deck_3/starboard/docks) "fPy" = ( /obj/effect/floor_decal/industrial/warning{ dir = 10 @@ -41071,36 +40887,40 @@ }, /turf/simulated/floor/tiled, /area/shuttle/merchant) -"fPC" = ( -/obj/machinery/alarm/north, -/obj/random/dirt_75, -/turf/simulated/floor/plating, -/area/maintenance/wing/port/far) -"fPF" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_atmos{ - dir = 1; - name = "Atmosphere Control"; - req_access = list(24) - }, -/obj/effect/map_effect/door_helper/unres{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/hatch_door/engineering{ - dir = 1 +"fPz" = ( +/obj/effect/floor_decal/corner/green/diagonal, +/obj/structure/closet/secure_closet/personal, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/window/reinforced, +/turf/simulated/floor/tiled/white, +/area/horizon/crew/fitness/changing) +"fPE" = ( +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 2; + icon_state = "shutter0"; + id = "LCKDshutters"; + name = "MedBay Lockdown Shutters"; + opacity = 0 }, +/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, /turf/simulated/floor/tiled/dark/full, -/area/engineering/atmos) -"fPG" = ( -/obj/structure/cable{ - icon_state = "1-2" +/area/horizon/medical/gen_treatment) +"fPH" = ( +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/obj/structure/cable/green{ + icon_state = "12-0" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/structure/disposalpipe/segment, /turf/simulated/floor/plating, -/area/maintenance/operations) +/area/horizon/maintenance/deck_1/operations/starboard/far) "fPK" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 6 @@ -41108,30 +40928,55 @@ /obj/machinery/light/small/floor, /turf/unsimulated/floor/wood, /area/antag/actor) -"fPL" = ( -/turf/simulated/wall/r_wall, -/area/horizon/kitchen/freezer) -"fPS" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 8 +"fPP" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/cyan{ + dir = 1 }, -/obj/machinery/portable_atmospherics/canister/air/airlock, -/obj/effect/floor_decal/industrial/outline/red, -/turf/simulated/floor/tiled/full, -/area/maintenance/wing/starboard) -"fPX" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/meter, +/turf/simulated/floor/plating, +/area/horizon/engineering/reactor/supermatter/mainchamber) +"fPQ" = ( +/obj/effect/floor_decal/spline/fancy/wood, /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ +/obj/effect/floor_decal/spline/fancy/wood/corner{ dir = 4 }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 +/obj/machinery/light, +/obj/machinery/alarm/south{ + req_one_access = list(24,11,55) }, -/obj/structure/lattice/catwalk/indoor/grate, -/turf/simulated/floor/plating, -/area/operations/lobby) +/turf/simulated/floor/wood, +/area/horizon/service/dining_hall) +"fPR" = ( +/obj/machinery/alarm/east, +/obj/effect/floor_decal/corner/grey/diagonal, +/obj/effect/floor_decal/spline/plain, +/obj/machinery/camera/network/service{ + c_tag = "Dinner - Kitchen 1"; + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/service/kitchen) +"fPV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/corner/dark_blue/diagonal, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/turf/simulated/floor/tiled, +/area/horizon/command/bridge/bridge_crew) "fPZ" = ( /obj/effect/decal/cleanable/cobweb2, /obj/machinery/door/blast/odin{ @@ -41143,16 +40988,14 @@ }, /turf/unsimulated/floor, /area/antag/raider) -"fQg" = ( -/obj/structure/cable{ - icon_state = "4-8" +"fQi" = ( +/obj/item/modular_computer/console/preset/medical{ + dir = 1 }, -/obj/machinery/light, -/obj/effect/floor_decal/corner/dark_green{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/central) +/obj/structure/window/reinforced, +/obj/effect/floor_decal/corner/grey/diagonal, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/reception) "fQj" = ( /obj/effect/floor_decal/corner/red{ dir = 9 @@ -41162,12 +41005,23 @@ /obj/item/clothing/head/beret/dominia, /turf/simulated/floor/marble/dark, /area/horizon/holodeck/source_tribunal) -"fQk" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 5 +"fQq" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/random/dirt_75, +/obj/random/dirt_75, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/starboard/nacelle) +"fQr" = ( +/obj/structure/cable/green{ + icon_state = "4-8" }, -/turf/simulated/floor/tiled/dark, -/area/engineering/atmos/propulsion) +/obj/machinery/door/airlock/engineering{ + name = "C-Goliath Drive Control Room"; + req_one_access = list(11,24); + dir = 4 + }, +/turf/simulated/floor/plating, +/area/horizon/engineering/bluespace_drive/monitoring) "fQs" = ( /obj/structure/railing/mapped{ dir = 4 @@ -41180,30 +41034,29 @@ /obj/effect/floor_decal/corner/grey/diagonal, /turf/simulated/floor/marble, /area/horizon/holodeck/source_trinary) -"fQB" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, +"fQt" = ( +/obj/item/crowbar/red, +/obj/item/material/hatchet/butch, +/obj/item/material/hook, +/obj/structure/table/standard, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 + dir = 9 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 +/turf/simulated/floor/tiled/freezer{ + name = "cooled tiles"; + temperature = 253.15 }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_research{ - dir = 4; - name = "Test Range"; - req_access = list(47) +/area/horizon/service/kitchen/freezer) +"fQw" = ( +/obj/effect/floor_decal/corner_wide/purple{ + dir = 6 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/effect/floor_decal/corner_wide/purple{ + dir = 8 }, +/obj/effect/floor_decal/sign/c, /turf/simulated/floor/tiled/white, -/area/rnd/test_range) -"fQC" = ( -/turf/simulated/wall, -/area/rnd/eva) +/area/horizon/rnd/xenoarch/atrium) "fQD" = ( /obj/effect/floor_decal/corner/red{ dir = 5; @@ -41212,89 +41065,83 @@ /obj/effect/floor_decal/spline/plain/corner, /turf/simulated/floor/marble/dark, /area/horizon/holodeck/source_tribunal) -"fQE" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/reinforced{ - blocks_air = 1; - density = 1; - name = "thruster mount" - }, -/area/engineering/atmos/propulsion/starboard) -"fQH" = ( -/obj/structure/table/standard, -/obj/effect/floor_decal/corner/mauve{ - dir = 9 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/item/device/camera, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology/foyer) -"fQJ" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/sign/emergency/evacuation{ - dir = 4; - pixel_x = 32 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +"fQI" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/corner/dark_green{ +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 6 }, -/turf/simulated/floor/tiled, -/area/hangar/intrepid) -"fQT" = ( -/obj/effect/landmark/entry_point/starboard{ - name = "starboard, visiting docks" +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 }, -/obj/machinery/door/airlock/external{ - dir = 4 - }, -/obj/machinery/access_button{ - dir = 8; - pixel_x = -12; - pixel_y = 28 - }, -/obj/effect/map_effect/marker_helper/airlock/exterior, -/obj/effect/map_effect/marker/airlock/docking{ - landmark_tag = "nav_horizon_dock_deck_3_starboard_1"; - master_tag = "airlock_horizon_dock_deck_3_starboard_1"; - name = "airlock_horizon_dock_deck_3_starboard_1" +/turf/simulated/floor/tiled/white, +/area/horizon/medical/icu) +"fQO" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 }, /turf/simulated/floor/plating, -/area/horizon/hallway/deck_three/primary/starboard/docks) -"fQU" = ( -/obj/effect/map_effect/window_spawner/full/reinforced/polarized/firedoor{ - id = "surgery2" +/area/horizon/engineering/atmos/air) +"fQR" = ( +/obj/structure/cable{ + icon_state = "1-2" }, -/turf/simulated/floor/tiled/dark/full, -/area/medical/ors) -"fQY" = ( -/obj/effect/floor_decal/corner/brown{ +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/aux{ + dir = 6 + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ dir = 5 }, -/obj/machinery/light{ +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/main/port) +"fQV" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/full, +/area/horizon/stairwell/port/deck_2) +"fQX" = ( +/obj/structure/bed/stool/chair/padded/black{ + dir = 8 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/horizon/repoffice/representative_one) +"fRb" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/spline/fancy/wood{ dir = 1 }, -/turf/simulated/floor/tiled, -/area/operations/break_room) -"fQZ" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/structure/tank_wall/phoron{ - icon_state = "ph3" - }, -/turf/simulated/floor/airless, -/area/engineering/atmos) +/turf/simulated/floor/wood, +/area/horizon/service/chapel/office) +"fRc" = ( +/obj/machinery/door/window/westright, +/obj/structure/platform_stairs/full/east_west_cap, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/port/far) "fRd" = ( /obj/effect/floor_decal/corner/paleblue{ dir = 10 @@ -41306,128 +41153,183 @@ /obj/effect/floor_decal/industrial/warning/full, /turf/unsimulated/floor, /area/centcom/control) -"fRl" = ( -/obj/structure/curtain/black, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor, -/area/horizon/maintenance/deck_three/aft/starboard) -"fRn" = ( -/obj/machinery/door/airlock/external, -/obj/machinery/access_button{ - pixel_x = 28 - }, -/obj/effect/map_effect/marker/airlock{ - frequency = 2005; - master_tag = "airlock_horizon_deck_2_aft_sm"; - name = "airlock_horizon_deck_2_aft_sm" - }, -/obj/effect/map_effect/marker_helper/airlock/interior, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"fRr" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/structure/bed/stool/chair/office/light{ - dir = 4 - }, -/obj/machinery/disposal/small/south, -/obj/structure/disposalpipe/trunk, -/obj/structure/sign/nosmoking_1{ - pixel_y = 35 - }, -/turf/simulated/floor/tiled/white, -/area/medical/reception) -"fRs" = ( -/obj/structure/railing/mapped{ +"fRe" = ( +/obj/machinery/light/small/emergency{ dir = 1 }, -/obj/structure/grille/broken, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard/far) -"fRu" = ( -/obj/structure/tank_wall{ - icon_state = "m-13" +/obj/machinery/embedded_controller/radio/airlock/airlock_controller{ + dir = 4; + pixel_x = -20 }, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 +/obj/effect/map_effect/marker/airlock{ + frequency = 1002; + master_tag = "airlock_horizon_deck_3_fore_starboard_1"; + name = "airlock_horizon_deck_3_fore_starboard_1" }, -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 4 +/turf/simulated/floor, +/area/horizon/maintenance/deck_3/bridge) +"fRg" = ( +/obj/structure/cable{ + icon_state = "4-8" }, -/turf/simulated/floor/plating, -/area/engineering/atmos) -"fRz" = ( -/obj/machinery/atmospherics/pipe/manifold/visible, -/turf/simulated/floor/tiled, -/area/maintenance/aux_atmospherics/deck_2/starboard/wing) -"fRE" = ( -/obj/effect/floor_decal/corner/dark_blue{ +/obj/machinery/door/firedoor, +/obj/effect/floor_decal/corner/dark_green{ + dir = 10 + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/full, +/area/horizon/hallway/primary/deck_3/central) +"fRk" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 9 }, -/turf/simulated/floor/tiled, -/area/bridge) -"fRH" = ( -/obj/effect/floor_decal/industrial/outline/service, -/obj/structure/closet/crate/hydroponics/beekeeping, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/hydroponics/lower) -"fRJ" = ( -/obj/machinery/computer/ship/navigation, -/obj/effect/floor_decal/corner/dark_blue/full{ +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/structure/railing/mapped{ dir = 4 }, -/turf/simulated/floor/tiled/dark, -/area/horizon/grauwolf) -"fRO" = ( +/obj/structure/railing/mapped, +/obj/structure/platform{ + dir = 1 + }, +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor, +/area/horizon/command/bridge/upperdeck) +"fRw" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 9 + }, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/turf/simulated/floor/wood, +/area/horizon/rnd/hallway) +"fRy" = ( +/obj/effect/floor_decal/corner/lime/diagonal, +/obj/structure/bed/roller, +/turf/simulated/floor/tiled/white, +/area/horizon/shuttle/intrepid/medical) +"fRI" = ( +/obj/machinery/atmospherics/pipe/simple/visible/red{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/structure/window/shuttle/scc_space_ship, +/obj/structure/grille, +/turf/simulated/floor/plating, +/area/horizon/engineering/atmos/propulsion/starboard) +"fRT" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/reinforced, +/area/horizon/rnd/xenobiology) +"fRY" = ( +/obj/structure/sink/kitchen{ + dir = 4; + name = "surgical sink"; + pixel_x = -20 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/surgery) +"fSa" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 9 + }, +/turf/simulated/floor/wood, +/area/horizon/command/bridge/minibar) +"fSf" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/horizon/crew/lounge) +"fSg" = ( +/obj/effect/map_effect/window_spawner/full/reinforced/polarized/firedoor{ + id = "polarized_deck2_workshop" + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/operations/machinist/surgicalbay) +"fSk" = ( +/obj/effect/floor_decal/corner/white/diagonal, +/obj/structure/bed/stool/chair/office/light{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/horizon/medical/paramedic) +"fSm" = ( +/obj/effect/floor_decal/industrial/hatch/red, +/obj/structure/cable/orange{ + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/bluespace_drive) +"fSt" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled/full, +/area/horizon/engineering/storage_hard) +"fSw" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning/corner, +/obj/machinery/firealarm/south, +/obj/effect/floor_decal/industrial/outline/security, +/turf/simulated/floor/plating, +/area/horizon/engineering/reactor/supermatter/mainchamber) +"fSz" = ( +/obj/machinery/door/firedoor{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/airlock/command{ + dir = 4; + id_tag = "researchdoor"; + name = "Research Director's Office"; + req_access = list(30) + }, /obj/structure/cable/green{ icon_state = "4-8" }, -/obj/effect/floor_decal/corner/mauve{ - dir = 5 - }, -/obj/structure/cable/green{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/structure/disposalpipe/junction/yjunction, /turf/simulated/floor/tiled, -/area/rnd/hallway) -"fSl" = ( -/obj/structure/shuttle_part/scc/mining{ - icon_state = "1,10"; - outside_part = 0 - }, -/obj/machinery/atmospherics/unary/engine/scc_shuttle, -/obj/effect/floor_decal/industrial/warning/cee{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/shuttle/mining) -"fSn" = ( -/obj/effect/floor_decal/spline/plain/corner, -/obj/effect/floor_decal/spline/fancy{ - dir = 9 - }, -/obj/effect/floor_decal/corner_wide/white, -/turf/simulated/floor/tiled/dark/full, -/area/hallway/primary/central_one) -"fSs" = ( -/obj/machinery/door/window{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden{ - dir = 8 - }, -/turf/simulated/floor, -/area/horizon/hallway/deck_three/primary/starboard/docks) +/area/horizon/command/heads/rd) "fSA" = ( /obj/structure/disposalpipe/trunk, /obj/structure/disposaloutlet, @@ -41445,15 +41347,6 @@ /obj/effect/floor_decal/industrial/warning, /turf/unsimulated/floor, /area/antag/mercenary) -"fSO" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/turf/simulated/floor, -/area/maintenance/substation/civilian_east) "fSQ" = ( /obj/structure/bed/padded, /obj/item/bedsheet/blue, @@ -41503,64 +41396,97 @@ /obj/structure/table/stone/marble, /turf/unsimulated/floor/marble, /area/antag/wizard) +"fSY" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/effect/floor_decal/corner_wide/green{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/gen_treatment) +"fTc" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/effect/floor_decal/corner/brown{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/horizon/operations/office) +"fTd" = ( +/obj/machinery/door/firedoor{ + req_one_access = list(24,11,67,73); + dir = 4 + }, +/obj/effect/floor_decal/industrial/hatch_door/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/shuttle/intrepid/main_compartment) "fTe" = ( /turf/simulated/wall/r_wall, /area/horizon/security/brig) -"fTj" = ( -/obj/machinery/button/remote/blast_door{ - id = "mining_shuttle_trunk"; - name = "Mining Shuttle Exterior"; - pixel_x = 21; - pixel_y = -22; - req_one_access = list(48,74) - }, +"fTi" = ( +/obj/structure/railing/mapped, /turf/simulated/floor/tiled, -/area/hangar/operations) +/area/horizon/engineering/hallway/aft) "fTl" = ( /obj/effect/map_effect/window_spawner/full/reinforced/indestructible, /turf/simulated/floor, /area/centcom/holding) -"fTo" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/lino, -/area/chapel/main) -"fTp" = ( -/obj/effect/floor_decal/spline/fancy/wood{ +"fTn" = ( +/obj/effect/floor_decal/spline/fancy/wood/corner{ dir = 4 }, -/obj/structure/disposalpipe/segment, /turf/simulated/floor/wood, -/area/horizon/crew_quarters/lounge/bar) +/area/horizon/service/dining_hall) "fTq" = ( /obj/structure/lattice, /obj/machinery/atmospherics/pipe/simple/visible/red, /obj/machinery/atmospherics/pipe/simple/visible/fuel, /turf/space/dynamic, /area/horizon/exterior) -"fTv" = ( -/obj/structure/cable/green{ - icon_state = "1-2" +"fTt" = ( +/obj/structure/table/standard, +/obj/item/device/mmi{ + pixel_y = 4 }, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/corner/dark_green{ - dir = 6 +/obj/item/device/mmi{ + pixel_y = 11 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/starboard) -"fTy" = ( -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - icon_state = "1-2" +/area/horizon/operations/machinist) +"fTx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/aux{ + dir = 10 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/plating, -/area/maintenance/research_port) +/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 + }, +/obj/item/reagent_containers/inhaler/pneumalin, +/obj/item/reagent_containers/inhaler/pneumalin, +/turf/simulated/floor/tiled/dark, +/area/horizon/shuttle/quark/cockpit) +"fTA" = ( +/mob/living/simple_animal/chicken, +/turf/simulated/floor/grass/no_edge, +/area/horizon/service/hydroponics/lower) "fTE" = ( /obj/structure/flora/ausbushes/lavendergrass, /obj/machinery/light/small{ @@ -41568,21 +41494,15 @@ }, /turf/unsimulated/floor/grass, /area/antag/actor) -"fTJ" = ( -/obj/random/junk, -/obj/effect/floor_decal/industrial/warning{ - dir = 10 +"fTH" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 }, -/obj/structure/sign/electricshock{ - desc = "A caution sign which reads 'CAUTION: HEAVY MACHINERY IN USE' and 'THIS EQUIPMENT STARTS AND STOPS AUTOMATICALLY.'."; - name = "\improper CAUTION: HEAVY MACHINERY IN USE sign"; - pixel_y = 32 +/obj/structure/cable/green{ + icon_state = "1-2" }, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/engineering) +/turf/simulated/floor/wood, +/area/horizon/crew/journalistoffice) "fTK" = ( /obj/machinery/door/airlock/glass_security{ dir = 1; @@ -41593,18 +41513,6 @@ icon_state = "dark_preview" }, /area/centcom/holding) -"fTL" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 5 - }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_two/fore) "fTM" = ( /obj/effect/floor_decal/industrial/warning{ dir = 5 @@ -41614,20 +41522,58 @@ }, /turf/simulated/floor/tiled, /area/shuttle/merchant) -"fTP" = ( -/obj/structure/cable{ - icon_state = "4-8" +"fTN" = ( +/obj/structure/table/rack, +/obj/item/stack/material/steel/full, +/obj/item/stack/material/glass/full, +/obj/item/stack/material/glass/reinforced/full, +/obj/item/stack/rods{ + amount = 50 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/item/stack/rods{ + amount = 50 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 +/obj/item/stack/material/graphite/full, +/obj/item/stack/material/steel/full, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/machinery/camera/network/intrepid{ + c_tag = "Intrepid - Port Compartment"; + dir = 1 }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/structure/lattice/catwalk/indoor/grate, /turf/simulated/floor/plating, -/area/hallway/engineering/rust) +/area/horizon/shuttle/intrepid/port_compartment) +"fTQ" = ( +/obj/effect/floor_decal/corner_wide/paleblue/full{ + dir = 8 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/engineer_maintenance/electric, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/surgery) +"fTR" = ( +/obj/effect/floor_decal/corner/lime/diagonal, +/obj/machinery/light/small, +/turf/simulated/floor/tiled/white, +/area/horizon/shuttle/intrepid/medical) +"fTS" = ( +/obj/structure/table/wood, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/obj/item/material/ashtray/bronze{ + pixel_x = 6; + pixel_y = 2 + }, +/turf/simulated/floor/wood, +/area/horizon/hallway/primary/deck_3/starboard) "fTU" = ( /obj/item/paper_bin{ pixel_x = 7; @@ -41664,12 +41610,6 @@ /obj/structure/table/standard, /turf/unsimulated/floor, /area/antag/ninja) -"fTV" = ( -/obj/effect/map_effect/marker_helper/mapmanip/submap/edge{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/operations/storage) "fTZ" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/simple/hidden{ @@ -41678,108 +41618,107 @@ /obj/structure/lattice/catwalk/indoor/grate/dark, /turf/simulated/floor/plating, /area/shuttle/skipjack) -"fUb" = ( -/obj/structure/cable{ - icon_state = "1-2" +"fUj" = ( +/obj/structure/table/glass, +/obj/item/clothing/accessory/sleevepatch/scc{ + pixel_x = -8; + pixel_y = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/obj/random/junk, -/obj/machinery/atmospherics/pipe/simple/hidden/aux, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/maintenance/operations) -"fUf" = ( -/obj/structure/cable/green{ - icon_state = "1-2" +/obj/item/clothing/accessory/sleevepatch/scc, +/obj/item/clothing/accessory/sleevepatch/scc{ + pixel_x = 6; + pixel_y = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 4 +/obj/item/clothing/head/beret/scc{ + pixel_y = 15; + pixel_x = -11 }, -/obj/effect/floor_decal/corner/yellow{ - dir = 1 +/obj/item/clothing/head/beret/scc{ + pixel_y = 15; + pixel_x = -2 + }, +/obj/item/clothing/head/beret/scc{ + pixel_y = 15; + pixel_x = 7 + }, +/obj/item/clothing/accessory/armband/scc{ + pixel_y = -8; + pixel_x = -12 + }, +/obj/item/clothing/accessory/armband/scc{ + pixel_y = -8; + pixel_x = -1 + }, +/obj/item/clothing/accessory/armband/scc{ + pixel_y = -10; + pixel_x = 5 }, /obj/effect/floor_decal/corner/dark_blue{ - dir = 8 - }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/yellow, -/turf/simulated/floor/tiled/dark, -/area/engineering/atmos) -"fUh" = ( -/obj/machinery/alarm/south, -/obj/effect/floor_decal/industrial/outline_straight/yellow{ - dir = 8 - }, -/obj/effect/floor_decal/corner/yellow{ - dir = 6 - }, -/obj/machinery/light/colored/blue{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ dir = 9 }, -/turf/simulated/floor/tiled/dark, -/area/horizon/hydroponics/lower) -"fUm" = ( -/obj/effect/floor_decal/industrial/hatch/red, -/obj/effect/floor_decal/industrial/warning{ +/turf/simulated/floor/tiled, +/area/horizon/command/bridge/bridge_crew) +"fUk" = ( +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/ai/upload) +"fUl" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/horizon/operations/lobby) +"fUq" = ( +/obj/machinery/door/firedoor{ + req_one_access = list(24,11,67,73); dir = 4 }, +/obj/effect/floor_decal/industrial/hatch_door/yellow, +/obj/structure/curtain/open/medical, /turf/simulated/floor/tiled/dark/full, -/area/horizon/custodial/disposals) -"fUo" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/effect/floor_decal/spline/plain/corner{ - dir = 8 - }, +/area/horizon/shuttle/intrepid/medical) +"fUr" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/spline/plain/corner, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/white, -/area/horizon/kitchen) -"fUt" = ( -/obj/structure/railing/mapped, -/obj/effect/floor_decal/industrial/warning/cee{ +/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/plating, -/area/maintenance/research_port) -"fUu" = ( -/obj/effect/floor_decal/industrial/outline/operations, -/obj/structure/closet/secure_closet/atmos_personal, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/atmos/storage) -"fUC" = ( -/obj/machinery/door/firedoor/multi_tile, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 +/turf/simulated/floor/tiled, +/area/horizon/hangar/auxiliary) +"fUv" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 9 }, -/obj/effect/floor_decal/industrial/warning, -/obj/machinery/door/blast/shutters/open{ - dir = 2; - id = "shutters_deck2_portstairwellsec"; - name = "Security Shutter" +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 }, -/obj/machinery/door/airlock/multi_tile/glass{ - name = "Deck 1 Port Stairwell Auxiliary Hangar Elevator" +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 }, -/obj/machinery/door/blast/regular/open{ - dir = 4; - id = "hangarlockdown"; - name = "Hangar Lockdown" +/obj/structure/cable/green{ + icon_state = "4-8" }, -/turf/simulated/floor/tiled/full, -/area/rnd/eva) +/obj/structure/disposalpipe/junction{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/xenological) +"fUw" = ( +/obj/effect/landmark/entry_point/starboard{ + name = "starboard, compartment" + }, +/turf/simulated/wall/shuttle/unique/scc/mining{ + icon_state = "1,5" + }, +/area/horizon/shuttle/mining) "fUE" = ( /obj/effect/floor_decal/spline/plain{ dir = 1 @@ -41792,41 +41731,47 @@ /obj/structure/flora/ausbushes/lavendergrass, /turf/simulated/floor/exoplanet/grass/grove, /area/centcom/shared_dream) -"fUF" = ( -/obj/machinery/camera/network/command{ - c_tag = "AI Core - External"; +"fUI" = ( +/obj/effect/floor_decal/corner/red/diagonal, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/spline/plain{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/lino, +/area/horizon/service/cafeteria) +"fUQ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/button/remote/blast_door{ dir = 4; - pixel_x = 32 + id = "shutters_bunker"; + name = "Command Bunker Blast Door"; + pixel_x = 22; + pixel_y = 21; + req_access = list(19) }, -/turf/simulated/wall/shuttle/scc_space_ship/cardinal, -/area/turret_protected/ai_upload_foyer) -"fUG" = ( -/obj/structure/table/wood, -/obj/effect/floor_decal/spline/fancy/wood, -/obj/machinery/newscaster/south, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 1 +/obj/machinery/button/remote/airlock{ + dir = 4; + id = "airlocks_bunker"; + name = "Command Bunker Bolts"; + pixel_x = 22; + pixel_y = 11; + req_access = list(19); + specialfunctions = 4; + desiredstate = 1 }, -/obj/random/pottedplant_small{ - pixel_x = -3; - pixel_y = -2 - }, -/turf/simulated/floor/wood, -/area/hallway/primary/aft) -"fUS" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 10 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 +/obj/structure/cable{ + icon_state = "1-2" }, /turf/simulated/floor/tiled/dark, -/area/hangar/intrepid) -"fUT" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/random/dirt_75, -/turf/simulated/floor/plating, -/area/maintenance/wing/port/far) +/area/horizon/command/bridge/aibunker) "fUU" = ( /obj/structure/bed/stool/chair/shuttle, /obj/structure/closet/walllocker/emerglocker{ @@ -41837,89 +41782,69 @@ }, /turf/simulated/floor/tiled/dark, /area/shuttle/legion) -"fVb" = ( -/obj/machinery/holosign/service{ - id = "commissary" +"fUX" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 9 }, -/obj/structure/cable/green{ - icon_state = "4-8"; - d1 = 4; - d2 = 8 - }, -/obj/machinery/door/firedoor{ - req_one_access = list(24,11,67,73); +/obj/structure/disposalpipe/junction{ dir = 4 }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/obj/machinery/door/airlock/glass_mining{ - dir = 4; - name = "Commissary"; - id_tag = "horizon_commissary_door" +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 }, -/turf/simulated/floor/tiled/full, -/area/horizon/commissary) +/turf/simulated/floor/tiled, +/area/horizon/command/bridge/controlroom) +"fVa" = ( +/turf/simulated/wall/r_wall, +/area/horizon/rnd/xenoarch/isolation_a) "fVd" = ( /obj/machinery/acting/changer, /turf/unsimulated/floor/rubber_carpet, /area/antag/jockey) -"fVe" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ +"fVi" = ( +/obj/structure/disposalpipe/junction/yjunction{ dir = 1 }, /obj/structure/cable/green{ - icon_state = "1-4" + icon_state = "4-8" }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor, -/area/horizon/maintenance/deck_three/aft/starboard) -"fVh" = ( -/obj/effect/floor_decal/industrial/warning/corner{ +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/obj/machinery/portable_atmospherics/canister/empty, -/turf/simulated/floor/plating, -/area/maintenance/research_port) +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/full, +/area/horizon/hallway/primary/deck_3/port) +"fVj" = ( +/obj/effect/floor_decal/corner_wide/paleblue{ + dir = 5 + }, +/obj/structure/filingcabinet/chestdrawer{ + pixel_x = 10 + }, +/obj/structure/filingcabinet/medical{ + pixel_x = -7 + }, +/obj/machinery/alarm/north, +/turf/simulated/floor/tiled/white, +/area/horizon/command/heads/cmo) "fVk" = ( /obj/machinery/light/small/emergency, /turf/unsimulated/floor/plating, /area/centcom/ferry) -"fVl" = ( -/obj/effect/landmark/entry_point/port{ - name = "port, ballast fore" +"fVp" = ( +/turf/simulated/floor/wood, +/area/horizon/repoffice/consular_one) +"fVu" = ( +/obj/effect/floor_decal/corner/mauve/full{ + dir = 4 }, -/turf/simulated/wall/shuttle/scc_space_ship/cardinal, -/area/maintenance/wing/port/far) -"fVm" = ( -/obj/structure/closet/hazmat/custodial, -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/structure/railing/mapped, -/obj/effect/floor_decal/industrial/outline/custodial, /turf/simulated/floor/tiled, -/area/horizon/custodial) -"fVn" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden{ - dir = 8 - }, -/obj/effect/map_effect/marker/airlock/docking{ - landmark_tag = "nav_horizon_dock_deck_3_starboard_2"; - master_tag = "airlock_horizon_dock_deck_3_starboard_2"; - name = "airlock_horizon_dock_deck_3_starboard_2" - }, -/turf/simulated/floor/plating, -/area/horizon/hallway/deck_three/primary/starboard/docks) +/area/horizon/rnd/xenobiology) "fVy" = ( /obj/effect/floor_decal/corner/blue{ dir = 10 @@ -41940,56 +41865,43 @@ /obj/item/device/radio/intercom/south, /turf/simulated/floor/tiled/white, /area/horizon/security/autopsy_laboratory) -"fVD" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 10 +"fVC" = ( +/obj/machinery/power/sensor{ + name = "Powernet Sensor - Operations Subgrid"; + name_tag = "Operations Subgrid" + }, +/obj/structure/cable/green, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/machinery/alarm/east, +/obj/machinery/power/apc/low/south, +/turf/simulated/floor/plating, +/area/horizon/maintenance/substation/operations) +"fVE" = ( +/obj/effect/floor_decal/corner/dark_blue/full, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/cable/green{ + icon_state = "1-8" }, /turf/simulated/floor/tiled/dark, -/area/storage/eva) -"fVG" = ( -/obj/machinery/camera/network/medbay{ - c_tag = "Medical - Hallway 4"; - dir = 8 - }, -/obj/effect/floor_decal/corner_wide/green/full{ - dir = 1 - }, -/obj/effect/landmark/start{ - name = "Medical Intern" - }, -/obj/structure/bed/stool/chair{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/hallway/medical/upper) -"fVJ" = ( -/obj/structure/bed/stool/chair/unmovable, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/carpet/rubber, -/area/rnd/xenobiology/dissection) -"fVN" = ( -/obj/machinery/power/terminal{ - dir = 8 - }, +/area/horizon/weapons/longbow) +"fVF" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/yellow, -/turf/simulated/floor/tiled/dark, -/area/engineering/smes/rust) -"fVR" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 9 +/obj/effect/floor_decal/corner/mauve/diagonal, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/lab) +"fVK" = ( +/obj/machinery/light/small/emergency{ + dir = 8 }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/main/port) "fVU" = ( /turf/unsimulated/wall/darkshuttlewall, /area/centcom/control) @@ -42002,35 +41914,9 @@ }, /turf/unsimulated/floor, /area/centcom/holding) -"fVW" = ( -/obj/structure/shuttle_part/scc_space_ship{ - icon_state = "d2-2-f" - }, -/turf/simulated/wall, -/area/maintenance/wing/port) -"fWb" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/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) +"fVY" = ( +/turf/simulated/wall/r_wall, +/area/horizon/command/bridge) "fWf" = ( /obj/machinery/atmospherics/pipe/simple/visible/black, /obj/machinery/atmospherics/pipe/simple/visible/purple{ @@ -42045,46 +41931,56 @@ }, /turf/space/dynamic, /area/horizon/exterior) -"fWg" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 5 +"fWh" = ( +/obj/structure/railing/mapped{ + dir = 1 }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/turf/simulated/floor, -/area/maintenance/engineering_ladder) -"fWi" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/engineering{ - dir = 4; - name = "Engineering Hard Storage"; - req_one_access = list(11,24) - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/full, -/area/engineering/storage_hard) -"fWl" = ( -/obj/machinery/light/small/emergency{ +/obj/structure/railing/mapped{ dir = 8 }, +/obj/structure/coatrack, +/obj/effect/floor_decal/corner/black/full{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/horizon/operations/machinist) +"fWj" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, /obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" + icon_state = "1-8" }, -/obj/machinery/power/apc/hyper/north, -/obj/effect/floor_decal/industrial/hatch/red, -/turf/simulated/floor/tiled/dark, -/area/bridge/selfdestruct) -"fWm" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 8 +/obj/structure/disposalpipe/trunk{ + dir = 1 }, -/obj/structure/bed/stool/chair/padded/brown{ - dir = 8 +/obj/machinery/disposal/small/north, +/turf/simulated/floor/lino, +/area/horizon/service/dining_hall) +"fWk" = ( +/obj/structure/cable/green{ + icon_state = "1-4" }, /turf/simulated/floor/wood, -/area/hallway/engineering) +/area/horizon/command/heads/chief) +"fWn" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 1 + }, +/obj/machinery/airlock_sensor{ + dir = 1; + pixel_y = -20 + }, +/obj/effect/map_effect/marker/airlock{ + frequency = 1003; + master_tag = "airlock_horizon_deck_1_aft_port_1"; + name = "airlock_horizon_deck_1_aft_port_1" + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/auxatmos) "fWo" = ( /obj/item/storage/box/cdeathalarm_kit{ pixel_x = -3; @@ -42102,151 +41998,142 @@ icon_state = "wood" }, /area/centcom/legion/hangar5) -"fWp" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/engineering{ - dir = 4; - name = "Engineering Substation"; - req_one_access = list(11,24) - }, -/turf/simulated/floor/plating, -/area/maintenance/substation/engineering/lower) -"fWs" = ( -/turf/simulated/floor/reinforced{ - blocks_air = 1; - density = 1; - name = "thruster mount" - }, -/area/engineering/atmos/propulsion) "fWt" = ( /obj/effect/floor_decal/corner/paleblue/full{ dir = 8 }, /turf/unsimulated/floor, /area/centcom/legion/hangar5) -"fWx" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 5 - }, -/obj/structure/table/wood, -/turf/simulated/floor/tiled, -/area/hangar/intrepid) -"fWz" = ( -/obj/item/modular_computer/console/preset/merchant, -/turf/simulated/floor/wood, -/area/merchant_station/warehouse) -"fWC" = ( -/obj/structure/table/wood, -/obj/random/pottedplant_small{ - pixel_x = -5 - }, -/obj/machinery/power/outlet{ - pixel_y = 4; - pixel_x = 10 - }, -/turf/simulated/floor/carpet/art, -/area/crew_quarters/lounge) -"fWQ" = ( -/obj/machinery/door/airlock/service{ - dir = 1; - name = "Bar - Backroom"; - req_access = list(25) - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +"fWv" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/full, -/area/horizon/bar) -"fWU" = ( -/obj/structure/cable{ icon_state = "4-8" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /obj/machinery/door/firedoor, -/obj/effect/landmark{ - name = "Revenant" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard/deck1) -"fWV" = ( -/obj/machinery/light/floor{ - dir = 1 +/obj/machinery/door/airlock/glass_mining{ + dir = 4; + name = "Mining"; + req_one_access = list(31,48,67) }, -/obj/structure/extinguisher_cabinet/north, /turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/central) -"fWX" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 5 +/area/horizon/operations/mining_main/refinery) +"fWz" = ( +/obj/item/modular_computer/console/preset/merchant, +/turf/simulated/floor/wood, +/area/merchant_station/warehouse) +"fWM" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/airlock/atmos{ + name = "Drone Fabrication"; + req_one_access = list(11,24) }, /turf/simulated/floor/plating, -/area/maintenance/wing/cargo_compartment) -"fWY" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ +/area/horizon/engineering/drone_fabrication) +"fWO" = ( +/obj/machinery/door/airlock/external{ + dir = 1; + frequency = 1379; + icon_state = "door_locked"; + id_tag = "turbine_combustion"; + locked = 1; + name = "Combustion Chamber"; + req_access = list(24) + }, +/obj/machinery/door/blast/regular{ + id = "turbineinterior"; + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible/cyan, +/obj/machinery/atmospherics/pipe/simple/visible/yellow, +/turf/simulated/floor/reinforced/airless, +/area/horizon/engineering/atmos/turbine) +"fWR" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/structure/closet, +/obj/random/loot, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/port) +"fXd" = ( +/obj/machinery/atmospherics/pipe/manifold/visible{ dir = 1 }, -/obj/effect/floor_decal/corner_wide/green{ +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/atmos) +"fXe" = ( +/obj/effect/floor_decal/corner/dark_blue{ dir = 10 }, -/obj/structure/railing/mapped, -/turf/simulated/floor/tiled/white, -/area/hallway/medical/upper) -"fXi" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 6 +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/light, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_3/port/docks) +"fXf" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 1 + }, +/obj/machinery/portable_atmospherics/powered/pump/filled, +/obj/effect/floor_decal/industrial/outline/blue, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/hallway/aft) +"fXk" = ( +/turf/simulated/wall, +/area/horizon/medical/surgery) +"fXo" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_3/starboard) +"fXp" = ( +/obj/effect/floor_decal/corner_wide/yellow/diagonal, +/obj/machinery/recharge_station, +/obj/machinery/light, +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/machinery/hologram/holopad/long_range, /turf/simulated/floor/tiled/dark, -/area/bridge/meeting_room) -"fXm" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor, -/area/maintenance/wing/port/far) +/area/horizon/engineering/break_room) "fXu" = ( /obj/effect/landmark/entry_point/port{ name = "port, security firing range" }, /turf/simulated/wall/shuttle/scc_space_ship/cardinal, /area/horizon/security/firing_range) -"fXy" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 +"fXI" = ( +/obj/effect/floor_decal/corner_wide/green/full, +/obj/effect/floor_decal/sign/cmo, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/hallway) +"fXK" = ( +/obj/structure/table/reinforced, +/obj/item/device/flashlight/lamp, +/obj/effect/floor_decal/corner_wide/purple/full{ + dir = 8 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 9 - }, -/turf/simulated/floor/tiled/dark/full, -/area/shuttle/intrepid/port_compartment) -"fXF" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/maintenance/hangar/starboard) +/obj/effect/floor_decal/corner_wide/purple/diagonal, +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/test_range) "fXL" = ( /obj/effect/overlay/palmtree_r, /obj/effect/overlay/coconut, @@ -42254,77 +42141,59 @@ icon_state = "desert" }, /area/centcom/shared_dream) -"fXM" = ( -/obj/structure/closet/crate, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/item/tank/air, -/obj/item/clothing/suit/space/emergency, -/obj/item/clothing/head/helmet/space/emergency, -/obj/item/tank/air, -/obj/item/clothing/suit/space/emergency, -/obj/item/clothing/head/helmet/space/emergency, -/turf/simulated/floor/plating, -/area/hangar/intrepid) -"fXO" = ( -/obj/machinery/power/apc/west, +"fXT" = ( +/obj/effect/floor_decal/corner_wide/purple{ + dir = 10 + }, +/obj/effect/floor_decal/corner_wide/purple{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, /obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" + icon_state = "4-8" }, -/obj/structure/table/reinforced/wood, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 8 - }, -/obj/machinery/case_button/shuttle{ - pixel_x = 4; - pixel_y = 15 - }, -/obj/item/flame/lighter/zippo{ - pixel_x = -8 - }, -/obj/item/card/id/captains_spare, -/turf/simulated/floor/wood, -/area/crew_quarters/captain) -"fXS" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 9 - }, -/obj/machinery/firealarm/west, -/turf/simulated/floor/tiled, -/area/hangar/intrepid/interstitial) +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/xenoarch/atrium) "fXV" = ( /turf/simulated/floor/beach/water/alt, /area/centcom/shared_dream) -"fXW" = ( -/obj/effect/floor_decal/corner/dark_blue{ +"fXY" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ dir = 6 }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - icon_state = "1-2" +/obj/structure/ladder/up{ + pixel_y = 13 }, -/obj/machinery/camera/network/command{ - c_tag = "Bridge - Port 1"; - dir = 8 +/obj/structure/lattice/catwalk/indoor, +/obj/structure/window/reinforced{ + dir = 4 }, -/turf/simulated/floor/tiled, -/area/bridge/controlroom) -"fYa" = ( -/obj/machinery/door/airlock/glass{ +/obj/machinery/atmospherics/pipe/simple/visible/supply{ + dir = 10 + }, +/turf/simulated/floor/plating, +/area/horizon/engineering/atmos/air) +"fYb" = ( +/obj/effect/floor_decal/corner/dark_blue/full{ dir = 1 }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/obj/structure/cable/green{ - icon_state = "1-2" +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/structure/sign/crush{ + pixel_x = 16; + pixel_y = 32 }, /turf/simulated/floor/tiled, -/area/rnd/hallway/secondary) +/area/horizon/rnd/eva) "fYd" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 5 @@ -42333,21 +42202,16 @@ icon_state = "carpet10-8" }, /area/centcom/legion/hangar5) -"fYe" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - dir = 4; - req_one_access = list(12) - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor, -/area/horizon/crew_quarters/fitness/changing) "fYh" = ( /turf/simulated/wall/shuttle/unique/tcfl{ icon_state = "3,4" }, /area/shuttle/legion) +"fYi" = ( +/obj/effect/floor_decal/industrial/outline/emergency_closet, +/obj/structure/closet/emcloset, +/turf/simulated/floor/tiled/dark, +/area/horizon/hangar/auxiliary) "fYl" = ( /obj/structure/table/reinforced/steel, /obj/random/contraband, @@ -42365,119 +42229,68 @@ icon_state = "dark_preview" }, /area/centcom/holding) +"fYm" = ( +/obj/machinery/atmospherics/unary/freezer{ + icon_state = "freezer_1"; + power_setting = 20; + set_temperature = 80; + use_power = 1 + }, +/obj/machinery/alarm/north, +/turf/simulated/floor/carpet/rubber, +/area/horizon/rnd/server) "fYn" = ( /obj/structure/flora/rock, /turf/simulated/floor/exoplanet/barren, /area/centcom/shared_dream) -"fYr" = ( +"fYF" = ( /obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" + icon_state = "1-2" }, -/obj/machinery/power/apc/north{ - req_one_access = list(11, 24, 47, 65); - req_access = null +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/mining{ + dir = 1; + id_tag = "qmdoor"; + name = "Operations Manager"; + req_access = list(41) }, -/obj/structure/bed/handrail, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/full, +/area/horizon/command/heads/om) +"fYG" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 10 }, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel, -/turf/simulated/floor/tiled/dark, -/area/shuttle/intrepid/port_storage) -"fYv" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/corner/red/diagonal, -/obj/effect/floor_decal/spline/plain/corner, -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/turf/simulated/floor/lino, -/area/horizon/cafeteria) -"fYz" = ( -/obj/structure/engineer_maintenance/electric/wall, -/turf/simulated/floor/tiled/freezer{ - name = "cooled tiles"; - temperature = 278.15 - }, -/area/medical/morgue/lower) -"fYH" = ( -/obj/machinery/atmospherics/unary/cryo_cell, -/turf/simulated/floor/tiled, -/area/medical/gen_treatment) -"fYI" = ( -/obj/structure/sign/securearea{ - name = "\improper WARNING: MUNITIONS BAY sign"; - pixel_x = -32 - }, -/obj/effect/floor_decal/corner/dark_green/full, -/obj/effect/floor_decal/industrial/warning/corner{ +/obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 }, -/obj/machinery/light, -/obj/structure/flora/pottedplant{ - icon_state = "plant-33" - }, +/obj/structure/extinguisher_cabinet/south, /turf/simulated/floor/tiled, -/area/operations/lobby) -"fYK" = ( -/obj/machinery/status_display/supply_display{ - pixel_y = 32 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/platform/ledge, -/turf/simulated/open, -/area/operations/office) +/area/horizon/operations/lobby) "fYN" = ( /obj/machinery/light/small/emergency{ dir = 8 }, /turf/template_noop, /area/template_noop) -"fYX" = ( -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/power/apc/north, -/obj/structure/table/wood, -/obj/item/paper_bin{ - pixel_x = -6; - pixel_y = 7 - }, -/obj/item/pen{ - pixel_x = -7; - pixel_y = 9 - }, -/obj/item/reagent_containers/food/condiment/shaker/spacespice, -/obj/item/holomenu{ - pixel_x = 9; - pixel_y = 8 - }, -/obj/item/holomenu{ - pixel_x = 9; - pixel_y = 4 - }, -/obj/random/pottedplant_small{ - pixel_x = 5; - pixel_y = 9 - }, -/turf/simulated/floor/tiled/dark, -/area/horizon/bar/backroom) -"fYY" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 10 - }, +"fYO" = ( /turf/simulated/floor/tiled, -/area/operations/lobby) +/area/horizon/rnd/xenobiology/xenoflora) +"fYR" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor/plating, +/area/horizon/hallway/primary/deck_2/central) +"fYU" = ( +/turf/simulated/floor/wood, +/area/horizon/command/bridge/meeting_room) "fZa" = ( /obj/effect/map_effect/perma_light/starlight, /turf/space/dynamic, @@ -42498,6 +42311,17 @@ /obj/effect/decal/cleanable/dirt, /turf/unsimulated/floor/wood, /area/antag/burglar) +"fZg" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_3/port/docks) "fZl" = ( /obj/effect/floor_decal/corner/lime/diagonal{ dir = 8 @@ -42530,189 +42354,78 @@ }, /turf/simulated/floor/tiled/dark, /area/shuttle/mercenary) -"fZo" = ( -/obj/machinery/libraryscanner, -/obj/item/device/radio/intercom/north, -/turf/simulated/floor/lino/diamond, -/area/horizon/library) -"fZp" = ( -/obj/effect/floor_decal/corner/green/diagonal, -/obj/item/bedsheet/medical{ - icon_state = "sheet-roll" +"fZq" = ( +/obj/structure/window/shuttle/scc_space_ship, +/obj/structure/grille, +/obj/machinery/door/firedoor, +/obj/effect/landmark/entry_point/starboard{ + name = "starboard, civilian lounges" }, -/obj/structure/bed/padded, -/obj/machinery/newscaster/north, -/turf/simulated/floor/tiled/white, -/area/medical/ward/isolation) -"fZr" = ( -/obj/effect/floor_decal/industrial/hatch/red, -/obj/effect/floor_decal/industrial/warning{ - dir = 10 - }, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/custodial/disposals) +/turf/simulated/floor/plating, +/area/horizon/crew/lounge) "fZs" = ( /turf/unsimulated/wall/fakepdoor{ dir = 4 }, /area/antag/burglar) -"fZu" = ( -/obj/structure/stairs/west, -/turf/simulated/floor/plating, -/area/maintenance/wing/port/deck1) -"fZv" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/red{ - dir = 10 - }, -/turf/simulated/wall/shuttle/unique/scc/mining{ - icon_state = "7,7" - }, -/area/shuttle/mining) -"fZw" = ( -/obj/item/stack/wrapping_paper, -/obj/structure/table/standard, -/obj/item/stack/wrapping_paper, -/obj/item/stack/packageWrap{ - pixel_y = 8 - }, -/obj/item/stack/packageWrap{ - pixel_y = 8 - }, -/obj/effect/floor_decal/corner/brown/full{ - dir = 4 - }, -/obj/machinery/alarm/east, -/turf/simulated/floor/tiled, -/area/operations/mail_room) -"fZD" = ( -/obj/machinery/door/window/northleft, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/random/junk, -/obj/random/dirt_75, -/obj/random/dirt_75, -/turf/simulated/floor/carpet/rubber, -/area/maintenance/wing/port/far) -"fZE" = ( +"fZC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ - icon_state = "4-8" + icon_state = "1-2" }, -/obj/machinery/computer/guestpass{ - pixel_y = 32 - }, -/obj/effect/floor_decal/corner/dark_green{ - dir = 5 - }, -/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) -"fZG" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/effect/floor_decal/spline/plain{ - dir = 1 - }, -/obj/machinery/vending/mredispenser, -/turf/simulated/floor/tiled/dark, -/area/hallway/primary/central_one) +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor, +/area/horizon/command/bridge/upperdeck) "fZH" = ( /turf/simulated/wall/shuttle/unique/ert{ icon_state = "8,3" }, /area/shuttle/specops) -"fZJ" = ( -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 +"fZI" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 }, /turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/starboard) -"fZP" = ( -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/structure/window/reinforced, +/area/horizon/engineering/lobby) +"fZO" = ( +/obj/effect/floor_decal/corner/lime/diagonal, +/turf/simulated/floor/tiled/white, +/area/horizon/shuttle/intrepid/medical) +"fZW" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/horizon/rnd/hallway) +"fZZ" = ( +/obj/structure/closet/crate, +/obj/random/loot, /obj/machinery/light/small/emergency{ dir = 1 }, /turf/simulated/floor/plating, -/area/maintenance/wing/starboard/far) -"fZQ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ +/area/horizon/maintenance/deck_1/wing/starboard) +"gaa" = ( +/obj/structure/grille, +/obj/structure/window/shuttle/scc_space_ship, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/horizon/hallway/primary/deck_3/port) +"gac" = ( +/obj/machinery/mineral/processing_unit{ + id = "horizon_processing_2"; dir = 8 }, -/obj/structure/bed/stool/chair/shuttle/double{ - pixel_x = 8 +/obj/effect/floor_decal/industrial/warning/full, +/turf/simulated/floor/plating, +/area/horizon/operations/mining_main/refinery) +"gal" = ( +/obj/effect/map_effect/window_spawner/full/reinforced/polarized/grille/firedoor{ + id = "OM Windows" }, -/obj/effect/floor_decal/corner/brown{ - dir = 9 - }, -/obj/effect/floor_decal/spline/plain/black{ - dir = 9 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/intrepid/main_compartment) -"fZX" = ( -/obj/machinery/camera/network/command{ - c_tag = "Bridge - Pilot Room"; - dir = 1 - }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 10 - }, -/obj/machinery/requests_console/south{ - department = "Deck 1 - Pilots' Room"; - name = "Pilots' Room Requests Console" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/structure/bed/stool/chair/office/dark{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/hangar/control) -"fZY" = ( -/obj/machinery/meter, -/obj/effect/floor_decal/corner_wide/black{ - dir = 10 - }, -/obj/effect/floor_decal/industrial/warning, -/obj/machinery/atmospherics/pipe/simple/visible/green{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/engineering/atmos/propulsion/starboard) -"gag" = ( -/turf/simulated/wall/shuttle/scc_space_ship/cardinal, -/area/security/checkpoint2) +/turf/simulated/floor/tiled/dark/full, +/area/horizon/command/heads/om) "gam" = ( /obj/effect/floor_decal/corner/lime{ dir = 10 @@ -42731,27 +42444,6 @@ }, /turf/simulated/floor/tiled/white, /area/shuttle/hapt) -"gar" = ( -/obj/effect/floor_decal/industrial/warning/corner, -/obj/effect/floor_decal/industrial/warning, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/fuel{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden, -/turf/simulated/floor/tiled/dark, -/area/shuttle/intrepid/engineering) -"gas" = ( -/turf/simulated/wall/r_wall, -/area/horizon/hydroponics/lower) "gat" = ( /turf/simulated/floor/beach/sand{ icon_state = "seashallow" @@ -42770,15 +42462,58 @@ /obj/effect/map_effect/window_spawner/full/reinforced/indestructible, /turf/unsimulated/floor/plating, /area/centcom/holding) -"gaC" = ( -/obj/structure/window/shuttle/scc_space_ship, -/obj/structure/grille, -/obj/machinery/door/firedoor, +"gay" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/structure/disposalpipe/junction{ + dir = 8; + icon_state = "pipe-j2" + }, +/obj/effect/floor_decal/corner_wide/green{ + dir = 5 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/hallway/upper) +"gaH" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/light/small/emergency{ + dir = 1 + }, /turf/simulated/floor/plating, -/area/engineering/atmos) -"gaE" = ( -/turf/simulated/floor/tiled, -/area/hangar/auxiliary) +/area/horizon/maintenance/deck_2/wing/starboard/near) +"gaM" = ( +/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/horizon/shuttle/quark/cockpit) +"gaN" = ( +/obj/structure/bed/stool/chair/office/bridge/generic, +/obj/effect/floor_decal/corner/dark_blue{ + dir = 6 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/weapons/longbow) "gaO" = ( /obj/vehicle/droppod/syndie{ connected_blastdoor = "merc_droppod_3" @@ -42826,51 +42561,69 @@ }, /turf/simulated/floor/bluegrid, /area/horizon/holodeck/source_trinary) -"gba" = ( -/obj/effect/floor_decal/industrial/warning{ +"gaS" = ( +/obj/structure/table/standard, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 5 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/obj/random/pottedplant_small, +/turf/simulated/floor/wood, +/area/horizon/rnd/hallway) +"gaW" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/horizon/crew/lounge) +"gaX" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/effect/floor_decal/industrial/loading/grey, +/obj/effect/shuttle_landmark/supply/horizon/dock{ dir = 1 }, -/obj/machinery/atmospherics/pipe/manifold/visible/yellow{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/rnd/xenoarch_atrium) +/turf/simulated/floor/tiled, +/area/horizon/hangar/operations) "gbd" = ( /obj/effect/floor_decal/spline/plain, /turf/unsimulated/floor, /area/antag/mercenary) -"gbf" = ( -/obj/effect/map_effect/window_spawner/full/reinforced/polarized/grille/firedoor{ - id = "cap" +"gbh" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 6 }, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "bridge blast"; - name = "Bridge Blast Doors"; - opacity = 0 +/obj/structure/table/standard, +/obj/structure/closet/walllocker/medical/firstaid{ + pixel_x = 32 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/command/teleporter) +"gbi" = ( +/obj/effect/floor_decal/sign/icu, +/obj/structure/cable/green{ + icon_state = "4-8" }, /obj/structure/cable/green{ - icon_state = "0-4" + icon_state = "2-8" }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, /obj/structure/cable/green{ - icon_state = "1-4" + icon_state = "1-8" }, -/obj/structure/cable/green{ - icon_state = "2-4" +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/obj/structure/disposalpipe/segment{ + icon_state = "pipe-c" }, -/turf/simulated/floor, -/area/crew_quarters/captain) -"gbl" = ( -/obj/effect/floor_decal/corner/red/diagonal, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/hologram/holopad, -/obj/structure/cable/green{ - icon_state = "1-2" +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 }, -/turf/simulated/floor/lino, -/area/horizon/cafeteria) +/turf/simulated/floor/tiled/white, +/area/horizon/medical/gen_treatment) +"gbk" = ( +/turf/simulated/open, +/area/horizon/operations/office) "gbm" = ( /obj/effect/overlay/palmtree_l, /turf/simulated/floor/holofloor/beach/sand{ @@ -42885,20 +42638,22 @@ /obj/effect/decal/cleanable/generic, /turf/simulated/floor/tiled/dark/full, /area/shuttle/skipjack) -"gbp" = ( -/obj/machinery/computer/ship/navigation{ - dir = 1 +"gbq" = ( +/turf/simulated/wall, +/area/horizon/crew/fitness/gym) +"gbr" = ( +/obj/machinery/power/terminal{ + dir = 8 }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 10 - }, -/obj/machinery/camera/network/third_deck{ - c_tag = "Third Deck - Command Entrance"; - dir = 1; - network = list("Third Deck","Command","XO_Office","Capt_Office") - }, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/central) +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/yellow, +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/reactor/indra/smes) +"gbt" = ( +/obj/structure/bed/stool/chair/sofa/left/brown, +/turf/simulated/floor/wood, +/area/horizon/medical/psych) "gby" = ( /obj/structure/bed/stool/chair/sofa/brown{ dir = 1 @@ -42934,26 +42689,23 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/security/office) -"gbG" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/floor_decal/corner/yellow/full{ - dir = 1 - }, -/obj/structure/table/standard, -/obj/machinery/cell_charger, -/obj/item/storage/bag/inflatable{ - pixel_y = 3 - }, -/obj/item/storage/bag/inflatable{ - pixel_y = 3 - }, -/obj/item/storage/bag/inflatable{ - pixel_y = 3 +"gbF" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 9 }, /turf/simulated/floor/tiled, -/area/engineering/storage_eva) +/area/horizon/rnd/hallway/secondary) +"gbJ" = ( +/obj/machinery/power/terminal{ + dir = 8 + }, +/obj/machinery/camera/network/engineering{ + c_tag = "Engineering - Deck 1 - Second Deck Civilian Substation"; + dir = 8 + }, +/obj/structure/cable, +/turf/simulated/floor/plating, +/area/horizon/maintenance/substation/civ_d2) "gbK" = ( /obj/structure/sign/flag/nanotrasen/unmovable, /obj/effect/floor_decal/corner/paleblue/full{ @@ -42961,32 +42713,41 @@ }, /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 - }, -/obj/structure/coatrack, -/obj/structure/engineer_maintenance/pipe{ - dir = 8 - }, -/obj/structure/engineer_maintenance/electric, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/heads/cmo) -"gbY" = ( -/obj/structure/cable/green{ +"gcb" = ( +/obj/structure/cable{ icon_state = "1-2" }, -/obj/effect/floor_decal/industrial/warning{ - dir = 9 +/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, +/obj/machinery/light/small/emergency{ + dir = 4 }, /turf/simulated/floor/plating, -/area/engineering/storage/lower) +/area/horizon/maintenance/deck_2/aft) +"gci" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/obj/machinery/light/small/emergency, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/hangar/port) +"gcm" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/horizon/operations/lobby) "gco" = ( /obj/effect/decal/fake_object{ dir = 4; @@ -43008,25 +42769,53 @@ name = "shallow water" }, /area/horizon/holodeck/source_konyang) -"gcp" = ( -/obj/structure/disposalpipe/junction{ +"gcq" = ( +/obj/effect/floor_decal/corner/dark_blue/diagonal, +/obj/effect/floor_decal/spline/plain/black{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/shuttle/intrepid/junction_compartment) +"gcs" = ( +/obj/structure/table/standard, +/obj/effect/floor_decal/corner/brown/full{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/alarm/north, +/obj/item/stack/material/steel/full{ + pixel_x = 1; + pixel_y = 5 + }, +/turf/simulated/floor/tiled, +/area/horizon/operations/office_aux) +"gct" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/wood, +/area/horizon/command/heads/captain) +"gcu" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 9 + }, +/obj/effect/floor_decal/spline/plain/green{ dir = 4 }, -/obj/effect/floor_decal/corner/brown{ +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/horizon/service/hydroponics/lower) +"gcv" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 6 }, -/turf/simulated/floor/tiled, -/area/operations/office) -"gcr" = ( -/obj/machinery/power/apc/east, -/obj/structure/cable/green{ - icon_state = "0-8" - }, -/obj/effect/floor_decal/corner/dark_green/full{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_two/fore) +/obj/structure/lattice/catwalk/indoor, +/turf/simulated/floor/plating, +/area/horizon/engineering/reactor/indra/mainchamber) "gcA" = ( /obj/effect/floor_decal/corner/dark_blue/diagonal{ dir = 1 @@ -43034,47 +42823,76 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled/dark/full, /area/horizon/security/armoury) +"gcB" = ( +/obj/effect/decal/cleanable/cobweb, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/wing/starboard) "gcK" = ( /obj/structure/bed/stool/chair/office/bridge{ dir = 4 }, /turf/unsimulated/floor/rubber_carpet, /area/centcom/control) -"gcT" = ( -/obj/effect/floor_decal/spline/fancy/wood{ +"gcS" = ( +/turf/simulated/wall/r_wall, +/area/horizon/engineering/locker_room) +"gcV" = ( +/obj/machinery/door/airlock/glass_medical{ + dir = 1; + name = "Medical"; + req_access = list(5) + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 2; + icon_state = "shutter0"; + id = "LCKDshutters"; + name = "Medical Lockdown Shutters"; + opacity = 0 + }, +/obj/effect/map_effect/door_helper/unres{ dir = 1 }, -/obj/structure/table/wood, -/obj/item/device/flashlight/lamp/lava/pink{ - pixel_x = -4; - pixel_y = 6 +/turf/simulated/floor/tiled/full, +/area/horizon/medical/hallway) +"gcW" = ( +/obj/structure/cable/green{ + icon_state = "0-8" }, -/obj/machinery/power/outlet{ - pixel_y = 9 +/obj/effect/floor_decal/corner/dark_blue{ + dir = 6 }, -/turf/simulated/floor/carpet/art, -/area/crew_quarters/lounge/secondary) -"gcZ" = ( -/obj/machinery/button/remote/blast_door{ - dir = 4; - id = "shutters_custodialdesk"; - name = "Custodial Desk Shutter"; - pixel_x = 22; - pixel_y = -7; - req_access = list(26) +/obj/structure/bed/handrail{ + dir = 8 }, -/obj/effect/floor_decal/industrial/warning, -/obj/machinery/button/remote/blast_door{ - dir = 4; - id = "shutters_custodialgarage"; - name = "Custodial Garage Shutter"; - pixel_x = 22; - pixel_y = 7; - req_access = list(26) +/obj/machinery/power/apc/canary/east{ + req_one_access = list(73,74,11) + }, +/obj/machinery/atmospherics/binary/pump/fuel{ + dir = 1; + name = "Fuel Tank to Thrusters" + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/shuttle/canary) +"gdb" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor, +/area/horizon/maintenance/deck_3/aft/holodeck) +"gdj" = ( +/obj/machinery/light{ + dir = 8 }, -/obj/structure/railing/mapped, /turf/simulated/floor/tiled/dark, -/area/horizon/custodial) +/area/horizon/stairwell/bridge/deck_2) "gdm" = ( /obj/effect/mist, /turf/simulated/floor/exoplanet/water/shallow{ @@ -43082,120 +42900,75 @@ icon_state = "beachcorner" }, /area/horizon/holodeck/source_moghes) -"gdp" = ( -/obj/structure/window/shuttle/scc_space_ship, -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/structure/stairs_lower/stairs_upper, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard/deck1) -"gds" = ( -/obj/structure/tank_wall/nitrous_oxide{ - density = 0; - icon_state = "h12"; - opacity = 0 +"gdq" = ( +/obj/machinery/camera/network/second_deck{ + c_tag = "Second Deck - Engineering Entrance" }, -/obj/machinery/atmospherics/pipe/simple/visible/red{ - dir = 5 - }, -/turf/simulated/floor/reinforced/n20, -/area/engineering/atmos/air) -"gdz" = ( -/obj/structure/grille/broken, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor, -/area/horizon/maintenance/deck_three/aft/starboard) -"gdB" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/floor_decal/corner/yellow/diagonal, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 1 - }, -/obj/machinery/camera/network/engineering{ - c_tag = "Engineering - Deck 2 - Engineering Substation Access" +/obj/effect/floor_decal/corner/dark_green/full{ + dir = 8 }, +/obj/machinery/alarm/north, /turf/simulated/floor/tiled, -/area/hallway/engineering/rust) -"gdD" = ( -/obj/random/dirt_75, -/turf/simulated/floor/plating, -/area/maintenance/wing/port/far) +/area/horizon/hallway/primary/deck_2/central) +"gdx" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/service/bar) +"gdE" = ( +/obj/effect/floor_decal/corner/dark_blue/diagonal, +/obj/structure/closet/secure_closet/security, +/obj/machinery/recharger/wallcharger{ + pixel_x = 4; + pixel_y = 24 + }, +/obj/machinery/recharger/wallcharger{ + pixel_x = 4; + pixel_y = 33 + }, +/obj/effect/floor_decal/industrial/outline/security, +/obj/machinery/alarm/east, +/turf/simulated/floor/tiled/dark, +/area/horizon/security/checkpoint) "gdF" = ( /obj/structure/bed/stool/chair/sofa/right/red, /obj/effect/floor_decal/corner/brown/diagonal, /obj/structure/engineer_maintenance/electric/wall, /turf/simulated/floor/tiled/dark, /area/horizon/holodeck_control/beta) -"gdH" = ( -/obj/machinery/light{ - dir = 4 +"gdG" = ( +/obj/machinery/firealarm/west, +/obj/random/pottedplant, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 10 }, -/obj/structure/reagent_dispensers/water_cooler, -/turf/simulated/floor/tiled, -/area/operations/lower/machinist/surgicalbay) +/turf/simulated/floor/wood, +/area/horizon/crew/lounge) +"gdJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/structure/platform, +/turf/simulated/floor/reinforced, +/area/horizon/command/bridge/controlroom) "gdK" = ( /obj/structure/flora/grass/jungle, /obj/effect/floor_decal/spline/plain/corner, /turf/simulated/floor/exoplanet/grass, /area/centcom/shared_dream) -"gdL" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ +"gdX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/effect/floor_decal/corner/dark_green{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/hangar/intrepid) -"gdP" = ( -/obj/machinery/light, -/obj/machinery/atmospherics/pipe/simple/visible/black{ - dir = 5 - }, -/obj/machinery/meter, -/turf/simulated/floor/tiled/dark, -/area/engineering/atmos/propulsion) -"gdR" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 1 - }, -/obj/machinery/portable_atmospherics/canister/air/airlock, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard/deck1) -"gdW" = ( -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, -/obj/structure/disposalpipe/segment{ - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/aux{ +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 8 }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/machinery/atmospherics/pipe/simple/hidden/green{ - dir = 5 +/obj/structure/cable/orange{ + icon_state = "4-8" }, -/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ - dir = 10 - }, -/turf/simulated/floor/plating, -/area/maintenance/engineering) +/turf/simulated/floor/tiled, +/area/horizon/engineering/reactor/indra/mainchamber) "gdY" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/floor_decal/corner/grey{ @@ -43211,68 +42984,49 @@ }, /turf/unsimulated/floor, /area/centcom/legion) -"gef" = ( -/turf/simulated/wall, -/area/operations/qm) -"get" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 +"gei" = ( +/obj/machinery/door/airlock/hatch{ + dir = 1; + name = "Port Maneuvering Propulsion"; + req_one_access = list(11,24) }, -/turf/simulated/floor/reinforced/airless, -/area/template_noop) +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/starboard/nacelle) +"gep" = ( +/obj/structure/grille, +/obj/machinery/door/firedoor, +/obj/structure/window/shuttle/scc_space_ship/cardinal, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/obj/machinery/door/blast/regular/open{ + dir = 8; + id = "shutters_deck3_longbow"; + name = "Safety Blast Door" + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/weapons/longbow) +"geu" = ( +/obj/effect/floor_decal/spline/fancy/wood, +/obj/structure/bed/stool/chair/padded/beige{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/horizon/hallway/primary/deck_2/starboard) "gev" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 1 }, /turf/simulated/floor/wood/maple, /area/horizon/holodeck/source_cafe) -"gew" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/light/small/emergency{ +"geD" = ( +/obj/effect/floor_decal/industrial/warning{ dir = 8 }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor, -/area/maintenance/bridge) -"gex" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/effect/floor_decal/corner/lime{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/medical/emergency_storage) -"geB" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/table/steel, -/obj/random/pottedplant_small{ - pixel_x = -4; - pixel_y = 11 - }, -/obj/random/pottedplant_small{ - pixel_x = 6; - pixel_y = 11 - }, -/obj/random/pottedplant_small{ - pixel_x = -4; - pixel_y = 3 - }, -/obj/random/pottedplant_small{ - pixel_x = 6; - pixel_y = 3 - }, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/hydroponics/lower) +/turf/simulated/floor/reinforced, +/area/horizon/weapons/grauwolf) "geE" = ( /obj/vehicle/droppod/legion{ connected_blastdoor = "tcfl_droppod_4" @@ -43281,50 +43035,67 @@ icon_state = "panelscorched" }, /area/centcom/legion/hangar5) -"geL" = ( -/obj/effect/floor_decal/spline/fancy/wood/cee{ +"geG" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 5 + }, +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_3/port/docks) +"geH" = ( +/obj/structure/tank_wall/hydrogen{ + icon_state = "h3" + }, +/obj/effect/floor_decal/industrial/warning{ dir = 1 }, -/obj/structure/flora/ausbushes/lavendergrass, -/obj/structure/flora/ausbushes/palebush, -/obj/structure/railing/mapped{ +/obj/machinery/atmospherics/pipe/simple/visible/red, +/turf/simulated/floor/airless, +/area/horizon/engineering/atmos) +"geI" = ( +/obj/machinery/alarm/west, +/obj/machinery/seed_extractor, +/obj/effect/floor_decal/industrial/outline/service, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/service/hydroponics/lower) +"geP" = ( +/obj/structure/table/standard{ + no_cargo = 1 + }, +/obj/item/stack/material/steel/full{ + pixel_x = 2; + pixel_y = 15 + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/auxatmos) +"geR" = ( +/obj/effect/floor_decal/spline/plain/lime{ + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/operations/commissary) +"geV" = ( +/obj/structure/platform_deco{ dir = 8 }, -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = -14 +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 }, -/turf/simulated/floor/grass/no_edge, -/area/horizon/hallway/deck_three/primary/starboard) -"geM" = ( -/obj/machinery/door/firedoor, -/obj/effect/map_effect/door_helper/unres, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/blast/shutters/open{ - dir = 2; - id = "securitycommandshutter"; - name = "Security Checkpoint External Shutter" +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 }, -/obj/machinery/door/airlock/glass_command{ - dir = 1; - id_tag = "command_foyer"; - name = "Bridge"; - req_one_access = list(19,38,72) - }, -/obj/effect/map_effect/door_helper/level_access/command_foyer{ - req_one_access_by_level = list("green","yellow"=list(19,38,72),"blue"=list(19,38,72),"red"=list(19,38,72),"delta"=list(19,38,72)); - access_by_level = null - }, -/turf/simulated/floor/tiled/full, -/area/horizon/hallway/deck_three/primary/central) -"geN" = ( -/turf/simulated/wall/r_wall, -/area/horizon/crew_quarters/cryo/living_quarters_lift) -"geQ" = ( -/obj/machinery/alarm/north, -/obj/random/dirt_75, -/turf/simulated/floor, -/area/maintenance/wing/port/far) +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/wood, +/area/horizon/command/bridge/meeting_room) "geY" = ( /obj/effect/floor_decal/industrial/loading/yellow{ dir = 1 @@ -43339,44 +43110,47 @@ icon_state = "dark_preview" }, /area/centcom/holding) -"gfk" = ( -/obj/effect/floor_decal/corner_wide/blue{ - dir = 5 +"gff" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/effect/floor_decal/corner_wide/yellow{ - dir = 10 - }, -/obj/effect/floor_decal/industrial/warning, -/obj/machinery/light/small/emergency, -/obj/structure/sign/nosmoking_1{ - pixel_y = -32 - }, -/turf/simulated/floor/reinforced, -/area/bridge/selfdestruct) -"gfp" = ( /obj/structure/cable/green{ icon_state = "4-8" }, -/obj/structure/cable/green{ - icon_state = "2-4" +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 }, -/obj/effect/floor_decal/corner/yellow{ - dir = 9 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 }, -/turf/simulated/floor/tiled, -/area/engineering/storage_eva) -"gft" = ( -/obj/structure/table/standard, -/obj/item/storage/bag/circuits/basic{ - pixel_y = 5; - pixel_x = -11 +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor, +/area/horizon/hallway/primary/deck_3/port) +"gfi" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/portable_atmospherics/canister/nitrogen/prechilled, +/turf/simulated/floor/plating, +/area/horizon/engineering/reactor/supermatter/mainchamber) +"gfv" = ( +/obj/effect/floor_decal/industrial/outline/service, +/obj/machinery/portable_atmospherics/hydroponics, +/obj/machinery/atmospherics/portables_connector{ + dir = 8 }, -/obj/structure/platform{ - dir = 1 +/turf/simulated/floor/tiled/dark/full, +/area/horizon/service/hydroponics/lower) +"gfB" = ( +/obj/structure/railing/mapped, +/obj/effect/floor_decal/industrial/outline/emergency_closet, +/obj/structure/closet/emcloset{ + anchored = 1; + canbemoved = 1 + }, +/obj/machinery/light/spot{ + dir = 4 }, -/obj/effect/floor_decal/spline/plain, /turf/simulated/floor/carpet/rubber, -/area/operations/lower/machinist) +/area/horizon/engineering/reactor/indra/mainchamber) "gfC" = ( /obj/random/vendor{ scan_id = 0 @@ -43384,48 +43158,38 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/unsimulated/floor/monotile, /area/antag/raider) -"gfM" = ( -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 5 - }, -/obj/effect/floor_decal/corner/lime{ - dir = 5 +"gfF" = ( +/turf/simulated/wall/shuttle/scc_space_ship/cardinal, +/area/horizon/maintenance/substation/engineering) +"gfL" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 }, +/turf/simulated/floor/wood, +/area/horizon/command/heads/xo) +"gfP" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/maintenance/deck_2/wing/starboard/nacelle) +"gfR" = ( +/turf/simulated/wall/shuttle/scc, +/area/horizon/shuttle/intrepid/engineering) +"gga" = ( +/obj/effect/floor_decal/industrial/outline/service, +/obj/machinery/chem_master/condimaster, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/service/hydroponics/lower) +"ggc" = ( +/obj/machinery/portable_atmospherics/hydroponics/soil, +/obj/machinery/light{ dir = 1 }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora) -"gge" = ( -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/structure/platform{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard) -"ggf" = ( -/turf/simulated/floor/wood, -/area/rnd/hallway/secondary) -"ggi" = ( -/obj/effect/map_effect/window_spawner/full/reinforced/polarized/firedoor{ - id = "chapel" - }, -/turf/simulated/floor/tiled/dark/full, -/area/chapel/office) -"ggj" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/wing/port/far) +/turf/simulated/floor/grass/no_edge, +/area/horizon/rnd/xenobiology/xenoflora) "ggl" = ( /obj/effect/floor_decal/corner/dark_blue{ dir = 9 @@ -43433,107 +43197,51 @@ /obj/item/device/radio/intercom/west, /turf/simulated/floor/tiled, /area/horizon/security/hallway) -"ggp" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/machinery/power/apc/west, -/turf/simulated/floor/plating, -/area/maintenance/hangar/starboard) -"ggs" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/full, -/area/hallway/primary/central_one) -"ggt" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/platform, -/turf/simulated/floor/wood, -/area/horizon/crew_quarters/lounge/bar) -"ggC" = ( -/obj/effect/floor_decal/corner_wide/orange{ - dir = 10 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, +"ggn" = ( /obj/structure/cable/green{ icon_state = "1-2" }, -/turf/simulated/floor/tiled/white, -/area/medical/gen_treatment) -"ggE" = ( -/obj/effect/floor_decal/corner/purple/full{ +/turf/simulated/floor/tiled/dark, +/area/horizon/weapons/longbow) +"ggv" = ( +/turf/simulated/wall, +/area/horizon/maintenance/substation/medical) +"ggz" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance{ + dir = 1; + req_one_access = list(11,24) + }, +/turf/simulated/floor, +/area/horizon/engineering/break_room) +"ggJ" = ( +/obj/effect/floor_decal/corner/black{ + dir = 9 + }, +/obj/structure/railing/mapped{ dir = 8 }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/closet/crate/trashcart, -/obj/item/stack/cable_coil/random, -/obj/random/loot, /turf/simulated/floor/tiled/dark, -/area/horizon/custodial/disposals) -"ggH" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/maintenance_hatch{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"ggK" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/white, -/area/medical/ors) -"ggM" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/central) +/area/horizon/hangar/auxiliary) "ggP" = ( /turf/simulated/wall/shuttle/space_ship, /area/shuttle/burglar) -"ggQ" = ( -/obj/machinery/door/blast/regular/open{ - id = "iso_b"; - name = "Safety Blast Door" +"ggX" = ( +/obj/structure/cable{ + icon_state = "1-2" }, -/obj/effect/map_effect/window_spawner/full/borosilicate/reinforced/firedoor, -/obj/machinery/alarm/south{ - alarm_id = 1502; - breach_detection = 0; - dir = 4; - name = "Isolation B"; - pixel_x = -24; - rcon_setting = 3; - report_danger_level = 0; - req_one_access = list(7,47,24,11) +/obj/structure/cable{ + icon_state = "2-4" }, -/turf/simulated/floor/tiled/dark/full, -/area/rnd/isolation_b) +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/port/far) "ggZ" = ( /obj/structure/table/reinforced/wood, /obj/item/modular_computer/laptop/preset/command/captain, @@ -43541,65 +43249,107 @@ icon_state = "wood" }, /area/centcom/control) -"ghd" = ( -/obj/structure/cable/green{ - icon_state = "4-8" +"ghb" = ( +/obj/machinery/door/airlock/highsecurity{ + dir = 1; + name = "AI Upload"; + req_access = list(16) }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 +/obj/structure/cable{ + icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/blast/regular{ + dir = 4; + id = "ai_upload"; + name = "AI Foyer Blast Door" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/dark, +/area/horizon/ai/upload_foyer) +"ghc" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ dir = 4 }, -/obj/structure/disposalpipe/junction/yjunction, -/turf/simulated/floor/tiled/white, -/area/hallway/medical) +/turf/simulated/wall/shuttle/scc_space_ship/cardinal, +/area/horizon/engineering/atmos/propulsion) +"ghe" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/port) "ghi" = ( /turf/unsimulated/floor/stairs{ dir = 4 }, /area/antag/ninja) -"ghr" = ( -/obj/effect/floor_decal/corner/yellow{ - dir = 5 +"ghj" = ( +/obj/structure/railing/mapped{ + dir = 1 }, -/obj/structure/cable/green{ - icon_state = "1-4" +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/reactor/supermatter/mainchamber) +"gho" = ( +/obj/machinery/door/airlock/mining{ + dir = 1; + name = "Surgical Bay"; + req_access = list(29); + desc = "It opens and closes" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/dark, -/area/engineering/aft_airlock) -"ghs" = ( -/turf/unsimulated/wall/fakepdoor, -/area/centcom/specops) -"ghv" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/green{ icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/gen_treatment) -"ghw" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/light_switch{ - pixel_x = 9; - pixel_y = -22 - }, -/obj/effect/floor_decal/corner/purple/full{ - dir = 4 - }, +/obj/machinery/door/firedoor, +/obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled, -/area/horizon/custodial) +/area/horizon/operations/machinist/surgicalbay) +"ghs" = ( +/turf/unsimulated/wall/fakepdoor, +/area/centcom/specops) +"ght" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/starboard) +"ghz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/machinery/door/airlock/external{ + dir = 4 + }, +/obj/machinery/access_button{ + dir = 4; + pixel_x = 12; + pixel_y = 28 + }, +/obj/effect/map_effect/marker/airlock{ + frequency = 1003; + master_tag = "airlock_horizon_deck_1_aft_propulsion_2"; + name = "airlock_horizon_deck_1_aft_propulsion_2" + }, +/obj/effect/map_effect/marker_helper/airlock/interior, +/turf/simulated/floor/plating, +/area/horizon/engineering/atmos/propulsion/starboard) "ghI" = ( /turf/unsimulated/wall/fakepdoor{ dir = 1; @@ -43621,42 +43371,60 @@ /obj/machinery/status_display/arrivals_display, /turf/unsimulated/wall/darkshuttlewall, /area/centcom/spawning) -"ghS" = ( -/obj/machinery/hologram/holopad/long_range, -/obj/effect/floor_decal/corner/mauve/diagonal, -/turf/simulated/floor/tiled/white, -/area/rnd/lab) -"ghU" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - icon_state = "2-4" - }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor/wood, -/area/lawoffice/consular) -"gif" = ( -/obj/structure/table/standard, -/obj/item/device/suit_cooling_unit, -/obj/item/device/suit_cooling_unit, -/obj/item/device/suit_cooling_unit, -/obj/item/device/suit_cooling_unit, -/obj/item/device/suit_cooling_unit, -/turf/simulated/floor/tiled, -/area/engineering/storage_eva) -"gig" = ( -/obj/effect/floor_decal/corner_wide/purple{ - dir = 6 - }, -/obj/effect/floor_decal/corner_wide/purple{ - dir = 8 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ +"ghP" = ( +/obj/effect/floor_decal/industrial/hatch_door/red{ dir = 1 }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenoarch_atrium) +/obj/machinery/door/airlock/external, +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 4 + }, +/obj/effect/map_effect/marker/airlock/shuttle{ + cycle_to_external_air = 1; + master_tag = "airlock_shuttle_intrepid"; + name = "airlock_shuttle_intrepid"; + req_one_access = null; + shuttle_tag = "Intrepid" + }, +/obj/effect/map_effect/marker_helper/airlock/exterior, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/shuttle/intrepid/main_compartment) +"ghY" = ( +/obj/machinery/light/small/emergency{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/port) +"ghZ" = ( +/obj/machinery/portable_atmospherics/canister/sleeping_agent, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/reinforced, +/area/horizon/rnd/xenoarch/atrium) +"gih" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/structure/closet/walllocker/emerglocker{ + pixel_y = -32 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/firealarm/south, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_3/starboard/docks) "gii" = ( /obj/structure/railing/mapped, /obj/effect/mist, @@ -43674,41 +43442,26 @@ icon_state = "beach" }, /area/horizon/holodeck/source_moghes) -"giv" = ( -/obj/machinery/portable_atmospherics/canister/empty/air, -/obj/structure/window/reinforced{ +"gil" = ( +/obj/structure/noticeboard, +/turf/simulated/wall/r_wall, +/area/horizon/command/bridge/upperdeck) +"gip" = ( +/turf/simulated/wall/r_wall, +/area/horizon/operations/secure_ammunition_storage) +"git" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 8 }, -/obj/structure/window/reinforced{ +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 1 }, -/turf/simulated/floor/plating, -/area/maintenance/wing/port/far) -"gix" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/camera/network/first_deck{ - c_tag = "First Deck - Hangar 3"; - dir = 8 - }, -/obj/effect/floor_decal/corner/dark_green{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/hangar/intrepid) -"giz" = ( -/obj/effect/floor_decal/corner/white/diagonal, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/medical/paramedic) +/turf/simulated/floor/tiled/full, +/area/horizon/hallway/primary/deck_2/central) "giC" = ( /obj/effect/floor_decal/corner/red{ dir = 6 @@ -43722,6 +43475,19 @@ }, /turf/unsimulated/floor, /area/centcom/evac) +"giE" = ( +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/effect/floor_decal/spline/plain, +/turf/simulated/floor/carpet/rubber, +/area/horizon/engineering/reactor/supermatter/monitoring) "giH" = ( /obj/structure/closet/secure_closet/merchant, /obj/machinery/embedded_controller/radio/simple_docking_controller{ @@ -43733,61 +43499,58 @@ }, /turf/simulated/floor/tiled/dark, /area/shuttle/merchant) -"giJ" = ( -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 5 - }, -/turf/simulated/floor/tiled/dark, -/area/engineering/atmos) -"giK" = ( -/obj/machinery/light/small/emergency{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/maintenance/wing/port/far) -"giM" = ( -/obj/structure/lattice, -/obj/machinery/light{ +"giI" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 }, -/obj/structure/platform/ledge{ +/turf/simulated/floor/carpet/purple, +/area/horizon/command/heads/rd) +"giN" = ( +/obj/effect/floor_decal/spline/plain, +/obj/effect/floor_decal/spline/plain/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/black, +/obj/effect/floor_decal/spline/plain/corner{ dir = 4 }, -/obj/structure/platform/ledge{ - dir = 8 +/obj/machinery/light, +/turf/simulated/floor/carpet/rubber, +/area/horizon/tcommsat/chamber) +"giQ" = ( +/obj/effect/floor_decal/corner_wide/yellow{ + dir = 10 }, -/turf/simulated/open, -/area/operations/office) -"giS" = ( -/obj/structure/cable/green{ - icon_state = "2-8" +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/medical/main_storage) -"giV" = ( -/obj/machinery/telecomms/processor/preset_two, -/turf/simulated/floor/bluegrid, -/area/tcommsat/chamber) -"giX" = ( -/obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled, -/area/operations/storage) -"giY" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 6 - }, -/obj/structure/cable/yellow{ +/area/horizon/engineering/hallway/interior) +"giR" = ( +/turf/simulated/wall/shuttle/scc_space_ship/cardinal, +/area/horizon/maintenance/deck_2/wing/starboard/far) +"giT" = ( +/obj/structure/cable{ icon_state = "1-2" }, -/obj/structure/railing/mapped, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/engine_room/rust) +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor, +/area/horizon/hallway/primary/deck_3/central) +"gja" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/light_switch{ + pixel_x = 9; + pixel_y = -22 + }, +/obj/effect/floor_decal/corner/purple/full{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/horizon/service/custodial) "gjc" = ( /obj/structure/railing/mapped{ dir = 4 @@ -43797,50 +43560,40 @@ name = "staircase" }, /area/centcom/spawning) -"gjd" = ( -/obj/effect/floor_decal/industrial/outline/red, -/obj/item/crowbar/red, -/obj/item/weldingtool/emergency{ - pixel_y = 6 - }, -/obj/item/clothing/glasses/welding/emergency{ - pixel_y = -6 - }, -/obj/item/paper/fluff/bunker, -/obj/structure/sign/emergency/evacuation/ladder{ - pixel_x = -32; - pixel_y = 32 - }, -/turf/simulated/floor, -/area/bridge/aibunker) "gjf" = ( /obj/machinery/computer/shuttle_control/specops{ dir = 1 }, /turf/simulated/floor/shuttle/black, /area/shuttle/specops) -"gjh" = ( -/obj/effect/map_effect/window_spawner/full/shuttle/scc{ - spawn_firedoor = 1; - spawn_grille = 1 +"gjg" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" }, -/obj/machinery/door/blast/shutters/open{ - dir = 8; - id = "intrepid_bay_windows"; - name = "Intrepid Shutter" +/obj/structure/cable/green{ + icon_state = "1-2" }, -/turf/simulated/floor/plating, -/area/shuttle/intrepid/buffet) -"gji" = ( -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 10 - }, -/turf/simulated/floor/plating, -/area/engineering/atmos/air) +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor, +/area/horizon/maintenance/deck_3/security/port) "gjk" = ( /obj/structure/railing/mapped, /turf/simulated/floor/holofloor/wood, /area/horizon/holodeck/source_moghes) +"gjo" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/portables_connector{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/atmos) "gjr" = ( /obj/effect/floor_decal/corner/dark_blue{ dir = 9 @@ -43855,63 +43608,61 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/security/firing_range) -"gjs" = ( -/obj/effect/floor_decal/corner_wide/yellow{ - dir = 5 +"gjx" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 1 }, -/obj/machinery/power/apc/north, -/obj/structure/cable/green{ - icon_state = "4-8" +/obj/machinery/portable_atmospherics/canister/air/airlock, +/obj/structure/window/reinforced{ + dir = 8 }, -/obj/structure/cable/green{ - icon_state = "0-4" - }, -/obj/structure/platform_deco{ +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/hangar/starboard) +"gjA" = ( +/obj/effect/floor_decal/spline/fancy/wood{ dir = 4 }, -/turf/simulated/floor/tiled, -/area/hallway/engineering) -"gjz" = ( -/obj/effect/floor_decal/sign/icu, -/obj/structure/cable/green{ - icon_state = "4-8" +/obj/effect/landmark/start{ + name = "Captain" }, -/obj/structure/cable/green{ - icon_state = "2-8" +/obj/structure/bed/stool/chair/office/bridge{ + dir = 8 }, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, -/obj/structure/disposalpipe/segment{ - icon_state = "pipe-c" - }, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/gen_treatment) +/turf/simulated/floor/carpet, +/area/horizon/command/bridge/meeting_room) "gjB" = ( /obj/structure/flora/rock/ice, /turf/simulated/floor/exoplanet/snow, /area/centcom/shared_dream) -"gjH" = ( -/obj/effect/floor_decal/corner/brown/full{ +"gjE" = ( +/obj/random/loot, +/obj/structure/closet/crate, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/teleporter) +"gjG" = ( +/obj/effect/floor_decal/corner/yellow, +/obj/effect/floor_decal/corner/dark_blue{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/atmos) +"gjI" = ( +/obj/machinery/camera/network/third_deck{ + c_tag = "Third Deck - Investigator Entrance"; dir = 1 }, -/obj/machinery/mineral/processing_unit_console{ - id = "horizon_processing_3"; - pixel_x = 32 +/obj/effect/floor_decal/corner/dark_green{ + dir = 10 }, -/obj/effect/floor_decal/industrial/hatch_tiny/yellow, -/obj/machinery/conveyor_switch/oneway{ - pixel_y = 7; - id = "mining_3" - }, -/obj/machinery/firealarm/north, /turf/simulated/floor/tiled, -/area/outpost/mining_main/refinery) +/area/horizon/stairwell/port/deck_3) +"gjJ" = ( +/obj/structure/stairs/north, +/turf/simulated/floor/tiled/dark, +/area/horizon/stairwell/bridge/deck_2) "gjT" = ( /obj/structure/railing/mapped{ name = "adjusted railing" @@ -43925,34 +43676,9 @@ }, /turf/unsimulated/floor/wood, /area/centcom/evac) -"gjU" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/medical/psych) "gjV" = ( -/obj/machinery/camera/network/service{ - c_tag = "Service- Hydroponics 2"; - dir = 1 - }, -/obj/structure/table/reinforced, -/obj/effect/floor_decal/corner/dark_green/diagonal, -/obj/item/paper_bin{ - pixel_x = -8; - pixel_y = 4 - }, -/obj/item/pen{ - pixel_x = -6; - pixel_y = 4 - }, -/obj/item/clothing/ears/earphones/headphones{ - pixel_x = 3; - pixel_y = 12 - }, -/obj/effect/floor_decal/spline/plain, -/turf/simulated/floor/tiled, -/area/horizon/hydroponics) +/turf/simulated/wall/r_wall, +/area/horizon/engineering/reactor/supermatter/mainchamber) "gjX" = ( /obj/effect/floor_decal/corner/teal{ dir = 9 @@ -43963,6 +43689,13 @@ }, /turf/unsimulated/floor/marble, /area/antag/wizard) +"gkb" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 5 + }, +/obj/structure/bed/stool/chair/padded/black, +/turf/simulated/floor/carpet, +/area/horizon/repoffice/representative_one) "gkc" = ( /obj/effect/floor_decal/corner/red{ dir = 6 @@ -43975,18 +43708,12 @@ icon_state = "dark_preview" }, /area/centcom/holding) -"gke" = ( -/obj/effect/floor_decal/spline/fancy/wood/cee{ - dir = 1 - }, -/obj/structure/bed/stool/chair/sofa/right/red{ - dir = 8 - }, -/obj/structure/railing/mapped{ +"gkf" = ( +/obj/effect/floor_decal/corner/dark_green{ dir = 4 }, -/turf/simulated/floor/wood, -/area/horizon/cafeteria) +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_3/central) "gkj" = ( /obj/effect/floor_decal/spline/fancy/wood/corner, /obj/effect/floor_decal/spline/fancy/wood{ @@ -43994,40 +43721,17 @@ }, /turf/simulated/floor/holofloor/grass, /area/horizon/holodeck/source_picnicarea) -"gkk" = ( -/obj/machinery/atmospherics/unary/engine/scc_shuttle, -/turf/simulated/floor/plating, -/area/shuttle/intrepid/port_storage) -"gkm" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - dir = 1 +"gkq" = ( +/obj/machinery/door/firedoor, +/obj/effect/floor_decal/corner_wide/yellow{ + dir = 6 }, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard/far) -"gkr" = ( -/obj/effect/floor_decal/corner/brown/full{ - dir = 1 +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/structure/cable/green{ + icon_state = "1-2" }, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/structure/engineer_maintenance/electric/wall, -/turf/simulated/floor/tiled, -/area/operations/storage) -"gks" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/maintenance/security_port) -"gkt" = ( -/obj/machinery/atmospherics/pipe/simple/visible/cyan, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/engine_room/turbine) +/turf/simulated/floor/tiled/full, +/area/horizon/stairwell/engineering/deck_2) "gku" = ( /obj/structure/cable/green{ icon_state = "1-2" @@ -44037,38 +43741,58 @@ /obj/structure/lattice/catwalk/indoor/grate, /turf/simulated/floor/plating, /area/horizon/security/hallway) -"gkE" = ( -/obj/machinery/light{ - dir = 1 +"gky" = ( +/obj/machinery/atmospherics/binary/pump/aux{ + name = "Carbon Dioxide Pump"; + req_one_access = list(26,29,31,48,67,24,47,73) }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/machinery/portable_atmospherics/canister/oxygen, -/turf/simulated/floor/tiled/full, -/area/hangar/intrepid) -"gkM" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/machinery/light/small/emergency{ +/obj/effect/floor_decal/corner/black/full{ dir = 4 }, -/turf/simulated/floor, -/area/maintenance/engineering_ladder) -"gkP" = ( -/obj/structure/table/steel, -/obj/item/towel/random{ - pixel_x = -2; - pixel_y = 3 +/obj/effect/floor_decal/industrial/warning{ + dir = 6 }, -/obj/machinery/atmospherics/unary/vent_pump/on{ +/turf/simulated/floor/tiled, +/area/horizon/hangar/intrepid) +"gkB" = ( +/obj/machinery/conveyor_switch/oneway{ + id = "QMLoad" + }, +/obj/structure/railing/mapped, +/obj/effect/floor_decal/industrial/warning{ dir = 8 }, /turf/simulated/floor/tiled, -/area/horizon/crew_quarters/fitness/gym) +/area/horizon/hangar/operations) +"gkC" = ( +/obj/structure/window/borosilicate{ + dir = 4 + }, +/obj/structure/closet/hazmat/research, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/lab) +"gkJ" = ( +/obj/machinery/telecomms/hub/preset, +/turf/simulated/floor/bluegrid, +/area/horizon/tcommsat/chamber) +"gkO" = ( +/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/horizon/shuttle/quark/cockpit) "gkR" = ( /obj/structure/table/holotable, /obj/machinery/readybutton, @@ -44077,23 +43801,6 @@ }, /turf/simulated/floor/holofloor/tiled, /area/horizon/holodeck/source_thunderdomecourt) -"gkU" = ( -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/hangar/intrepid) -"gkV" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/turf/simulated/floor/tiled/white, -/area/medical/ors) "gkW" = ( /obj/structure/grille, /obj/structure/grille, @@ -44119,56 +43826,55 @@ /obj/structure/lattice/catwalk/indoor/grate, /turf/simulated/floor/plating, /area/horizon/security/hallway) -"gkZ" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/black{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"glb" = ( -/obj/structure/railing/mapped, -/obj/structure/sign/emergency/evacuation{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hangar/operations) -"gld" = ( -/obj/effect/floor_decal/corner/brown{ - dir = 10 - }, -/obj/machinery/camera/network/mining{ - c_tag = "Mining - Suit Storage"; - dir = 1 - }, -/obj/structure/table/standard, -/obj/item/stack/rods/full{ - pixel_y = 7 - }, -/obj/item/storage/toolbox/mechanical{ - pixel_y = 1; - pixel_x = -1 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/refinery) -"glh" = ( -/obj/machinery/door/blast/shutters{ - dir = 2; - id = "cargo_desk" - }, -/obj/structure/table/reinforced, -/obj/machinery/door/window/desk/southleft{ - name = "Operations Desk Interior Access"; - req_access = list(50) - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/dark/full, -/area/operations/office) -"glu" = ( -/obj/effect/landmark/entry_point/starboard{ - name = "starboard, medical washroom" +"gln" = ( +/obj/structure/cable/green{ + icon_state = "1-8" }, /turf/simulated/wall/shuttle/scc_space_ship/cardinal, -/area/medical/washroom) +/area/horizon/command/bridge/controlroom) +"glr" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_2/fore) +"glt" = ( +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/effect/floor_decal/spline/fancy{ + dir = 10 + }, +/obj/item/tape_roll, +/obj/item/tape_roll, +/obj/item/tape_roll, +/obj/item/tape_roll, +/obj/item/storage/toolbox/mechanical, +/obj/machinery/camera/network/command{ + c_tag = "Bridge - Cockpit"; + dir = 4 + }, +/obj/item/device/multitool{ + pixel_x = 3; + pixel_y = 15 + }, +/obj/structure/table/reinforced/steel, +/turf/simulated/floor/carpet/rubber, +/area/horizon/command/bridge/controlroom) +"glv" = ( +/obj/effect/floor_decal/corner/dark_green/full{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_3/central) "gly" = ( /obj/item/towel_flat, /obj/effect/decal/fake_object{ @@ -44183,26 +43889,57 @@ icon_state = "desert" }, /area/centcom/shared_dream) -"glN" = ( -/obj/effect/floor_decal/corner/green/diagonal, -/obj/machinery/atmospherics/unary/vent_pump/on{ +"glF" = ( +/turf/simulated/wall/shuttle/scc, +/area/horizon/shuttle/escape_pod/pod3) +"glG" = ( +/obj/effect/floor_decal/corner/grey/diagonal, +/obj/structure/bed/stool/chair/office/light, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/reception) +"glH" = ( +/obj/effect/floor_decal/corner/red/diagonal, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/hologram/holopad, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/lino, +/area/horizon/service/cafeteria) +"glJ" = ( +/obj/effect/floor_decal/spline/plain{ dir = 8 }, -/turf/simulated/floor/tiled/white, -/area/horizon/crew_quarters/washroom/central) -"glV" = ( -/obj/structure/closet/crate/solar{ - name = "backup power generation supplies" +/obj/item/device/radio/intercom/west, +/obj/machinery/disposal/small/east, +/obj/structure/disposalpipe/trunk{ + dir = 1 }, -/obj/item/stack/material/graphite/full, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/item/stack/material/tritium/full, -/obj/item/circuitboard/portgen/fusion, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/storage_hard) -"glX" = ( -/turf/simulated/floor/bluegrid, -/area/tcommsat/chamber) +/turf/simulated/floor/marble/dark, +/area/horizon/command/bridge/minibar) +"glR" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/corner/brown{ + dir = 6 + }, +/obj/machinery/camera/network/supply{ + c_tag = "Operations - Upper Warehouse Port"; + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/machinery/computer/shuttle_control/multi/lift/wall/operations{ + dir = 8; + pixel_x = 26; + pixel_y = -8 + }, +/turf/simulated/floor/tiled, +/area/horizon/operations/office) +"glU" = ( +/turf/simulated/floor/tiled, +/area/horizon/stairwell/starboard/deck_1) "glY" = ( /obj/effect/map_effect/window_spawner/full/reinforced/firedoor, /obj/machinery/door/blast/regular{ @@ -44215,17 +43952,54 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/security/lobby) -"gmg" = ( -/obj/machinery/camera/network/service{ - c_tag = "Service - Deck 2 - Dining Hall 2"; +"glZ" = ( +/obj/effect/floor_decal/corner/brown, +/turf/simulated/floor/tiled/dark, +/area/horizon/shuttle/intrepid/port_compartment) +"gma" = ( +/obj/structure/window/reinforced{ dir = 4 }, -/obj/structure/synthesized_instrument/synthesizer/piano, -/obj/structure/platform{ +/obj/machinery/door/window/brigdoor/southright{ + name = "Ginny's Cage Access"; + req_access = list(56) + }, +/obj/machinery/light{ + dir = 1 + }, +/mob/living/simple_animal/carp/fluff/ginny, +/turf/simulated/floor/carpet, +/area/horizon/command/heads/chief) +"gmi" = ( +/obj/structure/railing/mapped{ dir = 4 }, -/turf/simulated/floor/wood, -/area/horizon/crew_quarters/lounge/bar) +/obj/effect/floor_decal/spline/fancy{ + dir = 6 + }, +/obj/machinery/recharger, +/obj/item/device/radio/intercom/north, +/obj/structure/table/reinforced/steel, +/turf/simulated/floor/carpet/rubber, +/area/horizon/command/bridge/controlroom) +"gmk" = ( +/obj/effect/floor_decal/spline/plain, +/obj/structure/railing/mapped{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/hallway/primary/deck_2/central) +"gmn" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/structure/window/reinforced, +/obj/machinery/light/small/emergency{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/port/far) +"gmq" = ( +/turf/simulated/wall/r_wall, +/area/horizon/engineering/reactor/indra/office) "gmr" = ( /obj/effect/floor_decal/corner/dark_blue{ dir = 5 @@ -44234,32 +44008,40 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/tiled/full, /area/horizon/security/hallway) -"gmx" = ( -/obj/effect/floor_decal/industrial/warning, +"gms" = ( +/obj/machinery/door/blast/shutters/open{ + dir = 2; + id = "shutters_hangarseccpexternal"; + name = "Security Checkpoint External Shutter" + }, +/obj/machinery/door/blast/regular/open{ + dir = 4; + id = "hangarlockdown"; + name = "Hangar Lockdown" + }, +/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/storage/eva) +"gmw" = ( /obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 +/obj/machinery/atmospherics/binary/pump{ + use_power = 1 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 +/turf/simulated/floor/tiled, +/area/horizon/maintenance/deck_1/hangar/starboard) +"gmA" = ( +/obj/structure/window/reinforced{ + dir = 8 }, -/obj/structure/railing/mapped, -/obj/machinery/alarm/north, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard) -"gmC" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - icon_state = "1-2" +/obj/effect/landmark/start{ + name = "Librarian" }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/structure/lattice/catwalk/indoor/grate, -/turf/simulated/floor, -/area/bridge) +/obj/structure/bed/stool/chair/office/light, +/turf/simulated/floor/lino/diamond, +/area/horizon/service/library) +"gmB" = ( +/turf/simulated/wall/shuttle/scc_space_ship/cardinal, +/area/horizon/engineering/reactor/supermatter/airlock) "gmF" = ( /obj/structure/table/reinforced/wood, /obj/effect/floor_decal/spline/fancy/wood{ @@ -44269,59 +44051,31 @@ icon_state = "wood" }, /area/centcom/control) -"gmK" = ( -/obj/machinery/door/airlock/glass{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled, -/area/rnd/hallway/secondary) -"gmL" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/effect/floor_decal/corner/dark_blue/diagonal, -/obj/machinery/firealarm/west, -/turf/simulated/floor/tiled/dark, -/area/security/checkpoint) -"gmM" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/yellow, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/engineering/storage/lower) -"gmO" = ( -/obj/machinery/door/airlock/highsecurity{ - name = "Emergency Exit"; - req_access = list(20); - locked = 1; - id_tag = "cap_escape" - }, -/obj/machinery/door/blast/regular{ - dir = 4; - id = "cap_escape_blast" - }, -/turf/simulated/floor/tiled, -/area/horizon/stairwell/bridge) -"gmT" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 6 - }, -/obj/machinery/meter{ - name = "Air Reserve" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden{ +"gmI" = ( +/obj/machinery/light{ dir = 4 }, -/turf/simulated/floor/plating, -/area/shuttle/intrepid/engineering) +/obj/machinery/power/apc/east, +/obj/structure/cable/green, +/obj/structure/closet/secure_closet/engineering_personal, +/obj/effect/floor_decal/corner/yellow/full{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/outline/operations, +/turf/simulated/floor/tiled, +/area/horizon/engineering/locker_room) +"gmU" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/atmos) "gmW" = ( /obj/effect/floor_decal/corner/red/full{ dir = 1 @@ -44337,43 +44091,66 @@ }, /turf/unsimulated/floor, /area/antag/raider) -"gni" = ( -/obj/machinery/power/apc/west, -/obj/structure/cable/green{ - icon_state = "0-4" +"gnj" = ( +/obj/machinery/door/airlock/external, +/obj/machinery/access_button{ + dir = 1; + pixel_x = -28; + pixel_y = 12 }, -/obj/machinery/firealarm/south, -/obj/effect/floor_decal/spline/plain{ - dir = 10 +/obj/effect/map_effect/marker/airlock{ + frequency = 1003; + master_tag = "airlock_horizon_deck_1_aft_propulsion_1"; + name = "airlock_horizon_deck_1_aft_propulsion_1" }, -/turf/simulated/floor/carpet/rubber, -/area/engineering/engine_monitoring) +/obj/effect/map_effect/marker_helper/airlock/exterior, +/turf/simulated/floor/plating, +/area/horizon/engineering/atmos/propulsion) +"gnk" = ( +/obj/machinery/door/airlock/hatch{ + dir = 1; + name = "Port Propulsion"; + req_one_access = list(11,24) + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/engineering/atmos/propulsion/starboard) "gnm" = ( /obj/effect/floor_decal/industrial/loading/yellow, /turf/unsimulated/floor, /area/centcom/spawning) -"gno" = ( -/obj/effect/floor_decal/corner/black{ - dir = 10 - }, -/obj/effect/floor_decal/industrial/loading/yellow{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/hangar/auxiliary) -"gnv" = ( -/obj/effect/floor_decal/spline/fancy/wood/cee, -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/structure/railing/mapped, +"gnr" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan, /obj/structure/railing/mapped{ dir = 4 }, -/obj/structure/flora/ausbushes/ppflowers, -/obj/structure/flora/ausbushes/sunnybush, -/turf/simulated/floor/grass/no_edge, -/area/hallway/primary/central_two) +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/turf/simulated/floor/plating, +/area/horizon/engineering/reactor/supermatter/mainchamber) +"gnt" = ( +/obj/machinery/firealarm/east, +/obj/effect/floor_decal/corner/dark_green{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_3/central) +"gnw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/horizon/service/custodial) "gnx" = ( /obj/machinery/door/airlock/glass_centcom{ dir = 4; @@ -44387,13 +44164,19 @@ icon_state = "dark_preview" }, /area/centcom/control) -"gnB" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 +"gnC" = ( +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/airlock/service{ + dir = 1; + name = "Disposals and Recycling"; + req_one_access = list(26,67) }, -/obj/random/dirt_75, -/turf/simulated/floor/tiled, -/area/maintenance/wing/port/far) +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/full, +/area/horizon/stairwell/engineering/deck_2) "gnG" = ( /obj/effect/step_trigger/thrower/shuttle/south, /obj/effect/step_trigger/thrower/shuttle/south, @@ -44405,6 +44188,24 @@ }, /turf/unsimulated/floor, /area/antag/mercenary) +"gnN" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/corner/mauve{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/xenobiology/hazardous) "gnP" = ( /obj/machinery/atmospherics/valve/open{ dir = 4 @@ -44412,52 +44213,28 @@ /obj/structure/lattice, /turf/space/dynamic, /area/horizon/exterior) -"gnV" = ( -/obj/machinery/disposal/small/south, -/obj/structure/disposalpipe/trunk, -/obj/effect/floor_decal/corner/dark_green{ +"gnU" = ( +/obj/effect/floor_decal/corner/dark_green/full{ + dir = 4 + }, +/obj/structure/railing/mapped, +/obj/effect/floor_decal/spline/plain, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_2/fore) +"goe" = ( +/obj/effect/floor_decal/corner/purple{ dir = 5 }, -/obj/machinery/camera/network/second_deck{ - c_tag = "Second Deck - Hallway 2" - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"gnY" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 8 - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 4 - }, -/obj/structure/flora/ausbushes/stalkybush, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced{ - dir = 4; - pixel_y = -10 - }, -/obj/structure/window/reinforced{ - dir = 8; - pixel_y = -10 - }, -/turf/simulated/floor/grass/no_edge, -/area/horizon/hallway/deck_three/primary/starboard) -"gob" = ( -/obj/structure/flora/ausbushes/sparsegrass, -/obj/structure/flora/ausbushes/ppflowers, -/obj/machinery/camera/network/second_deck{ - c_tag = "Second Deck - Service Hallway"; - dir = 8 - }, -/turf/simulated/floor/grass/no_edge, -/area/horizon/hallway/deck_two/fore) -"gof" = ( -/obj/effect/floor_decal/corner/red/diagonal, -/obj/effect/floor_decal/spline/plain{ - dir = 4 - }, -/turf/simulated/floor/lino, -/area/horizon/cafeteria) +/turf/simulated/floor/tiled/dark, +/area/horizon/service/custodial/disposals/deck_1) +"goh" = ( +/obj/structure/table/standard, +/obj/structure/window/reinforced, +/obj/effect/floor_decal/corner/grey/diagonal, +/obj/machinery/firealarm/east, +/obj/structure/roller_rack/three, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/reception) "goi" = ( /obj/effect/floor_decal/corner/paleblue{ dir = 10 @@ -44471,26 +44248,37 @@ }, /turf/unsimulated/floor, /area/centcom/holding) -"gom" = ( -/obj/effect/floor_decal/industrial/outline/grey, -/obj/structure/closet/crate{ - name = "materials crate" +"goj" = ( +/obj/item/modular_computer/console/preset/engineering/ce{ + dir = 1 }, -/obj/item/stack/material/plastic/full, -/obj/item/stack/material/plastic/full, -/obj/item/stack/material/steel/full{ - pixel_x = 4 - }, -/obj/item/stack/rods/full, -/turf/simulated/floor/plating, -/area/hangar/intrepid) -"gor" = ( -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/structure/railing/mapped{ +/obj/machinery/light, +/turf/simulated/floor/carpet, +/area/horizon/command/heads/chief) +"gol" = ( +/turf/simulated/wall, +/area/horizon/engineering/bluespace_drive/monitoring) +"goq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/turf/simulated/floor/tiled/dark/full/airless, -/area/bridge/controlroom) +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/platform_deco{ + dir = 4 + }, +/obj/effect/floor_decal/corner/dark_blue{ + dir = 5 + }, +/obj/structure/disposalpipe/junction{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/horizon/command/bridge/upperdeck) "gos" = ( /obj/structure/disposalpipe/trunk{ dir = 8 @@ -44500,45 +44288,9 @@ /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled, /area/horizon/security/hallway) -"gow" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/multi_tile/glass{ - name = "Gym" - }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/dark, -/area/horizon/crew_quarters/fitness/gym) -"goA" = ( -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/turf/simulated/floor/wood, -/area/crew_quarters/heads/chief) -"goC" = ( -/obj/effect/floor_decal/corner/brown{ - dir = 6 - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/horizon/commissary) -"goK" = ( -/turf/simulated/floor/tiled/dark, -/area/rnd/lab) +"gou" = ( +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/operations/starboard) "goL" = ( /obj/machinery/light{ dir = 4 @@ -44560,45 +44312,13 @@ }, /obj/structure/grille, /turf/simulated/floor/tiled/dark/full/airless, -/area/horizon/exterior) +/area/horizon/command/bridge/controlroom) "goN" = ( /obj/effect/floor_decal/industrial/warning/corner{ dir = 1 }, /turf/unsimulated/floor, /area/antag/mercenary) -"goO" = ( -/obj/effect/floor_decal/corner/brown/diagonal, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 4 - }, -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/structure/railing/mapped{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/operations/loading) -"goQ" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/maintenance/hangar/port) -"goR" = ( -/obj/effect/floor_decal/corner_wide/purple{ - dir = 10 - }, -/obj/machinery/disposal, -/obj/effect/floor_decal/corner_wide/purple/diagonal, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/machinery/light, -/turf/simulated/floor/tiled/white, -/area/rnd/test_range) "goT" = ( /obj/effect/floor_decal/industrial/warning{ dir = 1 @@ -44613,15 +44333,13 @@ }, /turf/unsimulated/floor/plating, /area/antag/mercenary) -"gpb" = ( -/obj/effect/floor_decal/corner/brown/diagonal, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/effect/floor_decal/industrial/warning, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 +"goY" = ( +/obj/effect/floor_decal/industrial/warning/cee{ + dir = 4 }, -/turf/simulated/floor/tiled/dark, -/area/operations/office) +/obj/structure/closet/toolcloset, +/turf/simulated/floor/tiled, +/area/horizon/maintenance/deck_2/wing/port/far) "gpf" = ( /obj/effect/floor_decal/corner/brown, /obj/structure/table/reinforced/steel, @@ -44680,139 +44398,31 @@ }, /turf/simulated/open/airless, /area/horizon/exterior) -"gpq" = ( -/obj/structure/disposalpipe/segment{ - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor, -/area/maintenance/engineering_ladder) -"gpw" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, +"gpz" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled/dark, +/area/horizon/maintenance/deck_2/wing/port/nacelle) +"gpA" = ( /obj/structure/cable/green{ icon_state = "4-8" }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/structure/lattice/catwalk/indoor/grate, -/turf/simulated/floor/plating, -/area/hangar/intrepid) -"gpy" = ( -/obj/effect/floor_decal/corner/mauve{ - dir = 10 - }, -/obj/machinery/light/floor, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology/hazardous) -"gpC" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/turf/simulated/floor/reinforced, -/area/bridge/selfdestruct) -"gpE" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 6 +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 }, -/obj/structure/table/standard, -/obj/random/tech_supply, -/obj/random/tech_supply, -/obj/random/tech_supply, -/obj/random/tech_supply, -/obj/item/device/hand_labeler, -/obj/item/device/hand_labeler, -/obj/machinery/firealarm/east, -/turf/simulated/floor/tiled, -/area/storage/primary) +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor, +/area/horizon/hallway/primary/deck_3/starboard) "gpF" = ( /turf/simulated/wall/shuttle/scc_space_ship/cardinal, /area/horizon/security/brig) -"gpK" = ( -/obj/structure/window/shuttle/scc_space_ship, -/obj/structure/grille, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/crew_quarters/lounge) -"gpL" = ( -/turf/simulated/wall/shuttle/scc_space_ship/cardinal, -/area/maintenance/substation/engineering) "gpM" = ( /turf/simulated/wall/shuttle/unique/tcfl{ icon_state = "3,5" }, /area/shuttle/legion) -"gpP" = ( -/obj/structure/foamedmetal, -/obj/structure/shuttle_part/scc_space_ship{ - icon_state = "d2-2" - }, -/turf/simulated/floor/plating, -/area/operations/lobby) -"gpT" = ( -/obj/structure/closet/crate, -/obj/random/loot, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/security_port) -"gpU" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/corner/mauve/diagonal, -/turf/simulated/floor/tiled/white, -/area/rnd/lab) -"gpV" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/corner_wide/green{ - dir = 5 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/junction{ - dir = 8; - icon_state = "pipe-j2" - }, -/turf/simulated/floor/tiled/white, -/area/hallway/medical/upper) -"gpZ" = ( -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/effect/floor_decal/corner/dark_blue/diagonal, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/dark, -/area/horizon/longbow) "gqd" = ( /obj/item/storage/box/fancy/cigarettes/dromedaryco{ pixel_x = -4; @@ -44833,6 +44443,13 @@ }, /turf/unsimulated/floor, /area/centcom/spawning) +"gqq" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner_wide/yellow/full, +/turf/simulated/floor/tiled, +/area/horizon/engineering/lobby) "gqt" = ( /obj/effect/floor_decal/corner/lime/diagonal{ dir = 8 @@ -44861,10 +44478,41 @@ }, /turf/unsimulated/floor/plating, /area/centcom/distress_prep) -"gqw" = ( -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled, -/area/security/vacantoffice) +"gqx" = ( +/obj/structure/bed/handrail{ + dir = 8 + }, +/obj/machinery/light/spot{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/lattice/catwalk/indoor, +/obj/machinery/camera/network/canary{ + c_tag = "Canary - Aft External"; + dir = 4 + }, +/turf/simulated/floor/reinforced, +/area/horizon/shuttle/canary) +"gqz" = ( +/obj/machinery/portable_atmospherics/canister/carbon_dioxide, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/storage_hard) +"gqA" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor, +/area/horizon/maintenance/deck_3/aft/port) "gqC" = ( /obj/structure/sign/kiddieplaque{ pixel_y = 32; @@ -44873,6 +44521,14 @@ }, /turf/unsimulated/floor/linoleum, /area/antag/actor) +"gqE" = ( +/obj/machinery/atmospherics/binary/pump/high_power{ + dir = 1; + name = "Aux Tanks Inlet" + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark, +/area/horizon/maintenance/deck_2/wing/starboard/auxatmos) "gqF" = ( /obj/effect/floor_decal/industrial/warning/corner{ dir = 1 @@ -44881,30 +44537,17 @@ dir = 4 }, /turf/simulated/floor/reinforced/airless, -/area/template_noop) +/area/horizon/exterior) "gqH" = ( /obj/effect/step_trigger/thrower/shuttle/south, /turf/space/transit/east, /area/template_noop) -"gqJ" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 9 - }, -/turf/simulated/floor/reinforced, -/area/rnd/xenobiology) "gqL" = ( /obj/effect/floor_decal/corner/yellow{ dir = 8 }, /turf/simulated/floor/marble/dark, /area/horizon/holodeck/source_trinary) -"gqM" = ( -/obj/effect/floor_decal/corner/red/diagonal, -/obj/effect/floor_decal/spline/plain{ - dir = 6 - }, -/turf/simulated/floor/lino, -/area/horizon/cafeteria) "gqN" = ( /obj/effect/floor_decal/industrial/warning/corner{ dir = 4 @@ -44912,54 +44555,34 @@ /obj/item/hullbeacon/red, /turf/simulated/floor/reinforced/airless, /area/horizon/exterior) -"gqO" = ( +"gqT" = ( +/obj/effect/floor_decal/corner/lime{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /obj/structure/cable/green{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/full, -/area/hallway/primary/central_one) -"gqR" = ( -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/visible/supply{ - dir = 10 - }, -/obj/structure/lattice/catwalk/indoor, -/turf/simulated/floor/plating, -/area/engineering/atmos/air) -"gqW" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/machinery/camera/network/supply{ - c_tag = "Operations - Warehouse Starboard Fore Storage Room"; - dir = 4 + icon_state = "2-8" }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, /turf/simulated/floor/tiled, -/area/operations/storage) -"gqZ" = ( -/obj/structure/table/rack, -/obj/structure/window/reinforced{ +/area/horizon/medical/morgue) +"gqX" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/structure/railing/mapped, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/atmospherics/portables_connector{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/reactor/indra/mainchamber) +"grb" = ( +/obj/machinery/light{ dir = 4 }, -/obj/machinery/door/window/westleft, -/obj/structure/window/reinforced, -/turf/simulated/floor/tiled/dark, -/area/horizon/grauwolf) +/obj/machinery/vending/hydronutrients/gardenvend, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/service/hydroponics/garden) "grc" = ( /obj/structure/grille, /obj/structure/window/reinforced, @@ -44972,14 +44595,6 @@ }, /turf/unsimulated/floor/plating, /area/centcom/legion/hangar5) -"gri" = ( -/obj/effect/floor_decal/corner/brown{ - dir = 10 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/survey_probe/ground, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/refinery) "grk" = ( /obj/effect/decal/cleanable/dirt, /obj/item/reagent_containers/glass/bucket{ @@ -44990,29 +44605,6 @@ /obj/effect/decal/cleanable/vomit, /turf/unsimulated/floor, /area/antag/raider) -"grm" = ( -/obj/structure/railing/mapped, -/obj/effect/floor_decal/spline/plain, -/obj/structure/morgue{ - dir = 8 - }, -/turf/simulated/floor/tiled/freezer{ - name = "cooled tiles"; - temperature = 278.15 - }, -/area/medical/morgue/lower) -"grn" = ( -/obj/machinery/power/breakerbox/activated{ - RCon_tag = "Deck 3 Command Substation" - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/machinery/light/small/emergency{ - dir = 1 - }, -/turf/simulated/floor, -/area/maintenance/substation/command) "gro" = ( /obj/effect/floor_decal/spline/fancy/wood, /obj/structure/cult/tome{ @@ -45027,24 +44619,32 @@ }, /turf/simulated/floor/wood/yew, /area/centcom/shared_dream) -"grr" = ( -/obj/effect/floor_decal/corner_wide/paleblue{ - dir = 9 +"grq" = ( +/obj/machinery/power/terminal{ + dir = 1 }, -/obj/structure/closet/secure_closet/medical2, -/obj/machinery/firealarm/west, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 +/obj/structure/cable/yellow{ + icon_state = "0-8" }, -/turf/simulated/floor/tiled/white, -/area/medical/ors) -"gru" = ( -/obj/machinery/mineral/unloading_machine{ - dir = 8 +/obj/machinery/light, +/turf/simulated/floor/plating, +/area/horizon/engineering/reactor/indra/mainchamber) +"grt" = ( +/obj/machinery/chem_master/condimaster{ + pixel_y = 1 }, /obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/plating, -/area/outpost/mining_main/refinery) +/obj/machinery/light, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/service/kitchen) +"grv" = ( +/obj/machinery/porta_turret, +/obj/effect/floor_decal/industrial/warning/full, +/obj/structure/railing/mapped{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/ai/upload_foyer) "grw" = ( /obj/effect/decal/fake_object{ name = "service ladder"; @@ -45061,47 +44661,28 @@ }, /turf/simulated/floor/tiled/white, /area/horizon/security/forensic_laboratory) -"gry" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/machinery/photocopier, -/turf/simulated/floor/tiled, -/area/assembly/chargebay) -"grB" = ( -/obj/machinery/power/sensor{ - name = "Powernet Sensor - Deck 3 Civilian Subgrid"; - name_tag = "Deck 3 Civilian Subgrid" - }, -/obj/machinery/power/apc/west, +"grA" = ( /obj/structure/cable/green{ - icon_state = "0-4" + icon_state = "1-2" }, /obj/structure/cable/green{ icon_state = "2-4" }, -/turf/simulated/floor, -/area/maintenance/substation/civilian_east) -"grH" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 10 +/obj/effect/floor_decal/corner/dark_blue/full{ + dir = 8 }, -/obj/machinery/disposal/small/north, -/obj/machinery/status_display{ - pixel_y = -32 +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 }, -/obj/structure/disposalpipe/trunk{ - dir = 1 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/dark, +/area/horizon/ai/upload) +"grD" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 9 }, -/turf/simulated/floor/tiled, -/area/horizon/crew_quarters/cryo/living_quarters_lift) -"grI" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 10 - }, -/obj/machinery/firealarm/south, -/turf/simulated/floor/tiled, -/area/operations/lobby) +/turf/simulated/floor/wood, +/area/horizon/command/heads/xo) "grM" = ( /obj/item/tape/engineering{ icon_state = "engineering_door" @@ -45120,56 +44701,63 @@ /obj/effect/decal/cleanable/dirt, /turf/unsimulated/floor, /area/antag/raider) -"grS" = ( -/obj/effect/floor_decal/corner/dark_green/full, -/obj/effect/floor_decal/spline/plain{ - dir = 10 - }, -/obj/structure/table/reinforced, -/obj/item/holomenu{ - pixel_y = 6; - pixel_x = -8 - }, -/obj/machinery/requests_console/north{ - department = "Hydroponics"; - departmentType = 2; - name = "Hydroponics Requests Console"; - dir = 8; - pixel_y = 2; - pixel_x = -12 - }, -/obj/item/device/radio/intercom/south, -/obj/item/material/ashtray/glass{ - pixel_x = -8; - pixel_y = 9 - }, -/obj/item/device/quikpay{ - pixel_y = 4; - pixel_x = 4 - }, -/turf/simulated/floor/tiled, -/area/horizon/hydroponics) -"grU" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/wing/port/far) -"grY" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/airlock/maintenance{ - dir = 1; - name = "Aft Research Hallway Maintenance"; - req_one_access = list(12,47) +"grO" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, /obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/dark/full, -/area/maintenance/wing/port) +/obj/structure/table/stone/marble, +/obj/machinery/door/blast/shutters{ + id = "bar_shutter"; + name = "Bar Shutter" + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/service/bar) +"grP" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/corner/brown{ + dir = 5 + }, +/obj/machinery/power/apc/super/critical/north, +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/turf/simulated/floor/tiled, +/area/horizon/hangar/operations) +"grR" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/aft) +"gsa" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 5 + }, +/obj/structure/bed/stool/chair/padded/brown{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/horizon/hangar/intrepid) "gsc" = ( /obj/effect/map_effect/door_helper/unres{ dir = 1 @@ -45184,69 +44772,85 @@ req_access = list(47) }, /turf/simulated/floor/tiled/dark, -/area/outpost/research/anomaly_storage) -"gsd" = ( -/obj/machinery/light{ +/area/horizon/rnd/xenoarch/anomaly_storage) +"gsg" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/yellow, -/obj/effect/floor_decal/corner/yellow/full{ - dir = 1 +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/wing/starboard/far) +"gsi" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 6 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 }, /turf/simulated/floor/tiled, -/area/hallway/engineering) -"gsj" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/effect/floor_decal/industrial/warning{ - dir = 5 - }, -/obj/machinery/light{ +/area/horizon/hallway/primary/deck_2/central) +"gss" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ dir = 4 }, -/obj/structure/closet/radiation, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/engine_monitoring/rust) -"gsm" = ( -/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, -/turf/simulated/floor/tiled/dark/full, -/area/security/vacantoffice) -"gsq" = ( -/obj/effect/floor_decal/corner/dark_blue/diagonal, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable{ - icon_state = "1-2" +/turf/simulated/floor/plating, +/area/horizon/rnd/xenoarch/atrium) +"gst" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 10 }, -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled/dark, -/area/turret_protected/ai_upload_foyer) -"gsr" = ( +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_2/central) +"gsx" = ( +/turf/simulated/floor/plating, +/area/horizon/hangar/operations) +"gsy" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/structure/railing/mapped, /obj/effect/floor_decal/industrial/warning{ dir = 8 }, -/turf/simulated/floor/reinforced/airless, -/area/engineering/atmos/propulsion/starboard) -"gsG" = ( -/obj/structure/table/standard{ - no_cargo = 1 - }, -/obj/item/stack/material/steel/full{ - pixel_x = 2; - pixel_y = 15 - }, /turf/simulated/floor/plating, -/area/maintenance/research_port) +/area/horizon/maintenance/deck_1/operations/starboard/far) +"gsz" = ( +/obj/machinery/smartfridge/chemistry{ + density = 0; + pixel_y = 24 + }, +/obj/effect/floor_decal/corner_wide/orange/full{ + dir = 8 + }, +/obj/machinery/alarm/west, +/obj/structure/sign/nosmoking_2{ + pixel_x = -32; + pixel_y = 32 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/pharmacy) +"gsA" = ( +/obj/structure/bed/stool/chair/shuttle/double{ + pixel_x = -8; + dir = 1 + }, +/obj/structure/bed/stool/chair/shuttle/double{ + pixel_x = 8; + dir = 1 + }, +/obj/effect/floor_decal/spline/plain/cee/black{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/shuttle/intrepid/main_compartment) "gsM" = ( /turf/simulated/floor/beach/sand{ icon_state = "beachcorner" }, /area/centcom/shared_dream) -"gsN" = ( -/obj/structure/table/standard, -/obj/item/material/ashtray/glass, -/obj/effect/floor_decal/corner/dark_green/diagonal, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/starboard) "gsR" = ( /obj/machinery/recharge_station, /obj/effect/floor_decal/corner/dark_blue{ @@ -45256,219 +44860,205 @@ /turf/simulated/floor/tiled, /area/horizon/security/brig) "gsX" = ( -/obj/item/storage/backpack/satchel/leather/withwallet, -/obj/structure/table/stone/marble, -/obj/machinery/light/small{ +/obj/structure/tank_wall/nitrous_oxide{ + density = 0; + icon_state = "h12"; + opacity = 0 + }, +/obj/machinery/atmospherics/pipe/simple/visible/red{ + dir = 5 + }, +/turf/simulated/floor/reinforced/n20, +/area/horizon/engineering/atmos/air) +"gtb" = ( +/obj/effect/floor_decal/corner/yellow, +/obj/effect/floor_decal/corner/yellow{ + dir = 1 + }, +/obj/effect/floor_decal/corner/dark_blue{ dir = 8 }, -/turf/unsimulated/floor/marble, -/area/antag/wizard) -"gtk" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/atmos) +"gtd" = ( +/obj/structure/bed/stool/chair/shuttle, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 + dir = 8 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/effect/floor_decal/corner/purple{ + dir = 5 }, /obj/structure/cable/green{ icon_state = "4-8" }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor, -/area/maintenance/engineering_ladder) -"gto" = ( -/obj/effect/floor_decal/spline/fancy/wood/cee{ - dir = 8 +/turf/simulated/floor/tiled, +/area/horizon/shuttle/quark/cockpit) +"gtl" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 1 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 +/obj/machinery/embedded_controller/radio/airlock/airlock_controller{ + dir = 4; + pixel_x = -20; + pixel_y = -6 }, -/obj/machinery/firealarm/north, -/obj/structure/table/reinforced/wood, -/obj/machinery/chemical_dispenser/coffee/full{ - pixel_y = 8; - pixel_x = 3 - }, -/obj/item/reagent_containers/food/drinks/drinkingglass/newglass/coffeecup{ - pixel_x = -10; +/obj/machinery/airlock_sensor{ + dir = 4; + pixel_x = -20; pixel_y = 6 }, -/obj/item/reagent_containers/food/drinks/drinkingglass/newglass/coffeecup/one{ - pixel_y = 1; - pixel_x = -10 +/obj/effect/map_effect/marker/airlock{ + frequency = 1003; + master_tag = "airlock_horizon_deck_1_starboard_1"; + name = "airlock_horizon_deck_1_starboard_1" }, -/turf/simulated/floor/wood, -/area/horizon/security/head_of_security) -"gtE" = ( -/obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, -/area/maintenance/wing/starboard/deck1) -"gtM" = ( -/obj/structure/cable/green{ - icon_state = "2-4" +/area/horizon/maintenance/deck_1/wing/starboard/far) +"gtn" = ( +/obj/effect/floor_decal/corner/dark_blue/full{ + dir = 1 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_3/starboard/docks) +"gtq" = ( +/obj/effect/floor_decal/corner/brown/full{ + dir = 8 + }, +/obj/machinery/mineral/stacking_unit_console{ + id = "horizon_stacking_3"; + pixel_x = -32 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled, +/area/horizon/operations/mining_main/refinery) +"gtv" = ( +/obj/effect/floor_decal/corner/grey/diagonal, +/obj/effect/floor_decal/spline/plain{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/service/kitchen) +"gtz" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/door/blast/regular{ + dir = 4; + id = "r-ust_vent"; + name = "INDRA Reactor Vent" + }, +/turf/simulated/floor/reinforced/airless, +/area/horizon/engineering/reactor/indra/mainchamber) +"gtB" = ( +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/lino, +/area/horizon/service/dining_hall) +"gtL" = ( +/turf/simulated/wall/r_wall, +/area/horizon/repoffice/consular_two) +"gtT" = ( +/obj/effect/floor_decal/corner/grey/diagonal, +/obj/structure/filingcabinet/chestdrawer, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/reception) +"gtY" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/port/near) +"gue" = ( /obj/effect/floor_decal/industrial/warning{ dir = 1 }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/plating, -/area/maintenance/operations) -"gtN" = ( -/obj/structure/trash_pile, -/obj/machinery/firealarm/north, -/turf/simulated/floor/plating, -/area/maintenance/wing/port/far) -"gtS" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "1-8" +/obj/structure/railing/mapped{ + dir = 1 }, /obj/structure/lattice/catwalk/indoor/grate/dark, /turf/simulated/floor/plating, -/area/maintenance/engineering) -"gua" = ( -/obj/structure/table/steel, -/obj/item/storage/toolbox/mechanical{ - pixel_y = 8 - }, -/obj/machinery/recharger, +/area/horizon/maintenance/deck_3/security/starboard) +"guh" = ( +/obj/effect/floor_decal/spline/plain, +/obj/machinery/hologram/holopad, /turf/simulated/floor/tiled/dark, -/area/hangar/control) -"gub" = ( -/obj/effect/floor_decal/industrial/warning{ +/area/horizon/hallway/primary/deck_2/central) +"guj" = ( +/obj/machinery/camera/network/engineering{ + c_tag = "Engineering - C-Goliath Drive Room 4"; + dir = 4 + }, +/obj/effect/floor_decal/corner_wide/yellow{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/horizon/engineering/bluespace_drive) +"gul" = ( +/obj/machinery/atmospherics/portables_connector{ dir = 8 }, -/obj/machinery/atmospherics/unary/vent_pump/on{ +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/camera/network/engineering{ + c_tag = "Engineering - Atmospherics Tanks 1"; dir = 1 }, -/obj/machinery/alarm/east, -/turf/simulated/floor/tiled, -/area/hangar/operations) -"gum" = ( -/obj/machinery/door/firedoor, -/obj/structure/table/stone/marble, -/obj/machinery/door/blast/shutters/open{ - dir = 8; - id = "shutters_deck3_cafedesk"; - name = "Cafe Desk Shutter" - }, -/obj/random/pottedplant_small{ - pixel_x = 10; - pixel_y = -7 - }, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/cafeteria) -"guo" = ( +/obj/effect/floor_decal/industrial/outline/service, +/turf/simulated/floor/plating, +/area/horizon/engineering/atmos/air) +"gun" = ( /obj/effect/floor_decal/spline/fancy/wood{ - dir = 10 + dir = 7 + }, +/obj/structure/disposalpipe/segment{ + icon_state = "pipe-c" + }, +/turf/simulated/floor/wood, +/area/horizon/rnd/hallway) +"guu" = ( +/obj/structure/cable{ + icon_state = "4-8" }, /obj/structure/bed/stool/chair/padded/black{ dir = 4 }, -/obj/machinery/firealarm/west, -/turf/simulated/floor/wood, -/area/bridge/cciaroom/lounge) -"guq" = ( -/obj/effect/shuttle_landmark/intrepid/hangar{ - dir = 1 - }, -/obj/structure/lattice/catwalk/indoor, -/turf/simulated/floor/plating, -/area/hangar/intrepid) -"guw" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 1 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/light_switch{ - dir = 1; - pixel_y = 28 - }, -/turf/simulated/floor/wood, -/area/bridge/meeting_room) -"gux" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/effect/floor_decal/corner/dark_green{ - dir = 10 - }, /turf/simulated/floor/tiled, -/area/hallway/primary/aft) -"guC" = ( -/obj/machinery/button/remote/blast_door{ - id = "shutters_deck2_grauwolf"; - name = "Safety Blast Doors Control"; - pixel_y = -28; - dir = 6 +/area/horizon/hangar/intrepid) +"guI" = ( +/obj/structure/flora/ausbushes/ywflowers, +/obj/structure/flora/ausbushes/ppflowers, +/obj/structure/flora/ausbushes/brflowers, +/obj/structure/railing/mapped{ + dir = 4 }, -/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 - }, -/obj/machinery/ringer_button{ - id = "medbay_ringer"; - pixel_y = 17 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/medical/reception) -"guM" = ( -/obj/machinery/computer/telescience{ - starting_crystals = 4 - }, -/obj/effect/floor_decal/corner/mauve{ - dir = 10 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/telesci) -"guN" = ( -/obj/machinery/door/blast/regular/open{ - id = "iso_b"; - name = "Safety Blast Door" - }, -/obj/effect/map_effect/window_spawner/full/borosilicate/reinforced/firedoor, -/turf/simulated/floor/tiled/dark/full, -/area/rnd/isolation_b) +/turf/simulated/floor/grass/no_edge, +/area/horizon/rnd/hallway/secondary) "guP" = ( /obj/effect/step_trigger/thrower/shuttle/west, /turf/space/transit/north, /area/template_noop) +"guR" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/horizon/operations/mining_main/refinery) "guS" = ( /obj/machinery/light{ dir = 4 @@ -45500,6 +45090,31 @@ icon_state = "wood" }, /area/centcom/legion) +"guW" = ( +/obj/structure/cable/green{ + icon_state = "4-8"; + d1 = 4; + d2 = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/structure/disposalpipe/segment{ + icon_state = "pipe-c" + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/hangar/port) +"guY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/platform, +/turf/simulated/floor/reinforced, +/area/horizon/command/bridge/controlroom) "gvb" = ( /obj/structure/table/wood, /turf/simulated/floor/holofloor/grass{ @@ -45509,48 +45124,71 @@ name = "mossy grass" }, /area/horizon/holodeck/source_konyang) -"gvd" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/engineering/storage/lower) -"gvh" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/railing/mapped, -/turf/simulated/floor/tiled/dark, -/area/shuttle/legion) -"gvi" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass{ - dir = 1 - }, -/turf/simulated/floor/tiled/full, -/area/horizon/hallway/deck_two/fore) -"gvk" = ( +"gve" = ( /obj/structure/cable/green{ icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 1 +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/atmospherics/pipe/simple/hidden/yellow, +/obj/structure/cable/green{ + icon_state = "1-8" }, -/turf/simulated/floor/wood, -/area/chapel/office) +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/main/interstitial) +"gvf" = ( +/obj/machinery/light, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/vending/coffee, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/hallway/fore) +"gvh" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/railing/mapped, +/turf/simulated/floor/tiled/dark, +/area/shuttle/legion) "gvo" = ( /obj/machinery/washing_machine, /turf/unsimulated/floor{ icon_state = "wood" }, /area/centcom/legion) +"gvq" = ( +/obj/machinery/door/window/westright{ + name = "Xenoarchaeology Platform Access"; + req_access = list(65) + }, +/obj/structure/platform_stairs/full/east_west_cap, +/obj/structure/platform/cutout{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/rnd/xenoarch/atrium) +"gvs" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/hatch{ + dir = 4; + icon_state = "door_locked"; + id_tag = "compactor_access"; + locked = 1; + name = "Compactor Access"; + req_one_access = list(26,67); + secured_wires = 1 + }, +/obj/effect/floor_decal/industrial/hatch/red, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/service/custodial/disposals/deck_1) +"gvv" = ( +/obj/machinery/floodlight, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lime/full, +/turf/simulated/floor/tiled, +/area/horizon/medical/emergency_storage) "gvx" = ( /obj/structure/table/reinforced/steel, /obj/effect/floor_decal/corner/lime{ @@ -45564,167 +45202,145 @@ icon_state = "dark_preview" }, /area/centcom/holding) -"gvz" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 5 +"gvJ" = ( +/obj/machinery/door/airlock/external, +/obj/machinery/access_button{ + pixel_x = 28 }, -/turf/simulated/floor/tiled, -/area/maintenance/wing/starboard/far) -"gvC" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/machinery/door/airlock/maintenance_hatch{ - dir = 4; - req_one_access = list(12) +/obj/effect/map_effect/marker/airlock{ + frequency = 1002; + master_tag = "airlock_horizon_deck_3_fore_starboard_1"; + name = "airlock_horizon_deck_3_fore_starboard_1" }, +/obj/effect/map_effect/marker_helper/airlock/exterior, /turf/simulated/floor, -/area/maintenance/engineering_ladder) -"gvL" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/turf/simulated/floor, -/area/maintenance/bridge) -"gvW" = ( -/obj/structure/table/standard, -/obj/item/device/flash/synthetic{ - pixel_x = -5; - pixel_y = 6 - }, -/obj/item/device/flash/synthetic{ - pixel_x = -5; - pixel_y = 2 - }, -/obj/item/device/flash/synthetic{ - pixel_x = -3; - pixel_y = 6 - }, -/obj/item/device/flash/synthetic{ - pixel_x = -3; - pixel_y = 2 - }, -/obj/item/storage/firstaid/empty{ - pixel_x = 7 - }, -/obj/item/storage/firstaid/empty{ - pixel_x = 7 - }, -/obj/item/device/healthanalyzer{ - pixel_x = 8 - }, -/obj/item/device/healthanalyzer{ - pixel_x = 8 - }, -/obj/item/device/assembly/prox_sensor{ - pixel_x = 8 - }, -/obj/item/device/assembly/prox_sensor{ - pixel_x = 8 - }, -/obj/effect/floor_decal/corner/black{ - dir = 6 - }, -/obj/machinery/light{ - dir = 4 - }, +/area/horizon/maintenance/deck_3/bridge) +"gvR" = ( +/obj/structure/flora/ausbushes/lavendergrass, +/turf/simulated/floor/grass/no_edge, +/area/horizon/service/hydroponics/lower) +"gvX" = ( /obj/structure/cable/green{ icon_state = "1-2" }, -/obj/machinery/camera/network/supply{ - c_tag = "Operations - Machinist Workshop Port"; +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/spline/plain{ + dir = 4 + }, +/obj/machinery/camera/network/engineering{ + c_tag = "Engineering - C-Goliath Monitoring"; dir = 8 }, -/turf/simulated/floor/tiled, -/area/operations/lower/machinist) -"gvZ" = ( -/turf/simulated/wall, -/area/operations/loading) -"gwb" = ( -/obj/machinery/newscaster/east{ - pixel_y = -32 - }, +/turf/simulated/floor/carpet/rubber, +/area/horizon/engineering/bluespace_drive/monitoring) +"gwa" = ( /obj/effect/floor_decal/corner/dark_green{ - dir = 10 + dir = 5 + }, +/obj/structure/sign/directions/civ{ + desc = "A sign pointing out that a lift leads to the ship's residential deck."; + dir = 1; + name = "\improper Lift to Residential Deck sign"; + pixel_y = -10 + }, +/obj/machinery/cryopod/living_quarters{ + pixel_y = 8 }, /turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/starboard) +/area/horizon/crew/resdeck/living_quarters_lift) "gwe" = ( /obj/effect/floor_decal/corner/blue/diagonal, /turf/unsimulated/floor{ icon_state = "white" }, /area/tdome/tdomeobserve) -"gwg" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/black{ +"gwk" = ( +/obj/effect/floor_decal/corner/dark_green/full{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/horizon/stairwell/starboard/deck_2) +"gwl" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_research{ + dir = 4; + name = "Expedition EVA Storage"; + req_access = list(47) + }, +/obj/effect/map_effect/door_helper/unres{ + dir = 8 + }, +/turf/simulated/floor/tiled/full, +/area/horizon/storage/eva/expedition) +"gwm" = ( +/obj/structure/bed/stool/chair/office/dark, +/turf/simulated/floor/tiled, +/area/horizon/engineering/lobby) +"gwn" = ( +/turf/simulated/open, +/area/horizon/maintenance/deck_2/research) +"gwp" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor/plating, +/area/horizon/hangar/intrepid/interstitial) +"gwq" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/effect/floor_decal/corner/black{ + dir = 9 + }, /obj/effect/floor_decal/industrial/warning{ - dir = 1 + dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/engineering/atmos/propulsion) -"gwG" = ( -/obj/structure/cable/green, -/obj/effect/floor_decal/industrial/hatch, -/turf/simulated/floor, -/area/rnd/xenoarch_atrium) -"gwL" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 8 - }, -/obj/machinery/hologram/holopad, -/turf/simulated/floor/wood, -/area/horizon/cafeteria) -"gwM" = ( -/turf/simulated/floor/plating, -/area/horizon/maintenance/deck_two/fore/starboard) -"gwO" = ( -/obj/structure/window/shuttle/scc_space_ship, -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/shutters{ - dir = 4; - id = "cmowindowshutters"; - name = "Window Shutters" - }, -/obj/effect/landmark/entry_point/starboard{ - name = "starboard, CMO office" - }, -/turf/simulated/floor/plating, -/area/crew_quarters/heads/cmo) -"gwQ" = ( -/obj/machinery/atmospherics/pipe/zpipe/up/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/warning/full, +/area/horizon/hangar/intrepid) +"gww" = ( /obj/structure/cable/green{ - icon_state = "12-0" + icon_state = "4-8" }, -/obj/structure/railing/mapped{ - dir = 1 +/turf/simulated/floor/carpet, +/area/horizon/repoffice/representative_one) +"gwI" = ( +/obj/random/dirt_75, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/starboard/nacelle) +"gwK" = ( +/obj/machinery/atmospherics/unary/engine/scc_shuttle, +/obj/effect/landmark/entry_point/aft{ + name = "aft, port thrusters" }, -/obj/structure/railing/mapped{ +/turf/simulated/floor/plating, +/area/horizon/shuttle/intrepid/port_storage) +"gwP" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/structure/cable/green, -/turf/simulated/floor/plating, -/area/maintenance/hangar/port) +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor, +/area/horizon/maintenance/deck_3/security/port) "gwX" = ( /obj/structure/table/steel, /obj/item/circuitboard/smes{ @@ -45735,9 +45351,6 @@ icon_state = "dark_preview" }, /area/centcom/specops) -"gxb" = ( -/turf/simulated/open, -/area/horizon/maintenance/deck_two/fore/starboard) "gxc" = ( /obj/effect/floor_decal/spline/plain{ dir = 6 @@ -45746,16 +45359,28 @@ /obj/structure/flora/ausbushes/fullgrass, /turf/simulated/floor/exoplanet/grass/grove, /area/centcom/shared_dream) -"gxl" = ( -/obj/effect/floor_decal/industrial/warning{ +"gxd" = ( +/obj/effect/floor_decal/industrial/warning/corner{ dir = 1 }, -/obj/structure/tank_wall/air{ - icon_state = "air2" +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/visible, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/reactor/supermatter/mainchamber) +"gxe" = ( +/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/engineering/atmos/air) +/area/horizon/maintenance/deck_2/aft) "gxp" = ( /obj/effect/floor_decal/corner/dark_blue{ dir = 9 @@ -45767,89 +45392,26 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, /area/horizon/security/brig) -"gxq" = ( -/obj/structure/bed/stool/chair, -/obj/effect/floor_decal/corner/dark_green/diagonal, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/starboard) -"gxs" = ( -/obj/machinery/mecha_part_fabricator{ +"gxv" = ( +/obj/machinery/atmospherics/binary/circulator{ + anchored = 1; dir = 8 }, -/obj/structure/railing/mapped{ +/obj/effect/floor_decal/industrial/outline_corner/yellow, +/obj/effect/floor_decal/industrial/outline_segment/yellow{ dir = 8 }, -/turf/simulated/floor/tiled/dark/full, -/area/operations/lower/machinist) -"gxt" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/firedoor, -/obj/effect/floor_decal/industrial/hatch_door/red{ - dir = 1 - }, -/obj/machinery/door/airlock/maintenance_hatch{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/maintenance/wing/port/far) -"gxw" = ( -/obj/effect/floor_decal/corner/dark_green{ +/obj/effect/floor_decal/industrial/outline_segment/yellow{ dir = 5 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/obj/effect/floor_decal/spline/plain/corner/purple{ - dir = 4 - }, -/obj/effect/floor_decal/spline/plain/red, -/obj/effect/floor_decal/spline/plain/corner{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/horizon/hydroponics) +/turf/simulated/floor/plating, +/area/horizon/engineering/atmos/turbine) "gxx" = ( /obj/effect/floor_decal/corner/lime/full{ dir = 8 }, /turf/simulated/floor/tiled/white, /area/shuttle/hapt) -"gxy" = ( -/obj/effect/landmark/entry_point/aft{ - name = "aft, weapons range" - }, -/turf/simulated/wall/shuttle/scc_space_ship/cardinal, -/area/rnd/test_range) -"gxz" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/simulated/floor, -/area/maintenance/engineering_ladder) -"gxA" = ( -/obj/structure/viewport/zavod, -/obj/machinery/door/blast/regular/open{ - dir = 8; - id = "shutters_deck3_longbow"; - name = "Safety Blast Door" - }, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/longbow) "gxC" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 4 @@ -45857,133 +45419,121 @@ /obj/structure/flora/ausbushes/pointybush, /turf/simulated/floor/holofloor/grass, /area/horizon/holodeck/source_picnicarea) +"gxD" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/effect/decal/cleanable/dirt, +/obj/structure/railing/mapped, +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/wing/starboard) "gxF" = ( /obj/effect/floor_decal/corner/paleblue{ dir = 9 }, /turf/unsimulated/floor, /area/centcom/legion) -"gxJ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/corner/dark_green/full, +"gxH" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/turf/unsimulated/floor/linoleum, +/area/antag/actor) +"gxI" = ( +/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, +/obj/machinery/door/blast/shutters/open{ + id = "RnDShutters"; + dir = 4 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/rnd/lab) +"gxN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/horizon/operations/lobby) +"gxQ" = ( +/obj/structure/window/shuttle/unique/scc/scout{ + icon_state = "5,5" + }, +/obj/structure/window/shuttle/unique/scc/scout/over{ + icon_state = "5,5" + }, +/turf/simulated/floor/plating, +/area/horizon/shuttle/canary) +"gxS" = ( +/obj/random/junk, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, /obj/structure/cable{ icon_state = "1-2" }, -/turf/simulated/floor/tiled, -/area/horizon/stairwell/central) -"gxR" = ( -/obj/effect/floor_decal/corner/yellow, -/obj/effect/floor_decal/corner/yellow{ - dir = 1 - }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/tiled/dark, -/area/engineering/atmos) -"gxT" = ( -/obj/structure/filingcabinet{ - pixel_x = -7 - }, -/obj/structure/filingcabinet/chestdrawer{ - pixel_x = 7 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/floor_decal/corner/mauve/full{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology/foyer) -"gxZ" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 5 - }, -/obj/machinery/alarm/north, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/port/docks) -"gya" = ( -/obj/structure/window/shuttle/scc_space_ship, -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/purple{ - dir = 6 - }, /turf/simulated/floor/plating, -/area/engineering/atmos) +/area/horizon/maintenance/deck_1/main/starboard) "gyd" = ( /obj/effect/floor_decal/corner/red{ dir = 8 }, /turf/simulated/floor/holofloor/tiled, /area/horizon/holodeck/source_lasertag) -"gye" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/recharge_station, -/obj/effect/floor_decal/spline/plain/cee, -/turf/simulated/floor/carpet/rubber, -/area/assembly/chargebay) -"gyg" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/full, -/area/hangar/intrepid/interstitial) -"gyj" = ( -/obj/structure/table/steel, -/obj/item/storage/belt/utility, -/obj/item/clothing/head/welding, -/obj/item/device/flashlight/heavy, +"gyh" = ( +/obj/effect/floor_decal/industrial/outline/yellow, /obj/machinery/light{ - dir = 8 + dir = 1 }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 9 +/obj/structure/closet/secure_closet/hydroponics, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/service/hydroponics/lower) +"gyi" = ( +/obj/machinery/power/apc/south, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 }, -/turf/simulated/floor/tiled/dark, -/area/storage/eva) -"gyo" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/airless, -/area/hangar/operations) -"gyr" = ( -/obj/effect/floor_decal/corner/dark_blue{ +/turf/simulated/floor/tiled, +/area/horizon/maintenance/deck_2/wing/starboard/auxatmos) +"gyl" = ( +/obj/effect/floor_decal/corner/dark_green{ dir = 10 }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/effect/landmark/latejoin, +/obj/machinery/firealarm/south, +/turf/simulated/floor/tiled, +/area/horizon/crew/resdeck/living_quarters_lift) +"gyq" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden{ +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/port/docks) +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/spline/fancy/wood, +/turf/simulated/floor/wood, +/area/horizon/service/chapel/office) "gyt" = ( /obj/item/bucket_sensor, /turf/simulated/floor/beach/sand{ icon_state = "desert" }, /area/centcom/shared_dream) -"gyx" = ( -/obj/effect/floor_decal/corner/brown{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/hangar/operations) "gyy" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 4 @@ -45992,92 +45542,56 @@ icon_state = "wood" }, /area/centcom/specops) -"gyD" = ( -/obj/machinery/portable_atmospherics/canister/air/airlock, -/obj/machinery/atmospherics/portables_connector, -/obj/effect/floor_decal/industrial/warning{ - dir = 10 - }, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"gyE" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge/controlroom) "gyF" = ( /obj/effect/floor_decal/spline/plain/corner{ dir = 8 }, /turf/simulated/floor/exoplanet/snow, /area/centcom/shared_dream) -"gyH" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 5 - }, -/obj/structure/table/reinforced/steel, -/obj/machinery/requests_console/north{ - announcementConsole = 1; - department = "Bridge"; - departmentType = 5; - name = "Bridge Requests Console"; - pixel_y = 32 - }, -/obj/item/paper_bin{ - pixel_y = 3; - pixel_x = -5 - }, -/obj/item/pen{ - pixel_x = -5 - }, -/turf/simulated/floor/tiled, -/area/bridge/controlroom) -"gyL" = ( -/obj/machinery/atmospherics/pipe/simple/visible/red{ - dir = 10 - }, -/turf/simulated/floor/reinforced/n20, -/area/engineering/atmos/air) -"gyQ" = ( -/obj/structure/bed/stool/chair/office/light{ - dir = 4 - }, -/obj/effect/floor_decal/corner_wide/orange{ +"gyG" = ( +/obj/effect/floor_decal/corner_wide/lime{ dir = 6 }, -/turf/simulated/floor/tiled/white, -/area/medical/pharmacy) -"gyS" = ( -/obj/effect/floor_decal/corner_wide/black/full{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 5 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ +/obj/machinery/disposal/small/west, +/obj/structure/disposalpipe/trunk{ dir = 8 }, -/obj/structure/engineer_maintenance/pipe/wall, -/turf/simulated/floor/tiled/dark, -/area/engineering/atmos/propulsion) -"gyT" = ( -/obj/structure/table/steel, -/obj/random/tool{ - pixel_y = 6 +/turf/simulated/floor/tiled/white, +/area/horizon/medical/reception) +"gyJ" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 5 }, -/turf/simulated/floor, -/area/maintenance/security_port) -"gyU" = ( -/obj/machinery/light, -/turf/simulated/floor/bluegrid{ - name = "cooled mainframe floor"; - temperature = 278 +/obj/structure/sign/directions/all{ + dir = 1; + pixel_y = 39 }, -/area/turret_protected/ai) +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/sign/directions/civ{ + desc = "A sign pointing out that a lift leads to the ship's residential deck."; + dir = 4; + name = "\improper Lifts to Residential Deck sign"; + pixel_y = 26 + }, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_1/central) +"gyK" = ( +/obj/machinery/light/small/emergency, +/turf/simulated/open, +/area/horizon/maintenance/deck_2/wing/port) +"gyN" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/portable_atmospherics/canister/helium, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/reactor/indra/mainchamber) +"gyR" = ( +/obj/effect/floor_decal/corner/white{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_3/central) "gyV" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -46096,15 +45610,6 @@ }, /turf/unsimulated/floor, /area/antag/mercenary) -"gzh" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/lattice/catwalk/indoor, -/turf/simulated/floor/plating, -/area/engineering/bluespace_drive) "gzj" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 1 @@ -46114,6 +45619,32 @@ }, /turf/unsimulated/floor/wood, /area/centcom/bar) +"gzp" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/spline/plain/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_2/fore) +"gzr" = ( +/obj/effect/floor_decal/industrial/outline/red, +/obj/machinery/stasis_cage, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/storage/eva) "gzu" = ( /obj/random/junk, /turf/unsimulated/floor/plating, @@ -46136,24 +45667,43 @@ }, /turf/unsimulated/floor, /area/centcom/legion/hangar5) +"gzA" = ( +/obj/structure/disposalpipe/junction{ + dir = 8; + icon_state = "pipe-j2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_3/port) "gzF" = ( /obj/structure/bed/stool/chair/plastic{ dir = 8 }, /turf/simulated/floor/tiled, /area/horizon/security/brig) -"gzK" = ( -/obj/structure/railing/mapped, -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/reinforced/airless, -/area/template_noop) -"gzL" = ( -/obj/machinery/light/small/emergency{ - dir = 4 +"gzG" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/green{ + dir = 8 }, -/obj/structure/lattice/catwalk/indoor/grate/dark, /turf/simulated/floor/plating, -/area/maintenance/wing/starboard) +/area/horizon/engineering/reactor/supermatter/mainchamber) +"gzJ" = ( +/obj/structure/reagent_dispensers/coolanttank, +/obj/machinery/firealarm/west, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/carpet/rubber, +/area/horizon/rnd/xenoarch/spectrometry) "gzN" = ( /obj/machinery/door/airlock/centcom{ locked = 1; @@ -46163,45 +45713,40 @@ }, /turf/unsimulated/floor, /area/antag/raider) -"gzQ" = ( +"gzR" = ( +/obj/structure/cable/green{ + icon_state = "4-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/storage/eva) +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/teleporter) "gzU" = ( /obj/structure/bed/stool/chair{ dir = 1 }, /turf/unsimulated/floor/rubber_carpet, /area/centcom/specops) -"gAb" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 +"gzY" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 10 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/horizon/service/hydroponics/garden) +"gzZ" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/floor_decal/corner_wide/black/full{ - dir = 6 - }, -/obj/effect/floor_decal/industrial/warning/cee{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/visible/green{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/engineering/atmos/propulsion) +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_2/fore) "gAf" = ( /obj/effect/floor_decal/industrial/warning{ dir = 4 @@ -46211,22 +45756,34 @@ }, /turf/unsimulated/floor/dark_monotile, /area/antag/actor) -"gAs" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/effect/floor_decal/corner/dark_green{ - dir = 10 - }, -/obj/structure/railing/mapped, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/central) -"gAt" = ( -/obj/effect/floor_decal/corner/brown{ +"gAg" = ( +/obj/structure/table/standard, +/obj/effect/floor_decal/corner_wide/green/full{ dir = 1 }, -/turf/simulated/floor/tiled, -/area/operations/office) +/obj/machinery/camera/network/medbay{ + c_tag = "Medical - Main Storage"; + dir = 8 + }, +/obj/machinery/firealarm/east, +/obj/item/storage/box/syringes{ + pixel_x = -4; + pixel_y = 15 + }, +/obj/item/storage/box/syringes{ + pixel_x = 5; + pixel_y = 15 + }, +/obj/item/storage/box/bloodpacks{ + pixel_x = -4; + pixel_y = 5 + }, +/obj/item/storage/box/bloodpacks{ + pixel_x = 5; + pixel_y = 5 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/main_storage) "gAw" = ( /obj/effect/decal/fake_object/light_source/invisible, /turf/simulated/abyss, @@ -46258,15 +45815,6 @@ }, /turf/unsimulated/floor/plating, /area/centcom/specops) -"gAE" = ( -/obj/structure/cable/green{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark/full, -/area/turret_protected/ai_upload) "gAF" = ( /obj/machinery/light, /obj/effect/floor_decal/corner/dark_blue{ @@ -46274,37 +45822,47 @@ }, /turf/simulated/floor/tiled, /area/horizon/security/lobby) -"gAK" = ( -/obj/structure/sign/fire{ - name = "\improper DANGER: COMBUSTION CHAMBER sign"; - pixel_x = -32 +"gAG" = ( +/obj/machinery/camera/network/reactor{ + c_tag = "Engineering - INDRA Reactor Office" }, -/obj/effect/floor_decal/corner_wide/black{ - dir = 9 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/engineering/atmos/propulsion/starboard) +/turf/simulated/floor/plating, +/area/horizon/engineering/reactor/indra/office) +"gAJ" = ( +/turf/simulated/wall/r_wall, +/area/horizon/operations/break_room) "gAO" = ( /obj/effect/floor_decal/corner/lime{ dir = 9 }, /turf/unsimulated/floor, /area/antag/jockey) -"gAU" = ( -/obj/machinery/light, -/obj/effect/floor_decal/corner/dark_green{ - dir = 10 +"gAQ" = ( +/obj/structure/tank_wall/hydrogen, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 }, -/obj/machinery/atmospherics/pipe/manifold/hidden, -/turf/simulated/floor/tiled, -/area/security/checkpoint2) +/obj/machinery/atmospherics/pipe/simple/visible/red, +/turf/simulated/floor/airless, +/area/horizon/engineering/atmos) +"gAR" = ( +/obj/effect/floor_decal/corner_wide/black/full{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/obj/machinery/atmospherics/binary/pump/high_power{ + dir = 4; + name = "Hydrogen to Burn Mix" + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/atmos/propulsion/starboard) +"gAW" = ( +/obj/machinery/libraryscanner, +/obj/item/device/radio/intercom/north, +/turf/simulated/floor/lino/diamond, +/area/horizon/service/library) "gAX" = ( /obj/effect/decal/fake_object{ desc = "The proudly waving flag of the Izweski Nation."; @@ -46319,18 +45877,52 @@ name = "overgrowth" }, /area/horizon/holodeck/source_moghes) -"gAZ" = ( -/obj/structure/window/shuttle/scc_space_ship/cardinal, -/obj/structure/grille, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/dark/full, -/area/rnd/xenobiology/xenoflora) -"gBf" = ( +"gAY" = ( +/obj/effect/shuttle_landmark/escape_pod/start/pod4, +/turf/simulated/floor/shuttle/dark_blue, +/area/horizon/shuttle/escape_pod/pod3) +"gBa" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/effect/floor_decal/industrial/hatch/yellow, /obj/effect/floor_decal/industrial/warning{ dir = 4 }, -/turf/simulated/floor/tiled/white, -/area/operations/lower/machinist/surgicalbay) +/obj/structure/sink{ + dir = 4; + pixel_x = 12 + }, +/obj/machinery/shower{ + dir = 8; + pixel_y = 1 + }, +/turf/simulated/floor/tiled/full, +/area/horizon/engineering/reactor/supermatter/airlock) +"gBd" = ( +/obj/effect/floor_decal/corner/white{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/horizon/rnd/hallway) +"gBh" = ( +/obj/machinery/camera/network/third_deck{ + c_tag = "Third Deck - Cafe"; + dir = 8 + }, +/obj/item/device/radio/intercom/east, +/obj/effect/floor_decal/corner/teal/diagonal, +/obj/item/reagent_containers/food/drinks/shaker{ + pixel_x = 5 + }, +/obj/item/storage/toolbox/lunchbox/idris{ + pixel_x = -2; + pixel_y = -8 + }, +/obj/structure/table/stone/marble, +/obj/effect/floor_decal/spline/plain{ + dir = 4 + }, +/turf/simulated/floor/lino, +/area/horizon/service/cafeteria) "gBi" = ( /obj/effect/floor_decal/spline/plain/corner{ dir = 8 @@ -46339,120 +45931,38 @@ icon_state = "seashallow" }, /area/centcom/shared_dream) -"gBj" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/horizon/crew_quarters/fitness/changing) -"gBl" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/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/maintenance/wing/starboard/deck1) -"gBo" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/atmospherics/binary/passive_gate{ - dir = 1; - name = "Nitrous Oxide to Thrusters" - }, -/turf/simulated/floor/plating, -/area/engineering/atmos/air) -"gBs" = ( -/obj/item/device/taperecorder{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/briefcase, -/obj/item/device/flash, -/obj/item/storage/secure/briefcase, -/obj/item/device/eftpos{ - eftpos_name = "Internal Affairs EFTPOS scanner" - }, -/obj/item/clothing/under/suit_jacket/really_black, -/obj/item/clothing/shoes/laceup, -/obj/item/clothing/shoes/laceup, -/obj/item/clipboard, -/obj/item/pen/multi, -/obj/structure/closet/lawcloset, -/obj/item/device/camera, -/obj/item/stamp/denied, -/obj/item/folder/blue, -/obj/item/folder/white, -/obj/item/device/destTagger, -/obj/item/stack/packageWrap, -/turf/simulated/floor/carpet, -/area/lawoffice/representative_two) -"gBv" = ( -/obj/machinery/atmospherics/binary/pump/high_power{ - dir = 4; - name = "Propellant Bleed Pump" - }, -/obj/effect/floor_decal/industrial/hatch/red, -/turf/simulated/floor/tiled/dark, -/area/engineering/atmos/propulsion) -"gBw" = ( -/obj/structure/railing/mapped{ - density = 0; - icon_state = "railing0-0" - }, -/obj/machinery/firealarm/east, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/atmospherics/portables_connector{ +"gBk" = ( +/obj/effect/floor_decal/industrial/warning{ dir = 8 }, -/obj/machinery/portable_atmospherics/canister/empty, +/obj/structure/tank_wall/oxygen{ + icon_state = "o2-4" + }, /turf/simulated/floor/plating, -/area/engineering/storage/lower) -"gBz" = ( -/obj/structure/bed/stool/chair/office/bridge{ +/area/horizon/engineering/atmos/air) +"gBt" = ( +/obj/effect/floor_decal/spline/fancy/wood{ dir = 4 }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 9 +/turf/simulated/floor/wood, +/area/horizon/command/bridge/meeting_room) +"gBG" = ( +/obj/structure/sign/fire{ + name = "\improper DANGER: COMBUSTION CHAMBER sign"; + pixel_x = 32 }, +/obj/effect/floor_decal/corner_wide/black{ + dir = 6 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 4 + }, +/obj/machinery/meter, /turf/simulated/floor/tiled/dark, -/area/bridge/meeting_room) -"gBB" = ( -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 9 - }, -/turf/simulated/floor/tiled/dark, -/area/storage/eva) -"gBD" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/atmospherics/portables_connector/supply{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark/full, -/area/shuttle/intrepid/port_storage) +/area/horizon/engineering/atmos/propulsion/starboard) "gBH" = ( /obj/structure/table/reinforced/steel, /obj/machinery/door/window/brigdoor/southleft{ @@ -46473,26 +45983,55 @@ icon_state = "dark_preview" }, /area/centcom/checkpoint/aft) -"gBQ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ +"gBJ" = ( +/obj/structure/flora/ausbushes/brflowers, +/obj/structure/flora/ausbushes/ppflowers, +/obj/structure/flora/ausbushes/ywflowers, +/obj/structure/flora/pottedplant/mysterious, +/turf/simulated/floor/grass/no_edge, +/area/horizon/rnd/hallway/secondary) +"gBL" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/floor_decal/corner/dark_green{ dir = 9 }, -/obj/machinery/alarm/east{ - req_one_access = list(24,11,55) +/obj/structure/sign/securearea{ + pixel_x = -32 }, -/obj/effect/floor_decal/spline/fancy/wood{ +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_1/central) +"gBO" = ( +/obj/structure/bed/stool/padded/black, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/alarm/north, +/turf/simulated/floor, +/area/horizon/maintenance/deck_3/aft/starboard/far) +"gBT" = ( +/obj/effect/floor_decal/corner/dark_blue/full{ + dir = 8 + }, +/obj/machinery/firealarm/north, +/turf/simulated/floor/tiled, +/area/horizon/rnd/eva) +"gBV" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ dir = 4 }, -/turf/simulated/floor/wood, -/area/crew_quarters/lounge/secondary) -"gBY" = ( -/obj/structure/table/reinforced/wood, -/obj/random/pottedplant_small{ - pixel_x = -6; - pixel_y = 4 +/turf/simulated/floor/plating, +/area/horizon/engineering/reactor/supermatter/mainchamber) +"gBX" = ( +/obj/structure/closet/secure_closet/xenoarchaeologist{ + req_access = null; + req_one_access = list(7,47) }, -/turf/simulated/floor/wood, -/area/bridge/minibar) +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark, +/area/horizon/rnd/xenoarch/storage) "gCb" = ( /obj/machinery/door/airlock/centcom{ dir = 1; @@ -46500,68 +46039,94 @@ }, /turf/unsimulated/floor, /area/centcom/distress_prep) -"gCe" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_command{ - dir = 4; - name = "EVA Storage"; - req_one_access = list(18,47) +"gCf" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 9 }, -/turf/simulated/floor/tiled/full, -/area/storage/eva) +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/horizon/operations/office_aux) "gCj" = ( /obj/effect/floor_decal/corner/red/full, /turf/simulated/floor/marble, /area/horizon/holodeck/source_trinary) -"gCk" = ( -/obj/effect/map_effect/window_spawner/full/reinforced/polarized/grille/firedoor{ - id = "cap" - }, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "bridge blast"; - name = "Bridge Blast Doors"; - opacity = 0 - }, -/obj/structure/cable/green{ - icon_state = "0-4" - }, -/turf/simulated/floor, -/area/crew_quarters/captain) -"gCo" = ( -/obj/structure/table/rack, -/obj/random/loot, -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor, -/area/maintenance/engineering_ladder) -"gCv" = ( -/obj/effect/map_effect/window_spawner/full/borosilicate/reinforced, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "SupermatterPort"; - name = "Reactor Blast Door"; - opacity = 0 - }, +"gCq" = ( +/obj/machinery/light, +/obj/machinery/mech_recharger, +/obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled/dark/full, -/area/engineering/engine_room) +/area/horizon/operations/mining_main/refinery) +"gCs" = ( +/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/horizon/hangar/auxiliary) +"gCw" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/light_switch{ + dir = 4; + pixel_x = 22; + pixel_y = 12 + }, +/turf/simulated/floor/carpet/rubber, +/area/horizon/rnd/xenobiology/dissection) +"gCz" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/structure/tank_wall/phoron{ + icon_state = "ph4" + }, +/turf/simulated/floor/airless, +/area/horizon/engineering/atmos) "gCB" = ( /obj/random/junk, /turf/unsimulated/floor/plating, /area/centcom/holding) -"gCH" = ( -/obj/structure/cable{ - icon_state = "2-8" +"gCC" = ( +/obj/structure/table/rack, +/obj/item/clothing/suit/hazmat/anomaly, +/obj/item/clothing/mask/gas/alt, +/obj/item/clothing/glasses/safety/goggles/science, +/obj/item/tank/oxygen, +/obj/item/clothing/head/hazmat/anomaly, +/obj/item/storage/box/gloves, +/obj/item/storage/box/gloves, +/obj/machinery/firealarm/west, +/turf/simulated/floor/tiled/dark, +/area/horizon/rnd/xenoarch/storage) +"gCD" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/dirt, /obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/structure/cable{ - icon_state = "2-4" - }, -/turf/simulated/floor, -/area/maintenance/engineering_ladder) +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/service/port) "gCI" = ( /obj/machinery/cryopod, /obj/effect/floor_decal/corner/lime{ @@ -46569,20 +46134,32 @@ }, /turf/unsimulated/floor, /area/centcom/spawning) -"gCL" = ( -/obj/machinery/power/apc/east, -/obj/structure/cable/green{ - icon_state = "0-8" +"gCJ" = ( +/obj/structure/grille/diagonal{ + dir = 8 }, -/obj/machinery/light{ +/obj/structure/window/shuttle/scc_space_ship, +/obj/effect/floor_decal/spline/fancy/wood/cee{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/horizon/service/bar) +"gCQ" = ( +/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/photocopier, -/turf/simulated/floor/tiled/full, -/area/bridge/cciaroom) -"gCN" = ( -/turf/simulated/wall/shuttle/scc_space_ship/cardinal, -/area/engineering/atmos/air) +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/teleporter) "gCR" = ( /obj/effect/decal/fake_object{ icon = 'icons/obj/doors/rapid_pdoor.dmi'; @@ -46599,18 +46176,22 @@ icon_state = "desert" }, /area/centcom/shared_dream) -"gDa" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 +"gCX" = ( +/obj/structure/bed/stool/chair/office/dark{ + dir = 1 }, -/obj/effect/floor_decal/spline/fancy/wood/corner{ +/obj/effect/floor_decal/spline/plain{ + dir = 1 + }, +/turf/simulated/floor/carpet/rubber, +/area/horizon/engineering/reactor/supermatter/monitoring) +"gCY" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/light/small/emergency{ dir = 4 }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 7 - }, -/turf/simulated/floor/wood, -/area/lawoffice/representative) +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/starboard/far) "gDc" = ( /obj/structure/window/reinforced/crescent{ dir = 8 @@ -46633,50 +46214,12 @@ /obj/effect/decal/cleanable/dirt, /turf/unsimulated/floor/wood, /area/antag/burglar) -"gDd" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/structure/cable{ - icon_state = "1-4" - }, -/turf/simulated/floor, -/area/maintenance/engineering_ladder) -"gDe" = ( -/obj/machinery/door/firedoor{ - req_one_access = list(24,11,67,73); - dir = 4 - }, -/obj/effect/floor_decal/industrial/hatch_door/yellow, -/obj/machinery/computer/guestpass{ - pixel_y = 32 - }, -/turf/simulated/floor/tiled/dark/full, -/area/shuttle/intrepid/port_compartment) "gDh" = ( /obj/structure/railing/mapped{ dir = 1 }, /turf/simulated/floor/reinforced/airless, /area/horizon/exterior) -"gDj" = ( -/obj/effect/floor_decal/industrial/hatch_door/red{ - dir = 1 - }, -/obj/machinery/door/airlock/external, -/obj/machinery/atmospherics/pipe/manifold4w/hidden, -/obj/effect/map_effect/marker/airlock/shuttle{ - cycle_to_external_air = 1; - master_tag = "airlock_shuttle_intrepid"; - name = "airlock_shuttle_intrepid"; - req_one_access = null; - shuttle_tag = "Intrepid" - }, -/obj/effect/map_effect/marker_helper/airlock/exterior, -/turf/simulated/floor/tiled/dark/full, -/area/shuttle/intrepid/main_compartment) "gDl" = ( /obj/machinery/door/blast/regular/open{ dir = 8 @@ -46686,15 +46229,12 @@ }, /turf/unsimulated/floor, /area/centcom/legion) -"gDq" = ( -/obj/effect/floor_decal/corner/dark_green{ +"gDn" = ( +/obj/effect/floor_decal/corner/yellow{ dir = 10 }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, /turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/port) +/area/horizon/engineering/storage_eva) "gDr" = ( /obj/effect/floor_decal/corner/paleblue/diagonal, /obj/machinery/iv_drip, @@ -46702,54 +46242,6 @@ icon_state = "white" }, /area/centcom/holding) -"gDv" = ( -/obj/machinery/power/radial_floodlight, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/camera/network/engineering{ - c_tag = "Engineering - Hard Storage"; - dir = 4 - }, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/storage_hard) -"gDx" = ( -/obj/structure/table/reinforced/steel, -/obj/item/storage/box/gloves{ - pixel_x = 2; - pixel_y = 17 - }, -/obj/item/clothing/glasses/safety/goggles{ - pixel_y = 4 - }, -/obj/item/clothing/glasses/safety/goggles{ - pixel_y = -2 - }, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/hydroponics/lower) -"gDA" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/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, -/area/horizon/hallway/deck_three/primary/port) -"gDC" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 10 - }, -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/turf/simulated/floor/tiled/dark, -/area/teleporter) "gDD" = ( /obj/structure/flora/ausbushes/sparsegrass, /obj/structure/flora/ausbushes/leafybush, @@ -46759,45 +46251,33 @@ /obj/effect/floor_decal/spline/fancy/wood, /turf/simulated/floor/holofloor/grass, /area/horizon/holodeck/source_picnicarea) -"gDF" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard/far) "gDG" = ( /obj/machinery/telecomms/processor/preset_cent, /turf/unsimulated/floor{ icon_state = "dark_preview" }, /area/centcom/control) -"gDK" = ( -/obj/structure/cable/green{ - icon_state = "4-8" +"gDL" = ( +/obj/effect/floor_decal/corner_wide/yellow{ + dir = 6 }, -/obj/effect/floor_decal/industrial/warning{ +/obj/effect/floor_decal/spline/plain{ + dir = 8 + }, +/obj/machinery/status_display{ + pixel_x = 32 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/horizon/engineering/break_room) +"gDM" = ( +/obj/machinery/disposal/small/south, +/obj/structure/disposalpipe/trunk, +/obj/effect/floor_decal/corner/yellow{ dir = 5 }, -/obj/machinery/button/remote/blast_door{ - dir = 4; - id = "engineering_storage"; - name = "Engineering Hard Storage"; - pixel_x = 21; - pixel_y = 34; - req_one_access = list(11,24) - }, -/turf/simulated/floor/tiled/full, -/area/engineering/storage_hard) +/turf/simulated/floor/tiled, +/area/horizon/engineering/locker_room) "gDP" = ( /obj/effect/floor_decal/corner/red{ dir = 9 @@ -46818,24 +46298,14 @@ }, /turf/unsimulated/floor/plating, /area/shuttle/transport1) -"gDV" = ( -/obj/effect/floor_decal/corner_wide/purple{ - dir = 6 - }, -/obj/effect/floor_decal/corner_wide/purple{ +"gDT" = ( +/obj/effect/floor_decal/industrial/warning/corner{ dir = 8 }, -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenoarch_atrium) +/obj/effect/floor_decal/industrial/warning, +/obj/structure/platform, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/port/near) "gDY" = ( /obj/effect/floor_decal/corner/blue{ dir = 10 @@ -46844,48 +46314,31 @@ icon_state = "dark_preview" }, /area/centcom/control) -"gEb" = ( -/obj/item/ladder_mobile, -/obj/item/reagent_containers/extinguisher_refill/filled, -/obj/structure/table/steel, -/obj/effect/floor_decal/corner/dark_blue/full{ - dir = 8 +"gEl" = ( +/obj/machinery/iff_beacon/horizon/shuttle{ + density = 1; + pixel_y = -15 }, -/turf/simulated/floor/tiled/dark, -/area/storage/eva) -"gEd" = ( -/turf/simulated/wall/shuttle/scc_space_ship/cardinal, -/area/engineering/bluespace_drive) -"gEi" = ( -/obj/effect/floor_decal/corner/dark_green{ +/obj/effect/floor_decal/industrial/warning{ dir = 10 }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) +/turf/simulated/floor/reinforced/airless, +/area/horizon/shuttle/mining) "gEq" = ( /turf/simulated/floor/tiled/ramp/bottom, /area/shuttle/mercenary) -"gEs" = ( -/obj/machinery/atm{ - dir = 1; - pixel_y = 28 - }, -/obj/structure/bed/stool/bar/padded/red{ - dir = 4 - }, -/turf/simulated/floor/lino, -/area/horizon/bar) -"gEv" = ( -/obj/effect/floor_decal/corner/mauve/diagonal, -/turf/simulated/floor/tiled/dark, -/area/storage/eva) -"gEw" = ( +"gEA" = ( /obj/effect/floor_decal/industrial/warning{ - dir = 4 + dir = 5 }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/reinforced, -/area/rnd/xenobiology) +/turf/simulated/floor/tiled, +/area/horizon/maintenance/deck_2/wing/port/nacelle) +"gEF" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_2/starboard) "gEG" = ( /obj/structure/window/reinforced{ dir = 4 @@ -46900,15 +46353,19 @@ /obj/effect/floor_decal/industrial/warning, /turf/unsimulated/floor/plating, /area/centcom/legion) -"gEL" = ( -/obj/structure/cable{ - icon_state = "1-2" +"gEK" = ( +/obj/machinery/door/airlock/atmos{ + dir = 4; + name = "Atmospherics Maintenance"; + req_one_access = list(11,24) }, /obj/machinery/door/firedoor, -/obj/machinery/door/airlock/maintenance, /obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/structure/cable/green{ + icon_state = "4-8" + }, /turf/simulated/floor/plating, -/area/maintenance/wing/port/far) +/area/horizon/engineering/atmos/air) "gEM" = ( /obj/structure/table/rack, /obj/item/plastique{ @@ -46942,6 +46399,34 @@ }, /turf/unsimulated/floor, /area/centcom/legion/hangar5) +"gEO" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/effect/floor_decal/corner_wide/black{ + dir = 1 + }, +/obj/effect/floor_decal/corner_wide/black{ + dir = 10 + }, +/obj/effect/floor_decal/industrial/warning, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/visible/green{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/atmos/propulsion/starboard) "gEQ" = ( /obj/effect/floor_decal/spline/plain{ dir = 8 @@ -46956,38 +46441,33 @@ density = 1 }, /area/centcom/shared_dream) -"gFb" = ( -/obj/structure/railing/mapped{ +"gEU" = ( +/obj/machinery/ntnet_relay, +/turf/simulated/floor/bluegrid, +/area/horizon/tcommsat/chamber) +"gFa" = ( +/obj/machinery/light, +/obj/effect/floor_decal/corner/dark_green/full, +/turf/simulated/floor/tiled, +/area/horizon/stairwell/port/deck_3) +"gFd" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/spline/fancy/wood{ dir = 8 }, -/obj/effect/floor_decal/corner/black{ - dir = 9 +/obj/structure/disposalpipe/sortjunction{ + dir = 1; + name = "Bar"; + sortType = "Bar" }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/loading/yellow, -/turf/simulated/floor/tiled/dark, -/area/hangar/intrepid) -"gFc" = ( -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/obj/machinery/power/terminal, -/obj/machinery/power/sensor{ - name = "Powernet Sensor - SM Reactor Output"; - name_tag = "SM Reactor Output" - }, -/obj/machinery/button/remote/blast_door{ - desc = "A remote control-switch for the engine control room blast doors."; - dir = 4; - id = "EngineEmitterPortWest"; - name = "Supermatter Reactor Room Blast Doors"; - pixel_x = 24; - req_one_access = list(11,24) - }, -/turf/simulated/floor/plating, -/area/engineering/engine_room) +/turf/simulated/floor/wood, +/area/horizon/service/bar) "gFh" = ( /obj/machinery/atmospherics/unary/vent_pump/high_volume{ dir = 4; @@ -47011,6 +46491,35 @@ /obj/structure/lattice/catwalk/indoor/grate/dark, /turf/simulated/floor/plating, /area/shuttle/skipjack) +"gFi" = ( +/obj/machinery/door/firedoor, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/door/airlock/maintenance{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/substation/wing_port) +"gFl" = ( +/obj/effect/floor_decal/corner_wide/purple{ + dir = 5 + }, +/obj/effect/floor_decal/corner_wide/purple{ + dir = 8 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/xenoarch/atrium) +"gFm" = ( +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/port/near) "gFn" = ( /obj/effect/floor_decal/corner/red/diagonal, /obj/effect/floor_decal/spline/plain{ @@ -47022,81 +46531,42 @@ }, /turf/simulated/floor/tiled, /area/merchant_station) -"gFr" = ( -/obj/machinery/power/smes/buildable/substation{ - RCon_tag = "Shield Substation"; - charge = 10000000; - cur_coils = 6; - input_attempt = 1; - input_level = 500000; - output_attempt = 1; - output_level = 500000 +"gFv" = ( +/obj/machinery/light, +/obj/effect/floor_decal/corner/dark_green{ + dir = 10 }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/structure/cable/cyan{ - icon_state = "0-2" +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_3/central) +"gFz" = ( +/obj/structure/cable/green{ + icon_state = "4-8" }, -/obj/effect/floor_decal/corner_wide/yellow{ - dir = 9 +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/dark/full, -/area/storage/shields) -"gFu" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/simulated/floor/tiled/full, -/area/bridge/upperdeck) -"gFw" = ( -/obj/machinery/light{ - dir = 8 +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_3/central) +"gFG" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 9 }, -/obj/structure/engineer_maintenance/electric{ - dir = 8 - }, -/obj/structure/engineer_maintenance/pipe, -/turf/simulated/floor/tiled/white, -/area/operations/lower/machinist/surgicalbay) -"gFC" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 10 - }, -/obj/structure/bed/handrail{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/shuttle/intrepid/starboard_compartment) -"gFD" = ( -/obj/machinery/atmospherics/pipe/simple/visible/red{ - dir = 8 - }, -/obj/machinery/meter, -/obj/effect/floor_decal/corner_wide/black{ +/obj/effect/floor_decal/spline/plain/green{ dir = 4 }, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 4 +/obj/machinery/atmospherics/binary/pump{ + dir = 1; + name = "Trays to Scrubbers" }, -/turf/simulated/floor/tiled/dark, -/area/engineering/atmos/propulsion/starboard) -"gFI" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 6 - }, -/obj/machinery/firealarm/east, -/obj/structure/table/standard, -/obj/item/storage/box/flares, -/turf/simulated/floor/tiled/dark, -/area/teleporter) +/obj/effect/floor_decal/industrial/hatch_tiny/service, +/turf/simulated/floor/tiled, +/area/horizon/service/hydroponics/lower) "gFJ" = ( /obj/effect/floor_decal/industrial/warning/corner{ dir = 1 @@ -47120,36 +46590,28 @@ }, /turf/simulated/floor/tiled/full, /area/horizon/security/investigators_office) -"gFO" = ( -/obj/structure/railing/mapped{ - dir = 1 +"gFS" = ( +/obj/machinery/door/airlock/external{ + dir = 4 }, -/obj/effect/floor_decal/corner/dark_green{ - dir = 5 +/obj/machinery/access_button{ + pixel_x = 24; + pixel_y = 32 }, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/port) -"gFQ" = ( -/obj/machinery/atmospherics/binary/pump/on{ - dir = 8; - name = "Distro to Starboard Docks"; - target_pressure = 200 +/obj/effect/map_effect/marker_helper/airlock/interior, +/obj/effect/map_effect/marker/airlock/docking{ + landmark_tag = "nav_horizon_dock_deck_3_starboard_1"; + master_tag = "airlock_horizon_dock_deck_3_starboard_1"; + name = "airlock_horizon_dock_deck_3_starboard_1" }, -/obj/effect/floor_decal/industrial/warning{ - dir = 9 - }, -/obj/structure/lattice/catwalk/indoor/grate, /turf/simulated/floor/plating, -/area/security/checkpoint2) +/area/horizon/hallway/primary/deck_3/port/docks) "gFT" = ( /obj/effect/floor_decal/industrial/warning/cee{ dir = 1 }, /turf/simulated/floor/reinforced/airless, -/area/template_noop) -"gFW" = ( -/turf/simulated/floor/carpet, -/area/chapel/office) +/area/horizon/exterior) "gFX" = ( /obj/machinery/door/airlock/centcom{ name = "Personnel Files"; @@ -47159,101 +46621,80 @@ icon_state = "dark_preview" }, /area/centcom/control) -"gFZ" = ( -/obj/effect/floor_decal/corner/red/diagonal, -/obj/effect/floor_decal/spline/plain{ - dir = 5 +"gGb" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 }, -/turf/simulated/floor/lino, -/area/horizon/cafeteria) +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/door/blast/shutters/open{ + dir = 2; + id = "shutters_deck2_portstairwellsec"; + name = "Security Shutter" + }, +/obj/structure/sign/crush{ + pixel_x = 32; + pixel_y = 8 + }, +/obj/machinery/door/blast/regular/open{ + dir = 4; + id = "hangarlockdown"; + name = "Hangar Lockdown" + }, +/turf/simulated/floor/tiled/full, +/area/horizon/rnd/eva) "gGe" = ( /obj/effect/map_effect/window_spawner/full/reinforced/indestructible, /turf/unsimulated/floor/plating, /area/antag/jockey) -"gGf" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 10 - }, -/obj/structure/platform_stairs/full{ +"gGk" = ( +/turf/simulated/floor, +/area/horizon/maintenance/deck_3/aft/port/far) +"gGo" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/obj/structure/platform/cutout, -/obj/structure/platform{ - dir = 1 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled, -/area/bridge/upperdeck) -"gGg" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/atmos) +"gGt" = ( +/obj/structure/closet/secure_closet/hangar_tech, /obj/effect/floor_decal/corner/brown{ dir = 6 }, -/obj/structure/table/standard{ - no_cargo = 1 - }, -/obj/item/paper_bin, -/obj/item/pen, -/obj/item/device/cratescanner, +/obj/item/device/radio/intercom/east, +/obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled, -/area/operations/storage) -"gGu" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/reinforced, -/area/horizon/grauwolf) +/area/horizon/operations/office) "gGx" = ( /obj/machinery/deployable/barrier, /turf/unsimulated/floor/rubber_carpet, /area/centcom/control) -"gGz" = ( +"gGy" = ( +/obj/effect/floor_decal/corner_wide/green{ + dir = 8 + }, /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/machinery/door/airlock/maintenance{ - dir = 4; - name = "Security Maintenance"; - req_access = list(63) - }, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 2; - icon_state = "pdoor0"; - id = "Security Lockdown"; - name = "Security Blast Door"; - opacity = 0 - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/firedoor{ - dir = 4 - }, -/turf/simulated/floor/tiled/full, -/area/maintenance/security_port) +/turf/simulated/floor/tiled/white, +/area/horizon/medical/equipment) "gGB" = ( /obj/effect/overlay/palmtree_r, /turf/simulated/floor/holofloor/beach/sand{ icon_state = "desert4" }, /area/horizon/holodeck/source_beach) -"gGE" = ( -/obj/structure/sign/nosmoking_1{ - pixel_y = 32 - }, -/obj/machinery/atmospherics/pipe/simple/visible/black{ - dir = 4 - }, +"gGF" = ( +/obj/structure/reagent_dispensers/extinguisher, /obj/effect/floor_decal/industrial/warning{ - dir = 1 + dir = 9 }, -/obj/machinery/alarm/south, -/turf/simulated/floor/tiled/dark, -/area/engineering/atmos/propulsion) +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/research) "gGG" = ( /obj/effect/floor_decal/corner/paleblue{ dir = 5 @@ -47263,30 +46704,74 @@ }, /turf/unsimulated/floor, /area/centcom/holding) -"gGH" = ( -/obj/effect/floor_decal/industrial/outline/firefighting_closet, -/obj/structure/closet/firecloset{ - anchored = 1; - canbemoved = 1 +"gGR" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 1 }, -/obj/machinery/alarm/east{ - req_one_access = list(24,11,55) +/obj/effect/floor_decal/spline/plain/corner, +/obj/effect/floor_decal/spline/plain/corner{ + dir = 8 + }, +/obj/machinery/light{ + dir = 1 }, /turf/simulated/floor/carpet/rubber, -/area/engineering/engine_room/rust) -"gGU" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/dark, -/area/horizon/maintenance/deck_three/aft/starboard) -"gGV" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 5 +/area/horizon/tcommsat/chamber) +"gGS" = ( +/obj/structure/bed/stool/chair/sofa/left/purple{ + dir = 1 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/machinery/light_switch{ + pixel_x = -5; + pixel_y = -20 + }, +/turf/simulated/floor/carpet/purple, +/area/horizon/command/heads/rd) +"gGT" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/service/port) +"gGW" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/effect/decal/cleanable/cobweb2, +/obj/structure/plasticflaps/airtight, +/obj/machinery/door/airlock/hatch{ + dir = 4; + name = "Deck 2 Starboard Pod"; + req_access = list(12) + }, +/obj/item/tape/engineering{ + icon_state = "engineering_door" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/maintenance/deck_2/wing/port/nacelle) "gGY" = ( /obj/structure/bed/stool/chair/office/dark{ dir = 8 @@ -47299,17 +46784,16 @@ }, /turf/simulated/floor/tiled, /area/horizon/security/office) -"gHa" = ( -/obj/structure/bed/stool/chair/padded/brown, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 8 +"gHc" = ( +/obj/machinery/atmospherics/pipe/simple/visible, +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/atmos) +"gHf" = ( +/obj/effect/landmark/entry_point/aft{ + name = "aft engines, starboard 1" }, -/obj/machinery/power/apc/west, -/obj/structure/cable/green{ - icon_state = "0-4" - }, -/turf/simulated/floor/wood, -/area/lawoffice/consular_two) +/turf/space/dynamic, +/area/horizon/engineering/atmos/propulsion) "gHg" = ( /turf/unsimulated/wall/riveted, /area/centcom/distress_prep) @@ -47326,22 +46810,29 @@ }, /turf/unsimulated/floor, /area/antag/burglar) -"gHl" = ( -/turf/simulated/wall/r_wall, -/area/horizon/hallway/deck_three/primary/central) -"gHm" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 5 +"gHn" = ( +/obj/structure/cable/green{ + icon_state = "0-8" }, -/obj/item/hullbeacon/red, -/obj/structure/railing/mapped{ - dir = 4 +/obj/structure/cable/green{ + icon_state = "12-0" }, -/obj/structure/bed/handrail{ - dir = 1 +/obj/machinery/atmospherics/pipe/zpipe/up/supply{ + dir = 8 }, -/turf/simulated/floor/reinforced, -/area/shuttle/intrepid/main_compartment) +/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers{ + dir = 8 + }, +/obj/structure/sign/electricshock{ + pixel_y = 32 + }, +/obj/structure/railing/mapped, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/port/near) "gHp" = ( /obj/structure/closet/secure_closet/cabinet{ anchored = 1; @@ -47371,6 +46862,13 @@ icon_state = "wood" }, /area/centcom/legion/hangar5) +"gHr" = ( +/obj/machinery/light/small/emergency{ + dir = 1 + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/port/near) "gHt" = ( /obj/structure/undies_wardrobe, /obj/structure/sign/flag/biesel{ @@ -47381,6 +46879,22 @@ icon_state = "wood" }, /area/centcom/legion/hangar5) +"gHu" = ( +/obj/effect/shuttle_landmark/horizon/dock/deck_3/starboard_2, +/obj/machinery/door/airlock/external, +/obj/machinery/access_button{ + dir = 1; + pixel_x = -28; + pixel_y = 12 + }, +/obj/effect/map_effect/marker_helper/airlock/exterior, +/obj/effect/map_effect/marker/airlock/docking{ + landmark_tag = "nav_horizon_dock_deck_3_starboard_2"; + master_tag = "airlock_horizon_dock_deck_3_starboard_2"; + name = "airlock_horizon_dock_deck_3_starboard_2" + }, +/turf/simulated/floor/plating, +/area/horizon/hallway/primary/deck_3/port/docks) "gHy" = ( /turf/simulated/wall/shuttle/unique/mercenary/small, /area/shuttle/syndicate_elite) @@ -47390,6 +46904,19 @@ }, /turf/unsimulated/floor, /area/centcom/ferry) +"gHC" = ( +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/effect/floor_decal/corner/dark_blue/full{ + dir = 4 + }, +/obj/item/modular_computer/console/preset/command{ + dir = 1 + }, +/obj/structure/railing/mapped, +/turf/simulated/floor/tiled/dark, +/area/horizon/command/bridge/controlroom) "gHD" = ( /obj/effect/floor_decal/corner/dark_blue/full{ dir = 4 @@ -47403,21 +46930,12 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled, /area/horizon/security/holding_cell_a) -"gHG" = ( -/obj/structure/railing/mapped{ - dir = 8 +"gHE" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 4 }, -/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) +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_2/central) "gHM" = ( /obj/machinery/vending/cigarette/hacked, /turf/unsimulated/floor/marble, @@ -47428,108 +46946,133 @@ dir = 4 }, /turf/simulated/floor/reinforced/airless, -/area/template_noop) +/area/horizon/exterior) "gHP" = ( /obj/structure/table/reinforced/steel, /obj/effect/decal/cleanable/dirt, /turf/unsimulated/floor/monotile, /area/antag/burglar) -"gIc" = ( -/obj/structure/closet/crate, -/obj/item/circuitboard/smes, -/obj/item/circuitboard/smes, -/obj/item/smes_coil, -/obj/item/smes_coil, -/obj/item/smes_coil/super_capacity, -/obj/item/smes_coil/super_capacity, -/obj/item/smes_coil/super_io, -/obj/item/smes_coil/super_io, -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/plating, -/area/engineering/storage/lower) -"gIj" = ( -/obj/machinery/door/window/westright, -/obj/structure/platform_stairs/full/east_west_cap, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard/far) -"gIk" = ( -/turf/unsimulated/wall/steel, -/area/antag/mercenary) -"gIo" = ( -/obj/structure/disposalpipe/trunk, -/obj/structure/platform, -/obj/machinery/disposal, -/turf/simulated/floor/tiled, -/area/bridge/meeting_room) -"gIr" = ( -/obj/structure/cable{ +"gHS" = ( +/obj/structure/cable/green{ icon_state = "4-8" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ +/obj/effect/floor_decal/corner/dark_green{ + dir = 5 + }, +/obj/machinery/door/firedoor{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/full, +/area/horizon/engineering/hallway/fore) +"gHT" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/starboard) +"gHU" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/turf/simulated/floor/carpet/rubber, +/area/horizon/rnd/xenoarch/spectrometry) +"gIb" = ( +/obj/structure/table/reinforced/steel, +/obj/machinery/door/window/southleft{ + name = "Auxiliary Custodial Closet Desk Interior"; + req_access = list(26) + }, +/obj/machinery/door/blast/shutters{ + id = "shutters_deck2_auxcustdesk"; + name = "Desk Shutter" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/service/custodial/auxiliary) +"gIg" = ( +/obj/item/trash/koisbar, +/obj/structure/disposalpipe/segment{ dir = 4 }, /obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/random/junk, -/turf/simulated/floor/plating, -/area/maintenance/wing/port/deck1) -"gIv" = ( -/obj/structure/platform{ +/obj/machinery/light/small/emergency{ dir = 1 }, -/obj/random/pottedplant, -/turf/simulated/floor/wood, -/area/bridge/meeting_room) -"gIw" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/simulated/floor/carpet/rubber, -/area/maintenance/engineering/auxillary) +/turf/simulated/floor, +/area/horizon/maintenance/deck_3/security/port) +"gIk" = ( +/turf/unsimulated/wall/steel, +/area/antag/mercenary) +"gIA" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/horizon/engineering/storage_eva) "gIG" = ( /obj/structure/bed/stool/chair/sofa/right/purple, /obj/effect/floor_decal/spline/fancy/wood, /turf/simulated/floor/wood/maple, /area/horizon/holodeck/source_cafe) -"gIJ" = ( -/obj/machinery/door/airlock/glass_service{ - dir = 4; - name = "Kitchen"; - req_access = list(28) +"gIK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 10 }, +/obj/machinery/atmospherics/pipe/simple/hidden/aux{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/effect/floor_decal/corner/black/full{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/obj/machinery/alarm/north, +/turf/simulated/floor/tiled, +/area/horizon/hangar/intrepid) +"gIL" = ( +/obj/effect/floor_decal/corner_wide/purple{ + dir = 8 + }, +/obj/effect/floor_decal/corner_wide/purple{ + dir = 6 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/platform_deco, +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/xenoarch/atrium) +"gIM" = ( /obj/machinery/door/firedoor, /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/simulated/floor/tiled/full, -/area/horizon/kitchen) -"gIO" = ( -/obj/machinery/status_display{ - pixel_y = -32 - }, -/obj/machinery/light, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/random/pottedplant, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 10 - }, -/turf/simulated/floor/reinforced, -/area/bridge/controlroom) -"gIP" = ( -/obj/effect/floor_decal/corner_wide/blue/diagonal, -/obj/effect/floor_decal/corner_wide/yellow/diagonal{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/effect/floor_decal/spline/plain/cee{ - dir = 8 +/obj/machinery/door/airlock/service{ + dir = 4; + name = "Custodial Closet"; + req_access = list(26) }, /turf/simulated/floor/tiled, -/area/engineering/atmos/storage) +/area/horizon/service/custodial) "gIQ" = ( /obj/effect/floor_decal/corner/green{ dir = 10 @@ -47554,26 +47097,39 @@ icon_state = "wood" }, /area/centcom/legion/hangar5) +"gIW" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/platform/ledge, +/obj/structure/platform/ledge{ + dir = 8 + }, +/obj/structure/platform_deco/ledge{ + dir = 9 + }, +/turf/simulated/open, +/area/horizon/medical/hallway/upper) "gIX" = ( /turf/simulated/floor/holofloor/beach/sand{ icon_state = "desert3" }, /area/horizon/holodeck/source_desert) -"gJa" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/structure/tank_wall/phoron{ - icon_state = "ph16" +"gJc" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/visible/purple, -/turf/simulated/floor/airless, -/area/engineering/atmos) -"gJb" = ( -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/structure/platform_deco{ +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/structure/railing/mapped{ dir = 8 }, /turf/simulated/floor/plating, -/area/maintenance/wing/starboard) +/area/horizon/engineering/reactor/supermatter/mainchamber) "gJg" = ( /obj/structure/table/stone/marble, /obj/structure/railing/mapped, @@ -47595,80 +47151,11 @@ /obj/item/device/versebook/trinary, /turf/simulated/floor/bluegrid, /area/horizon/holodeck/source_trinary) -"gJj" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/medical{ - dir = 4; - name = "Psychiatric Office"; - req_access = list(64) - }, -/obj/effect/map_effect/door_helper/unres{ - dir = 4 - }, -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 2; - icon_state = "shutter0"; - id = "LCKDshutters"; - name = "Medical Lockdown Shutters"; - opacity = 0 - }, -/turf/simulated/floor/tiled/full, -/area/medical/psych) -"gJl" = ( -/obj/effect/map_effect/window_spawner/full/reinforced/polarized/firedoor{ - id = "Recovery1" - }, -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 2; - icon_state = "shutter0"; - id = "LCKDshutters"; - name = "Medical Lockdown Shutters"; - opacity = 0 - }, -/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 - }, -/turf/simulated/floor/tiled/dark, -/area/storage/eva) -"gJz" = ( -/obj/effect/floor_decal/corner/dark_green/full, -/obj/structure/table/standard, -/obj/item/paper_bin{ - pixel_x = -3; - pixel_y = 1 - }, -/obj/item/pen{ - pixel_x = 2; - pixel_y = 3 - }, -/turf/simulated/floor/tiled, -/area/engineering/lobby) -"gJB" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/effect/floor_decal/corner/brown{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_two) +"gJh" = ( +/obj/machinery/light/small/emergency, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/port/far) "gJE" = ( /obj/structure/table/reinforced/wood, /obj/machinery/chemical_dispenser/coffeemaster/full{ @@ -47678,156 +47165,185 @@ /obj/structure/sign/flag/nanotrasen/large/north, /turf/unsimulated/floor, /area/centcom/bar) -"gJG" = ( +"gJF" = ( +/obj/effect/floor_decal/corner/dark_green/full{ + dir = 8 + }, +/obj/effect/floor_decal/spline/plain/corner/green, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/horizon/service/hydroponics/lower) +"gJJ" = ( +/obj/machinery/conveyor{ + dir = 8; + id = "mining_3" + }, +/turf/simulated/floor/plating, +/area/horizon/operations/mining_main/refinery) +"gJM" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 6 + }, /obj/structure/cable/green{ icon_state = "1-2" }, -/obj/machinery/door/airlock/glass_engineering{ - dir = 1; - name = "External Access"; - req_access = list(10) +/obj/machinery/camera/network/command{ + c_tag = "Bridge - Port 2"; + dir = 1 }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/aft_airlock) -"gJH" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/structure/window/shuttle/scc_space_ship/cardinal, +/turf/simulated/floor/tiled, +/area/horizon/command/bridge/controlroom) +"gJO" = ( /obj/structure/cable/green{ - icon_state = "1-8" + icon_state = "4-8" }, -/obj/structure/cable/green{ - icon_state = "2-8" +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 }, -/obj/structure/cable/green{ - icon_state = "0-8" +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 }, -/obj/machinery/door/blast/regular/open{ - dir = 2; - id = "shutters_deck3_longbow"; - name = "Safety Blast Door" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/longbow) -"gJK" = ( -/obj/structure/window/shuttle/scc_space_ship, -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/shutters{ - dir = 4; - id = "shutters_disposals"; - name = "\improper Viewing Shutter" +/obj/effect/floor_decal/corner/brown{ + dir = 9 }, -/obj/machinery/atmospherics/pipe/simple/hidden/red{ +/obj/effect/floor_decal/industrial/warning{ dir = 8 }, +/turf/simulated/floor/tiled, +/area/horizon/operations/loading) +"gJS" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/corner_wide/yellow{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/turf/simulated/floor/tiled, +/area/horizon/engineering/lobby) +"gJW" = ( +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/obj/structure/closet, +/obj/random/loot, /turf/simulated/floor/plating, -/area/horizon/custodial/disposals) -"gJN" = ( -/obj/structure/table/steel, -/obj/machinery/light{ - dir = 8 +/area/horizon/maintenance/deck_1/wing/starboard/far) +"gJX" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/structure/tank_wall/carbon_dioxide{ + icon_state = "co2-14" }, -/obj/machinery/firealarm/south, -/obj/effect/floor_decal/corner/dark_blue/full, -/obj/item/stack/material/steel/full, -/obj/item/stack/material/steel/full, -/obj/item/stack/material/glass/reinforced{ - amount = 50 - }, -/obj/item/stack/material/glass/reinforced{ - amount = 50 - }, -/obj/item/stack/material/glass/full, -/obj/item/stack/material/glass/full, -/obj/item/stack/rods{ - amount = 50 - }, -/obj/item/stack/rods{ - amount = 50 - }, -/turf/simulated/floor/tiled/dark, -/area/storage/eva) +/obj/machinery/atmospherics/pipe/simple/visible/black, +/turf/simulated/floor/airless, +/area/horizon/engineering/atmos) "gJZ" = ( /turf/unsimulated/floor{ icon_state = "elevatorshaft"; name = "elevator machinery" }, /area/centcom/legion) -"gKe" = ( -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora) +"gKf" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'KEEP CLEAR OF DOCKING AREA'."; + name = "KEEP CLEAR: DOCKING AREA"; + pixel_y = 32 + }, +/obj/effect/landmark/entry_point/port{ + name = "port, deck 3 port docks" + }, +/obj/effect/shuttle_landmark/horizon/dock/deck_3/port_3{ + dir = 8 + }, +/obj/machinery/door/airlock/external{ + dir = 4 + }, +/obj/effect/map_effect/marker/airlock/docking{ + landmark_tag = "nav_horizon_dock_deck_3_port_5"; + master_tag = "airlock_horizon_dock_deck_3_port_5"; + name = "airlock_horizon_dock_deck_3_port_5" + }, +/obj/effect/map_effect/marker_helper/airlock/exterior, +/obj/machinery/access_button{ + dir = 4; + pixel_x = 12; + pixel_y = 28 + }, +/turf/simulated/floor/plating, +/area/horizon/hallway/primary/deck_3/starboard/docks) "gKg" = ( /turf/simulated/floor/holofloor/tiled, /area/horizon/holodeck/source_emptycourt) -"gKh" = ( -/obj/structure/cable/green{ - icon_state = "0-4" - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/effect/floor_decal/industrial/hatch_tiny/yellow, -/obj/machinery/atmospherics/binary/passive_gate/on{ - name = "Air Tank to Air Distribution" - }, -/obj/machinery/power/apc/west{ - req_access = null; - req_one_access = list(11, 24, 47, 65) - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/intrepid/engineering) -"gKn" = ( -/obj/effect/floor_decal/industrial/outline/grey, +"gKj" = ( +/obj/machinery/power/breakerbox, +/obj/effect/decal/cleanable/cobweb2, +/obj/effect/floor_decal/industrial/warning/full, /turf/simulated/floor/plating, -/area/hangar/auxiliary) -"gKp" = ( -/obj/structure/table/wood, -/obj/effect/floor_decal/spline/fancy/wood{ +/area/horizon/maintenance/deck_2/wing/starboard/nacelle) +"gKm" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/corner/dark_green/full, +/obj/structure/railing/mapped{ dir = 8 }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 4 +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_1/central) +"gKr" = ( +/obj/machinery/bluespace_beacon, +/obj/effect/floor_decal/corner/black{ + dir = 8 }, -/obj/item/material/ashtray/bronze{ - pixel_x = 6; - pixel_y = 2 +/turf/simulated/floor/tiled/dark, +/area/horizon/hangar/intrepid) +"gKv" = ( +/obj/effect/floor_decal/corner/lime{ + dir = 10 }, -/turf/simulated/floor/wood, -/area/horizon/hallway/deck_three/primary/port) -"gKs" = ( -/obj/effect/landmark/entry_point/fore{ - name = "fore, armoury" +/obj/effect/landmark{ + name = "borerstart" }, -/turf/simulated/wall/shuttle/scc_space_ship/cardinal, -/area/maintenance/security_port) -"gKu" = ( -/obj/effect/floor_decal/corner/mauve{ - dir = 5 +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled, +/area/horizon/medical/morgue) +"gKy" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 1 }, /obj/structure/cable/green{ icon_state = "4-8" }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/structure/table/standard, -/obj/item/storage/box/fancy/vials, -/obj/item/reagent_containers/dropper/electronic_pipette, -/obj/item/reagent_containers/glass/beaker/large, -/turf/simulated/floor/tiled/white, -/area/rnd/chemistry) -"gKx" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/obj/effect/floor_decal/spline/plain/corner{ - dir = 1 - }, -/turf/simulated/floor/carpet/rubber, -/area/engineering/engine_monitoring/rust) +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_3/port) "gKD" = ( /obj/effect/floor_decal/corner/grey/diagonal{ dir = 4 @@ -47840,118 +47356,100 @@ }, /turf/unsimulated/floor, /area/centcom/spawning) -"gKG" = ( -/obj/machinery/mineral/equipment_vendor, -/turf/simulated/floor/tiled/dark/full, -/area/outpost/mining_main/refinery) +"gKH" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/port/near) "gKK" = ( /obj/effect/shuttle_landmark/ccia/dock, /turf/template_noop, /area/template_noop) -"gKO" = ( -/obj/effect/floor_decal/corner/yellow{ +"gKL" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 5 }, -/turf/simulated/floor/tiled, -/area/engineering/lobby) -"gKV" = ( -/obj/structure/cable/green{ - icon_state = "4-8" +/obj/machinery/camera/network/reactor{ + c_tag = "Engineering - Supermatter Reactor Access"; + dir = 1 }, -/obj/effect/floor_decal/corner/dark_green{ - dir = 10 +/obj/structure/sign/radiation{ + pixel_x = -32 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/simulated/floor/tiled/full, +/area/horizon/engineering/reactor/supermatter/airlock) +"gKN" = ( +/obj/structure/cable/green, +/obj/effect/floor_decal/industrial/hatch, +/turf/simulated/floor, +/area/horizon/rnd/xenoarch/atrium) +"gKT" = ( +/obj/structure/platform_deco/ledge{ + dir = 1 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/railing/mapped, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/central) -"gLd" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/corner/brown{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/operations/office) +/turf/simulated/open, +/area/horizon/hallway/primary/deck_3/central) +"gKW" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/carpet/rubber, +/area/horizon/rnd/lab) "gLk" = ( /obj/structure/shuttle_part/ccia{ icon_state = "11,4" }, /turf/unsimulated/floor/plating, /area/shuttle/transport1) -"gLs" = ( -/obj/effect/floor_decal/corner/purple{ - dir = 6 +"gLv" = ( +/obj/structure/table/wood, +/obj/item/reagent_containers/food/drinks/cans/root_beer{ + pixel_x = 6; + pixel_y = 4 }, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/horizon/custodial/disposals) -"gLt" = ( -/obj/machinery/shieldwallgen, -/obj/structure/cable/green{ - icon_state = "0-8" - }, -/obj/effect/floor_decal/industrial/outline/security, +/obj/item/reagent_containers/food/drinks/cans/root_beer, +/obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, -/area/engineering/bluespace_drive) -"gLu" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/bed/stool/bar/padded/red{ - dir = 8 - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/horizon/cafeteria) +/area/horizon/maintenance/deck_2/wing/port) "gLw" = ( /obj/effect/floor_decal/industrial/warning, /turf/unsimulated/floor/plating, /area/centcom/specops) -"gLA" = ( -/obj/structure/plasticflaps/airtight, -/obj/machinery/door/blast/regular{ - _wifi_id = "chapel_driver"; - dir = 4; - id = "chapel_driver" +"gLG" = ( +/obj/structure/sign/biohazard, +/turf/simulated/wall, +/area/horizon/medical/ward/isolation) +"gLK" = ( +/obj/effect/floor_decal/corner/dark_blue/full{ + dir = 8 }, -/obj/effect/floor_decal/industrial/hatch/red, -/turf/simulated/floor/reinforced, -/area/chapel/office) -"gLH" = ( -/obj/item/material/ashtray/bronze{ - pixel_x = -5; - pixel_y = 2 +/turf/simulated/floor/tiled/dark, +/area/horizon/storage/eva) +"gLL" = ( +/obj/structure/table/standard, +/obj/machinery/light{ + dir = 8 }, -/obj/effect/floor_decal/corner/dark_green{ - dir = 9 +/obj/item/reagent_containers/extinguisher_refill/filled, +/obj/item/reagent_containers/extinguisher_refill/filled, +/obj/item/reagent_containers/extinguisher_refill/filled, +/obj/item/reagent_containers/extinguisher_refill/filled, +/obj/item/device/hand_labeler, +/obj/effect/floor_decal/corner/yellow/full{ + dir = 8 }, -/obj/structure/table/wood, /turf/simulated/floor/tiled, -/area/security/checkpoint2) +/area/horizon/engineering/locker_room) +"gLM" = ( +/turf/simulated/wall/shuttle/scc_space_ship/cardinal, +/area/horizon/rnd/test_range) "gLQ" = ( /obj/structure/railing/mapped{ dir = 1 @@ -47969,6 +47467,31 @@ }, /turf/simulated/floor/marble, /area/horizon/holodeck/source_trinary) +"gLX" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/corner_wide/green{ + dir = 10 + }, +/obj/structure/railing/mapped, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/hallway/upper) +"gLY" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_2/fore) "gLZ" = ( /turf/unsimulated/floor, /area/centcom/control) @@ -47980,13 +47503,6 @@ /obj/structure/extinguisher_cabinet/north, /turf/simulated/floor/wood, /area/shuttle/merchant) -"gMb" = ( -/obj/machinery/atmospherics/binary/pump/fuel{ - dir = 8; - name = "Canister to Thrusters" - }, -/turf/simulated/floor/tiled/dark/full, -/area/shuttle/intrepid/port_storage) "gMd" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -48002,40 +47518,106 @@ }, /turf/simulated/floor/tiled, /area/horizon/security/hallway) +"gMe" = ( +/obj/effect/floor_decal/corner_wide/yellow{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/horizon/engineering/hallway/interior) "gMg" = ( /obj/structure/window/shuttle/unique/tcfl{ icon_state = "16,4" }, /turf/simulated/floor/plating, /area/shuttle/legion) -"gMp" = ( -/obj/effect/shuttle_landmark/lift/morgue_bottom, -/turf/simulated/floor/plating, -/area/medical/morgue/lower) -"gMu" = ( -/obj/effect/floor_decal/corner/mauve/full{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ +"gMh" = ( +/obj/structure/bed/stool/chair/office/light{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8" +/obj/effect/floor_decal/corner_wide/orange{ + dir = 6 }, /turf/simulated/floor/tiled/white, -/area/rnd/xenobiology) -"gMI" = ( -/obj/effect/floor_decal/corner/dark_blue/diagonal{ - dir = 8 +/area/horizon/medical/pharmacy) +"gMi" = ( +/obj/structure/railing/mapped{ + dir = 4 }, -/obj/structure/platform{ - dir = 8 +/turf/simulated/open, +/area/horizon/hallway/primary/deck_3/port) +"gMj" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/effect/floor_decal/industrial/loading/yellow{ + dir = 1 }, /turf/simulated/floor/tiled, -/area/bridge) +/area/horizon/stairwell/starboard/deck_2) +"gMk" = ( +/obj/machinery/atmospherics/binary/pump/fuel{ + dir = 4 + }, +/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/horizon/shuttle/quark/cargo_hold) +"gMl" = ( +/turf/simulated/floor/reinforced{ + blocks_air = 1; + density = 1; + name = "thruster mount" + }, +/area/horizon/engineering/atmos/propulsion) +"gMm" = ( +/obj/machinery/firealarm/south, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/light, +/obj/structure/closet/secure_closet/psychiatric, +/turf/simulated/floor/wood, +/area/horizon/medical/psych) +"gMq" = ( +/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, +/obj/machinery/door/blast/shutters{ + dir = 2; + id = "cargo_desk" + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/operations/office_aux) +"gMD" = ( +/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/firedoor, +/obj/machinery/door/airlock/glass{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/full, +/area/horizon/hallway/primary/deck_2/central) +"gMG" = ( +/obj/machinery/computer/fusion/fuel_control/terminal{ + initial_id_tag = "horizon_fusion" + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/reactor/indra/monitoring) "gML" = ( /obj/effect/floor_decal/corner_wide/paleblue/diagonal{ dir = 8 @@ -48043,43 +47625,43 @@ /obj/machinery/optable, /turf/simulated/floor/tiled/dark, /area/shuttle/mercenary) -"gMM" = ( -/obj/effect/decal/cleanable/blood/oil, -/obj/effect/floor_decal/industrial/warning, -/obj/structure/trash_pile, -/obj/machinery/alarm/north, -/turf/simulated/floor/plating, -/area/maintenance/wing/port/deck1) -"gMP" = ( -/obj/structure/sign/nosmoking_1{ - pixel_x = 32 +"gMT" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 }, -/obj/structure/closet/emcloset, -/obj/item/storage/toolbox/emergency, -/obj/item/storage/toolbox/emergency, -/obj/item/crowbar/red, -/obj/effect/floor_decal/corner/dark_green/full{ - dir = 1 +/obj/structure/sink/kitchen{ + dir = 8; + name = "sink"; + pixel_x = 19 }, /obj/machinery/light{ dir = 4 }, -/obj/effect/floor_decal/industrial/outline/emergency_closet, -/obj/machinery/alarm/north, -/turf/simulated/floor/tiled, -/area/horizon/crew_quarters/cryo/living_quarters_lift) +/obj/machinery/button/switch/holosign{ + id = 3; + dir = 4; + pixel_x = 20; + pixel_y = 28 + }, +/turf/simulated/floor/wood, +/area/horizon/service/bar) +"gMZ" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/reactor/supermatter/mainchamber) +"gNa" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/structure/trash_pile, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/wing/starboard) "gNb" = ( /obj/machinery/atmospherics/pipe/simple/heat_exchanging{ dir = 6 }, /turf/simulated/open/airless, /area/horizon/exterior) -"gNc" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor, -/area/horizon/maintenance/deck_three/aft/starboard) "gNd" = ( /obj/effect/floor_decal/corner/white/diagonal, /obj/effect/floor_decal/spline/plain{ @@ -48094,12 +47676,6 @@ }, /turf/unsimulated/floor, /area/centcom/bar) -"gNg" = ( -/obj/structure/closet/crate, -/obj/effect/floor_decal/industrial/warning, -/obj/random/contraband, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard) "gNh" = ( /obj/structure/bed/stool/chair/shuttle{ dir = 4 @@ -48107,17 +47683,37 @@ /obj/effect/floor_decal/corner/dark_blue/full, /turf/simulated/floor/tiled/dark, /area/shuttle/legion) -"gNk" = ( -/obj/machinery/porta_turret, -/obj/effect/floor_decal/industrial/warning/full, -/obj/structure/railing/mapped{ - dir = 4 +"gNi" = ( +/obj/effect/floor_decal/corner/brown/diagonal, +/obj/effect/landmark/start{ + name = "Shaft Miner" }, -/obj/machinery/light{ - dir = 8 +/turf/simulated/floor/tiled/dark, +/area/horizon/operations/mining_main/eva) +"gNj" = ( +/obj/structure/table/wood, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 }, -/turf/simulated/floor/tiled/dark/full, -/area/turret_protected/ai_upload_foyer) +/obj/item/reagent_containers/food/condiment/shaker/salt{ + pixel_x = -6; + pixel_y = 16 + }, +/obj/item/reagent_containers/food/condiment/shaker/peppermill{ + pixel_x = 4; + pixel_y = 16 + }, +/obj/item/flame/candle{ + pixel_y = 16 + }, +/obj/machinery/power/outlet, +/obj/machinery/power/apc/north, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/wood, +/area/horizon/service/dining_hall) "gNn" = ( /obj/structure/cable/green{ icon_state = "1-4" @@ -48133,10 +47729,20 @@ }, /turf/simulated/floor/lino, /area/horizon/security/investigators_office) -"gNo" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/dark/airless, -/area/template_noop) +"gNp" = ( +/obj/effect/floor_decal/corner/red/full{ + dir = 8 + }, +/obj/structure/closet/hazmat/general, +/obj/machinery/embedded_controller/radio/airlock/access_controller{ + id_tag = "processing_airlock_control"; + name = "Processing Access Controller"; + pixel_x = -25; + tag_exterior_door = "processing_airlock_exterior"; + tag_interior_door = "processing_airlock_interior" + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/medical/ward/isolation) "gNr" = ( /obj/effect/floor_decal/industrial/warning/corner{ dir = 4 @@ -48144,49 +47750,18 @@ /obj/structure/grille, /turf/simulated/floor/reinforced/airless, /area/horizon/exterior) -"gNs" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ +"gND" = ( +/turf/simulated/floor/tiled/full, +/area/horizon/hallway/primary/deck_1/central) +"gNE" = ( +/obj/structure/railing/mapped{ dir = 4 }, -/obj/machinery/door/firedoor, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard/deck1) -"gNx" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/structure/window/shuttle/scc_space_ship/cardinal, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/dark/full, -/area/rnd/xenobiology/xenoflora) -"gNy" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 +/obj/effect/floor_decal/corner/black{ + dir = 6 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/maintenance/wing/port) -"gNz" = ( -/obj/structure/closet, -/obj/random/loot, -/obj/random/colored_jumpsuit, -/obj/random/backpack, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"gNA" = ( -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/operations/lobby) +/turf/simulated/floor/tiled/dark, +/area/horizon/hangar/auxiliary) "gNF" = ( /obj/machinery/light{ name = "adjusted light fixture"; @@ -48194,9 +47769,6 @@ }, /turf/unsimulated/floor, /area/centcom/distress_prep) -"gNH" = ( -/turf/simulated/wall, -/area/engineering/aft_airlock) "gNI" = ( /obj/effect/floor_decal/corner/brown/diagonal, /obj/structure/table/wood, @@ -48211,42 +47783,35 @@ /obj/machinery/alarm/north, /turf/simulated/floor/tiled/dark, /area/horizon/holodeck_control/beta) -"gNQ" = ( -/obj/structure/table/standard, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 +"gNN" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" }, -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/item/glass_jar/gumball/medical, -/turf/simulated/floor/tiled/white, -/area/medical/reception) +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/structure/lattice/catwalk/indoor, +/turf/simulated/floor/plating, +/area/horizon/engineering/reactor/indra/mainchamber) "gNR" = ( -/obj/machinery/seed_extractor, +/obj/machinery/door/blast/shutters{ + dir = 8; + id = "r-ust_north"; + name = "INDRA Reactor Fore Storage Shutters" + }, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/dark/full, -/area/horizon/hydroponics/garden) +/area/horizon/engineering/reactor/indra/mainchamber) "gNW" = ( /turf/simulated/wall/shuttle/unique/mercenary/small{ icon_state = "7,6" }, /area/shuttle/syndicate_elite) -"gOa" = ( -/obj/effect/floor_decal/corner/black{ - dir = 9 - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/firedoor/multi_tile, -/turf/simulated/floor/tiled/dark, -/area/hangar/intrepid) -"gOl" = ( -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/engine_room) -"gOn" = ( -/obj/structure/railing/mapped, +"gNX" = ( +/obj/effect/floor_decal/corner/mauve/full, +/turf/simulated/floor/tiled/white, +/area/horizon/storage/eva/expedition) +"gNZ" = ( /obj/structure/cable{ icon_state = "4-8" }, @@ -48259,147 +47824,186 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, +/obj/machinery/door/firedoor, /obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/maintenance/engineering_ladder) -"gOo" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 9 +/obj/machinery/door/airlock/maintenance_hatch{ + dir = 4; + req_one_access = list(12) }, -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/obj/structure/cable/green{ - icon_state = "0-8" - }, -/obj/structure/grille, -/turf/simulated/floor/tiled/dark/full/airless, -/area/bridge/controlroom) -"gOy" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ +/turf/simulated/floor, +/area/horizon/maintenance/deck_3/aft/port) +"gOc" = ( +/obj/effect/floor_decal/industrial/outline/emergency_closet, +/obj/machinery/atmospherics/pipe/tank/air{ dir = 1 }, -/obj/structure/lattice/catwalk/indoor/grate/dark, /turf/simulated/floor, -/area/maintenance/security_port) -"gOC" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/area/horizon/command/bridge/aibunker) +"gOm" = ( +/obj/effect/floor_decal/corner/lime{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/disposal/small/south, +/obj/structure/disposalpipe/trunk, +/obj/structure/sign/vacuum{ + icon_state = "deathsposal"; + pixel_y = 35 + }, +/obj/machinery/light/floor{ + dir = 1 + }, /turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/central) +/area/horizon/rnd/xenobiology/xenoflora) +"gOp" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance_hatch{ + frequency = 1379; + id_tag = "indra_airlock_interior"; + locked = 1; + name = "INDRA Reactor Airlock Interior"; + req_one_access = list(11,24) + }, +/obj/machinery/access_button{ + command = "cycle_interior"; + frequency = 1379; + master_tag = "indra_airlock_control"; + name = "INDRA Reactor Airlock Access"; + pixel_x = 23; + req_one_access = list(11,24) + }, +/obj/machinery/embedded_controller/radio/airlock/access_controller{ + id_tag = "indra_airlock_control"; + name = "INDRA Reactor Airlock Access Console"; + pixel_x = 38; + tag_exterior_door = "indra_airlock_exterior"; + tag_interior_door = "indra_airlock_interior" + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/reactor/indra/monitoring) +"gOs" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/storage/tech) +"gOt" = ( +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/effect/floor_decal/corner_wide/green{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/hallway) +"gOu" = ( +/obj/machinery/camera/network/engineering{ + c_tag = "Engineering - Supermatter Reactor Monitoring"; + dir = 8 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/computer/security/engineering/terminal, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/reactor/supermatter/monitoring) "gOG" = ( /obj/structure/table/rack, /obj/item/rig/ert, /turf/unsimulated/floor/wood, /area/centcom/specops) -"gOP" = ( -/obj/effect/floor_decal/corner/dark_green/full, -/obj/structure/railing/mapped, -/turf/simulated/floor/tiled, -/area/hallway/primary/aft) -"gOS" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/structure/cable/green{ - icon_state = "1-2" +"gOI" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/starboard) -"gOW" = ( -/obj/machinery/shower{ - dir = 4; - pixel_x = -1; - pixel_y = 1 - }, -/obj/effect/floor_decal/corner/mauve/diagonal, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology) -"gOY" = ( -/obj/machinery/atmospherics/pipe/simple/visible/cyan, +/obj/structure/lattice/catwalk/indoor/grate/dark, /turf/simulated/floor/plating, -/area/engineering/engine_room) -"gPa" = ( -/obj/machinery/camera/network/medbay{ - c_tag = "Medical - First Responder Room" +/area/horizon/maintenance/deck_2/service/starboard) +"gOL" = ( +/obj/effect/floor_decal/corner_wide/purple{ + dir = 6 + }, +/obj/effect/floor_decal/corner_wide/purple/diagonal, +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/test_range) +"gON" = ( +/obj/structure/lattice/catwalk/indoor/grate/damaged{ + color = "#4c535b" + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/port) +"gOQ" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/corner/dark_green{ + dir = 6 }, -/obj/structure/closet/secure_closet/medical_para, -/obj/item/defibrillator/compact/loaded, -/turf/simulated/floor/tiled, -/area/medical/paramedic) -"gPe" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/effect/floor_decal/corner/dark_blue/diagonal, -/obj/effect/floor_decal/spline/plain/black{ dir = 4 }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/intrepid/junction_compartment) -"gPf" = ( -/obj/machinery/camera/network/engineering{ - c_tag = "Engineering - Starboard Combustion Chamber"; - dir = 1; - pixel_x = -11 +/turf/simulated/floor/tiled, +/area/horizon/crew/resdeck/living_quarters_lift) +"gPb" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/reactor/supermatter/mainchamber) +"gPd" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ - dir = 9 - }, -/turf/simulated/floor/reinforced/airless, -/area/engineering/atmos/propulsion/starboard) -"gPk" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 8 - }, -/obj/structure/bed/stool/chair/shuttle/double{ - pixel_x = 8 - }, -/obj/effect/floor_decal/spline/plain/black{ +/obj/effect/floor_decal/corner/yellow, +/obj/effect/floor_decal/corner/yellow{ dir = 1 }, -/obj/structure/bed/stool/chair/shuttle/double{ - pixel_x = -8 +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 }, -/obj/machinery/power/apc/west{ - req_access = null; - req_one_access = list(11, 24, 47, 65) +/obj/machinery/computer/general_air_control/large_tank_control/wall{ + input_tag = "turbine_hot_in"; + name = "Turbine Hot Loop Control"; + output_tag = "turbine_hot_out"; + sensors = list("turbine_sensor"="Turbine Combustion Sensor"); + pixel_y = 28; + frequency = 1443 }, -/obj/structure/cable/green{ - icon_state = "0-4" +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/atmos/turbine) +"gPh" = ( +/obj/structure/railing/mapped{ + dir = 1 }, -/turf/simulated/floor/tiled/dark/full, -/area/shuttle/intrepid/main_compartment) -"gPm" = ( -/obj/structure/foamedmetal, -/obj/structure/shuttle_part/scc_space_ship{ - icon_state = "d3-4-f" +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/machinery/light, +/turf/simulated/open, +/area/horizon/service/hydroponics) +"gPi" = ( +/obj/machinery/power/apc/west, +/obj/structure/cable/green, +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/floor_decal/corner/yellow/full, +/turf/simulated/floor/tiled, +/area/horizon/engineering/storage_eva) +"gPn" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 4 }, /turf/simulated/floor/plating, -/area/maintenance/wing/starboard) -"gPo" = ( -/obj/item/hullbeacon/red, -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/reinforced/airless, -/area/template_noop) +/area/horizon/engineering/atmos/air) "gPr" = ( /obj/effect/floor_decal/industrial/warning, /obj/structure/table/rack, @@ -48414,41 +48018,51 @@ "gPu" = ( /turf/unsimulated/floor, /area/centcom/distress_prep) -"gPv" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 6 +"gPB" = ( +/obj/structure/shuttle_part/scc/scout{ + density = 0; + icon_state = "7,11" }, -/obj/effect/floor_decal/corner/dark_green{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/hangar/auxiliary) -"gPw" = ( +/turf/simulated/floor/plating, +/area/horizon/shuttle/canary) +"gPD" = ( +/obj/structure/railing/mapped, /obj/effect/floor_decal/corner/dark_blue{ dir = 10 }, -/obj/machinery/atmospherics/pipe/simple/hidden{ +/obj/machinery/computer/ship/targeting{ + dir = 1; + req_access = list(19) + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/command/bridge/controlroom) +"gPE" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/port/near) +"gPF" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 +/obj/effect/floor_decal/corner_wide/green{ + dir = 10 }, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/starboard/docks) -"gPA" = ( -/obj/effect/floor_decal/corner_wide/paleblue{ - dir = 6 +/obj/structure/disposalpipe/junction{ + dir = 4; + icon_state = "pipe-j2" }, -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/table/standard, -/obj/item/storage/box/sharps, +/obj/structure/railing/mapped, /turf/simulated/floor/tiled/white, -/area/medical/ors) +/area/horizon/medical/hallway/upper) "gPG" = ( /obj/machinery/light/small{ dir = 4 @@ -48470,12 +48084,16 @@ }, /turf/unsimulated/floor/wood, /area/antag/actor) -"gPN" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 8 +"gPO" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/simulated/wall/shuttle/scc, -/area/shuttle/intrepid/port_compartment) +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor, +/area/horizon/maintenance/deck_3/aft/starboard/far) "gPS" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 @@ -48488,6 +48106,38 @@ }, /turf/simulated/floor/tiled, /area/horizon/security/hallway) +"gPT" = ( +/obj/machinery/field_generator, +/obj/effect/floor_decal/industrial/warning/full, +/turf/simulated/floor/plating, +/area/horizon/engineering/bluespace_drive) +"gPX" = ( +/obj/random/junk, +/obj/effect/decal/cleanable/blood/oil, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/aft) +"gQf" = ( +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/structure/platform/ledge{ + dir = 8 + }, +/obj/structure/platform/ledge{ + dir = 1 + }, +/obj/structure/platform_deco/ledge{ + dir = 6 + }, +/obj/machinery/light, +/turf/simulated/open, +/area/horizon/hallway/primary/deck_2/central) +"gQh" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/turbolift/primary/deck_1) "gQj" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 @@ -48495,17 +48145,44 @@ /obj/machinery/alarm/east{ alarm_id = 1501; breach_detection = 0; - name = "Exotic Energy Harvesting"; + name = null; rcon_setting = 3; report_danger_level = 0; req_one_access = list(7,47,24,11) }, /turf/simulated/floor/reinforced, -/area/outpost/research/anomaly_harvest) -"gQo" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/area/horizon/rnd/xenoarch/anomaly_harvest) +"gQm" = ( +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 9 + }, +/obj/machinery/alarm/west, +/obj/structure/table/wood, +/obj/machinery/chemical_dispenser/bar_soft/full{ + dir = 4; + pixel_y = 3; + pixel_x = -4 + }, +/obj/item/storage/box/drinkingglasses{ + pixel_x = 13; + pixel_y = 7 + }, +/turf/simulated/floor/wood, +/area/horizon/repoffice/consular_two) +"gQq" = ( +/obj/structure/toilet{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/structure/bed/handrail, +/obj/effect/floor_decal/corner/blue/diagonal, /turf/simulated/floor/tiled/white, -/area/rnd/xenobiology) +/area/horizon/command/bridge/supply) "gQu" = ( /obj/effect/floor_decal/spline/plain/corner, /obj/effect/floor_decal/spline/plain/corner{ @@ -48517,24 +48194,52 @@ /obj/structure/flora/ausbushes/ppflowers, /turf/simulated/floor/exoplanet/grass/grove, /area/centcom/shared_dream) -"gQv" = ( -/obj/structure/platform, -/obj/structure/platform_deco{ - dir = 1 - }, -/turf/simulated/floor/reinforced, -/area/bridge/controlroom) "gQw" = ( /obj/effect/map_effect/window_spawner/full/reinforced/indestructible, /turf/unsimulated/floor/plating, /area/centcom/ferry) -"gQC" = ( -/obj/structure/lattice, -/obj/structure/platform/ledge{ +"gQD" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ dir = 4 }, -/turf/simulated/open, -/area/hallway/medical/upper) +/obj/machinery/meter, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/reactor/supermatter/mainchamber) +"gQF" = ( +/obj/machinery/camera/network/second_deck{ + c_tag = "Second Deck - Tech Storage Entrance"; + dir = 1 + }, +/obj/structure/sign/securearea{ + name = "\improper WARNING: SECURE AMMUNITION STORAGE sign"; + pixel_x = -32 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/floor_decal/corner/dark_green/full, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/horizon/operations/lobby) +"gQG" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/corner/dark_green{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_3/port) "gQI" = ( /turf/simulated/wall/shuttle/unique/ert{ icon_state = "5,0" @@ -48548,120 +48253,108 @@ /obj/structure/railing/mapped, /turf/simulated/open/airless, /area/horizon/exterior) -"gQP" = ( -/obj/structure/filingcabinet/chestdrawer, -/turf/simulated/floor/tiled/white, -/area/hallway/medical/upper) -"gQW" = ( -/obj/structure/sign/staff_only{ - pixel_x = -31 +"gQQ" = ( +/obj/machinery/atmospherics/pipe/simple/visible/purple{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/horizon/engineering/bluespace_drive) +"gQR" = ( +/obj/structure/closet/boxinggloves, +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/floor_decal/corner/dark_green/diagonal, +/turf/simulated/floor/tiled, +/area/horizon/crew/fitness/gym) +"gQY" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/research) +"gQZ" = ( +/obj/effect/floor_decal/industrial/outline/grey, +/obj/random/dirt_75, +/turf/simulated/floor, +/area/horizon/maintenance/deck_3/aft/starboard) +"gRc" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/item/storage/box/fancy/tray/machinist, -/obj/structure/table/standard, -/turf/simulated/floor/tiled/white, -/area/operations/lower/machinist/surgicalbay) -"gRa" = ( /obj/structure/cable/green{ icon_state = "4-8" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 +/obj/effect/floor_decal/corner/brown{ + dir = 9 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lime{ +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_2/starboard) +"gRd" = ( +/obj/structure/bed/stool/chair/padded/brown, +/obj/effect/floor_decal/corner/dark_green{ dir = 5 }, -/obj/machinery/alarm/north, -/turf/simulated/floor/tiled{ - name = "cooled floor"; - temperature = 278 - }, -/area/medical/morgue/lower) -"gRf" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/orange{ - icon_state = "1-4" - }, -/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 = "0-4" }, +/obj/machinery/power/apc/north, +/turf/simulated/floor/tiled, +/area/horizon/engineering/hallway/fore) +"gRg" = ( +/obj/structure/window/shuttle/scc_space_ship/cardinal, +/obj/structure/grille, +/obj/machinery/door/firedoor, /obj/structure/cable/green{ icon_state = "1-2" }, -/turf/simulated/floor/tiled, -/area/hallway/engineering) -"gRk" = ( -/obj/structure/bed/stool/chair/shuttle{ - dir = 4 +/obj/structure/cable/green{ + icon_state = "0-2" }, -/obj/machinery/light{ - dir = 1 +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id = "bridge blast"; + name = "Bridge Blast Doors"; + opacity = 0 }, -/turf/simulated/floor/shuttle/dark_blue, -/area/shuttle/escape_pod/pod1) -"gRl" = ( -/obj/structure/sign/flag/scc{ - pixel_y = -32 +/obj/machinery/door/blast/shutters{ + dir = 4; + id = "shutters_deck3_captain"; + name = "Safety Shutter" }, -/obj/machinery/atmospherics/pipe/simple/hidden/universal{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/camera/network/command{ - c_tag = "Bridge - CIC"; - dir = 1 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/dark/full, -/area/bridge/aibunker) +/turf/simulated/floor/plating, +/area/horizon/command/heads/captain) "gRn" = ( /turf/simulated/wall/shuttle/unique/ert{ icon_state = "8,0" }, /area/centcom/specops) -"gRr" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 8 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/horizon/bar) "gRu" = ( /obj/structure/bonfire/light_up, /turf/simulated/floor/beach/sand{ icon_state = "desert" }, /area/centcom/shared_dream) -"gRw" = ( -/obj/machinery/atmospherics/valve/digital{ - dir = 4; - name = "Thermal Relief Valve" +"gRv" = ( +/obj/structure/cable/green{ + icon_state = "4-8" }, -/obj/effect/floor_decal/industrial/outline/red, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"gRA" = ( -/obj/machinery/light/small/emergency{ - dir = 8 +/obj/structure/cable{ + icon_state = "1-2" }, -/obj/effect/map_effect/marker/airlock/docking{ - landmark_tag = "nav_horizon_dock_deck_3_port_4"; - master_tag = "airlock_horizon_dock_deck_3_port_4"; - name = "airlock_horizon_dock_deck_3_port_4" +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/corner/dark_green, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_3/central) +"gRy" = ( +/obj/effect/floor_decal/corner/red/diagonal, +/obj/structure/closet/walllocker/emerglocker/west, +/obj/effect/floor_decal/industrial/outline/emergency_closet, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 }, -/turf/simulated/floor/plating, -/area/horizon/hallway/deck_three/primary/port/docks) +/turf/simulated/floor/tiled, +/area/horizon/maintenance/deck_2/research) "gRB" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -48671,51 +48364,42 @@ }, /turf/simulated/floor/tiled, /area/horizon/security/brig) -"gRD" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 5 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/effect/floor_decal/industrial/loading/yellow, -/turf/simulated/floor/tiled, -/area/horizon/stairwell/central) -"gRG" = ( -/turf/simulated/wall/shuttle/scc_space_ship/cardinal, -/area/horizon/crew_quarters/lounge/bar) +"gRE" = ( +/obj/structure/window/shuttle/scc_space_ship, +/obj/structure/grille, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/horizon/engineering/atmos) "gRH" = ( /obj/effect/shuttle_landmark/emergency/interim, /turf/space/transit/north, /area/template_noop) -"gRI" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/turf/simulated/floor/tiled/dark, -/area/horizon/grauwolf) -"gRJ" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_atmos{ - dir = 1; - name = "Atmospherics Locker Room"; - req_access = list(24) - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/full, -/area/engineering/atmos/storage) +"gRK" = ( +/turf/simulated/wall, +/area/horizon/maintenance/deck_1/operations/starboard) "gRN" = ( /obj/effect/map_effect/window_spawner/full/reinforced/indestructible, /turf/unsimulated/floor{ icon_state = "plating" }, /area/centcom/spawning) +"gRO" = ( +/obj/structure/closet/cabinet, +/obj/item/clothing/suit/carp_costume, +/obj/item/clothing/suit/lobster_costume, +/obj/item/clothing/suit/jester_costume, +/obj/item/clothing/suit/roman_costume, +/obj/item/clothing/suit/snowman_costume, +/obj/item/clothing/suit/sumo_costume, +/obj/item/clothing/suit/bee_costume, +/obj/random/arcade, +/obj/random/arcade, +/obj/random/arcade, +/obj/structure/platform{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/horizon/service/bar) "gRQ" = ( /obj/structure/window/reinforced/crescent{ dir = 1 @@ -48727,18 +48411,11 @@ /obj/structure/flora/ausbushes/ppflowers, /turf/simulated/floor/grass/no_edge, /area/centcom/evac) -"gRT" = ( -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 8 - }, -/obj/structure/sign/radiation{ - pixel_y = 32 - }, -/obj/machinery/light/spot{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/engine_room/rust) +"gRV" = ( +/obj/effect/floor_decal/spline/fancy/wood/full, +/obj/random/pottedplant, +/turf/simulated/floor/grass/no_edge, +/area/horizon/hallway/primary/deck_1/central) "gRW" = ( /obj/structure/flora/tree/pine, /obj/effect/floor_decal/spline/plain{ @@ -48746,37 +48423,25 @@ }, /turf/simulated/floor/exoplanet/snow, /area/centcom/shared_dream) -"gRY" = ( -/obj/structure/lattice/catwalk, -/obj/machinery/camera/network/service{ - c_tag = "Service - Hydroponics 1" - }, -/obj/structure/closet/walllocker/medical/firstaid{ - pixel_y = 32 - }, -/turf/simulated/open, -/area/horizon/hydroponics) -"gSd" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 +"gRX" = ( +/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/rnd/conference) +"gSb" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 }, /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/machinery/door/airlock/glass_mining{ - dir = 4; - name = "Mail Sorting"; - req_one_access = list(26,31,67) +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/full, -/area/operations/mail_room) +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/hallway/upper) "gSe" = ( /obj/effect/floor_decal/corner/dark_blue{ dir = 9 @@ -48813,32 +48478,6 @@ icon_state = "dark_preview" }, /area/centcom/specops) -"gSp" = ( -/obj/effect/floor_decal/industrial/outline/service, -/obj/machinery/camera/network/service{ - c_tag = "Service - Library"; - dir = 1 - }, -/obj/machinery/vending/battlemonsters, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/library) -"gSt" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/railing/mapped{ - dir = 8 - }, -/turf/simulated/floor/tiled/full, -/area/hangar/intrepid) -"gSu" = ( -/obj/structure/foamedmetal, -/obj/structure/shuttle_part/scc_space_ship{ - icon_state = "d2-1" - }, -/turf/simulated/floor/plating, -/area/operations/lobby) "gSv" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/floor_decal/industrial/warning/corner{ @@ -48851,27 +48490,57 @@ /obj/item/clothing/head/helmet/tank/legion, /turf/unsimulated/floor, /area/centcom/legion/hangar5) -"gSy" = ( -/obj/effect/map_effect/window_spawner/full/reinforced/grille/firedoor, -/obj/machinery/door/blast/regular/open{ - dir = 8; - id = "hangarlockdown"; - name = "Hangar Lockdown" - }, -/turf/simulated/floor/tiled/dark/full, -/area/hangar/intrepid) -"gSF" = ( +"gSx" = ( +/obj/structure/disposalpipe/segment, /obj/effect/floor_decal/industrial/warning{ - dir = 1 + dir = 4 }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/operations/starboard/far) +"gSA" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/engine_room) +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/main/port) +"gSB" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/horizon/command/bridge/cciaroom) +"gSC" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/loading/yellow{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/obj/machinery/door/window, +/turf/simulated/floor/tiled/freezer{ + name = "cooled tiles"; + temperature = 253.15 + }, +/area/horizon/service/kitchen/freezer) "gSK" = ( /obj/effect/decal/cleanable/dirt, /turf/unsimulated/wall/fakepdoor{ @@ -48881,83 +48550,50 @@ permit_ao = 0 }, /area/antag/raider) -"gSR" = ( -/obj/structure/lattice/catwalk, -/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers{ +"gSV" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance{ + dir = 1; + name = "Recharging Station Maintenance"; + req_one_access = list(12) + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/full, +/area/horizon/crew/chargebay) +"gSW" = ( +/obj/machinery/door/firedoor, +/obj/effect/floor_decal/corner/dark_green{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/full, +/area/horizon/hallway/primary/deck_3/central) +"gTc" = ( +/obj/machinery/atmospherics/portables_connector{ dir = 1 }, -/obj/machinery/atmospherics/pipe/zpipe/down/supply{ - dir = 1 +/obj/machinery/portable_atmospherics/canister/air/airlock, +/obj/structure/window/reinforced{ + dir = 4 }, -/obj/structure/cable{ - icon_state = "11-8" - }, -/turf/simulated/open, -/area/maintenance/wing/starboard) -"gST" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/reinforced, -/area/rnd/xenobiology) -"gSU" = ( -/obj/effect/floor_decal/corner/dark_blue/diagonal, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/intrepid/flight_deck) -"gSY" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/effect/floor_decal/spline/plain, -/turf/simulated/floor/carpet/rubber, -/area/engineering/engine_monitoring) +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/hangar/starboard) "gTd" = ( /obj/effect/floor_decal/corner/white{ dir = 5 }, /turf/simulated/floor/holofloor/tiled, /area/horizon/holodeck/source_battlemonsters) -"gTg" = ( -/obj/effect/floor_decal/industrial/warning/full, -/obj/machinery/mech_recharger, -/turf/simulated/floor/tiled, -/area/medical/paramedic) -"gTi" = ( -/obj/effect/floor_decal/corner_wide/purple{ - dir = 6 - }, -/obj/effect/floor_decal/corner_wide/purple{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/sign/a, -/turf/simulated/floor/tiled/white, -/area/rnd/xenoarch_atrium) -"gTl" = ( -/obj/effect/floor_decal/corner/black{ - dir = 9 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 +"gTm" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/yellow{ + dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/hangar/intrepid) -"gTn" = ( -/obj/machinery/iv_drip, -/obj/effect/floor_decal/corner_wide/green/full{ - dir = 4 - }, -/obj/machinery/firealarm/east, -/turf/simulated/floor/tiled/white, -/area/medical/equipment) +/area/horizon/engineering/atmos) "gTo" = ( /obj/effect/floor_decal/industrial/loading/yellow{ dir = 1 @@ -48968,70 +48604,10 @@ }, /turf/unsimulated/floor, /area/antag/mercenary) -"gTp" = ( -/obj/structure/closet/secure_closet/refrigerator/standard, -/obj/item/storage/box/fancy/egg_box, -/obj/item/storage/box/fancy/egg_box, -/obj/item/reagent_containers/food/drinks/carton/milk, -/obj/item/reagent_containers/food/drinks/carton/milk, -/obj/item/reagent_containers/food/drinks/carton/soymilk, -/obj/item/reagent_containers/food/drinks/carton/soymilk, -/obj/machinery/firealarm/east, -/obj/effect/floor_decal/industrial/outline/grey, -/obj/item/reagent_containers/food/drinks/carton/cream, -/obj/item/reagent_containers/food/drinks/carton/cream, -/obj/item/reagent_containers/food/condiment/soysauce, -/obj/item/reagent_containers/food/condiment/soysauce, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/kitchen) "gTq" = ( /obj/machinery/artifact_scanpad, /turf/simulated/floor/bluegrid, -/area/outpost/research/anomaly_harvest) -"gTt" = ( -/obj/structure/cable/green{ - icon_state = "2-4" - }, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/obj/structure/closet/crate/freezer/rations, -/obj/machinery/power/apc/super/critical/west, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor, -/area/bridge/aibunker) -"gTv" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/central) -"gTw" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/substation/research) -"gTx" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 10 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/security/checkpoint) +/area/horizon/rnd/xenoarch/anomaly_harvest) "gTH" = ( /obj/effect/floor_decal/corner/red{ dir = 9 @@ -49045,6 +48621,23 @@ }, /turf/unsimulated/floor, /area/centcom/evac) +"gTI" = ( +/obj/structure/lattice, +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/structure/railing/mapped{ + dir = 8 + }, +/turf/simulated/open, +/area/horizon/maintenance/deck_2/wing/port) +"gTJ" = ( +/obj/effect/floor_decal/spline/plain, +/obj/effect/floor_decal/spline/plain{ + dir = 1 + }, +/turf/simulated/floor/carpet/rubber, +/area/horizon/tcommsat/chamber) "gTL" = ( /obj/structure/table/wood, /obj/item/device/flashlight/lamp/green{ @@ -49052,59 +48645,46 @@ }, /turf/simulated/floor/carpet, /area/merchant_station) -"gTM" = ( -/obj/machinery/light/small{ - dir = 4 +"gTO" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 }, -/obj/structure/extinguisher_cabinet/east, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 6 +/obj/effect/floor_decal/corner_wide/green{ + dir = 10 }, -/turf/simulated/floor/tiled/dark, -/area/horizon/grauwolf) -"gTP" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/horizon/crew_quarters/lounge/bar) -"gTU" = ( -/obj/structure/flora/ausbushes/sparsegrass, -/turf/simulated/floor/grass/no_edge, -/area/horizon/hydroponics/lower) +/obj/structure/railing/mapped, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/hallway/upper) "gTY" = ( /obj/effect/shuttle_landmark/research/interim, /turf/space/transit/north, /area/template_noop) -"gUb" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 +"gUf" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Xenobiology Maintenance"; + req_access = list(55) }, +/turf/simulated/floor/tiled/dark, +/area/horizon/rnd/xenobiology) +"gUi" = ( /obj/structure/cable/green{ icon_state = "4-8" }, -/turf/simulated/floor/tiled/dark, -/area/horizon/grauwolf) -"gUl" = ( -/obj/structure/cable{ - icon_state = "1-2" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/engineering{ - dir = 1; - name = "Deck 1 Research Substation"; - req_one_access = list(11,24) +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/obj/structure/lattice/catwalk/indoor/grate, /turf/simulated/floor/plating, -/area/maintenance/substation/research_sublevel) -"gUn" = ( -/obj/machinery/air_sensor{ - frequency = 1443; - id_tag = "turbine_sensor"; - output = 31 - }, -/turf/simulated/floor/reinforced/airless, -/area/engineering/engine_room/turbine) +/area/horizon/operations/lobby) "gUr" = ( /obj/structure/sign/emergency/exit{ dir = 8; @@ -49118,67 +48698,41 @@ }, /turf/unsimulated/floor, /area/centcom/legion) -"gUu" = ( -/obj/effect/floor_decal/corner/green/diagonal, -/turf/simulated/floor/tiled/white, -/area/medical/ward/isolation) -"gUv" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/reagent_dispensers/fueltank, -/turf/simulated/floor/tiled/dark/full, -/area/maintenance/wing/cargo_compartment) -"gUw" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable/green{ - icon_state = "1-4" +"gUA" = ( +/obj/structure/tank_wall/oxygen{ + density = 0; + icon_state = "o2-5"; + opacity = 0 }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled, -/area/bridge/upperdeck) -"gUE" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/firealarm/south, -/obj/effect/floor_decal/corner/yellow/diagonal, -/obj/effect/floor_decal/industrial/warning/corner{ +/turf/simulated/floor/reinforced/oxygen, +/area/horizon/engineering/atmos/air) +"gUR" = ( +/obj/effect/floor_decal/corner/green{ dir = 4 }, -/obj/structure/disposalpipe/segment{ +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/gen_treatment) +"gUS" = ( +/obj/machinery/atmospherics/binary/pump{ dir = 8; - icon_state = "pipe-c" + name = "Distro to Trays"; + use_power = 1 }, -/turf/simulated/floor/tiled, -/area/hallway/engineering) -"gUG" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/vending/cola, /turf/simulated/floor/tiled/dark, -/area/operations/lobby) -"gUH" = ( -/obj/effect/floor_decal/corner/red/diagonal, -/obj/structure/reagent_dispensers/extinguisher, -/obj/effect/floor_decal/industrial/outline/red, -/turf/simulated/floor/tiled, -/area/maintenance/wing/port) -"gUM" = ( -/turf/simulated/wall, -/area/maintenance/wing/cargo_compartment) -"gUO" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 +/area/horizon/rnd/xenobiology/xenoflora) +"gUV" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/closet/crate, +/obj/random/loot, +/obj/random/condiment, +/obj/machinery/light/small/emergency{ + dir = 8 }, -/obj/random/contraband, -/turf/simulated/floor/tiled, -/area/maintenance/wing/starboard/far) -"gUW" = ( -/obj/effect/floor_decal/industrial/hatch/red, -/obj/effect/floor_decal/industrial/warning{ - dir = 9 - }, -/obj/item/hullbeacon/red, -/turf/simulated/floor/reinforced/airless, -/area/engineering/engine_room/rust) +/turf/simulated/floor/tiled/dark/full, +/area/horizon/maintenance/deck_2/cargo_compartment) "gUX" = ( /obj/machinery/recharger/wallcharger{ pixel_x = -1; @@ -49195,6 +48749,16 @@ /obj/effect/floor_decal/corner/black/diagonal, /turf/simulated/floor/tiled/dark, /area/shuttle/burglar) +"gVa" = ( +/obj/effect/floor_decal/corner/brown/full{ + dir = 4 + }, +/obj/machinery/vending/zora, +/obj/structure/sign/directions/dock{ + pixel_y = -32 + }, +/turf/simulated/floor/tiled, +/area/horizon/operations/lobby) "gVb" = ( /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -49211,58 +48775,34 @@ }, /turf/unsimulated/floor/plating, /area/centcom/legion/hangar5) -"gVf" = ( -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 6 - }, -/turf/simulated/floor, -/area/turret_protected/ai_upload_foyer) "gVg" = ( /turf/simulated/floor/exoplanet/ice, /area/centcom/shared_dream) -"gVm" = ( -/obj/effect/floor_decal/industrial/warning{ +"gVz" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ dir = 1 }, -/obj/machinery/atmospherics/pipe/simple/visible/cyan, -/turf/simulated/floor/plating, -/area/engineering/bluespace_drive) -"gVq" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/machinery/sleeper{ - dir = 8 - }, -/obj/effect/floor_decal/corner/beige{ - dir = 10 - }, -/turf/simulated/floor/tiled/dark, -/area/medical/gen_treatment) -"gVv" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 5 - }, -/obj/structure/bed/stool/chair/wood{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/horizon/cafeteria) -"gVx" = ( -/obj/machinery/crusher_base, -/turf/simulated/floor/plating, -/area/horizon/custodial/disposals) +/obj/machinery/portable_atmospherics/hydroponics/soil, +/turf/simulated/floor/grass/no_edge, +/area/horizon/rnd/xenobiology/xenoflora) +"gVA" = ( +/turf/simulated/wall/r_wall, +/area/horizon/engineering/smes) "gVB" = ( /obj/effect/floor_decal/industrial/warning{ dir = 1 }, /obj/effect/map_effect/map_helper/ruler_tiles_3, /turf/simulated/floor/reinforced/airless, -/area/template_noop) +/area/horizon/exterior) +"gVC" = ( +/obj/effect/floor_decal/industrial/warning/full, +/obj/machinery/mech_recharger, +/turf/simulated/floor/tiled, +/area/horizon/medical/paramedic) "gVD" = ( /obj/machinery/door/blast/regular/open{ dir = 4; @@ -49271,19 +48811,16 @@ /obj/effect/map_effect/window_spawner/full/shuttle/raider, /turf/simulated/floor/plating, /area/shuttle/skipjack) -"gVE" = ( -/obj/structure/railing/mapped{ +"gVF" = ( +/obj/effect/floor_decal/corner/grey/diagonal, +/obj/effect/floor_decal/spline/plain{ dir = 1 }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/engine_room) -"gVG" = ( -/obj/effect/floor_decal/spline/fancy/wood/full, -/obj/structure/flora/ausbushes/ppflowers, -/obj/structure/flora/ausbushes/fernybush, -/turf/simulated/floor/grass/no_edge, -/area/hallway/primary/central_one) +/obj/machinery/media/jukebox/audioconsole/wall{ + pixel_y = -32 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/service/kitchen) "gVH" = ( /obj/structure/table/stone/marble, /obj/random/gift{ @@ -49301,39 +48838,23 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/security/meeting_room) -"gVL" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/engine_monitoring/rust) -"gVO" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +"gVM" = ( /obj/structure/cable/green{ icon_state = "1-2" }, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/central) +/obj/machinery/door/airlock/maintenance{ + dir = 1; + name = "Hydroponics Maintenance"; + req_access = list(35) + }, +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/full, +/area/horizon/service/hydroponics) "gVP" = ( /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) "gVR" = ( /obj/effect/floor_decal/industrial/warning{ dir = 4 @@ -49412,43 +48933,19 @@ }, /turf/unsimulated/floor, /area/centcom/legion) -"gWf" = ( -/obj/structure/closet/secure_closet/bridge_crew, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 6 +"gWb" = ( +/turf/simulated/floor/tiled/dark/full, +/area/horizon/operations/machinist) +"gWo" = ( +/obj/effect/floor_decal/corner_wide/yellow{ + dir = 10 }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 +/obj/structure/cable/green{ + icon_state = "4-8" }, -/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/firealarm/south, /turf/simulated/floor/tiled, -/area/bridge/bridge_crew) -"gWh" = ( -/obj/structure/sink/kitchen{ - dir = 4; - name = "sink"; - pixel_x = -21 - }, -/obj/machinery/food_cart, -/turf/simulated/floor/tiled/freezer{ - name = "cooled tiles"; - temperature = 253.15 - }, -/area/horizon/kitchen/freezer) -"gWj" = ( -/obj/structure/cable/orange{ - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/engineering/bluespace_drive) -"gWp" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/table/standard{ - no_cargo = 1 - }, -/obj/random/plushie, -/turf/simulated/floor/tiled, -/area/maintenance/wing/starboard/deck1) +/area/horizon/engineering/hallway/aft) "gWt" = ( /obj/machinery/door/airlock/hatch{ dir = 1; @@ -49474,34 +48971,17 @@ /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/dark, /area/shuttle/legion) -"gWv" = ( +"gWx" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/effect/floor_decal/corner_wide/yellow{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/horizon/engineering/bluespace_drive) +"gWz" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/engineering) -"gWC" = ( -/obj/effect/floor_decal/corner_wide/purple{ - dir = 10 - }, -/obj/effect/floor_decal/corner_wide/purple{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/platform{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenoarch_atrium) +/turf/simulated/floor/tiled/dark/airless, +/area/horizon/exterior) "gWE" = ( /obj/machinery/door/firedoor, /obj/structure/cable/green{ @@ -49532,75 +49012,74 @@ /obj/structure/window/shuttle/scc_space_ship, /turf/simulated/floor/plating, /area/horizon/security/brig) -"gWP" = ( -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 6 - }, -/turf/simulated/floor/plating, -/area/maintenance/wing/port/far) -"gWT" = ( -/obj/effect/floor_decal/spline/fancy/wood/cee{ +"gWK" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/flora/ausbushes/brflowers, -/obj/structure/railing/mapped, -/turf/simulated/floor/grass/no_edge, -/area/horizon/hallway/deck_three/primary/port) -"gWY" = ( /obj/machinery/door/airlock/maintenance{ - dir = 1; - name = "Security Maintenance"; - req_access = list(63) + dir = 4; + req_access = list(48) }, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/operations/mining_main/eva) +"gWL" = ( +/obj/structure/grille, /obj/machinery/door/firedoor, -/obj/machinery/door/blast/regular{ - density = 0; +/obj/structure/window/shuttle/scc_space_ship/cardinal, +/obj/structure/cable/green, +/obj/machinery/door/blast/regular/open{ + dir = 2; + id = "shutters_deck3_longbow"; + name = "Safety Blast Door" + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/weapons/longbow) +"gWN" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 10 + }, +/obj/machinery/firealarm/south, +/turf/simulated/floor/tiled, +/area/horizon/operations/lobby) +"gWS" = ( +/obj/structure/bed/stool/chair/padded/red{ + dir = 8 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/carpet/red, +/area/horizon/service/dining_hall) +"gWX" = ( +/obj/item/modular_computer/console/preset/civilian{ dir = 8; - icon_state = "pdoor0"; - id = "Security Lockdown"; - name = "Security Blast Door"; - opacity = 0 + pixel_x = 5 }, -/turf/simulated/floor/tiled/full, -/area/maintenance/security_port) -"gWZ" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 5 +/obj/machinery/embedded_controller/radio/simple_docking_controller/escape_pod{ + frequency = 1380; + id_tag = "escape_pod_2"; + pixel_x = -9; + pixel_y = 25; + tag_door = "escape_pod_2_hatch" }, -/turf/simulated/floor/plating, -/area/hangar/auxiliary) -"gXb" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/table/steel, -/obj/item/device/radio{ - pixel_x = 6; - pixel_y = 5 +/turf/simulated/floor/shuttle/dark_blue, +/area/horizon/shuttle/escape_pod/pod1) +"gXd" = ( +/obj/effect/floor_decal/corner_wide/green{ + dir = 10 }, -/obj/item/device/radio{ - pixel_x = -7; - pixel_y = 5 +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 }, -/obj/item/device/radio{ - pixel_x = -7; - pixel_y = 5 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 }, -/obj/item/device/radio{ - pixel_x = 6; - pixel_y = 5 - }, -/obj/item/device/radio{ - pixel_x = -7; - pixel_y = 5 - }, -/obj/item/device/radio{ - pixel_x = 6; - pixel_y = 5 - }, -/turf/simulated/floor/plating, -/area/hangar/intrepid) +/obj/structure/closet/secure_closet/personal/patient, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/ward) "gXe" = ( /obj/structure/railing/mapped{ name = "adjusted railing" @@ -49610,17 +49089,51 @@ }, /turf/unsimulated/floor/wood, /area/centcom/evac) -"gXz" = ( -/obj/structure/reagent_dispensers/lube, -/obj/machinery/light/small{ +"gXl" = ( +/obj/structure/bookcase/libraryspawn/religion, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/service/library) +"gXn" = ( +/turf/simulated/floor/tiled, +/area/horizon/operations/machinist) +"gXu" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/simulated/floor/plating, -/area/engineering/storage/lower) -"gXC" = ( -/obj/structure/lattice/catwalk/indoor/grate/damaged, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard) +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/horizon/operations/lobby) +"gXv" = ( +/turf/simulated/floor/tiled/dark, +/area/horizon/storage/eva) +"gXx" = ( +/obj/machinery/camera/network/engineering{ + c_tag = "Engineering - C-Goliath Drive Room 1" + }, +/obj/effect/floor_decal/corner_wide/yellow{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/horizon/engineering/bluespace_drive) +"gXD" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 6 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/weapons/longbow) +"gXE" = ( +/obj/machinery/shieldgen, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/storage_hard) "gXG" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 1 @@ -49628,38 +49141,46 @@ /obj/structure/bed/stool/bar/padded/red, /turf/unsimulated/floor/wood, /area/centcom/bar) -"gXH" = ( -/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, -/obj/machinery/door/blast/shutters/open{ - dir = 4; - id = "shutters_deck2_eng_frontdesk"; - name = "Engineering Front Desk Shutter" +"gXM" = ( +/obj/effect/floor_decal/corner/dark_blue/full{ + dir = 4 }, +/obj/structure/table/rack{ + dir = 8 + }, +/obj/item/device/suit_cooling_unit, +/obj/item/device/suit_cooling_unit, +/obj/item/device/suit_cooling_unit, +/obj/item/device/suit_cooling_unit, /turf/simulated/floor/tiled/dark/full, -/area/engineering/lobby) -"gXI" = ( -/obj/machinery/door/blast/shutters{ +/area/horizon/storage/eva) +"gXQ" = ( +/obj/structure/window/shuttle/scc_space_ship, +/obj/structure/grille, +/obj/machinery/door/blast/regular{ density = 0; - dir = 2; - icon_state = "shutter0"; - id = "LCKDshutters"; - name = "MedBay Lockdown Shutters"; + icon_state = "pdoor0"; + id = "bridge blast"; + name = "Bridge Blast Doors"; opacity = 0 }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/full, -/area/medical/reception) -"gXJ" = ( -/turf/simulated/wall, -/area/engineering/locker_room) -"gXO" = ( -/obj/machinery/computer/general_air_control/large_tank_control/terminal{ - input_tag = "fusion_injector_air"; - name = "INDRA Chamber Monitor"; - sensors = list("fusion_sensor"="INDRA Chamber") +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + icon_state = "1-2" }, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/engine_monitoring/rust) +/obj/structure/cable/green, +/obj/machinery/door/blast/shutters/open{ + dir = 4; + id = "shutters_deck3_bridgesafety"; + name = "Safety Shutter" + }, +/obj/machinery/door/blast/shutters/open{ + dir = 4; + id = "conferencesafetyshutters"; + name = "Safety Shutter" + }, +/turf/simulated/floor/plating, +/area/horizon/command/bridge/meeting_room) "gXR" = ( /obj/structure/table/rack, /obj/item/rig/retro/equipped, @@ -49678,15 +49199,22 @@ }, /turf/unsimulated/floor, /area/centcom/legion/hangar5) -"gXZ" = ( -/obj/structure/bed/padded, -/obj/item/bedsheet/black, -/obj/structure/railing/mapped{ - dir = 1 +"gXU" = ( +/obj/structure/ladder/up{ + pixel_y = 13 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 }, /obj/structure/lattice/catwalk/indoor/grate/dark, /turf/simulated/floor/plating, -/area/maintenance/wing/starboard/far) +/area/horizon/maintenance/deck_1/operations/starboard/far) "gYb" = ( /obj/structure/table/wood/gamblingtable, /obj/item/flame/lighter/random{ @@ -49699,46 +49227,80 @@ icon_state = "wood" }, /area/centcom/legion/hangar5) -"gYc" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/closet/firecloset{ - anchored = 1; - canbemoved = 1 +"gYf" = ( +/obj/structure/table/wood, +/obj/item/storage/box/fancy/cigarettes, +/obj/machinery/power/outlet{ + pixel_y = 4; + pixel_x = 9 }, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/engine_room) -"gYd" = ( -/obj/effect/floor_decal/corner/mauve{ - dir = 10 +/turf/simulated/floor/carpet/art, +/area/horizon/crew/lounge) +"gYk" = ( +/obj/structure/window/reinforced{ + dir = 8 }, -/obj/structure/table/standard, -/obj/item/flora/pottedplant_small, -/turf/simulated/floor/tiled/white, -/area/rnd/lab) +/obj/structure/window/reinforced, +/obj/random/dirt_75, +/turf/simulated/floor/carpet/rubber, +/area/horizon/maintenance/deck_2/wing/starboard/nacelle) +"gYl" = ( +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/red, +/turf/simulated/floor/tiled/dark, +/area/horizon/service/custodial/disposals/deck_1) "gYn" = ( /obj/effect/floor_decal/industrial/warning{ dir = 5 }, /turf/unsimulated/floor, /area/antag/ninja) -"gYu" = ( -/obj/structure/bed/stool/chair/padded/beige{ - dir = 1 +"gYo" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 10 }, -/turf/simulated/floor/wood, -/area/bridge/minibar) -"gYC" = ( +/turf/simulated/floor/tiled, +/area/horizon/command/bridge/upperdeck) +"gYt" = ( /obj/effect/floor_decal/corner/dark_green{ dir = 10 }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 }, +/obj/structure/railing/mapped, /turf/simulated/floor/tiled, -/area/engineering/lobby) -"gYL" = ( -/turf/simulated/wall/shuttle/scc_space_ship/cardinal, -/area/rnd/xenobiology/xenoflora) +/area/horizon/hallway/primary/deck_2/central) +"gYD" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/structure/tank_wall/oxygen{ + icon_state = "o2-16" + }, +/turf/simulated/floor/plating, +/area/horizon/engineering/atmos/air) +"gYG" = ( +/obj/effect/floor_decal/corner_wide/blue/diagonal, +/obj/effect/floor_decal/corner_wide/yellow{ + dir = 4 + }, +/obj/effect/floor_decal/spline/plain{ + dir = 4 + }, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/machinery/disposal/small/south, +/turf/simulated/floor/tiled, +/area/horizon/engineering/atmos/storage) +"gYK" = ( +/obj/structure/cable/green, +/obj/effect/map_effect/window_spawner/full/reinforced/polarized/grille/firedoor{ + id = "bridgeconf" + }, +/turf/simulated/floor, +/area/horizon/command/bridge/meeting_room) "gYM" = ( /obj/machinery/light/small{ brightness_power = 0.5; @@ -49754,20 +49316,21 @@ }, /turf/unsimulated/floor, /area/centcom/spawning) -"gYN" = ( -/obj/effect/floor_decal/industrial/outline/research, -/obj/machinery/suit_cycler/science/prepared, -/turf/simulated/floor/tiled/dark/full, -/area/storage/eva) -"gYQ" = ( +"gYT" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 10 + }, +/obj/structure/sign/greencross/small{ + pixel_y = -32 + }, +/turf/simulated/floor/tiled, +/area/horizon/engineering/hallway/fore) +"gYW" = ( /obj/effect/floor_decal/industrial/warning{ - dir = 1 + dir = 5 }, -/obj/structure/tank_wall/nitrous_oxide{ - icon_state = "n2o2" - }, -/turf/simulated/floor/plating, -/area/engineering/atmos/air) +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/reactor/indra/mainchamber) "gYX" = ( /obj/structure/shuttle_part/mercenary/small{ icon_state = "7,12" @@ -49801,6 +49364,82 @@ }, /turf/unsimulated/floor, /area/centcom/legion/hangar5) +"gZd" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_3/starboard/docks) +"gZf" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 6 + }, +/obj/machinery/alarm/east, +/turf/simulated/floor/tiled/dark, +/area/horizon/command/teleporter) +"gZp" = ( +/obj/machinery/power/radial_floodlight, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/camera/network/engineering{ + c_tag = "Engineering - Hard Storage"; + dir = 4 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/storage_hard) +"gZs" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 10 + }, +/obj/machinery/light, +/turf/simulated/floor/tiled, +/area/horizon/rnd/hallway) +"gZu" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled, +/area/horizon/operations/warehouse) +"gZw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/corner/green{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/operations/break_room) +"gZx" = ( +/obj/effect/floor_decal/corner/green/diagonal, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/power/apc/low/west, +/obj/structure/cable/green, +/obj/structure/closet/secure_closet/personal/patient, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/ward/isolation) +"gZy" = ( +/obj/effect/map_effect/window_spawner/full/reinforced/polarized/grille/firedoor{ + id = "consularB" + }, +/obj/structure/cable/green, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/turf/simulated/floor, +/area/horizon/repoffice/consular_two) +"gZz" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/visible/supply{ + dir = 8 + }, +/obj/structure/lattice/catwalk/indoor, +/turf/simulated/floor/plating, +/area/horizon/engineering/atmos/air) "gZA" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/fake_object{ @@ -49815,6 +49454,21 @@ "gZB" = ( /turf/simulated/wall/shuttle/scc_space_ship/cardinal, /area/horizon/security/autopsy_laboratory) +"gZC" = ( +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/structure/railing/mapped{ + dir = 1 + }, +/turf/simulated/open, +/area/horizon/service/hydroponics) +"gZD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/random/junk, +/obj/machinery/atmospherics/pipe/manifold4w/hidden, +/turf/simulated/floor, +/area/horizon/maintenance/deck_3/bridge) "gZF" = ( /obj/effect/floor_decal/corner/paleblue{ dir = 6 @@ -49830,41 +49484,72 @@ }, /turf/simulated/floor/holofloor/tiled, /area/horizon/holodeck/source_boxingcourt) -"gZL" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel, +"gZM" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 5 + }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" + icon_state = "1-4" }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 +/turf/simulated/floor/tiled, +/area/horizon/rnd/eva) +"gZV" = ( +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/structure/cable/green{ + icon_state = "2-8" }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/intrepid/port_storage) -"gZP" = ( /obj/structure/cable/green{ icon_state = "4-8" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/obj/structure/disposalpipe/segment{ + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 +/obj/machinery/atmospherics/pipe/simple/hidden/aux{ + dir = 8 }, -/obj/effect/floor_decal/corner/brown{ +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/atmospherics/pipe/simple/hidden/green{ dir = 5 }, -/obj/item/device/radio/intercom/north, +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 10 + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/main/interstitial) +"gZW" = ( +/obj/effect/floor_decal/industrial/outline/operations, +/obj/structure/closet/wardrobe/atmospherics_yellow, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/atmos/storage) +"gZY" = ( +/obj/effect/floor_decal/corner_wide/yellow{ + dir = 10 + }, /obj/structure/cable/green{ - icon_state = "2-4" + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + icon_state = "2-8" }, /turf/simulated/floor/tiled, -/area/hangar/operations) +/area/horizon/engineering/hallway/aft) "hab" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -49874,26 +49559,62 @@ }, /turf/simulated/floor/tiled, /area/horizon/security/lobby) -"had" = ( -/obj/structure/morgue, -/turf/simulated/floor/tiled/freezer{ - name = "cooled tiles"; - temperature = 278.15 +"hac" = ( +/obj/structure/sign/securearea{ + pixel_y = 32 }, -/area/medical/morgue/lower) -"haj" = ( -/obj/structure/cable/green{ - icon_state = "2-8" +/obj/structure/lattice/catwalk, +/obj/item/hullbeacon/red, +/turf/space/dynamic, +/area/horizon/exterior) +"hak" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 5 }, -/obj/machinery/alarm/east, -/turf/simulated/floor/plating, -/area/maintenance/substation/research_sublevel) -"haq" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ +/obj/machinery/disposal/small/west, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/horizon/rnd/hallway/secondary) +"hap" = ( +/obj/machinery/light/small{ dir = 4 }, +/obj/structure/sign/flag/scc{ + pixel_x = 32 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/effect/floor_decal/industrial/warning/corner, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/button/remote/blast_door{ + dir = 1; + id = "ai_upload"; + name = "AI Upload Blast Door"; + pixel_x = 2; + pixel_y = 30; + req_access = list(16) + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/command/bridge/aibunker) +"har" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 9 + }, +/obj/item/device/radio/intercom/west, +/obj/structure/table/steel, +/obj/item/storage/box/fancy/donut, /turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology/dissection) +/area/horizon/security/checkpoint2) +"hav" = ( +/obj/structure/sign/securearea{ + pixel_y = 32 + }, +/obj/structure/lattice/catwalk, +/turf/space/dynamic, +/area/horizon/exterior) "haw" = ( /obj/structure/window/reinforced/crescent{ dir = 8 @@ -49919,86 +49640,53 @@ }, /turf/simulated/floor/tiled/dark, /area/centcom/spawning) -"haD" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 9 - }, -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/structure/bed/handrail{ +"hay" = ( +/obj/machinery/light, +/obj/structure/bed/stool/chair/padded/brown{ dir = 1 }, -/obj/item/hullbeacon/green, -/turf/simulated/floor/reinforced, -/area/shuttle/intrepid/main_compartment) -"haE" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 9 +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 10 }, -/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, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/white{ - name = "cooled white floor"; - temperature = 278.15 - }, -/area/medical/morgue/lower) -"haV" = ( -/obj/effect/floor_decal/corner/mauve/full{ +/turf/simulated/floor/wood, +/area/horizon/repoffice/consular_two) +"haz" = ( +/obj/effect/floor_decal/industrial/loading/yellow, +/obj/structure/platform{ dir = 8 }, -/obj/structure/cable/green{ - icon_state = "1-4" +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/port/far) +"haF" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 10 }, -/obj/machinery/light/floor{ - dir = 8 +/obj/item/modular_computer/console/preset/security, +/obj/structure/railing/mapped, +/turf/simulated/floor/tiled/dark, +/area/horizon/command/bridge/controlroom) +"haL" = ( +/obj/structure/railing/mapped, +/obj/structure/railing/mapped{ + dir = 4 }, -/turf/simulated/floor/tiled, -/area/rnd/hallway/secondary) -"haX" = ( +/turf/simulated/open, +/area/horizon/maintenance/deck_2/wing/port/near) +"haR" = ( /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/lattice/catwalk/indoor/grate/old, /obj/machinery/door/firedoor, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/full, -/area/maintenance/wing/starboard) +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/operations/starboard/far) +"haS" = ( +/obj/structure/bed/stool/chair/padded/purple, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/carpet/purple, +/area/horizon/command/heads/rd) "hbb" = ( /obj/machinery/door/airlock/external{ dir = 4; @@ -50011,6 +49699,15 @@ /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/dark, /area/shuttle/merchant) +"hbe" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/corner/black/full{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/horizon/operations/machinist) "hbf" = ( /obj/effect/floor_decal/spline/plain{ dir = 6 @@ -50022,19 +49719,14 @@ /obj/structure/window/reinforced/holowindow, /turf/simulated/floor/holofloor/tiled, /area/horizon/holodeck/source_gym) -"hbn" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable{ - icon_state = "1-2" +"hbh" = ( +/obj/structure/weightlifter, +/obj/random/dirt_75, +/obj/structure/sign/poster{ + pixel_y = 32 }, -/obj/machinery/atmospherics/pipe/simple/hidden/aux, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/machinery/alarm/west, -/turf/simulated/floor/plating, -/area/maintenance/engineering) +/turf/simulated/floor/carpet/rubber, +/area/horizon/crew/fitness/gym) "hbq" = ( /obj/structure/bed/stool/padded/brown{ dir = 8 @@ -50053,113 +49745,85 @@ }, /turf/unsimulated/floor, /area/antag/mercenary) -"hbx" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/effect/floor_decal/spline/plain{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/white, -/area/horizon/kitchen) -"hby" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard) -"hbA" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"hbC" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/structure/disposalpipe/sortjunction/flipped{ - name = "Library"; - sortType = "Library" - }, -/obj/structure/lattice/catwalk/indoor/grate, -/turf/simulated/floor/plating, -/area/horizon/hallway/deck_two/fore) -"hbE" = ( -/obj/structure/table/wood, -/obj/random/pottedplant_small{ - spawn_nothing_percentage = 25; - name = "random potted plant, small (25% nothing)"; - pixel_y = -2 - }, -/obj/machinery/power/outlet, -/turf/simulated/floor/carpet/red, -/area/horizon/crew_quarters/lounge/bar) -"hbK" = ( -/obj/effect/floor_decal/corner/lime{ - dir = 6 - }, -/obj/structure/sink/kitchen{ - dir = 8; - name = "sink"; - pixel_x = 21 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora) -"hbR" = ( -/obj/effect/floor_decal/corner/red/diagonal, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/spline/plain/corner{ - dir = 4 - }, -/turf/simulated/floor/lino, -/area/horizon/cafeteria) -"hbY" = ( -/obj/machinery/hologram/holopad, -/obj/effect/overmap/visitable/ship/sccv_horizon, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge/controlroom) -"hca" = ( -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/effect/floor_decal/corner/black{ +"hbD" = ( +/turf/simulated/wall/shuttle/scc_space_ship/cardinal, +/area/horizon/command/bridge/meeting_room) +"hbF" = ( +/obj/effect/floor_decal/industrial/hatch/red, +/obj/effect/floor_decal/industrial/warning{ dir = 9 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/item/hullbeacon/red, +/turf/simulated/floor/reinforced/airless, +/area/horizon/engineering/reactor/indra/mainchamber) +"hbG" = ( +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/structure/railing/mapped, +/obj/effect/floor_decal/corner/dark_blue/full{ + dir = 4 + }, +/obj/structure/table/reinforced/steel, /turf/simulated/floor/tiled/dark, -/area/hangar/auxiliary) +/area/horizon/command/bridge/controlroom) +"hbQ" = ( +/obj/machinery/camera/network/engineering{ + c_tag = "Engineering - Starboard Propulsion"; + dir = 1 + }, +/obj/effect/floor_decal/corner_wide/black{ + dir = 10 + }, +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/atmos/propulsion) +"hbU" = ( +/obj/effect/floor_decal/corner/lime/diagonal, +/obj/machinery/camera/network/intrepid{ + dir = 1; + c_tag = "Intrepid - Infirmary" + }, +/obj/machinery/iv_drip, +/obj/item/clothing/mask/breath/medical, +/obj/item/tank/oxygen, +/obj/item/device/radio/intercom/expedition/east, +/turf/simulated/floor/tiled/white, +/area/horizon/shuttle/intrepid/medical) +"hcb" = ( +/obj/effect/floor_decal/corner_wide/purple/full, +/obj/effect/floor_decal/corner_wide/purple{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/xenoarch/atrium) +"hcd" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/corner/mauve{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/horizon/rnd/hallway) "hcl" = ( /turf/simulated/floor/exoplanet/water/shallow{ dir = 5; @@ -50168,48 +49832,7 @@ name = "coast" }, /area/horizon/holodeck/source_konyang) -"hcp" = ( -/obj/machinery/holosign/surgery{ - id = 1 - }, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/door/airlock/medical{ - dir = 1; - name = "Operating Theatre 1"; - req_access = list(45) - }, -/obj/effect/map_effect/door_helper/unres{ - dir = 1 - }, -/turf/simulated/floor/tiled/full, -/area/medical/ors) -"hcq" = ( -/obj/machinery/hologram/holopad/long_range, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/effect/overmap/visitable/ship/landable/intrepid, -/turf/simulated/floor/tiled/dark/full, -/area/shuttle/intrepid/flight_deck) -"hcr" = ( -/turf/simulated/floor/carpet/red, -/area/horizon/bar) -"hcz" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/central) -"hcC" = ( +"hcm" = ( /obj/structure/cable/green{ icon_state = "4-8" }, @@ -50219,56 +49842,49 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/aux{ - dir = 8 - }, /obj/machinery/atmospherics/pipe/simple/hidden/fuel{ dir = 4 }, +/obj/machinery/atmospherics/pipe/simple/hidden/aux{ + dir = 8 + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, /obj/machinery/atmospherics/pipe/simple/hidden/green{ dir = 8 }, -/obj/structure/lattice/catwalk/indoor/grate, /turf/simulated/floor/plating, -/area/hallway/engineering) -"hcD" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/structure/closet/crate/trashcart, -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/plating, -/area/maintenance/engineering) +/area/horizon/maintenance/deck_1/main/interstitial) +"hcB" = ( +/obj/machinery/seed_storage/garden, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/service/hydroponics/garden) "hcE" = ( /obj/structure/flora/ausbushes/fullgrass, /turf/simulated/floor/beach/sand{ icon_state = "desert" }, /area/centcom/shared_dream) -"hcH" = ( -/obj/effect/floor_decal/corner_wide/blue{ - dir = 1 +"hcK" = ( +/obj/structure/cable/green{ + icon_state = "4-8" }, -/obj/effect/floor_decal/corner_wide/yellow{ +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/effect/floor_decal/corner_wide/yellow{ - dir = 8 +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 }, -/obj/effect/floor_decal/spline/plain{ - dir = 8 +/obj/machinery/door/airlock/glass_research{ + dir = 4; + name = "Expedition EVA Storage"; + req_access = list(47) }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" +/obj/machinery/door/firedoor{ + dir = 4 }, -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/engineering/atmos/storage) +/turf/simulated/floor/tiled/full, +/area/horizon/storage/eva/expedition) "hcN" = ( /obj/structure/table/steel, /obj/item/clothing/gloves/yellow/specialu, @@ -50283,23 +49899,22 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/tiled/dark/full, /area/shuttle/skipjack) -"hcR" = ( -/obj/structure/extinguisher_cabinet/east, -/obj/effect/floor_decal/industrial/warning/corner{ +"hcU" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance{ + dir = 4; + name = "E.V.A. Maintenance"; + req_access = list(18) + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 + dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/aux{ - dir = 9 - }, -/obj/machinery/camera/network/command{ - c_tag = "Bridge - Restricted Area"; - dir = 1 - }, -/turf/simulated/floor/tiled/dark/full, -/area/bridge/selfdestruct) +/turf/simulated/floor/tiled/full, +/area/horizon/storage/eva) "hcW" = ( /obj/effect/floor_decal/corner/yellow/full{ dir = 4 @@ -50309,33 +49924,60 @@ }, /turf/simulated/floor/marble/dark, /area/horizon/holodeck/source_trinary) -"hdb" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 9 - }, -/obj/effect/floor_decal/industrial/warning{ +"hdc" = ( +/obj/structure/bed/handrail{ dir = 8 }, -/obj/machinery/alarm/east{ - req_one_access = list(24,11,47) +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 1 }, -/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, -/obj/item/device/radio/sci, -/obj/item/tent, +/obj/effect/map_effect/marker/airlock/shuttle{ + cycle_to_external_air = 1; + master_tag = "airlock_shuttle_intrepid"; + name = "airlock_shuttle_intrepid"; + req_one_access = null; + shuttle_tag = "Intrepid" + }, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/effect/map_effect/marker_helper/airlock/out, +/obj/structure/lattice/catwalk/indoor/grate/dark, /turf/simulated/floor/plating, -/area/shuttle/quark/cargo_hold) +/area/horizon/shuttle/intrepid/main_compartment) +"hdf" = ( +/obj/effect/floor_decal/corner_wide/yellow, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/horizon/engineering/hallway/aft) "hdh" = ( /obj/effect/floor_decal/corner/full, /turf/simulated/floor/marble/dark, /area/horizon/holodeck/source_tribunal) -"hdi" = ( -/turf/simulated/wall, -/area/security/checkpoint) +"hdj" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 5 + }, +/obj/machinery/light/floor{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/horizon/operations/office) +"hdo" = ( +/obj/effect/floor_decal/corner_wide/lime{ + dir = 6 + }, +/obj/machinery/ringer_button{ + id = "medbay_ringer"; + pixel_y = 17 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/reception) "hdp" = ( /obj/effect/decal/fake_object{ icon = 'icons/misc/beach.dmi'; @@ -50348,23 +49990,10 @@ icon_state = "desert" }, /area/centcom/shared_dream) -"hdr" = ( -/obj/machinery/botany/extractor, -/obj/effect/floor_decal/corner/mauve{ - dir = 9 - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology/xenoflora) -"hdv" = ( -/obj/machinery/power/apc/low/north, -/obj/structure/cable/green{ - icon_state = "0-2" - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/bridge/minibar) +"hdG" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/purple, +/turf/simulated/wall/shuttle/scc_space_ship/cardinal, +/area/horizon/service/custodial/disposals/deck_1) "hdI" = ( /obj/effect/floor_decal/corner/dark_blue/full{ dir = 1 @@ -50381,49 +50010,49 @@ /obj/structure/flora/ausbushes/fullgrass, /turf/simulated/floor/exoplanet/grass/grove, /area/centcom/shared_dream) -"hdK" = ( -/obj/structure/railing/mapped{ - dir = 1 +"hdP" = ( +/obj/effect/floor_decal/corner/dark_green/diagonal, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard/deck1) -"hdO" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 1 - }, -/obj/effect/floor_decal/spline/plain{ - dir = 1 - }, -/obj/effect/floor_decal/spline/plain, -/turf/simulated/floor/carpet/rubber, -/area/tcommsat/chamber) -"hdR" = ( -/obj/structure/window/shuttle/scc_space_ship/cardinal, -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/structure/cable/green{ - icon_state = "0-8" - }, -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "bridge blast"; - name = "Bridge Blast Doors"; - opacity = 0 - }, -/obj/machinery/door/blast/shutters{ +/obj/structure/sink/kitchen{ dir = 4; - id = "shutters_deck3_captain"; - name = "Safety Shutter" + name = "sink"; + pixel_x = -20 }, -/turf/simulated/floor/plating, -/area/crew_quarters/captain) +/turf/simulated/floor/tiled, +/area/horizon/service/hydroponics) +"hdQ" = ( +/obj/machinery/atmospherics/unary/vent_pump/siphon/on/atmos{ + id_tag = "CO2_out_fuelbay" + }, +/turf/simulated/floor/reinforced/carbon_dioxide, +/area/horizon/engineering/atmos) +"hdT" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/closet/firecloset, +/obj/effect/floor_decal/corner/white/diagonal, +/obj/effect/floor_decal/spline/plain{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/outline/firefighting_closet, +/turf/simulated/floor/tiled/dark, +/area/horizon/hallway/primary/deck_3/central) +"hdU" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/light/small/emergency{ + dir = 1 + }, +/obj/structure/table/rack, +/obj/random/loot, +/obj/effect/decal/cleanable/cobweb2, +/turf/simulated/floor, +/area/horizon/maintenance/deck_3/aft/holodeck) "hdV" = ( /obj/effect/floor_decal/corner/dark_blue/full{ dir = 4 @@ -50464,41 +50093,39 @@ /obj/machinery/door/window/southright, /turf/simulated/floor/tiled/dark, /area/horizon/holodeck_control/beta) -"heq" = ( -/obj/structure/disposalpipe/sortjunction{ - dir = 4; - name = "Deck 3 Cafe"; - sortType = "Deck 3 Cafe" - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor, -/area/maintenance/security_port) -"her" = ( -/obj/structure/railing/mapped{ +"hel" = ( +/obj/effect/floor_decal/corner/grey/diagonal, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/obj/effect/floor_decal/corner/black{ - dir = 6 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/effect/floor_decal/corner/dark_green{ - dir = 1 +/obj/structure/cable/green{ + icon_state = "4-8" }, +/obj/structure/table/stone/marble, +/obj/item/device/destTagger, +/obj/item/stack/packageWrap, +/obj/item/device/hand_labeler, +/obj/structure/engineer_maintenance/electric/wall, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/service/kitchen) +"het" = ( /obj/effect/floor_decal/industrial/warning{ dir = 4 }, -/turf/simulated/floor/tiled/dark, -/area/hangar/intrepid) -"hes" = ( -/obj/machinery/atmospherics/valve/digital/open{ - dir = 4; - name = "Starboard Wing Main Supply Valve" +/turf/simulated/floor/tiled, +/area/horizon/maintenance/deck_2/wing/port/nacelle) +"heu" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 5 + }, +/obj/structure/cable/green{ + icon_state = "4-8" }, -/obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled/dark, -/area/maintenance/aux_atmospherics/deck_2/starboard/wing) +/area/horizon/engineering/atmos) "hew" = ( /obj/effect/mist, /turf/simulated/floor/exoplanet/water/shallow{ @@ -50521,39 +50148,68 @@ /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/full, /area/horizon/security/hallway) +"hez" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/wood, +/area/horizon/command/heads/captain) "heA" = ( /obj/structure/table/standard, /turf/unsimulated/floor{ icon_state = "wood" }, /area/centcom/holding) -"heF" = ( -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/maintenance/security_port) -"heH" = ( -/obj/machinery/atmospherics/unary/vent_pump/siphon/on/atmos{ - dir = 4; - id_tag = "o2_out" +"heB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 }, -/turf/simulated/floor/reinforced/oxygen, -/area/engineering/atmos/air) +/turf/simulated/floor/tiled/dark, +/area/horizon/storage/eva) "heI" = ( /obj/structure/bed/stool/chair/plastic{ dir = 4 }, /turf/simulated/floor/tiled, /area/horizon/security/brig) -"hfd" = ( -/obj/structure/disposaloutlet{ +"heU" = ( +/obj/effect/floor_decal/spline/fancy/wood/corner, +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/disposalpipe/trunk{ - dir = 4 +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/reinforced, -/area/rnd/xenobiology/hazardous) +/turf/simulated/floor/wood, +/area/horizon/service/dining_hall) +"heV" = ( +/obj/structure/cable/orange{ + icon_state = "0-4" + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/machinery/power/apc/super/critical/south, +/obj/machinery/power/sensor{ + name = "Powernet Sensor - SM Reactor Containment"; + name_tag = "SM Reactor Containment" + }, +/turf/simulated/floor/plating, +/area/horizon/engineering/reactor/supermatter/mainchamber) +"hfb" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/industrial/warning/corner, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/gen_treatment) "hfe" = ( /obj/effect/decal/fake_object{ desc = "A colorful drink that smells a lot like rotten fruit."; @@ -50578,34 +50234,43 @@ }, /turf/unsimulated/floor/plating, /area/centcom/specops) -"hfk" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 6 +"hfi" = ( +/turf/simulated/floor/wood, +/area/horizon/hallway/primary/deck_2/starboard) +"hfj" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 }, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/engine_room/rust) -"hfl" = ( -/obj/effect/floor_decal/industrial/outline/medical, -/obj/structure/closet/secure_closet/personal, -/turf/simulated/floor/tiled/full, -/area/medical/washroom) -"hfn" = ( -/obj/structure/railing/mapped{ - dir = 4 +/obj/structure/cable/green{ + icon_state = "1-4" }, -/obj/structure/railing/mapped, -/obj/effect/floor_decal/corner/dark_blue/full{ - dir = 4 +/obj/structure/cable/green{ + icon_state = "4-8" }, -/obj/structure/table/reinforced/steel, -/turf/simulated/floor/tiled/dark, -/area/bridge/controlroom) -"hfv" = ( -/obj/effect/landmark/entry_point/starboard{ - name = "starboard, warehouse" +/obj/effect/landmark/start{ + name = "Bartender" }, -/turf/simulated/wall/shuttle/scc_space_ship/cardinal, -/area/maintenance/wing/starboard/deck1) +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/lino, +/area/horizon/service/bar) +"hfm" = ( +/obj/structure/table/wood, +/obj/item/paper_bin{ + pixel_x = -4; + pixel_y = 2 + }, +/obj/item/pen{ + pixel_x = -4; + pixel_y = 2 + }, +/obj/random/pottedplant_small{ + pixel_x = 9; + pixel_y = 1 + }, +/turf/simulated/floor/carpet, +/area/horizon/medical/psych) "hfw" = ( /obj/effect/floor_decal/corner/red/diagonal, /turf/simulated/floor/tiled/dark, @@ -50627,26 +50292,9 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/security/armoury) -"hfA" = ( -/obj/structure/window/reinforced, -/obj/machinery/chemical_dispenser/full, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenoarch_atrium) "hfB" = ( -/obj/structure/trash_pile, -/turf/simulated/floor/tiled/dark, -/area/maintenance/wing/port/far) -"hfC" = ( -/obj/effect/floor_decal/corner/mauve{ - dir = 5 - }, -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/structure/closet/secure_closet/xenobotany, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology/xenoflora) +/turf/simulated/wall/r_wall, +/area/horizon/rnd/hallway/secondary) "hfG" = ( /obj/machinery/light{ dir = 4 @@ -50661,22 +50309,14 @@ }, /turf/unsimulated/floor/monotile, /area/antag/loner) -"hfR" = ( -/obj/machinery/hologram/holopad, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 +"hfL" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 5 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/engineering/atmos) -"hfV" = ( -/turf/simulated/floor/tiled/ramp/bottom{ - dir = 8 - }, -/area/maintenance/wing/starboard/deck1) +/obj/machinery/alarm/north, +/obj/machinery/vending/lavatory, +/turf/simulated/floor/tiled, +/area/horizon/crew/fitness/changing) "hfZ" = ( /obj/machinery/vending/snack, /obj/effect/floor_decal/corner/paleblue{ @@ -50687,15 +50327,15 @@ }, /turf/unsimulated/floor, /area/centcom/bar) -"hgb" = ( -/obj/structure/bed/stool/chair/office/dark{ +"hga" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/effect/landmark/start{ - name = "Operations Manager" +/obj/structure/cable/green{ + icon_state = "4-8" }, -/turf/simulated/floor/carpet, -/area/operations/qm) +/turf/simulated/floor/tiled/dark, +/area/horizon/weapons/longbow) "hgc" = ( /obj/machinery/door/airlock/centcom{ name = "Dormitory"; @@ -50712,43 +50352,15 @@ /obj/effect/floor_decal/corner_wide/dark_green/diagonal, /turf/simulated/floor/tiled/dark, /area/shuttle/skipjack) -"hgf" = ( -/obj/machinery/atmospherics/pipe/manifold/visible{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology/xenoflora) "hgg" = ( -/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/effect/floor_decal/industrial/warning/cee, -/turf/simulated/floor/tiled/full, -/area/engineering/storage_hard) -"hgm" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 +/obj/structure/lattice/catwalk/indoor/grate, +/obj/structure/cable/green{ + icon_state = "2-4" }, -/obj/machinery/light/small/emergency{ - dir = 4 - }, -/obj/structure/table/rack, -/obj/random/loot, -/turf/simulated/floor, -/area/maintenance/security_port) -"hgn" = ( -/obj/machinery/atmospherics/unary/heater{ - dir = 1 - }, -/obj/effect/floor_decal/corner/yellow, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/engineering/atmos) +/turf/simulated/floor/plating, +/area/horizon/hallway/primary/deck_2/central) "hgr" = ( /obj/random/junk, /obj/machinery/light/small{ @@ -50764,196 +50376,124 @@ }, /turf/unsimulated/floor/plating, /area/shuttle/syndicate_elite) +"hgy" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/service/starboard) +"hgz" = ( +/turf/simulated/floor/wood, +/area/horizon/service/chapel/main) +"hgA" = ( +/obj/machinery/light/small/emergency{ + dir = 8 + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/power/apc/hyper/north, +/obj/effect/floor_decal/industrial/hatch/red, +/turf/simulated/floor/tiled/dark, +/area/horizon/command/bridge/selfdestruct) "hgG" = ( /obj/effect/floor_decal/corner/green, /turf/unsimulated/floor, /area/centcom/bar) -"hgH" = ( -/obj/effect/floor_decal/corner/dark_blue/diagonal, -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled/dark, -/area/security/checkpoint) -"hgI" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/full, -/area/horizon/hallway/deck_two/fore) -"hgM" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 2; - icon_state = "pdoor0"; - id = "Security Lockdown"; - name = "Security Blast Door"; - opacity = 0 - }, -/obj/machinery/door/firedoor, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/machinery/door/airlock/maintenance{ - dir = 4; - name = "Security Maintenance"; - req_access = list(63) - }, -/turf/simulated/floor/tiled/full, -/area/maintenance/security_port) -"hgQ" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 4 - }, -/obj/effect/floor_decal/spline/fancy/wood/corner{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/wood, -/area/horizon/crew_quarters/lounge/bar) -"hgU" = ( +"hgK" = ( +/obj/machinery/portable_atmospherics/canister/air/airlock, /obj/machinery/atmospherics/portables_connector, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/atmos) -"hgV" = ( -/obj/effect/floor_decal/corner_wide/yellow/full{ - dir = 8 +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/auxatmos) +"hgL" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/purple, +/obj/effect/floor_decal/corner_wide/black{ + dir = 4 }, /obj/effect/floor_decal/industrial/warning/corner{ dir = 4 }, -/obj/structure/cable/green{ - icon_state = "4-8" +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/atmos/propulsion) +"hgO" = ( +/obj/structure/table/standard, +/obj/item/toy/plushie/nymph{ + pixel_y = 16; + pixel_x = -4 }, -/obj/effect/floor_decal/industrial/warning{ +/obj/item/device/hand_labeler{ + pixel_y = -1; + pixel_x = -4 + }, +/obj/random/lavalamp{ + pixel_y = 11; + pixel_x = 9 + }, +/obj/item/device/destTagger{ + pixel_y = -4; + pixel_x = 7 + }, +/obj/item/stack/packageWrap{ + pixel_y = -2 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/service/hydroponics/lower) +"hgR" = ( +/obj/effect/floor_decal/spline/fancy/wood{ dir = 8 }, -/obj/machinery/button/remote/blast_door{ - dir = 6; - id = "engineering_storage"; - name = "Engineering Hard Storage"; - pixel_y = 25; - req_one_access = list(11,24) +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 }, -/turf/simulated/floor/tiled, -/area/hallway/engineering) -"hgX" = ( -/obj/effect/floor_decal/corner_wide/purple{ - dir = 10 +/obj/structure/flora/ausbushes/ppflowers, +/obj/structure/flora/ausbushes/sunnybush, +/obj/structure/railing/mapped{ + dir = 8 }, -/obj/effect/floor_decal/corner_wide/purple/diagonal, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 +/turf/simulated/floor/grass/no_edge, +/area/horizon/hallway/primary/deck_3/port) +"hhb" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 9 }, -/obj/machinery/camera/network/research{ - c_tag = "Research - Firing Range"; - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/test_range) -"hgY" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 6 - }, /turf/simulated/floor/wood, -/area/bridge) +/area/horizon/command/bridge/cciaroom) +"hhc" = ( +/obj/structure/table/steel, +/obj/random/pottedplant_small{ + pixel_x = 6 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/horizon/crew/fitness/gym) "hhh" = ( /obj/effect/map_effect/window_spawner/full/reinforced/indestructible, /turf/simulated/floor, /area/tdome/tdome2) -"hhj" = ( +"hhs" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/maintenance_hatch{ - dir = 4; - frequency = 1379; - id_tag = "indra_airlock_exterior"; - locked = 1; - name = "INDRA Reactor Airlock Exterior"; - req_one_access = list(11,24) - }, -/obj/machinery/access_button{ - command = "cycle_exterior"; - dir = 8; - frequency = 1379; - master_tag = "indra_airlock_control"; - name = "INDRA Reactor Airlock Access"; - pixel_y = 23; - req_one_access = list(11,24) - }, -/obj/machinery/embedded_controller/radio/airlock/access_controller{ - dir = 8; - id_tag = "indra_airlock_control"; - name = "INDRA Reactor Airlock Access Console"; - pixel_y = 38; - tag_exterior_door = "indra_airlock_exterior"; - tag_interior_door = "indra_airlock_interior" - }, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/engine_monitoring/rust) -"hhk" = ( -/turf/simulated/floor/carpet, -/area/lawoffice/consular_two) -"hhp" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ +/obj/machinery/atmospherics/pipe/manifold/visible/cyan{ dir = 1 }, -/obj/structure/railing/mapped, -/obj/structure/table/reinforced/steel, -/turf/simulated/floor/carpet/rubber, -/area/bridge/controlroom) -"hhq" = ( -/obj/structure/table/wood, -/obj/item/flame/candle{ - pixel_x = -9; - pixel_y = 8 - }, -/obj/machinery/power/outlet, -/turf/simulated/floor/wood, -/area/horizon/crew_quarters/lounge/bar) -"hhy" = ( -/obj/random/junk, -/obj/structure/table/steel, -/turf/simulated/floor/tiled/dark, -/area/maintenance/wing/port) -"hhC" = ( -/obj/structure/bed/stool/chair/office/bridge/generic{ - dir = 8 - }, -/turf/simulated/floor/carpet, -/area/crew_quarters/heads/hop/xo) +/turf/simulated/floor/plating, +/area/horizon/engineering/reactor/supermatter/mainchamber) "hhH" = ( /obj/effect/ghostspawpoint{ identifier = "NTERTSpawn"; @@ -50970,24 +50510,54 @@ }, /turf/unsimulated/floor/plating, /area/antag/burglar) +"hhM" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/external{ + dir = 4; + frequency = 1380; + icon_state = "door_locked"; + id_tag = "escape_pod_3_berth_hatch"; + locked = 1; + name = "Escape Pod"; + req_access = list(13) + }, +/turf/simulated/floor/tiled, +/area/horizon/hangar/operations) "hhN" = ( /obj/structure/flora/grass/brown, /turf/simulated/floor/holofloor/snow, /area/horizon/holodeck/source_snowfield) -"hhS" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/yellow{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/engineering/atmos) "hhT" = ( /turf/simulated/wall/shuttle/unique/tcfl{ icon_state = "11,0" }, /area/shuttle/legion) -"hhW" = ( -/turf/simulated/wall, -/area/medical/icu) +"hhV" = ( +/obj/effect/floor_decal/spline/fancy/wood/corner{ + dir = 8 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 6 + }, +/turf/simulated/floor/wood, +/area/horizon/service/cafeteria) +"hia" = ( +/obj/effect/floor_decal/spline/plain, +/obj/structure/morgue, +/obj/effect/floor_decal/spline/plain{ + dir = 10 + }, +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/structure/platform{ + dir = 4 + }, +/turf/simulated/floor/tiled/freezer{ + name = "cooled tiles"; + temperature = 278.15 + }, +/area/horizon/medical/morgue) "hic" = ( /obj/machinery/atmospherics/pipe/simple/visible/aux, /obj/machinery/atmospherics/pipe/simple/visible/fuel, @@ -50996,68 +50566,125 @@ }, /turf/space/dynamic, /area/horizon/exterior) -"hif" = ( -/obj/machinery/disposal/deliveryChute{ - pixel_y = 7 +"hid" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 9 }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/window/southright{ - req_access = list(55) - }, -/obj/structure/disposalpipe/trunk, -/obj/machinery/light{ +/obj/random/dirt_75, +/turf/simulated/floor/tiled, +/area/horizon/maintenance/deck_2/wing/starboard/nacelle) +"hie" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/sortjunction/flipped{ + dir = 8; + name = "Custodial Closet"; + sortType = "Custodial Closet" + }, +/turf/simulated/floor/tiled, +/area/horizon/service/custodial) +"hig" = ( +/turf/simulated/wall/shuttle/scc_space_ship/cardinal, +/area/horizon/hallway/primary/deck_3/starboard/docks) +"hii" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/port/far) +"hio" = ( +/obj/machinery/atmospherics/unary/vent_pump/siphon/on/atmos{ + id_tag = "o2_out" + }, +/turf/simulated/floor/reinforced/oxygen, +/area/horizon/engineering/atmos/air) +"hip" = ( +/obj/effect/floor_decal/corner/green/diagonal, +/obj/structure/curtain/open, +/obj/machinery/camera/network/medbay{ + c_tag = "Medical - Isolation Ward"; + dir = 8 + }, /turf/simulated/floor/tiled/white, -/area/rnd/xenobiology/hazardous) -"him" = ( -/obj/machinery/suit_storage_unit/standard_unit, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/dark/full, -/area/bridge/aibunker) +/area/horizon/medical/ward/isolation) +"his" = ( +/obj/structure/tank_wall{ + icon_state = "m-13" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/horizon/engineering/atmos) "hiB" = ( /obj/structure/shuttle_part/mercenary/small{ icon_state = "8,3" }, /turf/unsimulated/floor/plating, /area/shuttle/syndicate_elite) +"hiD" = ( +/obj/effect/floor_decal/corner_wide/green/full{ + dir = 1 + }, +/obj/effect/floor_decal/sign/paramedic, +/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/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/gen_treatment) +"hiE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/corner/dark_blue{ + dir = 5 + }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/hangar/control) "hiG" = ( /turf/simulated/floor/tiled/dark, /area/shuttle/mercenary) -"hiH" = ( +"hiJ" = ( +/turf/simulated/wall, +/area/horizon/command/bridge/cciaroom/lounge) +"hiK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/green{ icon_state = "1-2" }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/airlock/maintenance_hatch{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"hiM" = ( -/obj/effect/floor_decal/corner/lime{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ +/obj/structure/railing/mapped, +/obj/structure/railing/mapped{ dir = 8 }, -/obj/machinery/disposal/small/south, -/obj/structure/disposalpipe/trunk, -/obj/structure/sign/vacuum{ - icon_state = "deathsposal"; - pixel_y = 35 - }, -/obj/machinery/light/floor{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora) +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/port/near) +"hiO" = ( +/turf/simulated/wall/r_wall, +/area/horizon/command/bridge/meeting_room) "hiR" = ( /obj/structure/cable/green{ icon_state = "2-4" @@ -51080,71 +50707,56 @@ }, /turf/simulated/floor/tiled, /area/horizon/security/hallway) -"hiT" = ( -/obj/machinery/camera/network/research{ - c_tag = "Research - Xenobiology Fore"; - dir = 1; - network = list("Research","Xeno_Bio") +"hiV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 }, -/obj/effect/floor_decal/corner/mauve{ - dir = 10 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 }, -/obj/structure/table/standard, -/obj/machinery/firealarm/south, -/obj/machinery/vending/wallmed1{ - pixel_y = -32; - req_access = null +/obj/effect/floor_decal/corner/brown{ + dir = 5 }, -/obj/machinery/microscope/science{ - pixel_y = 8 +/turf/simulated/floor/tiled, +/area/horizon/hangar/operations) +"hjg" = ( +/obj/machinery/power/apc/low/east, +/obj/structure/cable/green{ + icon_state = "0-8" }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology) -"hjm" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/aux{ - dir = 10 - }, -/obj/effect/floor_decal/industrial/outline_door/red{ +/obj/effect/floor_decal/corner/grey/diagonal{ dir = 8 }, -/obj/effect/floor_decal/industrial/outline_straight/red{ +/obj/structure/engineer_maintenance/electric{ + dir = 4 + }, +/obj/structure/engineer_maintenance/pipe{ dir = 1 }, -/obj/effect/floor_decal/industrial/outline_straight/red, -/obj/structure/closet/walllocker/emerglocker/north, -/obj/structure/bed/handrail{ - pixel_y = 2 - }, -/obj/item/reagent_containers/inhaler/pneumalin, -/obj/item/reagent_containers/inhaler/pneumalin, -/turf/simulated/floor/tiled/dark, -/area/shuttle/quark/cockpit) -"hjq" = ( -/obj/effect/floor_decal/corner/brown/full{ - dir = 8 - }, -/obj/machinery/mineral/stacking_unit_console{ - id = "horizon_stacking_3"; - pixel_x = -32 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/refinery) -"hjt" = ( -/obj/effect/floor_decal/industrial/outline/medical, -/obj/machinery/suit_cycler/medical/prepared, -/turf/simulated/floor/tiled/dark/full, -/area/storage/eva) -"hjB" = ( -/obj/effect/floor_decal/corner/paleblue/diagonal, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, /turf/simulated/floor/tiled/white, -/area/crew_quarters/heads/cmo) +/area/horizon/service/cafeteria) +"hjo" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/medical{ + dir = 1; + name = "Intensive Care Unit"; + req_access = list(5) + }, +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 2; + icon_state = "shutter0"; + id = "LCKDshutters"; + name = "Medical Lockdown Shutters"; + opacity = 0 + }, +/turf/simulated/floor/tiled/full, +/area/horizon/medical/icu) +"hjw" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/turf/simulated/floor/tiled/full, +/area/horizon/hallway/primary/deck_2/central) "hjE" = ( /obj/structure/closet/gimmick{ name = "emergency response team wardrobe" @@ -51160,49 +50772,61 @@ icon_state = "dark_preview" }, /area/centcom/specops) -"hjH" = ( -/obj/machinery/portable_atmospherics/powered/scrubber, -/obj/effect/floor_decal/industrial/outline/yellow, +"hjF" = ( +/obj/effect/floor_decal/industrial/outline/grey, +/obj/structure/closet/crate/plastic{ + name = "folding 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/folding_table, +/obj/item/material/folding_table, +/obj/item/material/folding_table, +/obj/item/material/folding_table, /turf/simulated/floor/plating, -/area/hangar/auxiliary) -"hjN" = ( -/obj/effect/floor_decal/industrial/outline/service, -/obj/machinery/seed_storage/garden/hydroponics, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/hydroponics) -"hjO" = ( -/obj/structure/cable/green{ - icon_state = "1-8" +/area/horizon/hangar/intrepid) +"hjI" = ( +/obj/machinery/newscaster/east, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 +/turf/simulated/floor/wood, +/area/horizon/crew/journalistoffice) +"hjL" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + icon_state = "1-2" }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/effect/floor_decal/corner/brown{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/refinery) -"hjP" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/structure/window/shuttle/scc_space_ship/cardinal, -/obj/machinery/door/blast/shutters/open{ - dir = 2; - id = "kitchen_window_shutters"; - name = "Viewing Shutter" +/obj/machinery/atmospherics/pipe/simple/hidden/aux, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/light/small/emergency{ + dir = 8 }, /turf/simulated/floor/plating, -/area/horizon/kitchen/freezer) +/area/horizon/maintenance/deck_1/main/port) "hjX" = ( /turf/simulated/floor/holofloor/tiled, /area/template_noop) +"hka" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 9 + }, +/obj/structure/table/steel, +/obj/item/device/camera, +/obj/item/device/camera, +/obj/item/device/camera{ + pixel_y = 4 + }, +/obj/item/device/camera{ + pixel_y = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/storage/eva) "hkg" = ( /obj/effect/floor_decal/industrial/outline/yellow, /obj/machinery/vending/actor, @@ -51236,122 +50860,177 @@ }, /turf/simulated/floor/holofloor/tiled, /area/horizon/holodeck/source_battlemonsters) -"hkm" = ( -/obj/effect/floor_decal/spline/fancy/wood, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/alarm/north, -/obj/item/towel_flat{ - pixel_x = -2; - pixel_y = 4; - name = "Columbo's Bed"; - desc = "A dog blanket laid out on the floor; a poor excuse for a bed, but Columbo doesn't seem to mind it."; - accent_color = "#95453D"; - color = "#95453D" - }, -/mob/living/simple_animal/hostile/commanded/dog/columbo, -/turf/simulated/floor/wood, -/area/horizon/security/head_of_security) -"hkx" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 8 - }, -/obj/effect/floor_decal/spline/plain{ - dir = 4 - }, -/turf/simulated/floor/carpet/rubber, -/area/tcommsat/chamber) -"hkD" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 5 - }, -/obj/structure/coatrack{ - pixel_x = 10; - pixel_y = 25 - }, -/turf/simulated/floor/wood, -/area/horizon/bar) -"hkW" = ( -/obj/machinery/door/airlock/external{ - dir = 4; - frequency = 1380; - icon_state = "door_locked"; - id_tag = "escape_pod_2_berth_hatch"; - locked = 1; - name = "Escape Pod"; - req_access = list(13) +"hko" = ( +/obj/machinery/door/airlock/glass_mining{ + dir = 1; + name = "Operations Bay"; + req_one_access = list(26,29,31,48,67,70) }, /obj/machinery/door/firedoor, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/obj/effect/map_effect/door_helper/unres{ + dir = 1 + }, /turf/simulated/floor/tiled, -/area/hangar/auxiliary) -"hkX" = ( -/obj/machinery/alarm/east, -/turf/simulated/floor/reinforced, -/area/rnd/xenobiology/hazardous) -"hle" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable{ +/area/horizon/operations/office) +"hkq" = ( +/obj/structure/cable/green{ icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/maintenance/hangar/starboard) -"hlh" = ( -/obj/effect/floor_decal/corner/lime/diagonal, -/turf/simulated/floor/tiled/white, -/area/shuttle/intrepid/medical) -"hlk" = ( -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/dark, -/area/engineering/atmos/propulsion) -"hlt" = ( /obj/effect/floor_decal/industrial/warning{ - dir = 10 - }, -/obj/machinery/alarm/north, -/obj/structure/cable/green{ - icon_state = "0-2" - }, -/obj/machinery/power/apc/east, -/turf/simulated/floor, -/area/maintenance/engineering_ladder) -"hlx" = ( -/obj/effect/floor_decal/corner/brown{ - dir = 10 - }, -/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 }, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/bluespace_drive) +"hks" = ( +/obj/effect/floor_decal/corner/mauve/diagonal, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/lab) +"hkv" = ( +/obj/machinery/shieldwallgen, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/light, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/storage_hard) +"hkE" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_3/starboard) +"hkQ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/lattice/catwalk/indoor/grate, /turf/simulated/floor/plating, -/area/hangar/auxiliary) +/area/horizon/hallway/primary/deck_2/central) +"hkV" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/floor_decal/corner/dark_green{ + dir = 5 + }, +/obj/machinery/firealarm/north, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_2/starboard) +"hkY" = ( +/obj/effect/floor_decal/corner/grey/diagonal, +/obj/effect/floor_decal/spline/plain{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/white, +/area/horizon/service/kitchen) +"hla" = ( +/obj/effect/landmark/entry_point/starboard{ + name = "starboard, d1 maintenance foreside" + }, +/turf/simulated/wall/shuttle/scc_space_ship/cardinal, +/area/horizon/maintenance/deck_1/operations/starboard/far) +"hlb" = ( +/obj/machinery/power/apc/low/east, +/obj/structure/cable/green{ + icon_state = "0-8" + }, +/obj/structure/bed/stool/chair/padded/brown{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/horizon/medical/psych) +"hld" = ( +/obj/machinery/door/blast/shutters/open{ + id = "CHE2shutters"; + name = "Window Shutter" + }, +/obj/effect/map_effect/window_spawner/full/borosilicate/reinforced/firedoor, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/medical/pharmacy) +"hlu" = ( +/obj/effect/floor_decal/corner_wide/yellow{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/red, +/turf/simulated/floor/tiled, +/area/horizon/engineering/hallway/aft) +"hlw" = ( +/obj/effect/floor_decal/industrial/warning/full, +/obj/machinery/door/blast/regular/open{ + fail_secure = 1; + id = "xenobio_b"; + name = "Cell Containment Blast Door" + }, +/obj/machinery/door/window/holowindoor{ + dir = 8; + req_access = list(55) + }, +/obj/machinery/door/window/holowindoor{ + dir = 4; + req_access = list(55) + }, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/rnd/xenobiology) +"hlC" = ( +/obj/structure/table/stone/marble, +/obj/item/material/ashtray/bronze{ + pixel_x = 8; + pixel_y = -8 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/shutters{ + dir = 8; + id = "bar_shutter"; + name = "Bar Shutter" + }, +/obj/machinery/power/outlet, +/turf/simulated/floor/tiled/dark, +/area/horizon/service/bar) +"hlD" = ( +/obj/structure/bed/stool/chair/shuttle{ + dir = 8 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/shuttle/dark_blue, +/area/horizon/shuttle/escape_pod/pod3) "hlK" = ( /obj/structure/curtain/open/shower/security, /obj/effect/floor_decal/spline/fancy/wood/cee{ @@ -51369,12 +51048,50 @@ }, /turf/simulated/floor/tiled, /area/horizon/security/equipment) -"hlQ" = ( -/obj/effect/floor_decal/corner/brown{ - dir = 10 +"hlM" = ( +/obj/structure/railing/mapped, +/obj/structure/platform/ledge{ + dir = 1 }, -/turf/simulated/floor/tiled, -/area/operations/office) +/obj/structure/platform/ledge{ + dir = 8 + }, +/obj/structure/railing/mapped{ + dir = 4 + }, +/turf/simulated/open, +/area/horizon/operations/office) +"hlP" = ( +/obj/effect/floor_decal/corner_wide/green{ + dir = 9 + }, +/obj/effect/floor_decal/corner_wide/green, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/machinery/requests_console/west{ + department = "Medical Examination"; + departmentType = 2; + name = "Medical Examination Requests Console" + }, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/exam) +"hlT" = ( +/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/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor, +/area/horizon/maintenance/deck_3/aft/port) "hlU" = ( /obj/structure/closet{ icon_door = "blue"; @@ -51404,24 +51121,54 @@ icon_state = "wood" }, /area/centcom/legion/hangar5) +"hlZ" = ( +/obj/effect/floor_decal/corner/lime/diagonal, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/tiled/white{ + name = "cooled white floor"; + temperature = 278.15 + }, +/area/horizon/medical/morgue) "hma" = ( /obj/effect/floor_decal/corner/red{ dir = 5 }, /turf/unsimulated/floor, /area/centcom/evac) -"hmb" = ( -/obj/structure/table/wood/gamblingtable, -/obj/item/storage/box/donkpockets{ - pixel_x = 2; - pixel_y = 5 +"hmf" = ( +/obj/structure/trash_pile, +/obj/random/dirt_75, +/turf/simulated/floor, +/area/horizon/maintenance/deck_2/wing/starboard/far) +"hmg" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 9 }, -/obj/effect/floor_decal/spline/fancy/wood, -/obj/machinery/light/small{ +/obj/machinery/light/spot{ + dir = 8; + must_start_working = 1 + }, +/turf/simulated/floor/tiled, +/area/horizon/hangar/auxiliary) +"hmh" = ( +/obj/machinery/light, +/obj/effect/floor_decal/corner_wide/black{ + dir = 10 + }, +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 8 }, -/turf/unsimulated/floor/wood, -/area/antag/actor) +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/atmos/propulsion) "hmj" = ( /obj/structure/flora/grass/green, /obj/effect/decal/fake_object/light_source/invisible{ @@ -51432,43 +51179,68 @@ }, /turf/simulated/floor/exoplanet/snow, /area/centcom/shared_dream) -"hmn" = ( -/obj/machinery/suit_cycler/engineering/prepared, -/obj/effect/floor_decal/industrial/outline/operations, -/turf/simulated/floor/tiled/dark/full, -/area/storage/eva) -"hmt" = ( -/obj/effect/floor_decal/spline/fancy/wood{ +"hmk" = ( +/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 }, -/obj/machinery/newscaster/north, -/obj/structure/bed/stool/chair/padded/brown{ - dir = 8 - }, -/turf/simulated/floor/carpet/art, -/area/crew_quarters/lounge/secondary) -"hmv" = ( -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/effect/floor_decal/spline/plain{ - dir = 8 - }, -/turf/simulated/floor/lino, -/area/horizon/crew_quarters/lounge/bar) -"hmw" = ( -/obj/effect/floor_decal/corner/brown{ - dir = 6 - }, -/obj/structure/bed/stool/chair{ - dir = 8 - }, -/obj/structure/sign/directions/all{ - dir = 4; - pixel_x = 32 - }, /turf/simulated/floor/tiled, -/area/operations/lobby) +/area/horizon/hangar/auxiliary) +"hml" = ( +/obj/effect/floor_decal/industrial/hatch_door/red{ + dir = 1 + }, +/obj/machinery/door/airlock/external, +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 8 + }, +/obj/effect/map_effect/marker/airlock/shuttle{ + cycle_to_external_air = 1; + master_tag = "airlock_shuttle_intrepid"; + name = "airlock_shuttle_intrepid"; + req_one_access = null; + shuttle_tag = "Intrepid" + }, +/obj/effect/map_effect/marker_helper/airlock/exterior, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/shuttle/intrepid/main_compartment) +"hmp" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 5 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/horizon/operations/lobby) +"hmq" = ( +/obj/machinery/shower{ + dir = 4; + pixel_x = -1; + pixel_y = 1 + }, +/obj/machinery/light/floor{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/outline_corner/security{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/xenobiology) "hmz" = ( /obj/machinery/door/airlock/glass_centcom{ dir = 1; @@ -51478,50 +51250,35 @@ }, /turf/unsimulated/floor, /area/centcom/spawning) -"hmD" = ( -/obj/structure/shuttle_part/scc/scout{ - density = 0; - icon_state = "7,11" - }, -/turf/simulated/floor/plating, -/area/shuttle/canary) -"hmE" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/corner/yellow/full{ +"hmH" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/light/small{ dir = 8 }, -/obj/machinery/button/remote/blast_door{ - desc = "A remote control-switch for the engine control room blast doors."; - dir = 8; - id = "EngineEmitterPortWest"; - name = "Supermatter Reactor Room Blast Doors"; - pixel_x = -24; - req_one_access = list(11,24) - }, -/turf/simulated/floor/tiled/dark, -/area/engineering/engine_waste) -"hmN" = ( -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"hmQ" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 5 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/structure/cable/green{ - icon_state = "1-2" - }, +/obj/effect/map_effect/marker/mapmanip/submap/insert/sccv_horizon/ops_warehouse_small_storage, /turf/simulated/floor/tiled, -/area/operations/lobby) +/area/horizon/operations/warehouse) +"hmJ" = ( +/obj/effect/floor_decal/corner/dark_green/full{ + dir = 4 + }, +/obj/structure/table/standard, +/obj/machinery/cell_charger, +/obj/item/paper_scanner, +/obj/item/device/paicard, +/turf/simulated/floor/tiled, +/area/horizon/storage/primary) +"hmK" = ( +/obj/structure/table/standard, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/engineering/reactor/indra/smes) +"hmM" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/main/port) "hmR" = ( /obj/machinery/light/small/emergency{ brightness_range = 4; @@ -51532,26 +51289,40 @@ /obj/structure/lattice/catwalk, /turf/space/dynamic, /area/template_noop) -"hmS" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 8 +"hmT" = ( +/obj/effect/floor_decal/industrial/outline/research, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 4 }, -/turf/simulated/floor/wood, -/area/horizon/bar) +/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/horizon/shuttle/quark/cargo_hold) +"hmW" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 6 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/shuttle/intrepid/main_compartment) "hmZ" = ( /obj/structure/shuttle_part/mercenary/small{ icon_state = "3,0" }, /turf/unsimulated/floor/plating, /area/shuttle/syndicate_elite) -"hnc" = ( -/obj/effect/floor_decal/industrial/hatch/red, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/machinery/light/small/emergency, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/secure_ammunition_storage) "hne" = ( /obj/effect/landmark{ name = "Penguin Spawn Emperor" @@ -51559,19 +51330,12 @@ /obj/structure/flora/tree/pine, /turf/simulated/floor/holofloor/snow, /area/horizon/holodeck/source_snowfield) -"hng" = ( -/obj/machinery/disposal/small/west, -/obj/structure/disposalpipe/trunk{ +"hnm" = ( +/obj/effect/floor_decal/industrial/warning/corner{ dir = 8 }, -/turf/simulated/floor/tiled/dark, -/area/rnd/lab) -"hni" = ( -/obj/effect/floor_decal/corner/lime{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora) +/turf/simulated/floor/reinforced/airless, +/area/horizon/engineering/reactor/indra/mainchamber) "hno" = ( /obj/structure/window/reinforced/holowindow{ dir = 1 @@ -51601,96 +51365,149 @@ }, /turf/unsimulated/floor/plating, /area/centcom/specops) -"hnx" = ( -/obj/effect/floor_decal/corner/yellow{ - dir = 10 +"hnu" = ( +/obj/machinery/camera/network/medbay{ + c_tag = "Medical - Secondary Storage" }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/computer/security/engineering{ - name = "Drone Monitoring Cameras" +/obj/structure/table/standard, +/obj/item/clothing/accessory/stethoscope{ + pixel_x = -4 }, -/obj/machinery/light, -/turf/simulated/floor/tiled, -/area/engineering/lobby) +/obj/item/clothing/accessory/stethoscope{ + pixel_x = -4 + }, +/obj/item/clothing/accessory/stethoscope{ + pixel_x = -4 + }, +/obj/item/clothing/accessory/stethoscope{ + pixel_x = -4 + }, +/obj/item/clothing/accessory/stethoscope{ + pixel_x = -4 + }, +/obj/item/clothing/accessory/stethoscope{ + pixel_x = -4 + }, +/obj/item/clothing/accessory/stethoscope{ + pixel_x = -4 + }, +/obj/item/clothing/accessory/stethoscope{ + pixel_x = -4 + }, +/obj/effect/floor_decal/corner_wide/green{ + dir = 5 + }, +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/item/device/gps/medical{ + pixel_x = 10; + pixel_y = 2 + }, +/obj/item/device/gps/medical{ + pixel_x = 10; + pixel_y = 2 + }, +/obj/item/device/gps/medical{ + pixel_x = 10; + pixel_y = 2 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/equipment) +"hnw" = ( +/obj/effect/floor_decal/industrial/outline/grey, +/obj/item/hoist_kit, +/obj/item/ladder_mobile{ + pixel_y = 12 + }, +/obj/item/ladder_mobile{ + pixel_y = 12 + }, +/turf/simulated/floor/plating, +/area/horizon/hangar/intrepid) "hnB" = ( /obj/structure/shuttle_part/scc_space_ship{ icon_state = "d3-1-f" }, /turf/simulated/floor/reinforced/airless, -/area/template_noop) -"hnK" = ( -/turf/simulated/wall/r_wall, -/area/horizon/security/warden) -"hnN" = ( -/obj/machinery/door/firedoor, -/obj/effect/floor_decal/corner/purple{ - dir = 9 +/area/horizon/exterior) +"hnE" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/simulated/floor/plating, +/area/horizon/engineering/storage/lower) +"hnF" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/atmospherics/pipe/simple/hidden/purple{ - dir = 8 +/obj/structure/trash_pile, +/turf/simulated/floor, +/area/horizon/maintenance/deck_3/aft/port) +"hnH" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/railing/mapped{ + dir = 4 }, -/obj/structure/sign/kiddieplaque/janitor{ - name = "wooden plaque"; - pixel_x = -32 +/obj/structure/dispenser/oxygen, +/turf/simulated/floor/tiled/full, +/area/horizon/hangar/intrepid) +"hnJ" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 }, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/custodial/disposals) -"hnR" = ( -/obj/effect/floor_decal/corner/dark_blue/full{ - dir = 1 - }, -/obj/structure/sign/deathsposal{ - name = "\improper SPENT MUNITIONS EJECTION CHUTE sign"; - pixel_x = 32 - }, -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/light{ +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/horizon/longbow) -"hnS" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 9 +/area/horizon/engineering/atmos) +"hnK" = ( +/turf/simulated/wall/r_wall, +/area/horizon/security/warden) +"hnL" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 5 }, -/obj/structure/sign/directions/custodial{ - dir = 8; - pixel_x = -32; - pixel_y = 9 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/aft) -"hnU" = ( -/turf/simulated/wall, -/area/maintenance/bridge) -"hnY" = ( -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/machinery/light/small/emergency{ +/obj/structure/railing/mapped{ dir = 4 }, -/obj/structure/cable/green{ - icon_state = "1-2" +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/reinforced, +/area/horizon/shuttle/mining) +"hnP" = ( +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark, +/area/horizon/maintenance/deck_2/wing/starboard/nacelle) +"hnX" = ( +/obj/structure/bed/stool/chair/office/light{ + dir = 8 }, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"hob" = ( -/turf/simulated/wall/shuttle/scc_space_ship/cardinal, -/area/template_noop) -"hog" = ( -/obj/machinery/door/airlock/medical{ - dir = 1; - id_tag = "deck2_medicaltoilet"; - name = "Washroom Stall"; - req_access = list(5) +/obj/effect/floor_decal/corner/mauve{ + dir = 10 }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/full, -/area/medical/washroom) +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/xenobiology/foyer) +"hoc" = ( +/obj/effect/floor_decal/corner/mauve/full{ + dir = 8 + }, +/obj/machinery/vending/coffee{ + pixel_y = 24; + density = 0 + }, +/obj/machinery/camera/network/research{ + c_tag = "Research - Conference Room"; + pixel_y = 9; + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/conference) +"hom" = ( +/obj/effect/floor_decal/corner/dark_green/full{ + dir = 4 + }, +/obj/structure/bed/stool/chair{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/horizon/engineering/hallway/fore) "hoo" = ( /obj/machinery/vending/cola{ name = "Free Robust Softdrinks"; @@ -51704,15 +51521,6 @@ icon_state = "wood" }, /area/centcom/legion/hangar5) -"hot" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/floor_decal/corner/dark_green{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/hangar/auxiliary) "hoE" = ( /obj/effect/floor_decal/industrial/warning{ dir = 10 @@ -51722,27 +51530,13 @@ "hoH" = ( /turf/unsimulated/floor/monotile, /area/antag/jockey) -"hoQ" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor/carpet/rubber, -/area/server) -"hoS" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/door/firedoor, -/obj/effect/map_effect/door_helper/unres{ - dir = 1 - }, -/obj/machinery/door/airlock/glass_engineering{ - dir = 1; - name = "Engineering Hallway"; - req_access = list(10) - }, -/turf/simulated/floor/tiled/full, -/area/engineering/lobby) +"hoK" = ( +/turf/simulated/wall, +/area/horizon/maintenance/deck_1/workshop) +"hoO" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled, +/area/horizon/operations/break_room) "hoT" = ( /obj/structure/bed/stool/chair/padded/blue{ dir = 4 @@ -51751,6 +51545,25 @@ icon_state = "wood" }, /area/centcom/holding) +"hoU" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/platform{ + dir = 4 + }, +/obj/machinery/light/floor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/dark_blue/diagonal{ + dir = 8 + }, +/obj/machinery/computer/guestpass{ + pixel_x = -32 + }, +/turf/simulated/floor/tiled, +/area/horizon/command/bridge/upperdeck) "hoV" = ( /obj/structure/lattice, /turf/space/dynamic, @@ -51765,134 +51578,116 @@ }, /turf/simulated/floor/tiled, /area/horizon/security/brig) -"hpd" = ( -/obj/machinery/power/apc/low/north, -/obj/structure/cable/green{ - icon_state = "0-2" - }, -/obj/effect/floor_decal/corner/dark_green{ - dir = 5 - }, -/obj/structure/cable/green{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/starboard) -"hpg" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/effect/floor_decal/industrial/hatch/yellow, +"hoZ" = ( +/obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/dark, -/area/chapel/office) -"hph" = ( -/obj/item/storage/box/mousetraps, -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/closet/crate, -/obj/item/storage/box/mousetraps, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology) -"hpi" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 +/area/horizon/weapons/longbow) +"hpf" = ( +/obj/effect/floor_decal/industrial/outline/grey, +/obj/structure/closet/crate/plastic{ + name = "folding chairs crate" }, +/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, +/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/maintenance/wing/starboard) -"hpk" = ( -/obj/machinery/power/apc/north, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" +/area/horizon/hangar/intrepid) +"hpj" = ( +/obj/structure/bed/stool/chair/padded/brown{ + dir = 4 }, -/obj/machinery/light{ +/turf/simulated/floor/carpet, +/area/horizon/command/bridge/cciaroom) +"hpl" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 8 }, -/obj/effect/floor_decal/industrial/hatch/operations, -/obj/machinery/vending/snack, -/turf/simulated/floor/tiled/full, -/area/horizon/commissary) -"hpo" = ( -/obj/effect/floor_decal/spline/fancy/wood{ +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/horizon/command/bridge/supply) +"hpn" = ( +/obj/machinery/light/small/emergency{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/maintenance/deck_2/wing/starboard/nacelle) +"hpp" = ( +/obj/machinery/light, +/obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 }, -/obj/structure/cable/green{ - icon_state = "1-2" +/obj/effect/floor_decal/corner_wide/green{ + dir = 10 }, -/turf/simulated/floor/wood, -/area/journalistoffice) +/obj/structure/bed/stool/chair/office/dark{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/ward) +"hpt" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/atmos/propulsion/starboard) "hpz" = ( /turf/simulated/wall, /area/merchant_station/warehouse) -"hpA" = ( +"hpG" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/structure/bed/stool/padded/black, +/turf/simulated/floor, +/area/horizon/maintenance/deck_3/aft/starboard/far) +"hpH" = ( /obj/structure/cable/green{ icon_state = "4-8" }, -/obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ +/obj/machinery/conveyor{ + dir = 1; + id = "QMLoad" + }, +/obj/structure/disposalpipe/segment{ dir = 4 }, +/turf/simulated/floor/tiled, +/area/horizon/operations/loading) +"hpJ" = ( +/obj/structure/shuttle_part/scc/scout{ + icon_state = "7,10" + }, /turf/simulated/floor/plating, -/area/maintenance/engineering) -"hpB" = ( -/obj/structure/cable/orange{ +/area/horizon/shuttle/canary) +"hpK" = ( +/obj/structure/cable/green{ icon_state = "4-8" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 7 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 }, -/obj/structure/lattice/catwalk/indoor/grate, -/turf/simulated/floor/plating, -/area/engineering/engine_room/rust) -"hpE" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 10 +/obj/machinery/firealarm/west{ + dir = 2; + pixel_x = 0; + pixel_y = -22 }, -/obj/machinery/newscaster/south, -/obj/machinery/light/floor, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"hpL" = ( -/obj/structure/bed/padded, -/obj/item/bedsheet/medical, -/obj/effect/floor_decal/corner_wide/green{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/medical/ward) +/turf/simulated/floor/wood, +/area/horizon/command/heads/xo) "hpM" = ( /obj/effect/floor_decal/corner/blue{ dir = 6 @@ -51918,194 +51713,261 @@ }, /turf/unsimulated/floor, /area/antag/mercenary) -"hpU" = ( -/obj/structure/cable/green{ - icon_state = "4-8" +"hpR" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 5 + }, +/obj/structure/cable/green{ + icon_state = "2-8"; + d1 = 2; + d2 = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 4 }, -/obj/machinery/atmospherics/portables_connector{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/atmos) -"hpV" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 7 - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 1 - }, -/obj/machinery/firealarm/west{ - dir = 2; - pixel_x = 0; - pixel_y = -22 - }, /turf/simulated/floor/wood, -/area/crew_quarters/heads/hop/xo) -"hpZ" = ( -/obj/effect/floor_decal/corner/yellow{ - dir = 10 +/area/horizon/service/library) +"hqf" = ( +/obj/structure/cable{ + icon_state = "4-8" }, -/obj/structure/table/standard, -/obj/machinery/button/remote/blast_door{ - id = "shutters_deck2_eng_frontdesk"; - name = "remote shutter control"; - pixel_y = -1; - pixel_x = -6 - }, -/turf/simulated/floor/tiled, -/area/engineering/lobby) -"hqa" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/simulated/floor/tiled, -/area/rnd/eva) -"hqb" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/turf/simulated/floor/tiled/full, +/area/horizon/engineering/hallway/interior) +"hql" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/turf/simulated/floor/reinforced, +/area/horizon/rnd/xenobiology) +"hqo" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/atmospherics/binary/passive_gate{ + dir = 1; + name = "Nitrous Oxide to Thrusters" + }, +/turf/simulated/floor/plating, +/area/horizon/engineering/atmos/air) +"hqp" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/multi_tile/glass{ + name = "Gym" + }, /obj/structure/cable/green{ icon_state = "1-2" }, -/obj/machinery/door/airlock/maintenance{ - dir = 1; - name = "Teleporter Maintenance"; - req_access = list(17) - }, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/full, -/area/teleporter) -"hqd" = ( -/obj/machinery/button/remote/airlock{ - dir = 1; - id = "cargobreak_shower"; - name = "Door Bolt Control"; - pixel_x = 7; - pixel_y = 25; - specialfunctions = 4 - }, -/obj/machinery/light/small{ +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 1 }, -/obj/machinery/shower{ - dir = 4 +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/dark, +/area/horizon/crew/fitness/gym) +"hqr" = ( +/obj/structure/ladder{ + pixel_y = 8 }, -/obj/random/contraband, -/turf/simulated/floor/tiled/freezer, -/area/operations/break_room) -"hqg" = ( -/obj/machinery/door/firedoor{ - req_one_access = list(24,11,67,73); - dir = 4 - }, -/obj/effect/floor_decal/industrial/hatch_door/yellow, -/obj/structure/curtain/open/medical, -/turf/simulated/floor/tiled/dark/full, -/area/shuttle/intrepid/medical) +/turf/simulated/open, +/area/horizon/maintenance/deck_2/wing/port/far) +"hqv" = ( +/obj/machinery/alarm/south, +/turf/simulated/floor/tiled/dark, +/area/horizon/service/bar) "hqx" = ( /turf/unsimulated/floor{ dir = 4 }, /area/centcom/bar) -"hqC" = ( -/obj/structure/stairs/west, -/turf/simulated/floor/tiled, -/area/hallway/engineering) -"hqD" = ( -/obj/structure/platform/ledge{ - dir = 1 - }, -/obj/structure/platform/ledge{ - dir = 4 - }, -/obj/structure/railing/mapped, -/turf/simulated/open, -/area/operations/office) -"hqE" = ( -/obj/effect/map_effect/window_spawner/full/borosilicate/reinforced/firedoor, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenoarch_storage) -"hqH" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 5 - }, -/obj/machinery/airlock_sensor{ - dir = 4; - pixel_x = -20 - }, -/obj/effect/map_effect/marker/airlock{ - frequency = 1003; - master_tag = "airlock_horizon_deck_1_aft_propulsion_1"; - name = "airlock_horizon_deck_1_aft_propulsion_1" - }, -/turf/simulated/floor/plating, -/area/engineering/atmos/propulsion/starboard) -"hqL" = ( +"hqB" = ( /obj/effect/floor_decal/industrial/warning{ dir = 8 }, -/turf/simulated/floor/plating, -/area/maintenance/wing/cargo_compartment) -"hqP" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/industrial/warning{ dir = 4 }, +/turf/simulated/floor/reinforced, +/area/horizon/engineering/gravity_gen) +"hqF" = ( +/obj/structure/sign/nosmoking_1{ + pixel_x = 32 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/floor_decal/corner/dark_green/full{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/outline/firefighting_closet, +/obj/structure/closet/firecloset, +/turf/simulated/floor/tiled, +/area/horizon/crew/resdeck/living_quarters_lift) +"hqG" = ( +/obj/machinery/light_switch{ + dir = 1; + pixel_y = 24; + pixel_x = 9 + }, +/obj/structure/cable/green{ + icon_state = "4-8"; + d1 = 4; + d2 = 8 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 5 + }, +/obj/effect/floor_decal/spline/fancy/wood/corner{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/coatrack{ + pixel_y = 23; + pixel_x = -6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/horizon/command/heads/hos) +"hqK" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 5 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_2/fore) +"hqL" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/effect/floor_decal/corner/white{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/storage/eva) +"hqO" = ( +/obj/machinery/atmospherics/pipe/simple/visible/purple{ + dir = 10 + }, +/obj/machinery/meter, +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/atmos/propulsion/starboard) +"hqQ" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black, +/obj/machinery/atmospherics/pipe/zpipe/up/supply{ + dir = 4 + }, +/obj/effect/floor_decal/corner/yellow, +/obj/effect/floor_decal/corner/dark_blue{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/atmos) +"hqS" = ( +/obj/effect/map_effect/window_spawner/full/reinforced/polarized/grille/firedoor{ + id = "consularA" + }, +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id = "bridge blast"; + name = "Bridge Blast Doors"; + opacity = 0 + }, +/turf/simulated/floor, +/area/horizon/repoffice/consular_one) +"hqU" = ( +/obj/structure/lattice, +/obj/structure/platform/ledge{ + dir = 4 + }, +/turf/simulated/open, +/area/horizon/medical/hallway/upper) +"hqY" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/full, +/area/horizon/hallway/primary/deck_2/fore) +"hqZ" = ( +/obj/structure/table/standard, +/obj/item/storage/box/fancy/vials, +/obj/item/reagent_containers/dropper/electronic_pipette, +/obj/effect/floor_decal/corner/mauve/full, +/obj/item/reagent_containers/glass/beaker/large, +/obj/machinery/alarm/south, +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/chemistry) +"hre" = ( /obj/structure/cable/green{ icon_state = "4-8" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/turf/simulated/floor/tiled/dark, -/area/horizon/grauwolf) -"hqT" = ( -/obj/machinery/porta_turret/stationary, -/obj/effect/floor_decal/industrial/warning/full, -/turf/simulated/floor/reinforced, -/area/bridge/selfdestruct) -"hqV" = ( -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 6 - }, -/obj/machinery/meter, -/turf/simulated/floor/tiled/dark, -/area/engineering/atmos) -"hrb" = ( -/obj/structure/railing/mapped, -/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/structure/lattice/catwalk/indoor/grate, /turf/simulated/floor/plating, -/area/maintenance/research_port) +/area/horizon/hallway/primary/deck_2/starboard) "hrf" = ( /obj/machinery/atmospherics/pipe/simple/hidden, /obj/effect/decal/cleanable/dirt, /obj/effect/floor_decal/industrial/warning/cee, /turf/simulated/floor/plating, /area/shuttle/skipjack) -"hrg" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ +"hrm" = ( +/obj/effect/floor_decal/spline/fancy{ + dir = 6 + }, +/obj/item/modular_computer/console/preset/engineering{ + dir = 1 + }, +/obj/structure/railing/mapped, +/obj/structure/railing/mapped{ 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{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/plating, -/area/engineering/engine_room) +/turf/simulated/floor/carpet/rubber, +/area/horizon/command/bridge/controlroom) "hrn" = ( /obj/item/stack/material/glass/reinforced/full, /obj/item/stack/material/glass/reinforced/full, @@ -52130,97 +51992,109 @@ /obj/structure/bed/stool/chair/office/dark, /turf/simulated/floor/tiled/white, /area/horizon/security/forensic_laboratory) -"hru" = ( +"hry" = ( +/obj/structure/disposalpipe/segment, /obj/structure/cable/green{ - icon_state = "1-4" + icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/bluespace_drive) -"hrv" = ( -/obj/effect/floor_decal/corner/mauve/full{ - dir = 8 - }, -/obj/structure/closet/emcloset, -/obj/effect/floor_decal/industrial/outline/emergency_closet, -/turf/simulated/floor/tiled, -/area/rnd/hallway/secondary) -"hrw" = ( -/obj/structure/disposalpipe/segment{ - icon_state = "pipe-c" - }, +/obj/structure/lattice/catwalk/indoor/grate/dark, /turf/simulated/floor, -/area/maintenance/substation/command) -"hrx" = ( -/obj/effect/floor_decal/spline/fancy/wood/cee, -/obj/structure/railing/mapped{ +/area/horizon/maintenance/deck_3/aft/holodeck) +"hrA" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/effect/floor_decal/corner/dark_green{ + dir = 9 + }, +/obj/machinery/camera/network/first_deck{ + c_tag = "First Deck - Hangar 7"; dir = 4 }, -/obj/structure/bed/stool/chair/padded/black{ - dir = 8 +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 }, -/turf/simulated/floor/wood, -/area/hallway/primary/central_one) +/turf/simulated/floor/tiled, +/area/horizon/hangar/intrepid) "hrC" = ( /turf/simulated/floor/beach/sand{ dir = 4; icon_state = "beachcorner" }, /area/centcom/shared_dream) -"hrD" = ( -/obj/effect/map_effect/window_spawner/full/borosilicate/reinforced/firedoor, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/engine_monitoring) -"hrH" = ( -/obj/effect/floor_decal/corner/mauve{ - dir = 10 +"hrE" = ( +/obj/structure/railing/mapped{ + dir = 1 }, -/obj/structure/cable/green{ - icon_state = "1-2" +/obj/effect/floor_decal/corner/dark_blue/full{ + dir = 1 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/rnd/hallway) +/obj/item/modular_computer/console/preset/command, +/obj/machinery/light/small, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/command/bridge/aibunker) "hrK" = ( /obj/effect/floor_decal/spline/plain, /turf/simulated/floor/beach/sand{ icon_state = "desert" }, /area/centcom/shared_dream) -"hrN" = ( -/turf/simulated/wall, -/area/maintenance/substation/medical) -"hrP" = ( -/obj/structure/cable{ - icon_state = "1-8" +"hrR" = ( +/obj/structure/bed/stool/chair{ + dir = 8 }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 10 +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/floor_decal/corner/brown/full{ + dir = 1 }, /turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/central) -"hsc" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ +/area/horizon/operations/lobby) +"hrS" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, +/obj/structure/cable{ + icon_state = "4-8" + }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/obj/effect/floor_decal/corner/dark_green{ - dir = 5 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 }, -/obj/machinery/power/apc/north, -/obj/structure/cable/green{ - icon_state = "0-2" +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/main/port) +"hrU" = ( +/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/horizon/hallway/deck_three/primary/central) +/area/horizon/hangar/auxiliary) +"hrW" = ( +/obj/structure/railing/mapped{ + dir = 8 + }, +/turf/simulated/open, +/area/horizon/service/custodial/disposals/deck_2) "hsd" = ( /obj/effect/floor_decal/corner/grey{ dir = 10 @@ -52238,6 +52112,17 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/security/evidence_storage) +"hsg" = ( +/obj/machinery/cryopod{ + dir = 4 + }, +/obj/effect/floor_decal/corner/dark_green/diagonal, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/structure/sign/directions/cryo{ + pixel_y = 29 + }, +/turf/simulated/floor/tiled, +/area/horizon/crew/fitness/changing) "hsj" = ( /obj/machinery/atmospherics/pipe/simple/heat_exchanging{ dir = 9 @@ -52256,16 +52141,15 @@ /obj/machinery/atmospherics/pipe/simple/visible/purple, /turf/space/dynamic, /area/horizon/exterior) -"hsn" = ( -/obj/structure/cable/green{ - icon_state = "4-8" +"hsm" = ( +/obj/machinery/mecha_part_fabricator{ + dir = 8 }, -/obj/machinery/atmospherics/pipe/manifold/visible/yellow{ - dir = 4 +/obj/structure/railing/mapped{ + dir = 8 }, -/obj/structure/lattice/catwalk/indoor, -/turf/simulated/floor/plating, -/area/engineering/atmos/air) +/turf/simulated/floor/tiled/dark/full, +/area/horizon/operations/machinist) "hst" = ( /obj/structure/shuttle/engine/router{ dir = 4 @@ -52278,17 +52162,15 @@ }, /turf/unsimulated/floor/plating, /area/centcom/legion) -"hsx" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 5 +"hsD" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 9 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden, /turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/port/docks) -"hsK" = ( -/obj/effect/floor_decal/corner/dark_blue/full, -/turf/simulated/floor/tiled, -/area/rnd/eva) +/area/horizon/rnd/hallway/secondary) "hsL" = ( /obj/effect/floor_decal/corner/blue{ dir = 10 @@ -52300,52 +52182,27 @@ }, /obj/machinery/power/apc/south, /turf/simulated/floor/tiled/white, -/area/horizon/security/autopsy_laboratory) -"hsM" = ( -/obj/machinery/button/remote/blast_door{ - dir = 1; - id = "turbineinterior"; - name = "Interior Blast Door"; - pixel_x = 6; - pixel_y = 22; - req_access = list(24) +/area/space) +"hsQ" = ( +/obj/effect/floor_decal/corner_wide/lime/diagonal, +/obj/structure/disposalpipe/junction{ + dir = 1 }, -/obj/machinery/button/remote/blast_door{ - dir = 1; - id = "turbineexterior"; - name = "Exterior Blast Door"; - pixel_y = 22; - pixel_x = -6; - req_access = list(24) - }, -/obj/machinery/button/remote/airlock{ - dir = 1; - id = "turbine_combustion"; - name = "Door Bolt Control"; - pixel_y = 32; - req_access = list(24); - specialfunctions = 4 - }, -/obj/effect/floor_decal/corner/dark_blue{ +/turf/simulated/floor/tiled/white, +/area/horizon/medical/reception) +"hsR" = ( +/obj/effect/floor_decal/industrial/warning{ dir = 4 }, -/obj/effect/floor_decal/corner/yellow{ - dir = 1 +/obj/machinery/power/apc/west, +/obj/structure/cable{ + icon_state = "0-2" }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 +/obj/structure/cable{ + icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/simple/visible/purple{ - dir = 9 - }, -/turf/simulated/floor/tiled/dark, -/area/engineering/engine_room/turbine) -"hsN" = ( -/obj/effect/floor_decal/corner/grey{ - dir = 6 - }, -/turf/simulated/floor/lino, -/area/horizon/bar) +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/main/starboard) "hsT" = ( /obj/effect/decal{ anchored = 1; @@ -52365,6 +52222,41 @@ /obj/effect/decal/rolling_fog, /turf/simulated/floor/holofloor/reinforced, /area/horizon/holodeck/source_biesel) +"hsU" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/horizon/crew/lounge) +"hsV" = ( +/obj/structure/table/standard, +/obj/item/stack/nanopaste{ + pixel_y = 9 + }, +/obj/item/stack/nanopaste, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/obj/machinery/power/apc/north, +/turf/simulated/floor/carpet/rubber, +/area/horizon/rnd/xenoarch/spectrometry) +"hsX" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_3/security/starboard) "hsY" = ( /obj/effect/floor_decal/corner/red{ dir = 5; @@ -52375,67 +52267,28 @@ "htc" = ( /turf/unsimulated/wall/darkshuttlewall, /area/tdome/tdomeobserve) -"htf" = ( -/obj/structure/bed/stool/chair/shuttle{ - dir = 4 +"htg" = ( +/obj/structure/cable/green{ + icon_state = "4-8" }, -/turf/simulated/floor/shuttle/dark_blue, -/area/shuttle/escape_pod/pod1) -"htn" = ( -/obj/structure/tank_wall/hydrogen{ - density = 0; - icon_state = "h6"; - opacity = 0 - }, -/obj/machinery/atmospherics/unary/vent_pump/siphon/on/atmos{ - dir = 1; - id_tag = "H2_out_portthruster" - }, -/turf/simulated/floor/reinforced/hydrogen, -/area/engineering/atmos) -"hto" = ( -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/structure/platform/ledge{ - dir = 8 - }, -/turf/simulated/open, -/area/hallway/primary/central_one) -"htp" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard) -"htq" = ( -/turf/simulated/wall, -/area/maintenance/substation/security) -"htr" = ( -/obj/machinery/shipsensors/weak/scc_shuttle{ - pixel_y = -15 - }, -/obj/effect/floor_decal/industrial/warning{ +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 + dir = 4 }, -/turf/simulated/floor/reinforced, -/area/shuttle/quark/cockpit) -"hts" = ( -/obj/structure/cable/green, -/obj/effect/floor_decal/corner/dark_green{ - dir = 9 +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/corner/brown{ + dir = 5 + }, +/obj/machinery/computer/shuttle_control/multi/lift/wall/operations{ + pixel_x = -30; + pixel_y = 26 }, -/obj/machinery/power/apc/super/west, /turf/simulated/floor/tiled, -/area/assembly/chargebay) +/area/horizon/operations/loading) "htu" = ( /obj/effect/floor_decal/corner/red/diagonal, /obj/structure/table/standard, @@ -52448,31 +52301,33 @@ }, /turf/simulated/floor/tiled, /area/merchant_station) -"htx" = ( -/obj/machinery/door/firedoor, +"htJ" = ( +/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/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/airlock/maintenance{ - dir = 1; - name = "Maintenance Passthrough"; - req_access = list(12) +/obj/machinery/access_button{ + pixel_x = -28; + pixel_y = 12; + dir = 1 }, -/turf/simulated/floor/tiled/full, -/area/horizon/stairwell/central) -"htB" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/door/firedoor, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/airlock/maintenance{ - dir = 1; - name = "Machinist Workshop Maintenance"; - req_access = list(29) +/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/tiled, -/area/operations/lower/machinist) +/obj/effect/map_effect/marker_helper/airlock/exterior, +/obj/effect/landmark/entry_point/aft{ + name = "aft, airlock" + }, +/turf/simulated/floor/plating, +/area/horizon/shuttle/quark/cargo_hold) "htP" = ( /obj/structure/window/reinforced/crescent{ dir = 8 @@ -52482,24 +52337,50 @@ /obj/structure/flora/ausbushes/ppflowers, /turf/simulated/floor/grass/no_edge, /area/centcom/evac) -"htQ" = ( -/obj/effect/floor_decal/corner/green/diagonal, -/obj/structure/toilet{ - dir = 1; - pixel_y = -1 - }, -/obj/machinery/button/remote/airlock{ - dir = 4; - id = "central_stall_2"; - name = "Stall Door Lock"; - pixel_x = 24; - specialfunctions = 4 - }, -/obj/machinery/light/small{ - dir = 8 +"htR" = ( +/obj/machinery/computer/operating, +/obj/effect/floor_decal/corner_wide/paleblue{ + dir = 10 }, /turf/simulated/floor/tiled/white, -/area/horizon/crew_quarters/washroom/central) +/area/horizon/medical/surgery) +"htS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor, +/area/horizon/maintenance/deck_3/aft/port/far) +"htU" = ( +/obj/effect/floor_decal/corner/mauve/diagonal, +/obj/machinery/shower{ + dir = 8; + pixel_x = 1; + pixel_y = 1 + }, +/obj/machinery/shower{ + dir = 8; + pixel_x = 1; + pixel_y = 1 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled, +/area/horizon/rnd/xenobiology/xenoflora) +"htX" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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/horizon/engineering/hallway/aft) "htY" = ( /obj/effect/floor_decal/corner/red{ dir = 10; @@ -52527,23 +52408,6 @@ icon_state = "wood" }, /area/centcom/spawning) -"huc" = ( -/obj/effect/floor_decal/corner/mauve/diagonal, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora) -"hue" = ( -/obj/effect/floor_decal/corner/brown/full{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/loading/yellow{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/refinery) "huh" = ( /obj/machinery/door/airlock/highsecurity{ name = "Ready Room"; @@ -52551,39 +52415,19 @@ }, /turf/simulated/floor/shuttle/dark_red, /area/shuttle/hapt) -"hun" = ( -/obj/effect/floor_decal/corner/black{ - dir = 10 +"huk" = ( +/obj/structure/cable/green{ + icon_state = "1-2" }, -/obj/effect/floor_decal/industrial/outline/grey, -/obj/structure/table/steel, -/obj/item/device/radio{ - pixel_x = -7; - pixel_y = 5 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/structure/sign/drop{ + name = "\improper DANGER: DROP ON OTHER SIDE OF DOOR sign"; + pixel_x = -32 }, -/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) +/turf/simulated/floor, +/area/horizon/maintenance/deck_3/aft/holodeck) "huo" = ( /obj/structure/shuttle/engine/propulsion{ dir = 1 @@ -52604,60 +52448,46 @@ /obj/effect/decal/cleanable/dirt, /turf/unsimulated/floor, /area/antag/jockey) -"hux" = ( -/obj/machinery/embedded_controller/radio/airlock/docking_port{ - frequency = 1380; - id_tag = "centcom_shuttle_dock_airlock"; - pixel_x = 30; - req_one_access = list(13); - tag_airpump = "centcom_shuttle_dock_pump"; - tag_chamber_sensor = "centcom_shuttle_dock_sensor"; - tag_exterior_door = "centcom_shuttle_dock_outer"; - tag_interior_door = "centcom_shuttle_dock_inner" - }, -/obj/machinery/airlock_sensor{ - frequency = 1380; - id_tag = "centcom_shuttle_dock_sensor"; - pixel_x = -25 - }, -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 1; - frequency = 1380; - id_tag = "centcom_shuttle_dock_pump" - }, -/obj/machinery/light/small{ - dir = 8 - }, +"huE" = ( +/obj/structure/stairs/west, /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; - icon_state = "freezer" - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology/xenoflora) -"huC" = ( -/obj/machinery/atmospherics/binary/pump{ - dir = 1; - name = "Connectors to Mix" - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/atmos) -"huF" = ( -/turf/simulated/floor/tiled/white, -/area/rnd/chemistry) +/area/horizon/maintenance/deck_1/wing/port/far) "huG" = ( /turf/simulated/wall/shuttle/unique/mercenary/small{ icon_state = "7,2" }, /area/shuttle/syndicate_elite) +"huH" = ( +/obj/effect/floor_decal/corner/dark_green, +/turf/simulated/floor/tiled, +/area/horizon/engineering/hallway/fore) +"huI" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/obj/effect/floor_decal/corner/dark_green{ + dir = 9 + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/disposalpipe/junction{ + dir = 4; + icon_state = "pipe-j2" + }, +/turf/simulated/floor/tiled, +/area/horizon/hangar/intrepid) +"huQ" = ( +/obj/machinery/firealarm/north, +/obj/random/dirt_75, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/starboard/nacelle) "huS" = ( /obj/machinery/washing_machine, /obj/effect/decal/cleanable/dirt, @@ -52675,41 +52505,98 @@ icon_state = "beach" }, /area/centcom/shared_dream) -"huW" = ( -/obj/structure/table/wood, -/obj/effect/floor_decal/spline/fancy/wood{ +"hvf" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/port/near) +"hvg" = ( +/obj/effect/floor_decal/industrial/hatch/red, +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/service/custodial/disposals/deck_1) +"hvt" = ( +/obj/machinery/atmospherics/portables_connector/fuel{ dir = 4 }, -/obj/random/pottedplant_small{ - pixel_x = 9 +/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/horizon/shuttle/quark/cargo_hold) +"hvv" = ( +/obj/structure/cable/green{ + icon_state = "4-8" }, -/turf/simulated/floor/carpet, -/area/lawoffice/representative_two) -"hvd" = ( -/obj/structure/window/reinforced{ +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/machinery/portable_atmospherics/hydroponics, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology/xenoflora) -"hve" = ( -/turf/simulated/floor/wood, -/area/chapel/main) -"hvj" = ( -/obj/structure/bed/stool/chair/padded/brown{ - dir = 8 +/obj/effect/floor_decal/corner_wide/green{ + dir = 10 }, -/obj/effect/landmark/start{ - name = "Passenger" +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/structure/railing/mapped, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/hallway/upper) +"hvw" = ( +/obj/structure/disposalpipe/junction{ + dir = 1; + icon_state = "pipe-j2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/structure/lattice/catwalk/indoor/grate, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor, +/area/horizon/command/bridge/upperdeck) +"hvx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/full, +/area/horizon/hallway/primary/deck_2/central) +"hvy" = ( +/obj/machinery/ringer/west{ + department = "Custodial"; + id = "ringers_custodial"; + name = "\improper Custodial Ringer Terminal"; + pixel_y = 5; + req_access = list(26) + }, +/obj/structure/coatrack{ + pixel_x = -9 + }, +/obj/effect/floor_decal/corner/purple{ + dir = 9 }, -/turf/simulated/floor/carpet/art, -/area/crew_quarters/lounge/secondary) -"hvp" = ( -/obj/effect/floor_decal/corner/dark_blue/full, -/obj/machinery/atmospherics/pipe/simple/hidden, /turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/starboard/docks) +/area/horizon/service/custodial) "hvA" = ( /obj/structure/window/shuttle/unique/mercenary/small{ icon_state = "2,12"; @@ -52723,76 +52610,17 @@ }, /turf/unsimulated/floor/plating, /area/centcom/legion) -"hvI" = ( +"hvX" = ( +/obj/random/pottedplant, +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/floor_decal/corner/white/diagonal, +/obj/effect/floor_decal/spline/plain{ + dir = 4 + }, /turf/simulated/floor/tiled/dark, -/area/horizon/maintenance/deck_three/aft/starboard) -"hvN" = ( -/obj/machinery/atmospherics/pipe/simple/visible/purple{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/engine_room/turbine) -"hvO" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/machinery/door/airlock/maintenance_hatch{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/engineering) -"hvS" = ( -/obj/structure/cable/green{ - icon_state = "0-2" - }, -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/obj/structure/cable/green{ - icon_state = "2-4" - }, -/obj/effect/map_effect/window_spawner/full/reinforced/polarized/grille/firedoor{ - id = "consularA" - }, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "bridge blast"; - name = "Bridge Blast Doors"; - opacity = 0 - }, -/turf/simulated/floor, -/area/lawoffice/consular) -"hvW" = ( -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/turf/simulated/wall/shuttle/scc_space_ship/cardinal, -/area/bridge/controlroom) +/area/horizon/hallway/primary/deck_3/central) "hwa" = ( /obj/machinery/light{ dir = 1 @@ -52808,48 +52636,64 @@ }, /turf/simulated/floor/tiled/dark/full, /area/shuttle/mercenary) +"hwd" = ( +/obj/machinery/computer/general_air_control/large_tank_control/terminal{ + sensors = list("port_prop_sensor"="Port Propulsion Sensor"); + output_tag = "port_prop_out"; + frequency = 1442; + name = "Port Propulsion Control Console"; + input_tag = "port_prop_in" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/purple{ + dir = 6 + }, +/obj/effect/floor_decal/industrial/outline/emergency_closet, +/obj/structure/sign/nosmoking_1{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/atmos/propulsion/starboard) "hwe" = ( /obj/effect/floor_decal/spline/plain/corner, /turf/simulated/floor/beach/sand{ icon_state = "desert" }, /area/centcom/shared_dream) -"hwg" = ( -/obj/effect/floor_decal/corner_wide/blue/full{ - dir = 4 +"hwj" = ( +/obj/structure/cable{ + icon_state = "1-2" }, -/obj/structure/table/reinforced/steel, -/obj/item/grenade/chem_grenade/large/phoroncleaner{ - pixel_x = -6 +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/corner/dark_green{ + dir = 9 }, -/obj/item/grenade/chem_grenade/large/phoroncleaner{ - pixel_x = 8 +/obj/machinery/light/spot{ + dir = 8; + must_start_working = 1 }, -/obj/item/grenade/chem_grenade/large/phoroncleaner{ - pixel_x = 1; - pixel_y = 7 +/turf/simulated/floor/tiled, +/area/horizon/hangar/auxiliary) +"hwr" = ( +/obj/item/material/ashtray/bronze{ + pixel_x = -5; + pixel_y = 2 }, -/obj/machinery/door/window/northright{ - name = "Storage"; - req_access = list(20) +/obj/effect/floor_decal/corner/dark_green{ + dir = 9 + }, +/obj/structure/table/wood, +/turf/simulated/floor/tiled, +/area/horizon/security/checkpoint2) +"hwt" = ( +/obj/machinery/media/jukebox/audioconsole{ + anchored = 1 + }, +/obj/machinery/light{ + dir = 1 }, /turf/simulated/floor/tiled/dark/full, -/area/storage/secure) -"hwk" = ( -/obj/machinery/atmospherics/binary/pump{ - dir = 8; - name = "Nitrous Oxide to Connector" - }, -/turf/simulated/floor/plating, -/area/engineering/atmos/air) -"hwo" = ( -/obj/effect/floor_decal/spline/fancy/wood/cee{ - dir = 8 - }, -/obj/machinery/alarm/north, -/obj/random/pottedplant, -/turf/simulated/floor/wood, -/area/bridge/meeting_room) +/area/horizon/service/dining_hall) "hww" = ( /obj/machinery/embedded_controller/radio/simple_docking_controller{ frequency = 1337; @@ -52859,100 +52703,32 @@ }, /turf/simulated/floor/tiled, /area/merchant_station/warehouse) -"hwy" = ( -/obj/structure/table/rack{ - dir = 8 - }, -/obj/item/tank/jetpack/carbondioxide, -/obj/item/tank/jetpack/carbondioxide, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 10 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/item/tank/jetpack/carbondioxide, -/obj/item/tank/jetpack/carbondioxide, -/obj/item/clothing/shoes/magboots, -/obj/item/clothing/shoes/magboots, -/obj/item/clothing/shoes/magboots, -/obj/item/clothing/shoes/magboots, -/turf/simulated/floor/tiled/dark, -/area/storage/eva) -"hwz" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/shutters/open{ - dir = 8; - id = "shutters_deck3_cafedesk"; - name = "Cafe Desk Shutter" - }, -/obj/structure/table/stone/marble, -/obj/item/material/ashtray/bronze{ - pixel_y = -5 - }, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/cafeteria) -"hwA" = ( -/obj/structure/table/stone/marble, -/obj/machinery/door/firedoor{ - req_one_access = list(24,11,67,73); - dir = 4 - }, -/obj/machinery/door/blast/shutters{ - id = "intrepid_buffet"; - name = "Buffet Desk Shutter"; - dir = 4 - }, -/turf/simulated/floor/tiled/dark/full, -/area/shuttle/intrepid/buffet) -"hwH" = ( -/obj/effect/floor_decal/corner/dark_green{ +"hwN" = ( +/obj/structure/closet/secure_closet/hangar_tech, +/obj/effect/floor_decal/corner/brown{ dir = 6 }, -/obj/machinery/alarm/east, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_two) -"hwK" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/structure/railing/mapped, -/obj/machinery/atmospherics/portables_connector{ - dir = 1 - }, +/obj/machinery/firealarm/east, /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" = ( +/turf/simulated/floor/tiled, +/area/horizon/operations/office) +"hwS" = ( /obj/structure/cable/green{ icon_state = "4-8" }, -/obj/effect/floor_decal/corner/mauve{ - dir = 5 +/obj/structure/cable/green{ + icon_state = "1-8" }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ +/obj/effect/floor_decal/spline/fancy/wood/corner{ dir = 4 }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/rnd/hallway) +/turf/simulated/floor/wood, +/area/horizon/command/bridge/minibar) "hwV" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/fake_object{ @@ -52986,169 +52762,110 @@ }, /turf/simulated/floor/marble/dark, /area/horizon/holodeck/source_trinary) -"hxg" = ( -/obj/machinery/door/blast/regular{ - id = "iso_b_purge"; - name = "Exterior Blast Door" - }, -/obj/effect/landmark/entry_point/port{ - name = "port, xenobiology" - }, -/turf/simulated/floor/reinforced, -/area/rnd/isolation_b) -"hxh" = ( +"hxd" = ( /obj/structure/cable/green{ - icon_state = "1-2" + icon_state = "1-4" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/engineering{ - dir = 1; - name = "Gravity Generator Monitoring"; - req_access = list(11) - }, -/turf/simulated/floor/tiled/full, -/area/engineering/gravity_gen) -"hxi" = ( -/turf/simulated/wall, -/area/hallway/medical/upper) -"hxl" = ( -/obj/effect/floor_decal/corner/brown/full{ - dir = 8 - }, -/obj/random/pottedplant, -/turf/simulated/floor/tiled, -/area/operations/office) -"hxo" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/tiled/full, -/area/engineering/storage_hard) -"hxs" = ( -/obj/effect/floor_decal/industrial/warning/full, -/obj/machinery/door/blast/regular/open{ - fail_secure = 1; - id = "xenobio_a"; - name = "Cell Containment Blast Door" - }, -/obj/machinery/door/window/holowindoor{ - dir = 8; - req_access = list(55) - }, -/obj/machinery/door/window/holowindoor{ - dir = 4; - req_access = list(55) - }, -/obj/machinery/door/firedoor{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark/full, -/area/rnd/xenobiology) -"hxw" = ( -/obj/effect/floor_decal/spline/fancy/wood/cee, -/obj/structure/flora/ausbushes/sunnybush, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/grass/no_edge, -/area/horizon/hallway/deck_three/primary/starboard) -"hxE" = ( -/obj/machinery/power/apc/super/east, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/effect/floor_decal/corner_wide/yellow/full{ - dir = 4 - }, -/obj/machinery/light/small, -/obj/machinery/firealarm/south, -/obj/structure/engineer_maintenance/electric{ - dir = 4 - }, -/obj/structure/engineer_maintenance/pipe{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark/full, -/area/storage/shields) -"hxJ" = ( -/obj/effect/floor_decal/spline/fancy/wood/cee{ - dir = 8 - }, -/obj/structure/flora/ausbushes/ppflowers, -/obj/structure/flora/ausbushes/sunnybush, -/obj/structure/railing/mapped, -/turf/simulated/floor/grass/no_edge, -/area/horizon/hallway/deck_three/primary/port) -"hxL" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/effect/floor_decal/spline/plain{ - dir = 1 - }, -/obj/structure/bed/handrail, -/turf/simulated/floor/tiled/white, -/area/shuttle/intrepid/buffet) -"hxM" = ( -/obj/structure/table/wood, -/obj/machinery/light, -/obj/machinery/photocopier/faxmachine{ - anchored = 0; - department = "Consular Office A"; - pixel_y = 4; - req_one_access = list(38,19,72) - }, -/obj/machinery/ringer/north{ - dir = 8; - pixel_y = 0; - pixel_x = -10; - department = "Consular A"; - id = "consular_a_ringer"; - req_access = null; - req_one_access = list(72) - }, -/turf/simulated/floor/carpet, -/area/lawoffice/consular) -"hxQ" = ( -/obj/effect/floor_decal/industrial/loading/yellow, -/turf/simulated/floor/tiled, -/area/merchant_station/warehouse) -"hxZ" = ( /turf/simulated/wall/shuttle/scc_space_ship/cardinal, -/area/maintenance/substation/engineering/lower) -"hya" = ( +/area/horizon/command/bridge/controlroom) +"hxf" = ( +/obj/machinery/light/small, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, +/turf/simulated/floor/tiled, +/area/horizon/maintenance/deck_2/wing/starboard/auxatmos) +"hxn" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor, +/area/horizon/maintenance/deck_3/aft/starboard) +"hxq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 10 + }, +/obj/effect/floor_decal/corner/yellow{ + dir = 9 + }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/structure/sign/fire{ - desc = "A caution sign which reads 'COMBUSTION TURBINE'."; - name = "\improper COMBUSTION TURBINE sign"; - pixel_y = 32 - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"hyi" = ( -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/structure/disposalpipe/segment{ +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/reactor/supermatter/waste) +"hxC" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black{ dir = 4 }, -/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/meter, /turf/simulated/floor/plating, -/area/maintenance/research_port) +/area/horizon/engineering/atmos/air) +"hxD" = ( +/obj/structure/bed/stool/chair/shuttle{ + dir = 8 + }, +/obj/machinery/light, +/turf/simulated/floor/shuttle/dark_blue, +/area/horizon/shuttle/escape_pod/pod3) +"hxH" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/carpet/rubber, +/area/horizon/rnd/lab) +"hxQ" = ( +/obj/effect/floor_decal/industrial/loading/yellow, +/turf/simulated/floor/tiled, +/area/merchant_station/warehouse) +"hxW" = ( +/obj/machinery/power/breakerbox/activated{ + RCon_tag = "Engineering Main Substation" + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/substation/engineering) +"hyd" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/camera/network/research{ + c_tag = "Research - Isolation B"; + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 4 + }, +/obj/machinery/alarm/south{ + alarm_id = 1502; + breach_detection = 0; + name = "Isolation B"; + rcon_setting = 3; + report_danger_level = 0; + req_one_access = list(7,47,24,11) + }, +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/xenoarch/isolation_b) +"hye" = ( +/obj/structure/bed/stool/chair/office/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/pharmacy) +"hyh" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 9 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/storage/eva) "hym" = ( /obj/machinery/conveyor{ dir = 1; @@ -53166,51 +52883,51 @@ }, /turf/simulated/floor/tiled/dark, /area/supply/dock) -"hyv" = ( -/obj/item/device/radio/intercom/north{ - dir = 8; - pixel_y = 0; - pixel_x = -7 +"hyo" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/structure/cable{ + icon_state = "4-8" }, -/obj/effect/floor_decal/corner_wide/green{ - dir = 9 +/obj/structure/cable{ + icon_state = "1-4" }, -/turf/simulated/floor/tiled/white, -/area/medical/ward) -"hyx" = ( -/obj/machinery/keycard_auth{ - dir = 4; - pixel_x = -21; - pixel_y = 1 - }, -/obj/structure/closet/secure_closet/operations_manager, -/obj/effect/floor_decal/industrial/outline/operations, -/obj/machinery/light, -/turf/simulated/floor/tiled/full, -/area/operations/qm) -"hyB" = ( -/obj/machinery/atmospherics/portables_connector{ +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/starboard) +"hyq" = ( +/obj/structure/closet, +/obj/random/loot, +/obj/random/junk, +/turf/simulated/floor, +/area/horizon/maintenance/deck_3/aft/starboard/far) +"hys" = ( +/obj/structure/railing/mapped{ dir = 4 }, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/bluespace_drive) -"hyD" = ( -/obj/structure/tank_wall/nitrogen{ - density = 0; - icon_state = "n6"; - opacity = 0 +/obj/effect/floor_decal/industrial/warning{ + dir = 6 }, -/obj/machinery/atmospherics/pipe/manifold/visible/green{ - dir = 1 - }, -/turf/simulated/floor/reinforced/nitrogen, -/area/engineering/atmos/air) +/obj/effect/decal/cleanable/dirt, +/obj/structure/reagent_dispensers/extinguisher, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/service/port) "hyF" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 1 }, /turf/simulated/floor/tiled/dark, /area/horizon/holodeck/source_biesel) +"hyG" = ( +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/effect/floor_decal/corner/dark_blue{ + dir = 9 + }, +/obj/random/pottedplant, +/turf/simulated/floor/tiled/dark, +/area/horizon/command/bridge/controlroom) "hyH" = ( /obj/effect/floor_decal/corner/red/diagonal, /obj/structure/table/standard, @@ -53223,6 +52940,32 @@ }, /turf/simulated/floor/tiled, /area/merchant_station) +"hyI" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner/dark_green{ + dir = 10 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/structure/railing/mapped, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_3/central) +"hyJ" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 6 + }, +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/railing/mapped, +/obj/structure/platform{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/horizon/command/bridge/upperdeck) "hyK" = ( /obj/effect/floor_decal/corner/blue/full{ dir = 1 @@ -53238,33 +52981,136 @@ }, /turf/simulated/floor/tiled/white, /area/horizon/security/autopsy_laboratory) -"hyP" = ( -/obj/structure/table/standard, -/obj/item/storage/box/syringegun{ - pixel_y = 8 - }, -/obj/item/gun/launcher/syringe, -/obj/effect/floor_decal/corner_wide/green{ - dir = 6 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/machinery/alarm/east, -/turf/simulated/floor/tiled/white, -/area/medical/equipment) -"hzn" = ( -/obj/structure/closet/emcloset, -/obj/effect/floor_decal/corner/dark_green/full{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/outline/emergency_closet, -/obj/machinery/camera/network/second_deck{ - c_tag = "Second Deck - Operations Entrance"; +"hyL" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 }, +/turf/simulated/floor/tiled/dark, +/area/horizon/shuttle/quark/cargo_hold) +"hyR" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner_wide/yellow{ + dir = 10 + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/full, +/area/horizon/engineering/hallway/aft) +"hyS" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/computer/general_air_control/large_tank_control/wall{ + input_tag = "air_in"; + name = "Air Supply Monitor"; + output_tag = "air_out"; + pixel_x = 32; + sensors = list("air_sensor"="Tank") + }, +/obj/machinery/atmospherics/pipe/simple/visible/cyan, +/obj/structure/lattice/catwalk/indoor, +/turf/simulated/floor/plating, +/area/horizon/engineering/atmos/air) +"hyZ" = ( +/obj/machinery/disposal/small/north, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/effect/floor_decal/corner_wide/green{ + dir = 10 + }, +/obj/effect/landmark/start{ + name = "Paramedic" + }, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/hallway/upper) +"hza" = ( +/obj/machinery/power/breakerbox/activated{ + RCon_tag = "Security Substation" + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/substation/security) +"hzb" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command{ + dir = 4; + id_tag = "CEdoor"; + name = "Chief Engineer's Office"; + req_access = list(56) + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, /turf/simulated/floor/tiled, -/area/hallway/primary/central_two) +/area/horizon/command/heads/chief) +"hzh" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/item/modular_computer/console/preset/engineering, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/reactor/supermatter/monitoring) +"hzl" = ( +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/effect/floor_decal/corner_wide/green, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/hallway/upper) +"hzo" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/structure/sign/nosmoking_1{ + pixel_y = 32 + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/main/starboard) +"hzq" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/fuel{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/shuttle/intrepid/port_storage) +"hzs" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 9 + }, +/turf/simulated/floor/plating, +/area/horizon/rnd/xenoarch/atrium) +"hzw" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/wood, +/area/horizon/service/dining_hall) "hzz" = ( /obj/structure/table/rack, /obj/item/clothing/accessory/storage/brown_vest, @@ -53274,10 +53120,6 @@ }, /turf/unsimulated/floor/marble, /area/antag/wizard) -"hzC" = ( -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/reinforced, -/area/engineering/gravity_gen) "hzF" = ( /obj/effect/floor_decal/corner/dark_blue{ dir = 6 @@ -53289,92 +53131,95 @@ /obj/effect/landmark/holodeck/holocarp_spawn_pain, /turf/simulated/floor/holofloor/tiled, /area/template_noop) -"hzK" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 9 +"hzJ" = ( +/obj/machinery/button/remote/airlock{ + dir = 8; + id = "deck2_medicaltoilet"; + name = "Door Bolt Control"; + pixel_x = -24; + pixel_y = 1; + specialfunctions = 4 }, -/obj/structure/table/steel, -/obj/item/device/camera, -/obj/item/device/camera, -/obj/item/device/camera{ - pixel_y = 4 +/turf/simulated/floor/tiled/freezer, +/area/horizon/medical/washroom) +"hzS" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 10 }, -/obj/item/device/camera{ - pixel_y = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/storage/eva) -"hzM" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ +/obj/effect/decal/cleanable/cobweb2, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/wing/starboard/far) +"hzW" = ( +/obj/structure/railing/mapped{ dir = 8 }, -/obj/structure/cable/orange{ - icon_state = "4-8" - }, -/obj/structure/lattice/catwalk/indoor/grate, -/turf/simulated/floor/plating, -/area/engineering/engine_room/rust) -"hzY" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 5 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, /turf/simulated/floor/tiled, -/area/rnd/eva) +/area/horizon/service/hydroponics/lower) +"hzZ" = ( +/obj/structure/bed/stool/chair/wood{ + dir = 8 + }, +/turf/simulated/floor/wood/mahogany, +/area/horizon/service/dining_hall) "hAb" = ( /turf/unsimulated/floor{ icon_state = "wood" }, /area/centcom/control) -"hAf" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/cryopod/robot, -/obj/machinery/computer/cryopod/robot{ +"hAh" = ( +/obj/structure/table/rack, +/obj/machinery/firealarm/west, +/obj/machinery/door/window/brigdoor/southleft{ + req_access = list(56) + }, +/obj/item/clothing/suit/fire/atmos, +/obj/item/clothing/mask/gas/half, +/obj/item/clothing/glasses/welding/superior, +/obj/item/clothing/head/hardhat/firefighter/chief, +/obj/item/rig/ce/equipped, +/obj/machinery/status_display{ pixel_y = 32 }, -/obj/effect/floor_decal/spline/plain{ - dir = 5 +/turf/simulated/floor/tiled/dark/full, +/area/horizon/command/heads/chief) +"hAl" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" }, -/turf/simulated/floor/carpet/rubber, -/area/assembly/chargebay) -"hAm" = ( -/obj/structure/railing/mapped, -/turf/simulated/open, -/area/hallway/engineering) -"hAq" = ( -/turf/simulated/floor/carpet, -/area/horizon/security/head_of_security) -"hAr" = ( -/obj/structure/disposalpipe/segment{ +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 9 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/wood, +/area/horizon/service/bar) +"hAo" = ( +/turf/unsimulated/wall/fakepdoor{ dir = 4 }, +/area/horizon/hangar/auxiliary) +"hAz" = ( /obj/structure/cable/green{ - icon_state = "4-8"; - d1 = 4; - d2 = 8 + icon_state = "2-8" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_two/fore) -"hAx" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 6 - }, -/obj/structure/bed/stool/chair/office/bridge/generic{ +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/turf/simulated/floor/tiled/dark, -/area/security/checkpoint2) +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/horizon/command/bridge/meeting_room) "hAB" = ( /obj/machinery/light/small{ dir = 4 @@ -53383,18 +53228,6 @@ /obj/item/bedsheet/brown, /turf/simulated/floor/carpet, /area/shuttle/skipjack) -"hAE" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/machinery/light/small/emergency{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/wing/port/far) "hAH" = ( /obj/structure/table/reinforced/steel, /obj/machinery/button/remote/blast_door{ @@ -53409,6 +53242,22 @@ icon_state = "dark_preview" }, /area/centcom/checkpoint/aft) +"hAI" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/corner/dark_green{ + dir = 6 + }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_3/port) "hAJ" = ( /obj/machinery/vending/coffee, /obj/effect/floor_decal/corner/paleblue{ @@ -53436,47 +53285,6 @@ /obj/effect/step_trigger/thrower/shuttle/northeast, /turf/template_noop, /area/template_noop) -"hAU" = ( -/obj/machinery/door/airlock/hatch{ - dir = 4; - name = "Propulsion"; - req_one_access = list(11,24) - }, -/obj/machinery/atmospherics/pipe/simple/visible/black{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/engineering/atmos/propulsion) -"hAY" = ( -/obj/structure/table/standard, -/obj/item/book/manual/gravitygenerator, -/obj/effect/floor_decal/industrial/warning, -/obj/machinery/button/remote/blast_door{ - desc = "A remote control-switch for the engine control room blast doors."; - dir = 4; - id = "gravgen"; - name = "Gravity Generator Blast Doors"; - pixel_x = 24; - pixel_y = 11; - req_one_access = list(11,24) - }, -/turf/simulated/floor/tiled/dark, -/area/engineering/gravity_gen) -"hBa" = ( -/obj/structure/table/wood, -/obj/item/device/taperecorder, -/turf/simulated/floor/carpet, -/area/journalistoffice) -"hBb" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 5 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/intrepid/starboard_compartment) "hBd" = ( /obj/machinery/atmospherics/pipe/simple/visible/purple, /obj/machinery/atmospherics/pipe/simple/visible/purple{ @@ -53496,27 +53304,26 @@ }, /turf/unsimulated/floor/plating, /area/centcom/legion/hangar5) +"hBl" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/shutters/open{ + dir = 2; + id = "lounge_window_shutters"; + name = "Lounge Window Shutter" + }, +/obj/structure/grille, +/obj/structure/window/shuttle/scc_space_ship, +/turf/simulated/floor/plating, +/area/horizon/service/dining_hall) "hBm" = ( /turf/unsimulated/floor/plating, /area/centcom/specops) -"hBn" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable{ - icon_state = "1-2" +"hBp" = ( +/obj/structure/flora/pottedplant{ + icon_state = "plant-33" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/corner/dark_green{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/hangar/auxiliary) -"hBq" = ( -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/structure/railing/mapped, -/turf/simulated/open, -/area/operations/office) +/turf/simulated/floor/wood, +/area/horizon/hallway/primary/deck_2/starboard) "hBr" = ( /obj/item/device/flashlight/lamp, /obj/item/device/taperecorder, @@ -53549,68 +53356,26 @@ }, /turf/unsimulated/floor, /area/centcom/control) -"hBC" = ( -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/obj/structure/filingcabinet{ - pixel_x = -8 - }, -/obj/structure/filingcabinet/chestdrawer{ - pixel_x = 8 - }, -/turf/simulated/floor/carpet, -/area/lawoffice/consular_two) -"hBJ" = ( -/obj/structure/platform, -/obj/machinery/papershredder{ - pixel_x = 7 - }, -/obj/structure/filingcabinet/filingcabinet{ - pixel_x = -7 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/heads/hor) -"hBL" = ( -/obj/effect/map_effect/window_spawner/full/borosilicate/reinforced, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "SupermatterPort"; - name = "Reactor Blast Door"; - opacity = 0 - }, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/engine_room) -"hBO" = ( -/obj/machinery/portable_atmospherics/canister/empty/carbon_dioxide, -/turf/simulated/floor/plating, -/area/engineering/rust_office) -"hBQ" = ( -/turf/simulated/wall/shuttle/scc_space_ship/cardinal, -/area/bridge/meeting_room) -"hBV" = ( -/obj/effect/floor_decal/corner/lime/diagonal, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/white, -/area/shuttle/intrepid/medical) -"hBW" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 +"hBD" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 }, +/turf/simulated/floor/tiled, +/area/horizon/engineering/storage_eva) +"hBM" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 + dir = 5 }, -/obj/structure/lattice/catwalk/indoor/grate, -/turf/simulated/floor/plating, -/area/operations/lobby) +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor, +/area/horizon/maintenance/deck_3/aft/port/far) +"hBX" = ( +/obj/structure/railing/mapped, +/obj/structure/sign/emergency/evacuation{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/horizon/hangar/operations) "hBY" = ( /obj/structure/flora/ausbushes/fullgrass, /obj/effect/floor_decal/spline/plain, @@ -53627,38 +53392,103 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /turf/simulated/floor/tiled, /area/horizon/security/investigations_hallway) -"hCd" = ( -/obj/machinery/atmospherics/binary/pump{ - dir = 4; - name = "Filter Bypass Pump" - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/dark, -/area/engineering/engine_waste) -"hCj" = ( +"hCe" = ( /obj/effect/floor_decal/industrial/warning{ - dir = 9 + dir = 8 }, -/turf/simulated/floor/reinforced/airless, -/area/template_noop) +/obj/structure/tank_wall/phoron{ + icon_state = "ph10" + }, +/turf/simulated/floor/airless, +/area/horizon/engineering/atmos) +"hCf" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/gen_treatment) "hCm" = ( /obj/effect/floor_decal/industrial/warning{ dir = 4 }, /turf/simulated/floor/reinforced/airless, /area/horizon/exterior) -"hCz" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 +"hCo" = ( +/obj/structure/railing/mapped, +/obj/structure/platform/ledge{ + dir = 1 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 +/turf/simulated/open, +/area/horizon/hallway/primary/deck_2/central) +"hCp" = ( +/obj/machinery/atmospherics/pipe/tank/carbon_dioxide/scc_shuttle, +/turf/simulated/wall/shuttle/unique/scc/scout{ + icon_state = "5,10" }, -/obj/effect/floor_decal/spline/plain{ +/area/horizon/shuttle/canary) +"hCr" = ( +/obj/effect/floor_decal/corner_wide/lime{ dir = 5 }, -/turf/simulated/floor/carpet/rubber, -/area/engineering/engine_monitoring/rust) +/turf/simulated/floor/tiled/white, +/area/horizon/medical/reception) +"hCt" = ( +/obj/structure/bed/stool/chair/padded/red{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/carpet/red, +/area/horizon/service/dining_hall) +"hCu" = ( +/turf/simulated/wall/shuttle/scc_space_ship/cardinal, +/area/horizon/hangar/operations) +"hCC" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/turf/simulated/floor/reinforced, +/area/horizon/rnd/xenobiology) +"hCI" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/light/small/emergency, +/obj/machinery/light/small/emergency, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/port/far) +"hCL" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/reinforced, +/area/horizon/command/bridge/selfdestruct) +"hCM" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 5 + }, +/obj/machinery/status_display{ + pixel_y = 32 + }, +/obj/machinery/power/apc/north{ + is_critical = 1 + }, +/obj/structure/cable/green{ + icon_state = "0-8" + }, +/obj/machinery/camera/network/command{ + c_tag = "Bridge - Conference room"; + dir = 8 + }, +/turf/simulated/floor/wood, +/area/horizon/command/bridge/meeting_room) +"hCN" = ( +/obj/random/dirt_75, +/turf/simulated/floor/tiled, +/area/horizon/maintenance/deck_2/wing/starboard/nacelle) "hCQ" = ( /turf/simulated/wall/r_wall, /area/horizon/security/investigations_hallway) @@ -53674,6 +53504,17 @@ icon_state = "dark_preview" }, /area/centcom/holding) +"hCT" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 9 + }, +/obj/structure/tank_wall/oxygen{ + density = 0; + icon_state = "o2-11"; + opacity = 0 + }, +/turf/simulated/floor/reinforced/oxygen, +/area/horizon/engineering/atmos/air) "hCV" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ @@ -53683,29 +53524,25 @@ icon_state = "2-4" }, /turf/simulated/floor/tiled/dark, -/area/outpost/research/anomaly_storage) -"hCW" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 +/area/horizon/rnd/xenoarch/anomaly_storage) +"hCX" = ( +/obj/machinery/door/firedoor, +/obj/machinery/smartfridge/secure/medbay, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/medical/pharmacy) +"hDb" = ( +/obj/effect/landmark/entry_point/port{ + name = "port, ballast middle" }, -/turf/simulated/floor/wood/walnut, -/area/medical/smoking) -"hDa" = ( -/obj/structure/foamedmetal, -/obj/structure/shuttle_part/scc_space_ship{ - icon_state = "d2-1" - }, -/turf/simulated/floor/plating, -/area/maintenance/wing/cargo_compartment) -"hDd" = ( -/obj/machinery/atmospherics/pipe/simple/visible/black{ +/turf/simulated/wall/shuttle/scc_space_ship/cardinal, +/area/horizon/maintenance/deck_2/wing/starboard/nacelle) +"hDe" = ( +/obj/effect/floor_decal/corner_wide/lime/diagonal, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/visible/supply{ - dir = 5 - }, -/turf/simulated/floor/plating, -/area/engineering/atmos/air) +/turf/simulated/floor/tiled/white, +/area/horizon/medical/reception) "hDi" = ( /obj/structure/window/reinforced/holowindow{ dir = 1 @@ -53720,6 +53557,22 @@ icon_state = "0,2" }, /area/shuttle/legion) +"hDp" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/reactor/indra/monitoring) +"hDr" = ( +/obj/effect/floor_decal/spline/fancy/wood, +/turf/simulated/floor/wood, +/area/horizon/hallway/primary/deck_2/starboard) "hDs" = ( /obj/structure/shuttle_part/ert{ icon_state = "0,4"; @@ -53733,32 +53586,51 @@ }, /turf/simulated/floor/reinforced/airless, /area/horizon/exterior) -"hDD" = ( -/obj/effect/map_effect/window_spawner/full/reinforced/polarized/firedoor{ - id = "repa" +"hDC" = ( +/obj/structure/window/reinforced, +/obj/machinery/gibber, +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/light{ + dir = 1 }, -/turf/simulated/floor/tiled, -/area/lawoffice/representative) -"hDI" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/structure/cable/green{ - icon_state = "1-2" +/turf/simulated/floor/tiled/freezer{ + name = "cooled tiles"; + temperature = 253.15 }, -/turf/simulated/floor/tiled/dark, -/area/engineering/storage/tech) -"hDJ" = ( -/obj/structure/railing/mapped, -/obj/structure/cable/green{ - icon_state = "0-2" +/area/horizon/service/kitchen/freezer) +"hDG" = ( +/obj/machinery/door/airlock/external, +/obj/effect/map_effect/marker/airlock{ + frequency = 3002; + master_tag = "airlock_horizon_deck_2_port_1"; + name = "airlock_horizon_deck_2_port_1" }, -/obj/structure/cable/green{ - icon_state = "12-0" +/obj/effect/map_effect/marker_helper/airlock/exterior, +/obj/machinery/access_button{ + dir = 8; + pixel_x = 20; + pixel_y = -28 }, -/obj/machinery/atmospherics/pipe/zpipe/up/supply, -/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers, -/obj/effect/floor_decal/industrial/warning/full, -/turf/simulated/floor/plating, -/area/maintenance/security_port) +/turf/simulated/floor, +/area/horizon/maintenance/deck_2/wing/starboard/far) +"hDH" = ( +/obj/effect/floor_decal/corner_wide/paleblue{ + dir = 9 + }, +/obj/machinery/disposal/small/east, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/machinery/camera/network/medbay{ + c_tag = "Medical - Operating Room 1"; + dir = 4; + pixel_y = -11 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/surgery) "hDM" = ( /obj/machinery/light/small/emergency{ dir = 4 @@ -53766,15 +53638,16 @@ /obj/structure/lattice/catwalk/indoor, /turf/unsimulated/floor/plating, /area/centcom/specops) -"hDO" = ( -/obj/structure/sign/nosmoking_2{ - pixel_x = 32 +"hDQ" = ( +/obj/effect/floor_decal/corner/dark_blue/diagonal, +/obj/machinery/atmospherics/pipe/simple/hidden/aux{ + dir = 10 + }, +/obj/structure/cable/green{ + icon_state = "2-8" }, -/obj/structure/table/rack, -/obj/random/toolbox, -/obj/effect/floor_decal/industrial/outline/grey, /turf/simulated/floor/tiled/dark, -/area/maintenance/wing/port/far) +/area/horizon/command/bridge/aibunker) "hDR" = ( /obj/machinery/vending/snack{ name = "Free Chocolate Corp"; @@ -53785,6 +53658,19 @@ icon_state = "white" }, /area/tdome/tdomeobserve) +"hDY" = ( +/obj/machinery/light, +/obj/effect/floor_decal/corner/dark_green{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/horizon/security/checkpoint2) "hDZ" = ( /obj/structure/shuttle_part/ccia{ icon_state = "12,3" @@ -53801,87 +53687,112 @@ icon_state = "11,6" }, /area/shuttle/legion) -"hEd" = ( +"hEh" = ( +/obj/machinery/alarm/north, +/obj/random/dirt_75, +/turf/simulated/floor, +/area/horizon/maintenance/deck_2/wing/starboard/far) +"hEt" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/port) +"hEu" = ( +/obj/machinery/conveyor{ + id = "Robocompo" + }, +/obj/structure/platform{ + dir = 4 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/horizon/operations/machinist) +"hEv" = ( +/obj/machinery/door/blast/regular/open{ + id = "iso_c"; + name = "Safety Blast Door" + }, +/obj/effect/map_effect/window_spawner/full/borosilicate/reinforced/firedoor, +/obj/machinery/alarm/south{ + alarm_id = 1501; + breach_detection = 0; + dir = 4; + name = "Isolation A"; + pixel_x = -24; + rcon_setting = 3; + report_danger_level = 0; + req_one_access = list(7,47,24,11) + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/rnd/xenoarch/isolation_a) +"hEw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ icon_state = "1-2" }, -/obj/structure/disposalpipe/junction{ - dir = 4 +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/full, +/area/horizon/hallway/primary/deck_2/central) +"hEF" = ( +/obj/structure/grille, +/obj/machinery/door/firedoor, +/obj/effect/landmark/entry_point/port{ + name = "port, kitchen" }, -/turf/simulated/floor/tiled, -/area/bridge/upperdeck) -"hEo" = ( -/obj/effect/floor_decal/industrial/outline/emergency_closet, -/obj/structure/closet/emcloset, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/lobby) -"hEp" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 6 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/structure/window/shuttle/scc_space_ship/cardinal, +/turf/simulated/floor/plating, +/area/horizon/stairwell/bridge/deck_2) +"hEH" = ( +/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 = 8 - }, -/obj/structure/cable/green{ - icon_state = "4-8"; - d1 = 4; - d2 = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_two) -"hEx" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/stack/rods, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"hEz" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/power/terminal{ - dir = 4 - }, -/obj/machinery/camera/network/engineering{ - c_tag = "Engineering - Deck 3 - Command Substation"; - dir = 4 - }, -/turf/simulated/floor, -/area/maintenance/substation/command) -"hEG" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/simulated/floor/lino, -/area/horizon/crew_quarters/lounge/bar) -"hEI" = ( -/obj/effect/floor_decal/spline/fancy/wood/cee{ - dir = 1 +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_3/central) +"hEK" = ( +/obj/structure/bed/stool/chair/shuttle{ + dir = 4 }, -/obj/structure/flora/ausbushes/lavendergrass, -/obj/structure/flora/ausbushes/palebush, /obj/machinery/light{ dir = 1 }, -/turf/simulated/floor/grass/no_edge, -/area/horizon/hallway/deck_three/primary/port) -"hEQ" = ( -/obj/structure/table/steel, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/item/hoist_kit, -/obj/item/device/multitool, -/obj/structure/railing/mapped{ +/turf/simulated/floor/shuttle/dark_blue, +/area/horizon/shuttle/escape_pod/pod1) +"hER" = ( +/obj/structure/railing/mapped, +/obj/machinery/camera/network/research{ + c_tag = "Research - Research & Development Circuitry"; + pixel_y = 9; dir = 8 }, -/turf/simulated/floor/reinforced, -/area/horizon/grauwolf) +/turf/simulated/floor/tiled/dark, +/area/horizon/rnd/lab) +"hET" = ( +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/obj/effect/map_effect/window_spawner/full/reinforced/polarized/grille/firedoor{ + id = "consularB" + }, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id = "bridge blast"; + name = "Bridge Blast Doors"; + opacity = 0 + }, +/turf/simulated/floor, +/area/horizon/repoffice/consular_two) "hEU" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/glass_security{ @@ -53909,17 +53820,9 @@ }, /turf/simulated/floor/tiled/full, /area/horizon/security/meeting_room) -"hEZ" = ( -/obj/machinery/mass_driver{ - _wifi_id = "waste"; - dir = 1; - id = "waste" - }, -/obj/effect/floor_decal/industrial/hatch/red, -/turf/simulated/floor/reinforced{ - roof_type = null - }, -/area/horizon/custodial/disposals) +"hFg" = ( +/turf/simulated/wall/r_wall, +/area/horizon/engineering/bluespace_drive) "hFj" = ( /obj/structure/grille, /obj/machinery/door/blast/regular{ @@ -53936,46 +53839,22 @@ /obj/structure/window/shuttle/scc_space_ship/cardinal, /turf/simulated/floor/plating, /area/horizon/security/meeting_room) -"hFl" = ( -/obj/effect/floor_decal/corner_wide/paleblue{ - dir = 10 - }, -/obj/item/storage/box/fancy/tray, -/obj/structure/table/standard, -/obj/machinery/light, -/turf/simulated/floor/tiled/white, -/area/medical/ors) -"hFq" = ( -/obj/effect/floor_decal/corner/brown{ - dir = 6 - }, -/obj/machinery/computer/guestpass{ - pixel_x = 32 - }, -/obj/random/pottedplant, -/turf/simulated/floor/tiled, -/area/operations/lobby) +"hFo" = ( +/turf/simulated/wall/r_wall, +/area/horizon/command/heads/cmo) "hFr" = ( /obj/effect/floor_decal/corner{ dir = 4 }, /turf/simulated/floor/holofloor/tiled, /area/template_noop) -"hFs" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/coatrack{ - pixel_x = -11; - pixel_y = 19 +"hFu" = ( +/obj/effect/floor_decal/corner/dark_blue/diagonal, +/obj/structure/cable/green{ + icon_state = "4-8" }, -/turf/simulated/floor/wood, -/area/horizon/library) -"hFt" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/structure/reagent_dispensers/extinguisher, -/turf/simulated/floor, -/area/horizon/maintenance/deck_three/aft/starboard) +/turf/simulated/floor/tiled, +/area/horizon/command/bridge/bridge_crew) "hFx" = ( /obj/structure/closet/walllocker/medical/firstaid{ pixel_x = -32 @@ -53988,6 +53867,19 @@ /obj/machinery/light/floor, /turf/simulated/floor/tiled/dark, /area/horizon/holodeck_control/beta) +"hFz" = ( +/obj/machinery/door/blast/regular/open{ + id = "hangarlockdown"; + name = "Hangar Lockdown" + }, +/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/hangar/control) +"hFA" = ( +/obj/structure/platform/ledge, +/obj/structure/platform_deco/ledge, +/turf/simulated/open, +/area/horizon/hallway/primary/deck_3/central) "hFE" = ( /obj/structure/closet/crate/freezer, /obj/item/reagent_containers/blood/OMinus{ @@ -54013,18 +53905,6 @@ icon_state = "white" }, /area/centcom/legion) -"hFH" = ( -/obj/machinery/firealarm/south, -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/machinery/atmospherics/portables_connector{ - dir = 1 - }, -/obj/machinery/portable_atmospherics/powered/pump/filled, -/obj/effect/floor_decal/industrial/outline/blue, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/atmos/storage) "hFL" = ( /obj/structure/sink{ pixel_y = 16 @@ -54038,33 +53918,61 @@ /obj/effect/floor_decal/industrial/warning, /turf/unsimulated/floor, /area/centcom/spawning) -"hGb" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden{ - dir = 8 - }, -/obj/effect/map_effect/marker/airlock{ - frequency = 1002; - master_tag = "airlock_horizon_deck_3_fore_starboard_1"; - name = "airlock_horizon_deck_3_fore_starboard_1" - }, +"hFP" = ( +/obj/effect/floor_decal/industrial/outline/emergency_closet, +/obj/structure/closet/emcloset, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/hallway/fore) +"hFS" = ( /turf/simulated/floor, -/area/maintenance/bridge) -"hGc" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/closet/crate, -/obj/random/loot, -/obj/random/loot, -/turf/simulated/floor/plating, -/area/maintenance/wing/port/far) -"hGd" = ( -/obj/structure/window/shuttle/scc_space_ship, -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/effect/landmark/entry_point/fore{ - name = "fore, civilian lounges, port" +/area/horizon/maintenance/deck_3/bridge) +"hFW" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 5 }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_3/port) +"hFX" = ( +/obj/machinery/door/airlock/glass_research{ + dir = 1; + name = "Xenobotany Lab"; + req_access = list(52) + }, +/obj/effect/map_effect/door_helper/unres{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/rnd/xenological) +"hFZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plating, -/area/crew_quarters/lounge/secondary) +/area/horizon/engineering/drone_fabrication) +"hGa" = ( +/obj/structure/table/wood, +/obj/item/flame/candle{ + pixel_x = -5; + pixel_y = 3 + }, +/obj/random/contraband, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/port) "hGe" = ( /obj/machinery/door/airlock/glass_security{ name = "Holding Cell"; @@ -54096,36 +54004,89 @@ }, /turf/simulated/floor/reinforced/airless, /area/horizon/exterior) -"hGu" = ( -/obj/structure/closet/crate, -/obj/effect/floor_decal/corner/brown{ - dir = 9 +"hGn" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/structure/sign/securearea{ + pixel_x = -32 }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled, -/area/operations/storage) -"hGx" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 10 +/turf/simulated/floor, +/area/horizon/maintenance/deck_3/aft/port) +"hGo" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 4 + }, +/obj/effect/map_effect/marker/airlock{ + frequency = 2001; + master_tag = "airlock_horizon_deck_2_starboard_aft"; + name = "airlock_horizon_deck_2_starboard_aft" + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/port/near) +"hGq" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/structure/extinguisher_cabinet/south, -/turf/simulated/floor/tiled, -/area/horizon/stairwell/central) +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor/plating, +/area/horizon/engineering/hallway/aft) +"hGr" = ( +/obj/structure/shuttle_part/scc/scout{ + icon_state = "1,3" + }, +/turf/simulated/floor/plating, +/area/horizon/shuttle/canary) "hGz" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 }, /turf/simulated/floor/tiled/dark, /area/horizon/security/evidence_storage) +"hGA" = ( +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/random/junk, +/obj/structure/platform{ + dir = 4 + }, +/turf/simulated/floor, +/area/horizon/maintenance/deck_2/wing/starboard/far) "hGF" = ( /obj/structure/flora/ausbushes/fullgrass, /turf/simulated/floor/holofloor/beach/sand{ icon_state = "desert" }, /area/horizon/holodeck/source_desert) +"hGK" = ( +/obj/structure/table/standard, +/obj/effect/floor_decal/spline/plain/cee{ + dir = 4 + }, +/obj/machinery/button/remote/blast_door{ + dir = 5; + id = "shutters_deck2_workshopdesk"; + name = "Machinist Workshop Desk Shutters"; + pixel_x = -7; + pixel_y = 3 + }, +/obj/machinery/button/remote/blast_door{ + dir = 5; + id = "mech_bay_shutter"; + name = "Machinist Bay Shutters"; + pixel_x = 3; + pixel_y = 3 + }, +/turf/simulated/floor/carpet/rubber, +/area/horizon/operations/machinist) "hGL" = ( /obj/effect/floor_decal/spline/plain{ dir = 1 @@ -54133,38 +54094,42 @@ /obj/structure/flora/ausbushes/sunnybush, /turf/simulated/floor/exoplanet/grass, /area/centcom/shared_dream) -"hGM" = ( -/obj/effect/floor_decal/corner/yellow/diagonal, -/obj/effect/floor_decal/industrial/warning{ +"hGP" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ dir = 4 }, -/obj/structure/disposalpipe/segment, -/obj/structure/sign/electricshock{ - desc = "A caution sign which reads 'CAUTION: HEAVY MACHINERY IN USE' and 'THIS EQUIPMENT STARTS AND STOPS AUTOMATICALLY.'."; - name = "\improper CAUTION: HEAVY MACHINERY IN USE sign"; - pixel_x = 32; - pixel_y = 32 +/obj/structure/lattice/catwalk/indoor, +/turf/simulated/floor/plating, +/area/horizon/engineering/atmos/air) +"hGV" = ( +/obj/structure/punching_bag, +/obj/effect/floor_decal/corner/brown{ + dir = 9 }, /turf/simulated/floor/tiled, -/area/hallway/engineering) -"hGS" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 5 +/area/horizon/operations/break_room) +"hGW" = ( +/obj/machinery/firealarm/south, +/obj/effect/floor_decal/corner/yellow{ + dir = 10 }, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/engine_room) -"hGT" = ( -/obj/structure/window/reinforced{ - dir = 1 +/turf/simulated/floor/tiled, +/area/horizon/engineering/locker_room) +"hGY" = ( +/obj/effect/floor_decal/corner_wide/green{ + dir = 9 }, -/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) +/obj/machinery/power/apc/low/west, +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/ward) "hGZ" = ( /obj/effect/floor_decal/corner/teal/full{ dir = 4 @@ -54184,6 +54149,10 @@ }, /turf/simulated/floor/tiled, /area/horizon/security/holding_cell_a) +"hHf" = ( +/obj/structure/bed/stool/chair/sofa/left/red, +/turf/simulated/floor/carpet/red, +/area/horizon/service/library) "hHg" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -54191,62 +54160,22 @@ /obj/effect/floor_decal/industrial/hatch/red, /turf/simulated/floor/tiled/dark/full, /area/horizon/security/armoury) -"hHi" = ( -/obj/structure/cable/green{ - icon_state = "0-8" - }, -/obj/effect/floor_decal/industrial/hatch_tiny/yellow, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/cobweb2, -/obj/item/frame/apc{ - pixel_x = -5; - pixel_y = 5 - }, -/turf/simulated/floor/plating, -/area/maintenance/wing/port/far) -"hHk" = ( -/obj/machinery/door/firedoor, -/obj/machinery/conveyor{ - dir = 1; - id = "QMLoad" - }, -/obj/structure/plasticflaps, -/obj/machinery/door/airlock/external{ - dir = 1; - frequency = 1380; - icon_state = "door_locked"; - id_tag = "cargo_shuttle_dock_airlock"; - locked = 1; - name = "Cargo Shuttle"; - req_access = list(13,31) - }, -/turf/simulated/floor/tiled, -/area/operations/loading) -"hHn" = ( -/obj/effect/floor_decal/corner/brown{ - dir = 5 - }, -/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/machinery/firealarm/east, +"hHj" = ( /obj/effect/floor_decal/corner/dark_green{ - dir = 6 + dir = 9 + }, +/obj/structure/bed/stool/chair{ + dir = 4 }, -/obj/machinery/portable_atmospherics/powered/pump/filled, -/obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled, -/area/hangar/intrepid) +/area/horizon/hallway/primary/deck_2/fore) +"hHs" = ( +/obj/machinery/power/apc/west, +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/horizon/engineering/reactor/indra/office) "hHw" = ( /obj/effect/floor_decal/corner/lime/diagonal{ dir = 8 @@ -54276,46 +54205,65 @@ }, /turf/unsimulated/floor, /area/antag/mercenary) -"hHJ" = ( -/obj/structure/disposalpipe/segment{ +"hHC" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 5 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/telesci) +"hHF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor, +/area/horizon/maintenance/deck_3/aft/port/far) +"hHH" = ( +/obj/structure/bed/stool/bar/padded/red{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/horizon/service/library) +"hHL" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 6 + }, +/obj/structure/disposalpipe/segment{ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/obj/machinery/light/small/emergency, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor, -/area/maintenance/security_port) -"hHK" = ( -/obj/structure/platform_deco, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 }, -/turf/simulated/floor/tiled/dark/full, -/area/operations/lower/machinist) -"hHP" = ( -/obj/machinery/button/switch/windowtint{ - dir = 9; - id = "rep"; - pixel_x = 27; - pixel_y = 10; - req_access = list(38) +/obj/structure/cable/green{ + icon_state = "4-8"; + d1 = 4; + d2 = 8 }, -/obj/machinery/requests_console/north{ - announcementConsole = 1; - department = "Representative's Office Bravo"; - departmentType = 5; - name = "Representative's Office requests console"; - pixel_y = 5; - dir = 8; - pixel_x = -48 +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_2/central) +"hHM" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + icon_state = "1-2" }, -/turf/simulated/floor/carpet, -/area/lawoffice/representative_two) +/turf/simulated/floor/tiled, +/area/horizon/command/bridge/cciaroom/lounge) +"hHO" = ( +/obj/effect/floor_decal/corner/green/diagonal, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/crew/washroom/deck_2) "hHR" = ( /obj/machinery/vending/zora{ name = "Jacked Zo'ra Soda"; @@ -54325,25 +54273,62 @@ /obj/effect/decal/cleanable/dirt, /turf/unsimulated/floor/wood, /area/antag/burglar) -"hHY" = ( -/obj/structure/table/reinforced, -/obj/item/storage/box/testpins{ - pixel_x = 1; - pixel_y = 3 +"hHV" = ( +/obj/structure/cable/green{ + icon_state = "4-8" }, -/obj/effect/floor_decal/corner_wide/purple{ - dir = 9 +/obj/effect/floor_decal/corner/dark_blue{ + dir = 6 }, -/obj/effect/floor_decal/corner_wide/purple/diagonal, -/obj/machinery/light{ - 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/horizon/storage/eva) +"hHW" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 }, /turf/simulated/floor/tiled/white, -/area/rnd/test_range) -"hIe" = ( -/obj/effect/shuttle_landmark/lift/robotics_third_deck, -/turf/simulated/open, -/area/horizon/hallway/deck_three/primary/port) +/area/horizon/rnd/xenobiology) +"hHZ" = ( +/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/horizon/hangar/auxiliary) +"hIb" = ( +/obj/structure/table/steel, +/obj/machinery/light/small/emergency{ + dir = 1 + }, +/obj/item/contraband/poster{ + pixel_x = 1; + pixel_y = 5 + }, +/obj/item/contraband/poster{ + pixel_x = 16; + pixel_y = 9 + }, +/turf/simulated/floor, +/area/horizon/maintenance/deck_3/aft/starboard) +"hIc" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/obj/machinery/camera/network/reactor{ + c_tag = "Engineering - INDRA Reactor Core" + }, +/turf/simulated/floor/reinforced/airless, +/area/horizon/engineering/reactor/indra/mainchamber) "hIf" = ( /obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction{ dir = 8 @@ -54353,62 +54338,51 @@ }, /turf/simulated/floor/reinforced/airless, /area/horizon/exterior) -"hIi" = ( -/obj/machinery/newscaster/east{ - pixel_y = 10 - }, -/obj/effect/floor_decal/corner_wide/green{ - dir = 6 - }, -/obj/effect/landmark/start{ - name = "Pharmacist" - }, -/obj/structure/bed/stool/chair{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/hallway/medical/upper) -"hIl" = ( -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/plating, -/area/maintenance/hangar/starboard) -"hIw" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 5 - }, -/obj/machinery/cryopod/living_quarters{ - pixel_y = 8 - }, -/obj/structure/sign/directions/civ{ - desc = "A sign pointing out that a lift leads to the ship's residential deck."; - dir = 1; - name = "\improper Lift to Residential Deck sign"; - pixel_y = -10 - }, -/turf/simulated/floor/tiled, -/area/horizon/crew_quarters/cryo/living_quarters_lift) -"hIx" = ( -/obj/effect/floor_decal/corner_wide/purple{ - dir = 8 - }, -/obj/effect/floor_decal/corner_wide/purple{ - dir = 6 - }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ +"hIg" = ( +/obj/effect/floor_decal/corner/beige/full, +/obj/effect/floor_decal/industrial/loading/yellow{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ +/turf/simulated/floor/tiled/dark, +/area/horizon/medical/gen_treatment) +"hIm" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/reactor/supermatter/mainchamber) +"hIq" = ( +/obj/machinery/media/jukebox/audioconsole/wall{ + pixel_y = -32 + }, +/obj/machinery/camera/network/service{ + c_tag = "Service - Deck 2 - Bar Starboard"; + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/service/bar) +"hIy" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black, +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ dir = 4 }, -/obj/structure/platform_deco, -/turf/simulated/floor/tiled/white, -/area/rnd/xenoarch_atrium) +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/reactor/supermatter/waste) +"hIz" = ( +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/structure/platform/ledge{ + dir = 1 + }, +/obj/structure/platform/ledge{ + dir = 4 + }, +/obj/structure/platform_deco/ledge{ + dir = 10 + }, +/turf/simulated/open, +/area/horizon/hallway/primary/deck_3/central) "hIA" = ( /obj/machinery/atmospherics/pipe/simple/heat_exchanging, /obj/effect/floor_decal/industrial/warning{ @@ -54426,92 +54400,60 @@ /obj/effect/floor_decal/industrial/outline/security, /turf/simulated/floor/tiled, /area/horizon/security/holding_cell_b) -"hID" = ( -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/machinery/light/small/emergency, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard/far) -"hII" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/maintenance/operations) -"hIP" = ( -/obj/effect/floor_decal/corner/green{ - dir = 10 - }, -/obj/machinery/power/apc/low/south, -/obj/structure/cable/green, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ +"hIE" = ( +/obj/effect/floor_decal/corner/dark_green{ dir = 9 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/button/remote/blast_door{ + dir = 8; + id = "holodeck_beta_shutters"; + name = "Holodeck Privacy Shutters"; + pixel_x = -23; + req_one_access = list(38) + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_3/central) +"hIL" = ( +/obj/machinery/power/apc/north, +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/obj/effect/floor_decal/spline/plain{ dir = 5 }, +/turf/simulated/floor/carpet/rubber, +/area/horizon/engineering/bluespace_drive/monitoring) +"hIS" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/hallway/primary/deck_2/central) +"hIZ" = ( +/obj/effect/floor_decal/corner_wide/purple/diagonal, +/obj/structure/cable/green{ + icon_state = "1-2" + }, /turf/simulated/floor/tiled/white, -/area/horizon/crew_quarters/cryo/washroom) -"hIR" = ( -/obj/effect/floor_decal/corner/yellow{ +/area/horizon/rnd/test_range) +"hJd" = ( +/obj/machinery/firealarm/east, +/obj/effect/floor_decal/corner/dark_green{ dir = 6 }, -/turf/simulated/floor/tiled, -/area/engineering/storage_eva) -"hIU" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock{ - dir = 4; - name = "Washroom" - }, -/turf/simulated/floor/tiled/full, -/area/operations/break_room) -"hIW" = ( -/obj/structure/platform, -/obj/effect/floor_decal/corner/paleblue/full{ +/obj/effect/floor_decal/industrial/warning/corner, +/obj/structure/bed/stool/chair/padded/black{ dir = 8 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, /turf/simulated/floor/tiled, -/area/bridge/cciaroom/lounge) -"hIY" = ( -/obj/machinery/firealarm/north, -/obj/effect/floor_decal/corner/dark_green/full{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/loading/yellow{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"hJl" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/portable_atmospherics/hydroponics, -/obj/machinery/atmospherics/portables_connector{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology/xenoflora) +/area/horizon/hangar/intrepid) "hJo" = ( /obj/effect/floor_decal/industrial/outline/grey, /obj/structure/filingcabinet/filingcabinet{ @@ -54526,13 +54468,16 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/security/evidence_storage) -"hJr" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 1 +"hJp" = ( +/obj/structure/cable{ + icon_state = "1-2" }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/carpet/rubber, -/area/tcommsat/entrance) +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/simulated/floor, +/area/horizon/maintenance/substation/command) "hJs" = ( /obj/machinery/door/airlock{ id_tag = "odin_valkyrie_stall1"; @@ -54540,22 +54485,34 @@ }, /turf/unsimulated/floor, /area/centcom/bar) -"hJx" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 +"hJE" = ( +/obj/effect/floor_decal/corner/teal, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 +/obj/structure/sign/double/map/left{ + desc = "A framed picture of a station."; + pixel_x = 16; + pixel_y = 32 }, -/obj/effect/floor_decal/corner/dark_blue/full, -/turf/simulated/floor/tiled/dark, -/area/storage/eva) -"hJG" = ( -/obj/effect/floor_decal/corner/black{ - dir = 6 +/obj/machinery/light/small{ + dir = 8 }, -/turf/simulated/floor/tiled/dark, -/area/hangar/intrepid) +/turf/unsimulated/floor/dark, +/area/antag/actor) +"hJH" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/aux{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/green, +/obj/effect/floor_decal/corner/yellow{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/horizon/stairwell/engineering/deck_1) "hJQ" = ( /obj/structure/window/reinforced{ dir = 8 @@ -54585,6 +54542,21 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/holodeck/source_pool) +"hJW" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 1 + }, +/obj/effect/map_effect/marker/airlock/shuttle{ + cycle_to_external_air = 1; + master_tag = "airlock_shuttle_intrepid"; + name = "airlock_shuttle_intrepid"; + req_one_access = null; + shuttle_tag = "Intrepid" + }, +/obj/effect/map_effect/marker_helper/airlock/out, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/shuttle/intrepid/main_compartment) "hKa" = ( /obj/effect/floor_decal/corner/paleblue{ dir = 6 @@ -54597,26 +54569,6 @@ }, /turf/unsimulated/floor, /area/centcom/holding) -"hKc" = ( -/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/maintenance/wing/starboard) -"hKg" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/structure/lattice/catwalk/indoor/grate, -/turf/simulated/floor, -/area/horizon/hallway/deck_three/primary/port) "hKh" = ( /obj/structure/window/reinforced{ dir = 1; @@ -54636,24 +54588,34 @@ }, /turf/unsimulated/floor/plating, /area/centcom/legion/hangar5) -"hKm" = ( -/obj/machinery/meter, -/obj/effect/floor_decal/corner/yellow{ - dir = 9 +"hKk" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/atmospherics/pipe/manifold4w/visible/cyan, -/turf/simulated/floor/tiled/dark, -/area/engineering/engine_waste) -"hKs" = ( -/obj/effect/floor_decal/corner_wide/yellow{ - dir = 9 +/obj/structure/cable/green{ + icon_state = "4-8" }, -/obj/structure/cable/orange{ - icon_state = "1-4" +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 }, /turf/simulated/floor/tiled, -/area/engineering/engine_room/rust) +/area/horizon/hallway/primary/deck_3/central) +"hKo" = ( +/obj/effect/floor_decal/industrial/hatch/red, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/reinforced/airless, +/area/horizon/engineering/reactor/indra/mainchamber) +"hKu" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/horizon/hangar/auxiliary) "hKw" = ( /obj/structure/dueling_table/no_collide{ icon_state = "bottom_center" @@ -54661,6 +54623,19 @@ /obj/effect/floor_decal/spline/fancy/wood, /turf/simulated/floor/holofloor/wood, /area/horizon/holodeck/source_battlemonsters) +"hKx" = ( +/turf/simulated/wall/r_wall, +/area/horizon/rnd/telesci) +"hKz" = ( +/obj/effect/floor_decal/corner/mauve/diagonal, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/lab) "hKF" = ( /obj/structure/table/reinforced/wood, /obj/machinery/chemical_dispenser/coffee/full{ @@ -54711,85 +54686,100 @@ }, /turf/unsimulated/floor/plating, /area/shuttle/transport1) +"hKZ" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/alarm/north, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/security_port) "hLa" = ( /turf/simulated/wall/shuttle/scc, /area/supply/dock) -"hLd" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 10 +"hLe" = ( +/obj/machinery/shipsensors/weak/scc_shuttle{ + density = 1; + pixel_y = -15 }, -/turf/simulated/floor/wood, -/area/bridge/meeting_room) +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/turf/simulated/floor/reinforced/airless, +/area/horizon/shuttle/mining) "hLg" = ( -/obj/effect/floor_decal/corner/brown{ - dir = 10 +/obj/effect/floor_decal/corner_wide/orange{ + dir = 5 }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, -/turf/simulated/floor/tiled, -/area/operations/lobby) -"hLj" = ( -/obj/structure/bed/stool/chair/office/bridge{ - dir = 1 +/obj/machinery/light_switch{ + pixel_x = -23; + pixel_y = 27 }, -/obj/effect/floor_decal/corner/dark_blue/diagonal, -/turf/simulated/floor/tiled/dark, -/area/bridge/aibunker) -"hLp" = ( -/obj/effect/floor_decal/spline/fancy/wood{ +/turf/simulated/floor/tiled/white, +/area/horizon/medical/pharmacy) +"hLh" = ( +/obj/effect/floor_decal/corner/purple/diagonal, +/obj/machinery/light{ + dir = 8 + }, +/obj/item/device/radio/intercom/west, +/obj/effect/floor_decal/industrial/warning{ dir = 4 }, -/obj/structure/table/wood, -/obj/machinery/newscaster/east, -/obj/random/pottedplant_small{ - pixel_x = 9 +/obj/structure/cable/green{ + icon_state = "0-2" }, -/turf/simulated/floor/wood, -/area/lawoffice/consular) -"hLq" = ( -/obj/structure/window/reinforced, -/obj/structure/table/reinforced/steel, -/obj/item/paper_bin, -/obj/item/pen, +/obj/machinery/power/apc/west, /turf/simulated/floor/tiled/dark, -/area/rnd/xenoarch_atrium) -"hLt" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/item/modular_computer/console/preset/engineering, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/engine_monitoring) -"hLu" = ( +/area/horizon/service/custodial/disposals/deck_2) +"hLi" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ icon_state = "1-2" }, /obj/machinery/door/firedoor, -/obj/machinery/door/airlock/maintenance{ - dir = 1; - name = "Recharging Station Maintenance"; - req_one_access = list(12) +/obj/machinery/door/airlock/glass{ + dir = 1 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/full, -/area/assembly/chargebay) -"hLv" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 6 +/area/horizon/hallway/primary/deck_2/fore) +"hLm" = ( +/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, +/obj/machinery/door/blast/shutters{ + dir = 2; + id = "shutters_deck1_morgue"; + name = "Viewing Shutter" }, -/turf/simulated/floor/tiled/dark, -/area/security/checkpoint2) -"hLw" = ( -/obj/machinery/light/small, -/obj/vehicle/train/cargo/engine, -/obj/effect/floor_decal/corner/brown{ - dir = 10 +/turf/simulated/floor/tiled/dark/full, +/area/horizon/medical/morgue) +"hLr" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled, -/area/operations/storage) +/obj/structure/noticeboard{ + desc = "A board for uncovering hidden conspiracies."; + name = "corkboard"; + pixel_x = 32 + }, +/turf/simulated/floor/wood, +/area/horizon/crew/journalistoffice) "hLz" = ( /obj/structure/window/shuttle/scc_space_ship, /obj/machinery/door/firedoor, @@ -54802,134 +54792,212 @@ }, /turf/simulated/floor/reinforced, /area/shuttle/merchant) -"hLE" = ( -/obj/machinery/atmospherics/pipe/simple/visible/black{ - dir = 4 +"hLA" = ( +/obj/machinery/light, +/obj/effect/floor_decal/corner_wide/yellow{ + dir = 10 }, -/turf/simulated/floor/tiled/dark, -/area/engineering/engine_waste) +/turf/simulated/floor/tiled, +/area/horizon/engineering/bluespace_drive) +"hLD" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/port/near) "hLG" = ( /turf/simulated/floor/lino, /area/merchant_station) +"hLJ" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor, +/area/horizon/maintenance/deck_3/aft/port/far) "hLK" = ( /obj/structure/bed/stool/chair/shuttle{ dir = 8 }, /turf/simulated/floor/shuttle/black, /area/shuttle/distress) -"hLM" = ( -/obj/machinery/alarm/north, -/obj/effect/floor_decal/spline/fancy/wood{ +"hLN" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 10 + }, +/obj/machinery/power/apc/south{ + is_critical = 1 + }, +/obj/structure/cable/green, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_2/starboard) +"hLO" = ( +/obj/machinery/atmospherics/portables_connector/aux{ dir = 1 }, -/turf/simulated/floor/wood, -/area/chapel/office) +/obj/machinery/portable_atmospherics/canister/carbon_dioxide, +/obj/machinery/door/window/brigdoor/northright{ + name = "Fuel Access"; + req_access = null; + req_one_access = list(26,29,31,48,67,24,47,73) + }, +/obj/machinery/camera/network/first_deck{ + c_tag = "First Deck - Hangar Fuel Bay"; + dir = 1 + }, +/obj/effect/floor_decal/industrial/outline/grey, +/turf/simulated/floor/reinforced, +/area/horizon/hangar/intrepid) "hLR" = ( /turf/simulated/floor/holofloor/space, /area/horizon/holodeck/source_basketball) +"hLV" = ( +/obj/machinery/turretid/stun{ + check_synth = 1; + name = "\improper AI Chamber Turret Control Console"; + pixel_x = -40; + pixel_y = 25 + }, +/obj/item/device/radio/intercom/west{ + name = "Common Channel"; + pixel_y = 18; + dir = 1; + pixel_x = 0 + }, +/obj/machinery/firealarm/south, +/turf/simulated/floor/bluegrid{ + name = "cooled mainframe floor"; + temperature = 278 + }, +/area/horizon/ai/chamber) +"hLX" = ( +/obj/machinery/door/airlock/external{ + dir = 1; + icon_state = "door_locked" + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/effect/map_effect/marker_helper/airlock/exterior, +/obj/machinery/access_button{ + dir = 1; + pixel_x = 28; + pixel_y = 12 + }, +/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/effect/floor_decal/industrial/hatch/grey, +/obj/effect/landmark/entry_point/aft{ + name = "aft, airlock" + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/shuttle/mining) +"hLY" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/firedoor, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/door/airlock/maintenance_hatch{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/operations/starboard/far) "hLZ" = ( /turf/simulated/wall/shuttle/unique/mercenary/small{ icon_state = "1,4" }, /area/shuttle/syndicate_elite) +"hMb" = ( +/obj/machinery/atmospherics/binary/pump/high_power{ + dir = 8; + name = "Intake to Cold Loop"; + target_pressure = 15000 + }, +/obj/effect/floor_decal/industrial/hatch_tiny/security, +/turf/simulated/floor/plating, +/area/horizon/engineering/reactor/supermatter/mainchamber) +"hMc" = ( +/obj/structure/closet, +/obj/random/loot, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/operations/starboard) +"hMe" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/turf/simulated/floor/reinforced, +/area/horizon/rnd/xenobiology) +"hMf" = ( +/obj/effect/floor_decal/corner/grey/diagonal, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_3/port) "hMg" = ( /turf/simulated/floor/tiled/ramp{ dir = 8 }, /area/horizon/holodeck/source_sauna) -"hMj" = ( -/obj/structure/shuttle_part/scc/mining{ - icon_state = "7,1" - }, -/turf/simulated/floor/plating, -/area/shuttle/mining) -"hMk" = ( -/obj/machinery/computer/ship/helm/terminal{ - dir = 1; - req_access = list(73) - }, -/obj/effect/floor_decal/industrial/outline/security, -/turf/simulated/floor/tiled/dark/full, -/area/shuttle/intrepid/flight_deck) -"hMm" = ( -/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/machinery/light{ +"hMi" = ( +/obj/structure/platform{ dir = 8 }, -/turf/simulated/floor/plating, -/area/hangar/intrepid) -"hMr" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 +/obj/structure/closet/crate, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/item/stack/material/phoron{ + amount = 20 }, -/obj/structure/cable{ - icon_state = "2-4" +/obj/item/stack/material/uranium{ + amount = 10 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/hidden/aux{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 6 - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/maintenance/operations) -"hMv" = ( -/obj/structure/table/standard, -/obj/effect/floor_decal/corner/beige{ - dir = 6 - }, -/obj/random/pottedplant_small{ - pixel_x = 7; - pixel_y = 2 - }, -/turf/simulated/floor/tiled, -/area/security/vacantoffice) -"hMA" = ( -/obj/effect/floor_decal/industrial/outline/grey, -/obj/structure/survey_probe{ +/turf/simulated/floor/tiled/dark/full, +/area/horizon/operations/machinist) +"hMq" = ( +/obj/effect/floor_decal/corner_wide/yellow/full{ dir = 1 }, -/turf/simulated/floor/plating, -/area/hangar/auxiliary) +/obj/effect/floor_decal/corner_wide/yellow/diagonal{ + dir = 4 + }, +/obj/effect/floor_decal/spline/plain{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/structure/engineer_maintenance/electric/wall, +/turf/simulated/floor/tiled, +/area/horizon/engineering/break_room) "hMC" = ( /obj/effect/floor_decal/industrial/warning{ dir = 6 }, /turf/unsimulated/floor/plating, /area/centcom/specops) -"hME" = ( -/obj/structure/table/wood, -/obj/item/reagent_containers/food/condiment/shaker/salt{ - pixel_x = -6; - pixel_y = 16 - }, -/obj/item/reagent_containers/food/condiment/shaker/peppermill{ - pixel_x = 4; - pixel_y = 16 - }, -/obj/item/flame/candle{ - pixel_y = 16 - }, -/turf/simulated/floor/carpet/red, -/area/horizon/crew_quarters/lounge/bar) "hMF" = ( /obj/structure/table/reinforced/wood, /obj/item/deck/cards, /turf/unsimulated/floor/wood, /area/centcom/bar) +"hMH" = ( +/turf/simulated/floor/carpet, +/area/horizon/hallway/primary/deck_2/starboard) "hMK" = ( /obj/structure/lattice, /obj/machinery/atmospherics/pipe/simple/heat_exchanging{ @@ -54945,49 +55013,44 @@ icon_state = "white" }, /area/centcom/legion) -"hMN" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ +"hMP" = ( +/turf/simulated/wall, +/area/horizon/maintenance/substation/research) +"hMS" = ( +/obj/structure/lattice, +/obj/structure/railing/mapped, +/obj/structure/railing/mapped{ dir = 8 }, -/turf/simulated/floor/tiled, -/area/engineering/lobby) -"hMR" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 6 +/obj/machinery/camera/network/third_deck{ + c_tag = "Third Deck - Starboard Lounge Entrance"; + dir = 1 }, -/obj/machinery/power/apc/low/east, -/obj/structure/cable/green{ - icon_state = "0-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/light, -/turf/simulated/floor/tiled/full, -/area/engineering/engine_airlock) +/turf/simulated/open, +/area/horizon/hallway/primary/deck_3/port) "hMT" = ( /obj/structure/shuttle_part/tcfl{ icon_state = "15,6" }, /turf/unsimulated/floor/plating, /area/shuttle/legion) -"hMX" = ( -/obj/machinery/camera/network/reactor{ - c_tag = "Engineering - INDRA Monitoring Room"; - dir = 1 +"hMY" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor/multi_tile, +/obj/machinery/door/airlock/multi_tile/glass{ + name = "Medical Reception" }, -/obj/effect/floor_decal/spline/plain, -/obj/structure/sign/nosmoking_1{ - pixel_y = -24 +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 2; + icon_state = "shutter0"; + id = "LCKDshutters"; + name = "MedBay Lockdown Shutters"; + opacity = 0 }, -/turf/simulated/floor/carpet/rubber, -/area/engineering/engine_monitoring/rust) -"hNc" = ( -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/structure/window/reinforced, -/obj/machinery/alarm/north, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard/far) +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/full, +/area/horizon/medical/reception) "hNe" = ( /obj/structure/window/reinforced/holowindow{ dir = 8 @@ -54997,93 +55060,42 @@ }, /turf/simulated/floor/holofloor/tiled, /area/horizon/holodeck/source_battlemonsters) -"hNi" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/hatch{ - dir = 1; - id_tag = "airlocks_bunker"; - locked = 1; - name = "Command Bunker"; - req_access = list(19); - secured_wires = 1 - }, -/obj/machinery/door/blast/regular{ - dir = 4; - id = "shutters_bunker"; - name = "Command Bunker Blast Door" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/dark/full, -/area/bridge/aibunker) -"hNk" = ( -/obj/structure/lattice/catwalk, -/turf/simulated/open, -/area/horizon/hydroponics) -"hNp" = ( -/obj/structure/table/rack, -/obj/machinery/firealarm/west, -/obj/machinery/door/window/brigdoor/southleft{ - req_access = list(56) - }, -/obj/item/clothing/suit/fire/atmos, -/obj/item/clothing/mask/gas/half, -/obj/item/clothing/glasses/welding/superior, -/obj/item/clothing/head/hardhat/firefighter/chief, -/obj/item/rig/ce/equipped, -/obj/machinery/status_display{ - pixel_y = 32 - }, -/turf/simulated/floor/tiled/dark/full, -/area/crew_quarters/heads/chief) -"hNt" = ( -/obj/effect/floor_decal/corner/yellow{ - dir = 10 - }, +"hNn" = ( /turf/simulated/floor/tiled/dark, -/area/engineering/engine_waste) -"hNu" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 8 - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 4 - }, -/obj/structure/flora/ausbushes/ppflowers, -/obj/structure/flora/ausbushes/sunnybush, -/obj/structure/railing/mapped{ - dir = 8 - }, -/turf/simulated/floor/grass/no_edge, -/area/horizon/hallway/deck_three/primary/starboard) +/area/horizon/maintenance/deck_2/wing/starboard) +"hNr" = ( +/obj/machinery/hologram/holopad/long_range, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/command/bridge/aibunker) "hNv" = ( /obj/effect/floor_decal/spline/plain/corner{ dir = 4 }, /turf/simulated/floor/exoplanet/barren, /area/centcom/shared_dream) -"hNC" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 - }, -/obj/structure/lattice/catwalk/indoor, +"hNy" = ( /turf/simulated/floor/plating, -/area/engineering/bluespace_drive) +/area/horizon/maintenance/deck_2/research) +"hNB" = ( +/obj/effect/floor_decal/industrial/hatch/red, +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/structure/railing/mapped{ + dir = 8 + }, +/turf/simulated/floor/carpet/rubber, +/area/horizon/engineering/reactor/indra/mainchamber) "hNH" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 10 }, /turf/simulated/floor/tiled/dark, /area/horizon/security/evidence_storage) +"hNL" = ( +/obj/effect/floor_decal/corner_wide/yellow/full, +/turf/simulated/floor/tiled, +/area/horizon/engineering/reactor/indra/mainchamber) "hNM" = ( /obj/effect/floor_decal/industrial/warning/corner, /obj/machinery/light/small{ @@ -55091,17 +55103,15 @@ }, /turf/simulated/floor/tiled/dark, /area/supply/dock) -"hNY" = ( -/obj/effect/floor_decal/corner/brown{ - dir = 5 +"hNX" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance{ + dir = 1; + name = "Operations Maintenance"; + req_one_access = list(26,29,31,48,67,70) }, -/obj/machinery/disposal/small/south, -/obj/structure/disposalpipe/trunk, -/obj/machinery/camera/network/supply{ - c_tag = "Operations - Break Room" - }, -/turf/simulated/floor/tiled, -/area/operations/break_room) +/turf/simulated/floor/tiled/full, +/area/horizon/operations/break_room) "hNZ" = ( /obj/structure/table/reinforced/wood, /obj/item/reagent_containers/glass/rag{ @@ -55109,98 +55119,99 @@ }, /turf/unsimulated/floor, /area/centcom/bar) -"hOk" = ( -/obj/machinery/atmospherics/omni/filter{ - name = "carbon dioxide filter"; - tag_east = 2; - tag_north = 5; - tag_west = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/engineering/atmos) -"hOq" = ( -/obj/effect/floor_decal/corner/yellow{ - dir = 5 - }, -/obj/structure/table/rack, -/obj/item/stack/material/steel{ - amount = 50 - }, -/obj/item/stack/material/steel{ - amount = 50 - }, -/obj/item/stack/material/steel{ - amount = 50 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/item/stack/rods/full, -/obj/item/stack/material/aluminium/full{ - pixel_y = 6; - pixel_x = -7 - }, -/obj/item/stack/material/aluminium/full{ - pixel_y = 6; - pixel_x = -7 - }, -/turf/simulated/floor/tiled, -/area/engineering/storage_eva) -"hOz" = ( -/obj/structure/window/borosilicate{ - dir = 4 - }, -/obj/structure/closet/hazmat/research, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/white, -/area/rnd/lab) -"hOC" = ( -/obj/machinery/light/small/emergency{ - dir = 4 - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/maintenance/hangar/port) -"hOF" = ( -/obj/machinery/door/airlock/external, -/obj/machinery/access_button{ - pixel_x = -28; - pixel_y = 12; +"hOh" = ( +/obj/effect/floor_decal/corner/dark_blue/full{ dir = 1 }, -/obj/effect/map_effect/marker_helper/airlock/exterior, -/obj/effect/map_effect/marker/airlock{ - master_tag = "airlock_horizon_deck_3_aft_1"; - name = "airlock_horizon_deck_3_aft_1"; - frequency = 1001 - }, -/turf/simulated/floor, -/area/horizon/maintenance/deck_three/aft/starboard) -"hOI" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 5 - }, -/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 + dir = 10 }, -/obj/structure/lattice/catwalk/indoor/grate, -/turf/simulated/floor/plating, -/area/hangar/auxiliary) -"hOP" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/camera/network/first_deck{ - c_tag = "First Deck - Hangar 14"; - dir = 8 +/obj/machinery/keycard_auth{ + dir = 8; + pixel_x = 20 }, -/obj/effect/floor_decal/corner/dark_green{ - dir = 6 +/obj/structure/platform_stairs/full{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/command/bridge/controlroom) +"hOj" = ( +/obj/effect/floor_decal/corner_wide/yellow{ + dir = 10 + }, +/obj/structure/cable/green{ + icon_state = "4-8" }, /turf/simulated/floor/tiled, -/area/hangar/auxiliary) +/area/horizon/engineering/hallway/aft) +"hOm" = ( +/obj/structure/bed/stool/chair/office/light{ + dir = 8 + }, +/obj/effect/floor_decal/corner/mauve{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/chemistry) +"hOs" = ( +/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/horizon/shuttle/quark/cockpit) +"hOt" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_engineering{ + dir = 1; + name = "Engineering Hallway"; + req_access = list(10) + }, +/obj/effect/map_effect/door_helper/unres{ + dir = 1 + }, +/turf/simulated/floor/tiled/full, +/area/horizon/engineering/hallway/fore) +"hOD" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/effect/decal/cleanable/dirt, +/obj/random/junk, +/turf/simulated/floor, +/area/horizon/maintenance/deck_3/aft/port) +"hOO" = ( +/obj/machinery/button/switch/windowtint{ + id = "journalist"; + pixel_x = -2; + pixel_y = -19 + }, +/obj/machinery/light_switch{ + pixel_x = -9; + pixel_y = -19 + }, +/obj/machinery/papershredder{ + pixel_x = -6 + }, +/obj/structure/filingcabinet/filingcabinet{ + pixel_x = 10; + pixel_y = 1 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/item/device/radio/intercom/east, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 6 + }, +/turf/simulated/floor/wood, +/area/horizon/crew/journalistoffice) "hOQ" = ( /obj/effect/floor_decal/corner/grey/diagonal{ dir = 4 @@ -55213,74 +55224,63 @@ /obj/random/junk, /turf/unsimulated/floor, /area/centcom/spawning) -"hOS" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/visible/purple{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/engineering/bluespace_drive) -"hOT" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/plating, -/area/shuttle/intrepid/main_compartment) -"hOV" = ( -/obj/effect/floor_decal/corner_wide/grey/diagonal, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/vending/cola, -/turf/simulated/floor/tiled/white, -/area/operations/break_room) -"hOZ" = ( -/obj/machinery/door/airlock/maintenance{ - dir = 4 +"hOR" = ( +/obj/structure/window/shuttle/scc_space_ship, +/obj/structure/grille, +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id = "bridge blast"; + name = "Bridge Blast Doors"; + opacity = 0 }, /obj/machinery/door/firedoor, -/turf/simulated/floor/tiled, -/area/maintenance/wing/starboard/deck1) -"hPf" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden, /obj/structure/cable/green{ - icon_state = "2-8" + icon_state = "2-4" }, +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/obj/machinery/door/blast/shutters/open{ + dir = 4; + id = "shutters_deck3_bridgesafety"; + name = "Safety Shutter" + }, +/obj/machinery/door/blast/shutters/open{ + dir = 4; + id = "conferencesafetyshutters"; + name = "Safety Shutter" + }, +/turf/simulated/floor/plating, +/area/horizon/command/bridge/meeting_room) +"hOU" = ( +/obj/structure/tank_wall/carbon_dioxide{ + density = 0; + icon_state = "co2-6"; + opacity = 0 + }, +/turf/simulated/floor/reinforced/carbon_dioxide, +/area/horizon/engineering/atmos) +"hPd" = ( +/obj/effect/floor_decal/corner_wide/yellow/full, /turf/simulated/floor/tiled, -/area/medical/gen_treatment) -"hPi" = ( -/obj/structure/table/reinforced/steel, -/obj/item/reagent_containers/glass/beaker/large{ - pixel_x = -5; - pixel_y = 14 +/area/horizon/engineering/hallway/interior) +"hPk" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 10 }, -/obj/item/reagent_containers/glass/beaker{ - pixel_x = -6; - pixel_y = 3 - }, -/obj/item/reagent_containers/glass/beaker{ - pixel_x = 6; - pixel_y = 3 - }, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/hydroponics/lower) -"hPj" = ( -/obj/machinery/camera/network/reactor{ - c_tag = "Engineering - INDRA Room 1"; +/obj/effect/floor_decal/spline/plain/corner/blue{ dir = 4 }, -/obj/effect/floor_decal/corner_wide/yellow{ - dir = 9 +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/spline/plain/red{ + dir = 4 }, /turf/simulated/floor/tiled, -/area/engineering/engine_room/rust) +/area/horizon/service/hydroponics/lower) "hPl" = ( /obj/structure/bed/stool/chair/shuttle, /obj/machinery/recharger/wallcharger{ @@ -55293,21 +55293,36 @@ }, /turf/simulated/floor/shuttle/black, /area/shuttle/specops) -"hPm" = ( -/obj/effect/floor_decal/spline/fancy/wood, -/obj/effect/floor_decal/spline/fancy/wood/corner{ +"hPo" = ( +/obj/effect/floor_decal/spline/fancy/wood{ dir = 1 }, -/obj/effect/floor_decal/spline/fancy/wood/corner{ - dir = 4 +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/structure/engineer_maintenance/electric{ + dir = 1 + }, +/obj/structure/engineer_maintenance/pipe{ + dir = 8 }, /turf/simulated/floor/wood, -/area/bridge/cciaroom) -"hPn" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/suit_cycler/mining/prepared, -/turf/simulated/floor/tiled/dark/full, -/area/outpost/mining_main/eva) +/area/horizon/repoffice/consular_one) +"hPp" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/hangar/port) "hPu" = ( /obj/effect/floor_decal/corner_wide/paleblue{ dir = 10 @@ -55321,6 +55336,12 @@ /obj/item/gun/projectile/automatic/rifle/jingya/unloaded, /turf/simulated/floor/tiled/dark/full, /area/horizon/security/armoury) +"hPw" = ( +/obj/machinery/alarm/east, +/obj/structure/disposalpipe/segment, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/service/starboard) "hPx" = ( /obj/machinery/light{ dir = 4; @@ -55336,40 +55357,80 @@ }, /turf/unsimulated/floor, /area/antag/mercenary) -"hPB" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 +"hPz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/horizon/crew/vacantoffice) +"hPD" = ( +/obj/machinery/camera/network/engineering{ + c_tag = "Engineering - Hallway 3"; + dir = 1 }, -/turf/simulated/floor/airless, -/area/hangar/operations) -"hPC" = ( -/obj/structure/tank_wall{ - icon_state = "m-10" - }, -/obj/effect/floor_decal/industrial/warning{ +/obj/effect/floor_decal/spline/fancy/wood{ dir = 8 }, -/turf/simulated/floor/plating, -/area/engineering/atmos) -"hPE" = ( -/obj/structure/bed/stool/chair{ +/obj/random/pottedplant, +/obj/machinery/alarm/east, +/turf/simulated/floor/wood, +/area/horizon/engineering/hallway/interior) +"hPH" = ( +/obj/machinery/door/blast/shutters/open{ + dir = 4; + id = "shutters_deck2_eng_frontdesk"; + name = "Engineering Front Desk Shutter" + }, +/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/lobby) +"hPM" = ( +/obj/structure/platform/ledge, +/obj/structure/platform/ledge{ + dir = 8 + }, +/obj/structure/platform/ledge{ dir = 4 }, -/obj/effect/floor_decal/spline/fancy/wood/cee{ - dir = 1 +/obj/structure/platform_deco/ledge{ + dir = 5 }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" +/obj/structure/platform_deco/ledge{ + dir = 9 + }, +/turf/simulated/open, +/area/horizon/operations/office) +"hPO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/table/stone/marble, +/obj/item/reagent_containers/glass/rag/advanced/idris{ + pixel_x = -8; + pixel_y = -1 + }, +/obj/item/reagent_containers/food/drinks/shaker{ + pixel_x = 2; + pixel_y = 4 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/obj/machinery/button/remote/blast_door{ + dir = 9; + id = "shutters_deck3_cafedesk"; + name = "Cafe Desk Shutters"; + pixel_x = 10; + pixel_y = -4 + }, +/obj/machinery/button/remote/blast_door{ + dir = 5; + id = "shutters_deck3_cafewindows"; + name = "Cafe Window Shutters"; + pixel_x = 10; + pixel_y = 6 }, /turf/simulated/floor/wood, -/area/bridge/upperdeck) -"hPK" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/tiled/full, -/area/engineering/engine_airlock) +/area/horizon/service/cafeteria) "hPP" = ( /obj/effect/step_trigger/teleporter/random{ affect_ghosts = 1; @@ -55397,59 +55458,14 @@ }, /turf/unsimulated/floor, /area/centcom/bar) -"hPR" = ( -/obj/machinery/alarm/east{ - req_one_access = list(11, 24, 47, 65) +"hQh" = ( +/obj/machinery/alarm/cold/north, +/obj/effect/floor_decal/corner/lime/diagonal, +/turf/simulated/floor/tiled/white{ + name = "cooled white floor"; + temperature = 278.15 }, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/structure/table/reinforced/steel, -/obj/machinery/recharger{ - pixel_x = 6 - }, -/obj/machinery/recharger{ - pixel_x = -5 - }, -/obj/item/storage/toolbox/mechanical{ - pixel_x = 6; - pixel_y = 14 - }, -/obj/item/device/binoculars{ - pixel_x = -4; - pixel_y = 10 - }, -/obj/effect/floor_decal/corner/dark_blue/diagonal, -/obj/effect/floor_decal/spline/plain/black{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/intrepid/junction_compartment) -"hPY" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 6 - }, -/turf/simulated/floor/reinforced/airless, -/area/template_noop) -"hPZ" = ( -/obj/structure/shuttle_part/scc/scout{ - density = 0; - icon_state = "1,11" - }, -/turf/simulated/floor/plating, -/area/shuttle/canary) -"hQc" = ( -/obj/machinery/firealarm/north, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/closet/crate, -/obj/item/storage/toolbox/mechanical, -/obj/item/device/flashlight/flare/glowstick/random, -/obj/item/device/flashlight/flare/glowstick/random, -/obj/item/device/flashlight, -/obj/item/device/flashlight, -/obj/item/device/multitool, -/turf/simulated/floor, -/area/bridge/aibunker) +/area/horizon/medical/morgue) "hQk" = ( /obj/structure/table/reinforced/wood, /obj/effect/floor_decal/spline/fancy/wood{ @@ -55470,17 +55486,42 @@ icon_state = "wood" }, /area/centcom/control) -"hQq" = ( -/obj/effect/floor_decal/spline/plain, -/turf/simulated/floor/marble/dark, -/area/bridge/minibar) -"hQr" = ( -/obj/effect/floor_decal/corner/black{ - dir = 9 +"hQp" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/main/interstitial) +"hQu" = ( +/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 }, -/obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled/dark, -/area/hangar/intrepid) +/area/horizon/rnd/xenoarch/atrium) +"hQx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor/plating, +/area/horizon/hallway/primary/deck_2/starboard) "hQA" = ( /obj/effect/floor_decal/corner/yellow{ dir = 1 @@ -55493,9 +55534,18 @@ }, /turf/simulated/floor/marble/dark, /area/horizon/holodeck/source_trinary) -"hQG" = ( -/turf/simulated/floor/wood, -/area/lawoffice/consular) +"hQF" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 10 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_2/central) "hQM" = ( /obj/structure/table/reinforced/steel, /obj/machinery/light{ @@ -55513,13 +55563,6 @@ }, /turf/simulated/floor/tiled, /area/horizon/security/hallway) -"hQO" = ( -/obj/effect/floor_decal/spline/plain, -/turf/simulated/floor/tiled/freezer{ - name = "cooled tiles"; - temperature = 278.15 - }, -/area/medical/morgue/lower) "hQW" = ( /obj/effect/floor_decal/corner/blue/diagonal, /obj/machinery/optable{ @@ -55528,82 +55571,29 @@ /obj/effect/floor_decal/industrial/outline/security, /turf/simulated/floor/tiled/white, /area/horizon/security/autopsy_laboratory) -"hQX" = ( -/obj/structure/bed/stool/chair/office/dark, -/obj/effect/floor_decal/corner_wide/paleblue{ - dir = 5 +"hRd" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 10 }, -/turf/simulated/floor/tiled/white, -/area/hallway/medical) -"hRc" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/trash_pile, -/turf/simulated/floor, -/area/maintenance/security_port) -"hRe" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/wall/shuttle/scc_space_ship/cardinal, -/area/bridge/meeting_room) -"hRg" = ( -/obj/machinery/cryopod{ - dir = 4 - }, -/obj/effect/floor_decal/corner/dark_green/diagonal, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/structure/sign/directions/cryo{ - pixel_y = 29 - }, -/turf/simulated/floor/tiled, -/area/horizon/crew_quarters/fitness/changing) -"hRm" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/portable_atmospherics/canister/hydrogen, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/engine_room/rust) -"hRn" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/machinery/door/airlock/multi_tile/glass{ - autoclose = 0; - dir = 2; - name = "Warehouse Elevator"; - req_one_access = list(26,29,31,48,67) - }, -/obj/machinery/door/firedoor/multi_tile{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/operations/loading) -"hRo" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/structure/tank_wall/air{ - icon_state = "air14" - }, -/turf/simulated/floor/plating, -/area/engineering/atmos/air) -"hRp" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/green{ icon_state = "1-2" }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 8 +/turf/simulated/floor/tiled, +/area/horizon/storage/primary) +"hRt" = ( +/obj/effect/map_effect/window_spawner/full/reinforced/grille/firedoor, +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id = "bridge blast"; + name = "Bridge Blast Doors"; + opacity = 0 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/heads/hop/xo) +/obj/structure/cable/green, +/turf/simulated/floor, +/area/horizon/command/bridge/bridge_crew) "hRu" = ( /obj/machinery/door/airlock/centcom{ dir = 1; @@ -55614,22 +55604,6 @@ icon_state = "dark_preview" }, /area/centcom/control) -"hRw" = ( -/obj/effect/floor_decal/corner_wide/yellow/full, -/turf/simulated/floor/tiled, -/area/engineering/bluespace_drive) -"hRD" = ( -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/structure/railing/mapped{ - dir = 1 - }, -/turf/simulated/open, -/area/maintenance/wing/starboard) -"hRF" = ( -/turf/simulated/floor/tiled/dark, -/area/engineering/atmos/propulsion) "hRH" = ( /obj/effect/decal/fake_object{ density = 1; @@ -55645,17 +55619,37 @@ name = "overgrowth" }, /area/horizon/holodeck/source_moghes) -"hRI" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 +"hRJ" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/airlock/maintenance_hatch{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/horizon/maintenance/deck_1/wing/starboard) +"hRL" = ( +/obj/structure/bed/psych, +/obj/machinery/light_switch{ + pixel_x = -13; + pixel_y = 20 + }, +/obj/random/plushie, +/turf/simulated/floor/wood, +/area/horizon/medical/psych) +"hRP" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume, +/obj/effect/map_effect/marker/airlock/docking{ + landmark_tag = "nav_horizon_dock_deck_3_port_5"; + master_tag = "airlock_horizon_dock_deck_3_port_5"; + name = "airlock_horizon_dock_deck_3_port_5" }, -/turf/simulated/floor/reinforced, -/area/horizon/grauwolf) -"hRO" = ( -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/structure/trash_pile, /turf/simulated/floor/plating, -/area/maintenance/wing/starboard/deck1) +/area/horizon/hallway/primary/deck_3/starboard/docks) "hRQ" = ( /obj/structure/flora/grass/jungle, /obj/effect/decal/fake_object/light_source/invisible{ @@ -55666,49 +55660,73 @@ }, /turf/simulated/floor/exoplanet/grass, /area/centcom/shared_dream) -"hRR" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ +"hSa" = ( +/obj/effect/floor_decal/industrial/warning{ dir = 4 }, -/turf/simulated/floor/wood, -/area/crew_quarters/lounge/secondary) -"hRT" = ( -/obj/effect/map_effect/window_spawner/full/borosilicate/reinforced, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/engine_room) -"hRV" = ( -/obj/machinery/atmospherics/pipe/simple/visible/purple, -/obj/effect/floor_decal/corner/dark_blue{ +/obj/structure/target_stake, +/turf/simulated/floor/reinforced, +/area/horizon/rnd/test_range) +"hSb" = ( +/obj/effect/floor_decal/corner/green/diagonal, +/obj/structure/toilet{ + dir = 1; + pixel_y = -1 + }, +/obj/machinery/button/remote/airlock{ + dir = 4; + id = "central_stall_2"; + name = "Stall Door Lock"; + pixel_x = 24; + specialfunctions = 4 + }, +/obj/machinery/light/small{ dir = 8 }, -/obj/effect/floor_decal/corner/yellow{ - dir = 1 +/turf/simulated/floor/tiled/white, +/area/horizon/crew/washroom/deck_2) +"hSc" = ( +/obj/effect/map_effect/window_spawner/full/borosilicate/reinforced/firedoor, +/obj/structure/platform, +/obj/machinery/door/blast/regular/open{ + dir = 8; + fail_secure = 1; + id = "telesci_lockdown"; + name = "Hazardous Containment Lockdown" }, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/obj/machinery/meter, -/turf/simulated/floor/tiled/dark, -/area/engineering/engine_room/turbine) -"hRZ" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/bridge) +/turf/simulated/floor/tiled/dark/full, +/area/horizon/rnd/telesci) "hSe" = ( /obj/effect/floor_decal/corner/beige/diagonal, /turf/simulated/floor/tiled/white, /area/horizon/security/forensic_laboratory) -"hSn" = ( -/turf/simulated/floor/tiled/full, -/area/horizon/hallway/deck_three/primary/starboard) +"hSh" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/rnd/xenoarch/storage) +"hSm" = ( +/obj/effect/map_effect/window_spawner/full/borosilicate/reinforced/firedoor, +/obj/machinery/door/blast/regular{ + dir = 4; + id = "gravgen"; + name = "Gravity Generator Blast Doors" + }, +/turf/simulated/floor/reinforced, +/area/horizon/engineering/gravity_gen) +"hSo" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 10 + }, +/obj/machinery/light/floor, +/obj/structure/window/reinforced, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 10 + }, +/obj/structure/reagent_dispensers/water_cooler, +/turf/simulated/floor/wood, +/area/horizon/command/bridge/upperdeck) "hSs" = ( /obj/effect/floor_decal/corner/black{ dir = 6 @@ -55718,44 +55736,40 @@ }, /turf/simulated/floor/tiled/dark, /area/shuttle/hapt) -"hSt" = ( -/obj/structure/bed/stool/chair/office/dark{ - dir = 1 - }, -/obj/effect/floor_decal/spline/plain{ - dir = 1 - }, -/turf/simulated/floor/carpet/rubber, -/area/engineering/engine_monitoring) -"hSu" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/button/remote/blast_door{ - dir = 4; - id = "shutters_bunker"; - name = "Command Bunker Blast Door"; - pixel_x = 22; - pixel_y = 21; - req_access = list(19) - }, -/obj/machinery/button/remote/airlock{ - dir = 4; - id = "airlocks_bunker"; - name = "Command Bunker Bolts"; - pixel_x = 22; - pixel_y = 11; - req_access = list(19); - specialfunctions = 4; - desiredstate = 1 +"hSx" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/tiled/dark, +/area/horizon/maintenance/deck_3/aft/port/far) +"hSz" = ( +/turf/simulated/open, +/area/horizon/operations/office_aux) +"hSA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/floor_decal/industrial/warning{ + dir = 5 }, /obj/structure/cable{ - icon_state = "1-2" + icon_state = "2-4" }, -/turf/simulated/floor/tiled/dark, -/area/bridge/aibunker) +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/main/starboard) +"hSD" = ( +/obj/machinery/door/blast/regular/open{ + id = "iso_c"; + name = "Safety Blast Door" + }, +/obj/effect/map_effect/window_spawner/full/borosilicate/reinforced/firedoor, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/rnd/xenoarch/isolation_a) +"hSE" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black, +/obj/structure/shuttle/engine/heater{ + dir = 1 + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/structure/railing/mapped, +/turf/simulated/floor/plating, +/area/horizon/engineering/atmos/propulsion) "hSL" = ( /obj/structure/shuttle_part/ert{ icon_state = "9,0"; @@ -55763,58 +55777,22 @@ }, /turf/unsimulated/floor/plating, /area/centcom/specops) -"hSM" = ( -/obj/structure/cable/green{ - icon_state = "4-8" +"hSP" = ( +/obj/item/stack/wrapping_paper, +/obj/structure/table/standard, +/obj/item/stack/wrapping_paper, +/obj/item/stack/packageWrap{ + pixel_y = 8 }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" +/obj/item/stack/packageWrap{ + pixel_y = 8 }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/central) -"hSN" = ( -/obj/structure/disposalpipe/segment{ +/obj/effect/floor_decal/corner/brown/full{ dir = 4 }, -/obj/effect/floor_decal/industrial/warning, -/obj/machinery/camera/network/research{ - dir = 1; - c_tag = "Xenobio - Cell C"; - network = list("Xeno_Bio") - }, -/turf/simulated/floor/reinforced, -/area/rnd/xenobiology) -"hSO" = ( -/obj/structure/table/wood, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 1 - }, -/obj/item/reagent_containers/food/condiment/shaker/salt{ - pixel_x = -6; - pixel_y = 16 - }, -/obj/item/reagent_containers/food/condiment/shaker/peppermill{ - pixel_x = 4; - pixel_y = 16 - }, -/obj/item/flame/candle{ - pixel_y = 16 - }, -/obj/machinery/power/outlet, -/obj/machinery/power/apc/north, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/turf/simulated/floor/wood, -/area/horizon/crew_quarters/lounge/bar) +/obj/machinery/alarm/east, +/turf/simulated/floor/tiled, +/area/horizon/operations/mail_room) "hSU" = ( /obj/machinery/cryopod, /obj/effect/floor_decal/corner/lime{ @@ -55822,50 +55800,26 @@ }, /turf/unsimulated/floor, /area/centcom/spawning) -"hSX" = ( -/obj/structure/bed/stool/chair/office/dark, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenoarch_atrium) -"hTa" = ( -/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, +"hSZ" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, /turf/simulated/floor/tiled/dark/full, -/area/storage/eva) -"hTd" = ( -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" +/area/horizon/engineering/reactor/supermatter/mainchamber) +"hTc" = ( +/obj/machinery/atmospherics/unary/engine/scc_shuttle, +/obj/effect/landmark/entry_point/aft{ + name = "aft, starboard thrusters" }, -/obj/machinery/power/apc/super/east, -/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 - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 6 - }, -/turf/simulated/floor/carpet, -/area/lawoffice/representative_two) -"hTi" = ( -/turf/simulated/floor/lino, -/area/horizon/crew_quarters/lounge/bar) -"hTk" = ( -/turf/simulated/wall/shuttle/scc_space_ship/cardinal, -/area/maintenance/wing/starboard/deck1) +/area/horizon/shuttle/intrepid/engineering) +"hTg" = ( +/obj/effect/floor_decal/spline/plain, +/turf/simulated/floor/tiled/dark, +/area/horizon/hallway/primary/deck_2/central) "hTm" = ( /obj/structure/holostool{ dir = 8 @@ -55883,88 +55837,98 @@ }, /turf/unsimulated/floor, /area/centcom/holding) -"hTq" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ +"hTr" = ( +/obj/effect/floor_decal/spline/fancy/wood{ dir = 4 }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 8 - }, +/obj/machinery/hologram/holopad, /turf/simulated/floor/wood, -/area/crew_quarters/lounge) -"hTs" = ( -/obj/structure/railing/mapped, -/obj/structure/cable{ - icon_state = "4-8" +/area/horizon/service/chapel/main) +"hTy" = ( +/turf/simulated/wall, +/area/horizon/storage/eva) +"hTA" = ( +/obj/effect/floor_decal/corner/mauve/full{ + dir = 1 + }, +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/structure/closet/hazmat/research, +/obj/item/clothing/mask/gas/alt, +/obj/item/tank/oxygen, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark, +/area/horizon/rnd/xenobiology/xenoflora) +"hTK" = ( +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/structure/filingcabinet{ + pixel_x = -8 + }, +/obj/structure/filingcabinet/chestdrawer{ + pixel_x = 8 + }, +/turf/simulated/floor/carpet, +/area/horizon/repoffice/consular_two) +"hTL" = ( +/obj/machinery/door/airlock/external, +/obj/effect/map_effect/marker/airlock/docking{ + landmark_tag = "nav_horizon_dock_deck_3_port_4"; + master_tag = "airlock_horizon_dock_deck_3_port_4"; + name = "airlock_horizon_dock_deck_3_port_4" + }, +/obj/effect/map_effect/marker_helper/airlock/interior, +/turf/simulated/floor/plating, +/area/horizon/hallway/primary/deck_3/starboard/docks) +"hTO" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/random/dirt_75, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/starboard/far) +"hTR" = ( +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 }, /obj/structure/disposalpipe/segment{ - dir = 4 + dir = 4; + icon_state = "pipe-c" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 7 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor, -/area/maintenance/engineering_ladder) -"hTI" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_service{ - dir = 1; - name = "Bar Lounge" - }, -/turf/simulated/floor/tiled/full, -/area/horizon/bar) -"hTW" = ( /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/firedoor, -/obj/machinery/door/airlock/service{ - dir = 1; - name = "Disposals and Recycling"; - req_one_access = list(26,67,31,29) +/turf/simulated/floor/wood, +/area/horizon/repoffice/consular_two) +"hTV" = ( +/obj/structure/shuttle_part/scc_space_ship{ + icon_state = "d3-5" }, -/obj/machinery/atmospherics/pipe/simple/hidden/green, -/turf/simulated/floor/tiled/full, -/area/horizon/custodial/disposals) +/turf/simulated/wall/r_wall, +/area/horizon/maintenance/deck_2/wing/starboard/far) "hUc" = ( /obj/machinery/smartfridge/stocked, /turf/unsimulated/floor, /area/centcom/bar) -"hUh" = ( -/obj/structure/closet/secure_closet/engineering_welding, -/turf/simulated/floor/plating, -/area/engineering/storage/lower) -"hUi" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 +"hUm" = ( +/obj/structure/platform_deco/ledge{ + dir = 1 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/maintenance/wing/port/far) -"hUk" = ( -/obj/effect/floor_decal/corner/dark_green/full, -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/sign/emergency/evacuation{ - dir = 8; - pixel_x = -32 - }, -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/tiled/dark, -/area/hangar/intrepid) +/turf/simulated/open, +/area/horizon/operations/office) +"hUv" = ( +/turf/simulated/wall/r_wall, +/area/horizon/maintenance/deck_3/aft/starboard/far) "hUy" = ( /obj/structure/table/standard, /obj/item/stack/packageWrap, @@ -55985,27 +55949,17 @@ icon_state = "white" }, /area/tdome/tdomeadmin) -"hUB" = ( -/obj/effect/floor_decal/corner_wide/lime/diagonal, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/reception) -"hUC" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/machinery/atmospherics/pipe/manifold/visible/yellow, -/obj/machinery/camera/network/research{ - c_tag = "Research - Xenoarchaeology 1"; - dir = 1 - }, -/turf/simulated/floor/plating, -/area/rnd/xenoarch_atrium) "hUM" = ( /obj/item/material/ashtray/bronze, /obj/structure/table/wood, /turf/simulated/floor/lino, /area/merchant_station) +"hUO" = ( +/obj/structure/platform_stairs/south_north_solo{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/horizon/service/bar) "hUR" = ( /obj/machinery/door/window/northright{ name = "dispensary"; @@ -56016,52 +55970,12 @@ icon_state = "white" }, /area/centcom/holding) -"hVe" = ( -/obj/structure/window/reinforced{ +"hUY" = ( +/obj/structure/bed/stool/chair/office/dark{ dir = 4 }, -/obj/structure/table/reinforced/steel, -/obj/item/flame/lighter/random{ - pixel_x = -6; - pixel_y = 8 - }, -/obj/item/reagent_containers/dropper{ - pixel_y = -4 - }, -/obj/item/reagent_containers/glass/beaker{ - pixel_x = 5; - pixel_y = 5 - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenoarch_atrium) -"hVi" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "bridge blast"; - name = "Bridge Blast Doors"; - opacity = 0 - }, -/obj/structure/window/shuttle/scc_space_ship, -/obj/effect/landmark/entry_point/starboard{ - name = "starboard, executive officers office" - }, -/obj/machinery/door/blast/shutters{ - dir = 4; - id = "shutters_deck3_xo"; - name = "Safety Shutter" - }, -/turf/simulated/floor/tiled/dark/full, -/area/crew_quarters/heads/hop/xo) -"hVj" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/maintenance_hatch{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard/far) +/turf/simulated/floor/tiled, +/area/horizon/operations/warehouse) "hVk" = ( /obj/structure/dueling_table/no_collide/above_layer{ icon_state = "top_left" @@ -56075,9 +55989,6 @@ }, /turf/simulated/floor/holofloor/wood, /area/horizon/holodeck/source_battlemonsters) -"hVn" = ( -/turf/simulated/floor/tiled, -/area/hallway/engineering) "hVq" = ( /obj/structure/table/wood, /obj/item/flame/candle{ @@ -56089,125 +56000,84 @@ }, /turf/unsimulated/floor/wood, /area/antag/raider) -"hVy" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 5 - }, -/obj/machinery/door/window/northleft, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/port) -"hVE" = ( -/obj/machinery/atmospherics/pipe/simple/visible/black, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/engineering/atmos) -"hVH" = ( -/obj/machinery/door/blast/regular/open{ - dir = 2; - fail_secure = 1; - id = "xenobio_c"; - name = "Cell Containment Blast Door" - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/disposal/deliveryChute{ - dir = 8 - }, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/machinery/door/window/westleft{ - req_access = list(55) - }, -/obj/machinery/door/firedoor{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark/full, -/area/rnd/xenobiology) -"hVL" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/platform_stairs/south_north_solo, -/turf/simulated/floor/plating, -/area/maintenance/engineering) -"hVN" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 10 - }, -/obj/machinery/door/firedoor, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/full, -/area/hallway/primary/central_two) -"hVR" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/central) -"hVX" = ( -/obj/structure/table/standard, -/obj/item/device/firing_pin/test_range, -/obj/item/clothing/glasses/safety/goggles/science{ - pixel_y = 10 - }, -/obj/structure/reagent_dispensers/acid{ - pixel_x = 28 - }, -/obj/item/stack/material/steel/full, -/obj/item/stack/material/glass/full, -/obj/item/reagent_containers/glass/beaker/sulphuric{ - pixel_y = 3 - }, -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/railing/mapped, -/obj/effect/floor_decal/corner/mauve/full{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/lab) -"hWb" = ( +"hVC" = ( /turf/simulated/wall/shuttle/scc_space_ship/cardinal, -/area/engineering/atmos) -"hWn" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/effect/landmark{ - name = "Revenant" +/area/horizon/hallway/primary/deck_3/port/docks) +"hVD" = ( +/obj/structure/cable/green{ + icon_state = "1-8" }, -/turf/simulated/floor/plating, -/area/maintenance/wing/port/deck1) -"hWt" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 9 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 10 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/effect/floor_decal/corner/brown{ + dir = 6 }, /turf/simulated/floor/tiled, -/area/bridge/upperdeck) +/area/horizon/operations/mining_main/refinery) +"hVU" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 6 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/storage/tech) +"hWd" = ( +/obj/structure/bed/stool/chair{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/carpet, +/area/horizon/command/heads/xo) +"hWe" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/machinery/door/airlock/external, +/obj/machinery/access_button{ + dir = 1; + pixel_x = -28; + pixel_y = 12 + }, +/obj/effect/map_effect/marker/airlock{ + frequency = 1002; + master_tag = "airlock_horizon_deck_3_fore_starboard_1"; + name = "airlock_horizon_deck_3_fore_starboard_1" + }, +/obj/effect/map_effect/marker_helper/airlock/interior, +/turf/simulated/floor, +/area/horizon/maintenance/deck_3/bridge) +"hWi" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/carpet/rubber, +/area/horizon/maintenance/deck_1/workshop) +"hWk" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/lattice/catwalk/indoor, +/turf/simulated/floor/plating, +/area/horizon/engineering/atmos/air) +"hWq" = ( +/obj/structure/bed/stool/chair/padded/brown, +/obj/machinery/firealarm/north, +/turf/simulated/floor/wood/walnut, +/area/horizon/medical/smoking) "hWA" = ( /obj/machinery/light{ dir = 8 @@ -56220,112 +56090,40 @@ /obj/effect/floor_decal/corner/red/diagonal, /turf/simulated/floor/tiled/dark, /area/shuttle/syndicate_elite) -"hWD" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/corner/brown{ +"hWB" = ( +/obj/effect/floor_decal/corner/dark_green{ dir = 10 }, /obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/operations/office) -"hWG" = ( -/obj/structure/platform_deco{ dir = 1 }, -/turf/simulated/floor/tiled/full, -/area/bridge) -"hWU" = ( -/obj/machinery/door/firedoor{ - req_one_access = list(24,11,67,73); - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/airlock/glass_mining{ - dir = 4; - name = "Commissary Backroom"; - req_one_access = list(26,29,31,48,67,35,25,28,37) - }, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/commissary) -"hWV" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 4 - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/structure/railing/mapped{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard) -"hWY" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"hWZ" = ( -/obj/effect/floor_decal/spline/plain/corner/black{ - dir = 4 - }, -/obj/effect/floor_decal/corner/dark_green, -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/obj/machinery/firealarm/east, /turf/simulated/floor/tiled, -/area/horizon/crew_quarters/fitness/gym) -"hXa" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 4 - }, -/obj/effect/map_effect/marker/airlock/docking{ - landmark_tag = "nav_horizon_dock_deck_3_starboard_1"; - master_tag = "airlock_horizon_dock_deck_3_starboard_1"; - name = "airlock_horizon_dock_deck_3_starboard_1" - }, +/area/horizon/hallway/primary/deck_3/starboard) +"hWQ" = ( +/obj/structure/window/shuttle/scc_space_ship, +/obj/structure/grille, +/obj/machinery/door/firedoor, /turf/simulated/floor/plating, -/area/horizon/hallway/deck_three/primary/starboard/docks) -"hXl" = ( +/area/horizon/engineering/atmos/propulsion) +"hWR" = ( /obj/effect/floor_decal/industrial/warning{ - dir = 1 + dir = 5 }, -/obj/random/dirt_75, /turf/simulated/floor/tiled/dark, -/area/maintenance/wing/port/far) -"hXq" = ( -/obj/machinery/atmospherics/pipe/manifold4w/visible/black, -/obj/machinery/meter, -/turf/simulated/floor/tiled/dark, -/area/engineering/atmos/propulsion/starboard) +/area/horizon/engineering/atmos/propulsion) +"hWT" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/operations/starboard) +"hXh" = ( +/turf/simulated/floor/beach/water/alt, +/area/horizon/hallway/primary/deck_3/port) +"hXo" = ( +/obj/effect/floor_decal/corner/lime{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/horizon/medical/morgue) "hXs" = ( /obj/machinery/door/airlock/centcom{ dir = 1; @@ -56345,18 +56143,6 @@ }, /turf/simulated/floor/tiled/full, /area/horizon/security/investigations_hallway) -"hXv" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/machinery/door/blast/regular{ - dir = 4; - id = "r-ust_vent"; - name = "INDRA Reactor Vent" - }, -/turf/simulated/floor/reinforced/airless, -/area/engineering/engine_room/rust) "hXx" = ( /obj/machinery/door/airlock/glass{ name = "Cryogenic Storage" @@ -56366,21 +56152,15 @@ }, /turf/unsimulated/floor, /area/centcom/spawning) +"hXD" = ( +/turf/simulated/floor/tiled, +/area/horizon/engineering/storage_eva) "hXE" = ( /obj/effect/floor_decal/spline/fancy/wood/corner{ dir = 1 }, /turf/simulated/floor/holofloor/wood, /area/horizon/holodeck/source_sauna) -"hXH" = ( -/obj/structure/closet/walllocker/emerglocker/south, -/obj/machinery/atmospherics/pipe/manifold/hidden, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 10 - }, -/obj/machinery/alarm/south, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/starboard/docks) "hXM" = ( /turf/unsimulated/wall/fakeairlock{ icon = 'icons/obj/doors/Doorext.dmi'; @@ -56400,59 +56180,31 @@ icon_state = "dark_preview" }, /area/centcom/control) -"hXX" = ( -/obj/machinery/power/smes/buildable/substation{ - RCon_tag = "Substation - Xenoarchaeology" - }, +"hYd" = ( /obj/structure/cable{ - icon_state = "0-2" + icon_state = "4-8" }, -/obj/structure/cable/green, -/turf/simulated/floor/plating, -/area/maintenance/substation/research_sublevel) -"hYc" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/sortjunction/flipped{ - name = "CE Office"; - sortType = "CE Office" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/structure/lattice/catwalk/indoor/grate, -/turf/simulated/floor/plating, -/area/hallway/engineering) -"hYg" = ( -/obj/effect/floor_decal/corner/red/diagonal, -/obj/machinery/atmospherics/unary/vent_pump/on{ +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/spline/plain/corner{ - dir = 8 +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 }, -/turf/simulated/floor/lino, -/area/horizon/cafeteria) -"hYj" = ( -/obj/machinery/light/small/emergency{ - dir = 1 - }, -/obj/structure/table/rack, -/obj/random/loot, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/random/junk, /turf/simulated/floor/plating, -/area/maintenance/wing/starboard/far) -"hYm" = ( -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled/full, -/area/outpost/mining_main/refinery) -"hYn" = ( -/turf/simulated/wall/r_wall, -/area/engineering/storage_hard) +/area/horizon/maintenance/deck_1/wing/port/far) +"hYi" = ( +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/reactor/supermatter/mainchamber) +"hYr" = ( +/obj/machinery/computer/ship/navigation, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/weapons/longbow) "hYs" = ( /obj/effect/floor_decal/industrial/warning{ dir = 5 @@ -56464,39 +56216,9 @@ }, /turf/simulated/floor/plating, /area/merchant_station/warehouse) -"hYt" = ( -/obj/effect/floor_decal/industrial/loading/yellow{ - dir = 1 - }, -/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) -"hYz" = ( -/obj/machinery/door/airlock/multi_tile/glass{ - name = "Deck 2 Elevator" - }, -/obj/machinery/door/firedoor/multi_tile, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/full, -/area/hallway/primary/central_one) +"hYv" = ( +/turf/simulated/open, +/area/horizon/stairwell/port/deck_3) "hYA" = ( /obj/effect/spider/cocoon, /turf/simulated/floor/exoplanet/barren/raskara, @@ -56511,22 +56233,51 @@ }, /turf/unsimulated/wall/darkshuttlewall, /area/centcom/spawning) +"hYD" = ( +/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/crew/vacantoffice) +"hYE" = ( +/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{ + req_one_access = list(65,47,74,74) + }, +/turf/simulated/floor/plating, +/area/horizon/shuttle/quark/cargo_hold) +"hYI" = ( +/turf/simulated/wall, +/area/horizon/engineering/lobby) "hYJ" = ( /obj/effect/floor_decal/corner/paleblue/diagonal{ dir = 8 }, /turf/unsimulated/floor, /area/centcom/spawning) -"hYN" = ( -/obj/structure/platform_stairs/full/east_west_cap{ - dir = 8 +"hYM" = ( +/obj/effect/floor_decal/corner_wide/yellow{ + dir = 5 }, -/obj/structure/platform/cutout, -/obj/structure/platform{ - dir = 1 +/obj/structure/cable/green{ + icon_state = "0-2" }, +/obj/machinery/power/apc/super/critical/north, /turf/simulated/floor/tiled, -/area/operations/lower/machinist/surgicalbay) +/area/horizon/engineering/bluespace_drive) "hYO" = ( /obj/structure/table/stone/marble, /obj/machinery/reagentgrinder{ @@ -56543,6 +56294,15 @@ }, /turf/unsimulated/floor, /area/centcom/bar) +"hYP" = ( +/obj/structure/table/rack, +/obj/item/storage/box/monkeycubes, +/obj/item/storage/box/monkeycubes, +/obj/item/storage/box/monkeycubes, +/obj/item/storage/box/monkeycubes, +/obj/machinery/alarm/east, +/turf/simulated/floor/tiled/dark, +/area/horizon/rnd/xenobiology) "hYR" = ( /obj/effect/decal/fake_object{ dir = 4; @@ -56578,26 +56338,25 @@ name = "grass" }, /area/horizon/holodeck/source_konyang) -"hYS" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 10 - }, -/turf/simulated/floor/tiled/dark, -/area/engineering/break_room) -"hYV" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ +"hYU" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 +/obj/structure/cable/green{ + icon_state = "4-8" }, -/obj/structure/disposalpipe/junction{ +/obj/machinery/door/airlock/external{ dir = 4; - icon_state = "pipe-j2" + id_tag = "riso3"; + name = "Isolation C"; + req_access = list(65) }, -/obj/structure/lattice/catwalk/indoor/grate, -/turf/simulated/floor/plating, -/area/operations/lobby) +/obj/machinery/door/blast/regular/open{ + id = "iso_c"; + name = "Safety Blast Door" + }, +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/xenoarch/isolation_a) "hYW" = ( /obj/machinery/vending/snack{ name = "Free Chocolate Corp"; @@ -56605,68 +56364,80 @@ }, /turf/unsimulated/floor/wood, /area/centcom/evac) -"hYY" = ( -/obj/effect/floor_decal/corner/mauve{ +"hZe" = ( +/obj/structure/bed/stool/chair/office/bridge/pilot{ + dir = 4 + }, +/turf/simulated/floor/shuttle/dark_blue, +/area/horizon/shuttle/escape_pod/pod1) +"hZf" = ( +/obj/effect/floor_decal/corner_wide/paleblue{ dir = 10 }, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 8 +/obj/item/storage/box/fancy/tray, +/obj/structure/table/standard, +/obj/machinery/light, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/surgery) +"hZg" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 }, -/obj/machinery/firealarm/south, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/research) +"hZl" = ( +/obj/structure/window/shuttle/scc_space_ship, +/obj/structure/grille, +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 4; + icon_state = "shutter0"; + id = "LCKDshutters"; + name = "MedBay Lockdown Shutters"; + opacity = 0 + }, +/turf/simulated/floor/plating, +/area/horizon/medical/smoking) +"hZq" = ( +/obj/effect/floor_decal/industrial/warning{ dir = 8 }, -/obj/machinery/light_switch{ - pixel_x = 6; - pixel_y = -25 +/obj/structure/tank_wall/carbon_dioxide{ + icon_state = "co2-8" }, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology/xenoflora) -"hZc" = ( -/obj/structure/table/reinforced/wood, -/turf/simulated/floor/carpet, -/area/bridge/meeting_room) -"hZn" = ( -/obj/machinery/door/airlock{ - dir = 4; - id_tag = "cargobreak_stall"; - name = "Stall" +/turf/simulated/floor/airless, +/area/horizon/engineering/atmos) +"hZD" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" }, -/obj/machinery/door/firedoor{ - dir = 4 - }, -/turf/simulated/floor/tiled/full, -/area/operations/break_room) -"hZr" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/sign/fire{ - desc = "A warning sign which reads 'DANGER: SHUTTLE THRUSTERS IN USE' and 'MIND THE DISTANCE'."; - name = "\improper DANGER: THRUSTERS sign"; - pixel_x = -32 - }, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/machinery/disposal/small/east, -/turf/simulated/floor/tiled/dark/full, -/area/operations/lower/machinist) -"hZB" = ( -/turf/simulated/floor/wood, -/area/crew_quarters/lounge) -"hZG" = ( -/obj/effect/floor_decal/corner_wide/green/full{ - dir = 4 - }, -/obj/structure/closet/emcloset, -/obj/effect/floor_decal/industrial/outline/emergency_closet, -/obj/structure/railing/mapped, /turf/simulated/floor/tiled/white, -/area/hallway/medical/upper) +/area/horizon/medical/pharmacy) +"hZF" = ( +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/machinery/camera/network/engineering{ + c_tag = "Engineering - Deck 2 - Port Pod Substation"; + dir = 1 + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/horizon/maintenance/substation/wing_starboard) "hZJ" = ( /obj/structure/table/rack, /obj/item/gun/projectile/automatic/rifle/sts35{ @@ -56678,68 +56449,27 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/unsimulated/floor, /area/antag/mercenary) -"hZL" = ( -/obj/effect/floor_decal/industrial/outline/red, -/obj/structure/table/rack, -/obj/item/warhead/longbow/ap, -/obj/item/warhead/longbow/ap, -/obj/effect/floor_decal/industrial/warning{ - dir = 9 +"hZN" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" }, -/obj/structure/sign/fire{ - desc = "A danger sign which reads 'DANGER: EXPLOSIVE ORDINANCE' and 'THIS ROOM CONTAINS ORDINANCE THAT WILL KILL YOU INSTANTLY'."; - name = "\improper DANGER: EXPLOSIVE ORDINANCE sign"; - pixel_y = 32 - }, -/obj/structure/sign/securearea{ - desc = "A danger sign which reads 'DANGER: EXPLOSIVE ORDINANCE' and 'THIS ROOM CONTAINS ORDINANCE THAT WILL KILL YOU INSTANTLY'."; - name = "\improper DANGER: EXPLOSIVE ORDINANCE sign"; - pixel_x = -32 - }, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/secure_ammunition_storage) -"hZS" = ( -/obj/structure/bed/stool/chair/office/dark{ - dir = 4 - }, -/obj/effect/floor_decal/corner/purple/full{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/horizon/custodial) -"hZU" = ( -/obj/structure/sign/nosmoking_1, -/turf/simulated/wall, -/area/medical/ward) -"hZW" = ( -/obj/structure/extinguisher_cabinet/east, -/obj/effect/floor_decal/corner/pink/diagonal, -/obj/random/dirt_75, -/obj/item/material/stool/chair/folding, -/obj/item/material/folding_table, -/turf/simulated/floor/tiled/dark, -/area/maintenance/wing/port/far) -"hZX" = ( -/obj/machinery/atmospherics/pipe/tank/air, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled, -/area/maintenance/aux_atmospherics/deck_2/starboard/wing) -"iab" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small/emergency{ +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/light/small{ dir = 8 }, /obj/structure/lattice/catwalk/indoor/grate/dark, /turf/simulated/floor/plating, -/area/maintenance/hangar/starboard) -"iaf" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 +/area/horizon/engineering/storage/lower) +"hZR" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/light/small/emergency{ + dir = 1 }, -/turf/simulated/floor/wood, -/area/crew_quarters/lounge/secondary) +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/operations/starboard) "iag" = ( /obj/effect/floor_decal/spline/plain/corner, /obj/effect/floor_decal/spline/plain{ @@ -56747,37 +56477,18 @@ }, /turf/simulated/floor/exoplanet/grass/grove, /area/centcom/shared_dream) -"iao" = ( -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 6 - }, -/obj/machinery/conveyor{ - dir = 1; - id = "QMLoad" - }, -/turf/simulated/floor/tiled, -/area/hangar/operations) -"ias" = ( -/obj/effect/floor_decal/corner/purple{ - dir = 6 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, +"ian" = ( /obj/structure/cable/green{ - icon_state = "4-8" + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/corner/dark_green{ + dir = 10 }, /turf/simulated/floor/tiled, -/area/horizon/custodial) +/area/horizon/hallway/primary/deck_3/port) "iat" = ( /obj/structure/flora/ausbushes/sparsegrass, /obj/structure/flora/ausbushes/pointybush, @@ -56787,1264 +56498,52 @@ /obj/effect/floor_decal/spline/fancy/wood, /turf/simulated/floor/holofloor/grass, /area/horizon/holodeck/source_meetinghall) -"iaJ" = ( -/obj/effect/spider/stickyweb, -/turf/simulated/floor/exoplanet/barren/raskara, -/area/centcom/shared_dream) -"iaW" = ( -/obj/machinery/camera/network/third_deck{ - c_tag = "Third Deck - Central Ring Port"; - dir = 8 +"iaz" = ( +/obj/structure/ladder/up{ + pixel_y = 13 }, -/obj/machinery/vending/cola, -/obj/effect/floor_decal/industrial/outline/grey, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/cafeteria) -"iaY" = ( -/obj/structure/closet/wardrobe/chaplain_black, -/obj/item/storage/box/fancy/crayons, -/obj/item/reagent_containers/food/drinks/bottle/holywater, -/obj/item/reagent_containers/spray/aspergillum, -/obj/item/nullrod/obsidianshards, -/obj/item/storage/box/fancy/candle_box, -/obj/item/storage/box/fancy/candle_box, -/obj/item/stack/packageWrap, -/obj/item/device/destTagger, -/turf/simulated/floor/tiled/dark, -/area/chapel/office) -"iaZ" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 10 - }, -/obj/item/device/flash, -/obj/structure/table/steel, -/turf/simulated/floor/tiled/dark, -/area/security/checkpoint2) -"ibb" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/wood, -/area/crew_quarters/captain) -"ibc" = ( -/obj/machinery/door/airlock/external{ - dir = 4 - }, -/obj/effect/map_effect/marker/airlock/docking{ - landmark_tag = "nav_horizon_dock_deck_3_port_5"; - master_tag = "airlock_horizon_dock_deck_3_port_5"; - name = "airlock_horizon_dock_deck_3_port_5" - }, -/obj/effect/map_effect/marker_helper/airlock/exterior, -/obj/machinery/access_button{ - dir = 4; - pixel_x = 12; - pixel_y = -28 - }, -/turf/simulated/floor/plating, -/area/horizon/hallway/deck_three/primary/port/docks) -"ibd" = ( -/obj/effect/floor_decal/corner/dark_blue/full{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/bridge) -"ibi" = ( -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning, -/obj/machinery/alarm/north, -/obj/structure/reagent_dispensers/fueltank, -/turf/simulated/floor/plating, -/area/maintenance/engineering) -"ibk" = ( -/obj/effect/floor_decal/corner{ - dir = 10 - }, -/obj/effect/floor_decal/corner{ - dir = 1 - }, -/turf/simulated/floor/marble/dark, -/area/horizon/holodeck/source_tribunal) -"ibm" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/door/airlock/glass_engineering{ - dir = 4; - name = "Engineering EVA Storage"; - req_one_access = list(11,24) - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/full, -/area/engineering/storage_eva) -"ibE" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/full, -/area/horizon/hallway/deck_two/fore) -"ibH" = ( -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/maintenance/hangar/starboard) -"ibL" = ( -/obj/structure/table/standard, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology/xenoflora) -"ibP" = ( -/obj/structure/window/reinforced/crescent{ - dir = 4 - }, -/obj/structure/window/reinforced/crescent{ - dir = 1 - }, -/obj/structure/window/reinforced/crescent, -/obj/structure/flora/ausbushes/fullgrass, -/obj/structure/flora/ausbushes/ppflowers, -/turf/simulated/floor/grass/no_edge, -/area/centcom/spawning) -"ibS" = ( -/obj/effect/floor_decal/corner_wide/blue{ - dir = 5 - }, -/obj/effect/floor_decal/corner_wide/yellow{ - dir = 10 - }, -/obj/effect/floor_decal/industrial/warning, -/obj/machinery/alarm/south, -/turf/simulated/floor/reinforced, -/area/bridge/selfdestruct) -"icl" = ( -/obj/machinery/bluespace_beacon, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenoarch_atrium) -"icm" = ( -/turf/simulated/wall, -/area/maintenance/engineering/auxillary) -"icC" = ( -/obj/machinery/computer/robotics{ - dir = 4 - }, -/turf/simulated/floor/carpet/purple, -/area/crew_quarters/heads/hor) -"icD" = ( -/obj/effect/floor_decal/corner/red{ - dir = 9 - }, -/obj/machinery/computer/security/nuclear{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/mercenary) -"icE" = ( -/obj/structure/bed/stool/chair/shuttle, -/obj/machinery/recharger/wallcharger{ - pixel_x = 4; - pixel_y = 22 - }, -/obj/machinery/recharger/wallcharger{ - pixel_x = 4; - pixel_y = 32 - }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 5 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/legion) -"icJ" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 10 - }, -/obj/effect/floor_decal/industrial/warning, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/ferry) -"icK" = ( -/obj/effect/floor_decal/corner/lime/diagonal{ - dir = 8 - }, -/obj/effect/floor_decal/spline/plain, -/obj/machinery/sleeper{ - dir = 8 - }, -/obj/item/device/radio/intercom/east{ - frequency = 1213; - name = "Intercom"; - subspace_transmission = 1; - syndie = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/mercenary) -"icL" = ( -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/maintenance/wing/port) -"icP" = ( -/turf/simulated/wall/r_wall, -/area/horizon/security/lobby) -"icY" = ( -/obj/structure/flora/ausbushes/fullgrass, -/obj/structure/railing/mapped, -/turf/simulated/floor/grass/no_edge, -/area/horizon/cafeteria) -"icZ" = ( -/obj/structure/bed/stool/chair/padded/beige{ - dir = 1 - }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/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 - }, -/turf/unsimulated/floor, -/area/centcom/ferry) -"idl" = ( -/obj/machinery/door/airlock/external{ - dir = 1; - icon_state = "door_locked"; - locked = 1; - name = "Shuttle Hatch"; - req_access = list(13) - }, -/obj/machinery/door/blast/regular/open{ - dir = 8; - id = "crescent_exterior_blast" - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/effect/map_effect/marker_helper/airlock/interior, -/obj/effect/map_effect/marker/airlock/shuttle{ - master_tag = "crescent_shuttle"; - name = "crescent_shuttle"; - shuttle_tag = "crescent_shuttle"; - req_access = list(103); - req_one_access = null - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/hapt) -"idp" = ( -/obj/effect/floor_decal/corner/pink/diagonal, -/obj/random/dirt_75, -/turf/simulated/floor/tiled/dark, -/area/maintenance/wing/port/far) -"idq" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 5 - }, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"idx" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/corner/mauve{ - dir = 9 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology) -"idz" = ( -/obj/machinery/atmospherics/pipe/simple/visible/cyan, -/turf/simulated/floor/plating, -/area/engineering/bluespace_drive) -"idA" = ( -/obj/effect/floor_decal/corner/beige{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/security/vacantoffice) -"idC" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/airlock/hatch{ - dir = 4; - name = "Telecommunications"; - req_access = list(11,24) - }, -/turf/simulated/floor/tiled/dark/full, -/area/tcommsat/entrance) -"idI" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/lattice/catwalk/indoor/grate, -/turf/simulated/floor/plating, -/area/horizon/hallway/deck_two/fore) -"idN" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 4 - }, -/obj/item/device/flashlight/lantern, -/turf/simulated/floor/holofloor/wood, -/area/horizon/holodeck/source_sauna) -"idU" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 8 - }, -/turf/simulated/wall/shuttle/scc, -/area/shuttle/intrepid/starboard_compartment) -"idV" = ( -/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, -/turf/simulated/floor, -/area/horizon/crew_quarters/fitness/gym) -"ieb" = ( -/obj/structure/window/shuttle/unique/scc/scout{ - icon_state = "5,2" - }, -/obj/structure/window/shuttle/unique/scc/scout/over{ - icon_state = "5,2" - }, -/obj/effect/floor_decal/industrial/outline, -/turf/simulated/floor/reinforced, -/area/shuttle/canary) -"ieh" = ( -/obj/structure/lattice/catwalk, -/obj/structure/sign/drop{ - desc = "A warning sign which reads 'DANGER: MASS EJECTOR PATH ON THIS SIGN'."; - name = "\improper DANGER: MASS EJECTOR PATH sign" - }, -/obj/item/hullbeacon/red, -/turf/simulated/open/airless, -/area/horizon/exterior) -"iei" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/machinery/computer/general_air_control/large_tank_control/terminal{ - name = "Phoron Supply Monitor"; - output_tag = "ph_out_starboardthruster"; - sensors = list("ph_sensor"="Tank") - }, -/obj/effect/floor_decal/industrial/outline/custodial, -/turf/simulated/floor/tiled/dark, -/area/engineering/atmos/propulsion/starboard) -"iej" = ( -/obj/structure/flora/ausbushes/sparsegrass, -/turf/simulated/floor/holofloor/grass, -/area/horizon/holodeck/source_wildlife) -"ieu" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/structure/tank_wall/oxygen{ - icon_state = "o2-3" - }, -/turf/simulated/floor/plating, -/area/engineering/atmos/air) -"ieG" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/turf/simulated/floor/tiled/white, -/area/hallway/medical/upper) -"ieH" = ( -/obj/machinery/light/small/emergency{ - dir = 4 - }, -/obj/structure/reagent_dispensers/watertank, -/obj/effect/floor_decal/industrial/outline/grey, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"ieI" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/engineering/drone_fabrication) -"ieQ" = ( -/obj/item/trash/koisbar, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/machinery/light/small/emergency{ - dir = 1 - }, -/turf/simulated/floor, -/area/maintenance/security_port) -"ieU" = ( -/obj/effect/decal/fake_object{ - dir = 4; - icon = 'icons/effects/props/holodeck/konyang/32x32.dmi'; - icon_state = "plank"; - name = "floor planks" - }, -/obj/effect/decal/fake_object{ - desc = "A lovely umbrella for those rainy Konyanger days."; - dir = 4; - icon = 'icons/effects/props/holodeck/konyang/64x64.dmi'; - icon_state = "umbrella2"; - name = "traditional Konyanger umbrella"; - pixel_x = -31; - pixel_y = 3 - }, -/obj/effect/decal/fake_object{ - dir = 4; - icon = 'icons/effects/props/holodeck/konyang/32x32.dmi'; - icon_state = "plank_shadow"; - name = "floor planks" - }, -/turf/simulated/floor/holofloor/wood{ - dir = 8; - icon = 'icons/turf/flooring/exoplanet/konyang.dmi'; - icon_state = "beachcorner"; - name = "shallow water" - }, -/area/horizon/holodeck/source_konyang) -"ieW" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/tiled/dark, -/area/engineering/gravity_gen) -"ifd" = ( -/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/dark_blue{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/hangar/intrepid/interstitial) -"ife" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 10 - }, -/obj/machinery/alarm/south, -/turf/simulated/floor/tiled, -/area/rnd/eva) -"ifk" = ( -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 4 - }, -/obj/machinery/door/firedoor{ - dir = 4 - }, -/obj/machinery/door/airlock/hatch{ - dir = 4; - locked = 1; - name = "Supermatter Reactor Crystal Access"; - req_one_access = list(11,24); - id_tag = "engine_access_hatch" - }, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"ifn" = ( -/obj/effect/landmark/entry_point/starboard{ - name = "starboard, d1 maintenance" - }, -/turf/simulated/wall/shuttle/scc_space_ship/cardinal, -/area/maintenance/wing/starboard/deck1) -"ifo" = ( -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/effect/floor_decal/corner/dark_blue/full{ - dir = 1 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/item/device/radio/intercom/north, -/obj/structure/table/reinforced/steel, -/obj/item/device/taperecorder, -/turf/simulated/floor/tiled/dark, -/area/bridge/controlroom) -"ify" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 6 - }, -/obj/machinery/firealarm/east, -/obj/machinery/light_switch{ - dir = 4; - pixel_x = 23; - pixel_y = -6 - }, -/turf/simulated/floor/tiled/dark, -/area/horizon/security/evidence_storage) -"ifD" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 10 - }, -/obj/machinery/alarm/south, -/turf/simulated/floor/tiled/dark, -/area/hangar/intrepid) -"ifE" = ( -/obj/machinery/door/blast/regular{ - id = "iso_c_purge"; - name = "Exterior Blast Door" - }, -/turf/simulated/floor/reinforced, -/area/rnd/isolation_a) -"ifK" = ( -/obj/effect/map_effect/door_helper/unres{ - dir = 1 - }, -/obj/machinery/door/airlock/command{ - dir = 1; - name = "Teleporter"; - req_access = list(19) - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/full, -/area/teleporter) -"ifN" = ( -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 8 - }, -/obj/structure/bed/stool/chair/padded/blue{ - dir = 4 - }, -/turf/unsimulated/floor{ - icon_state = "wood" - }, -/area/centcom/spawning) -"ifS" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/airlock/glass{ - dir = 1; - name = "Deck 3 Starboard Lounge" - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/lounge) -"ifU" = ( -/obj/structure/grille, -/obj/structure/window/shuttle/scc_space_ship, -/turf/simulated/floor/plating, -/area/shuttle/escape_pod/pod4) -"ifX" = ( -/obj/machinery/atmospherics/portables_connector/aux{ - dir = 1 - }, -/obj/machinery/portable_atmospherics/canister/carbon_dioxide, -/obj/machinery/door/window/brigdoor/northright{ - name = "Fuel Access"; - req_access = null; - req_one_access = list(26,29,31,48,67,24,47,73) - }, -/obj/machinery/camera/network/first_deck{ - c_tag = "First Deck - Hangar Fuel Bay"; - dir = 1 - }, -/obj/effect/floor_decal/industrial/outline/grey, -/turf/simulated/floor/reinforced, -/area/hangar/intrepid) -"iga" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 8 - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 4 - }, -/obj/structure/flora/ausbushes/brflowers, -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/grass/no_edge, -/area/horizon/hallway/deck_three/primary/starboard) -"igc" = ( -/obj/structure/table/wood, -/obj/item/folder/purple{ - pixel_x = -3 - }, -/obj/item/folder/red{ - pixel_x = 3; - pixel_y = 2 - }, -/obj/item/device/radio/intercom/west, -/turf/simulated/floor/carpet/red, -/area/horizon/library) -"igd" = ( -/obj/effect/floor_decal/corner_wide/yellow{ - dir = 10 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/engineering) -"igf" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 10 - }, -/turf/unsimulated/floor, -/area/centcom/spawning) -"igj" = ( -/obj/effect/floor_decal/corner_wide/purple{ - dir = 9 - }, -/obj/effect/floor_decal/corner_wide/purple{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/visible/yellow, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/platform_deco{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenoarch_atrium) -"igl" = ( -/obj/effect/floor_decal/spline/plain/corner{ - dir = 8 - }, -/turf/simulated/floor/beach/sand{ - icon_state = "beach" - }, -/area/centcom/shared_dream) -"igr" = ( -/obj/effect/floor_decal/industrial/loading/yellow{ - dir = 4 - }, -/turf/unsimulated/floor, -/area/centcom/spawning) -"igt" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 5 - }, -/obj/machinery/embedded_controller/radio/simple_docking_controller{ - frequency = 1380; - id_tag = "centcom_shuttle_bay"; - name = "shuttle bay controller"; - pixel_y = 25; - tag_door = "centcom_shuttle_bay_door" - }, -/turf/unsimulated/floor{ - icon_state = "dark_preview" - }, -/area/centcom/ferry) -"igw" = ( -/obj/machinery/vending/snack{ - name = "Free Chocolate Corp"; - prices = list() - }, -/turf/unsimulated/floor{ - dir = 8; - icon_state = "wood" - }, -/area/centcom/legion/hangar5) -"igx" = ( -/turf/simulated/wall/r_wall, -/area/lawoffice/representative) -"igC" = ( -/obj/effect/floor_decal/corner/mauve{ - dir = 9 - }, -/obj/machinery/button/remote/airlock{ - id = "xeno_entrance_int_b"; - name = "Xenobiology External Access Bolts"; - req_access = list(55); - specialfunctions = 4; - dir = 8; - pixel_x = -23; - desiredstate = 1 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology) -"igP" = ( /obj/effect/decal/cleanable/dirt, +/obj/structure/railing/mapped, +/obj/effect/decal/cleanable/cobweb2, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/main/starboard) +"iaE" = ( /obj/effect/floor_decal/industrial/warning{ dir = 4 }, -/obj/structure/cable{ - icon_state = "1-2" - }, +/obj/structure/closet, +/obj/random/loot, /turf/simulated/floor/plating, -/area/maintenance/research_port) -"igQ" = ( -/obj/structure/bed/stool/chair/padded/red{ - dir = 8 +/area/horizon/maintenance/deck_1/hangar/port) +"iaF" = ( +/obj/effect/floor_decal/industrial/outline/firefighting_closet, +/obj/structure/closet/firecloset{ + anchored = 1; + canbemoved = 1 }, /obj/machinery/alarm/east{ req_one_access = list(24,11,55) }, -/turf/simulated/floor/carpet/red, -/area/horizon/crew_quarters/lounge/bar) -"igT" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_two/fore) -"ihc" = ( -/obj/machinery/vending/snack, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/full, -/area/bridge/cciaroom) -"ihd" = ( -/obj/structure/flora/ausbushes/palebush, -/obj/effect/overlay/palmtree_r, -/turf/simulated/floor/holofloor/beach/sand{ - dir = 1; - icon_state = "beachcorner" - }, -/area/horizon/holodeck/source_desert) -"ihh" = ( -/obj/structure/bed/stool/padded/brown{ - dir = 4 - }, -/obj/effect/landmark{ - name = "raiderstart" - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 7 - }, -/turf/unsimulated/floor/wood, -/area/antag/raider) -"iho" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden{ - dir = 1 - }, -/obj/effect/floor_decal/corner/dark_green/full, -/turf/simulated/floor/tiled, -/area/security/checkpoint2) -"ihC" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/maintenance/wing/port) -"ihT" = ( -/obj/machinery/door/blast/shutters/open{ - dir = 2; - id = "shutters_deck2_eng_frontdesk"; - name = "Engineering Front Desk Shutter" - }, -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/machinery/door/window/desk/northleft{ - req_access = list(10); - name = "Engineering Front Desk Internal" - }, -/obj/machinery/ringer_button{ - id = "engie_ringer"; - pixel_x = -9; - pixel_y = -9 - }, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/lobby) -"ihW" = ( -/obj/structure/closet/emcloset, -/obj/effect/floor_decal/industrial/outline/emergency_closet, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/atmos/storage) -"iid" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/unsimulated/floor/plating, -/area/centcom/specops) -"iij" = ( -/obj/effect/floor_decal/corner/brown{ - dir = 6 - }, -/obj/machinery/mineral/processing_unit_console{ - id = "horizon_processing_2"; - pixel_x = 32 - }, -/obj/machinery/conveyor_switch/oneway{ - pixel_y = 7; - id = "mining_2" - }, -/obj/effect/floor_decal/industrial/hatch_tiny/yellow, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/refinery) -"iik" = ( -/obj/effect/obfuscation, -/turf/unsimulated/wall/steel, -/area/centcom/start) -"iip" = ( -/obj/effect/floor_decal/industrial/warning/full, -/obj/machinery/porta_turret, -/obj/machinery/firealarm/east, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark/full, -/area/storage/secure) -"iiv" = ( -/obj/machinery/vending/snack{ - name = "Free Chocolate Corp"; - prices = list() - }, -/turf/unsimulated/floor, -/area/centcom/control) -"iiI" = ( -/turf/simulated/open, -/area/horizon/hallway/deck_three/primary/central) -"iiL" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/horizon/security/firing_range) -"iiM" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 9 - }, -/obj/structure/table/standard, -/obj/item/modular_computer/laptop/preset/command/teleporter, -/turf/simulated/floor/tiled/dark, -/area/teleporter) -"iiN" = ( -/obj/structure/shuttle_part/tcfl{ - icon_state = "0,1" - }, -/turf/unsimulated/floor/plating, -/area/shuttle/legion) -"iiU" = ( -/obj/effect/floor_decal/industrial/outline_door/yellow{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/arrow/yellow{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/maintenance/wing/port/far) -"ija" = ( -/turf/simulated/floor/tiled/white, -/area/medical/main_storage) -"ijf" = ( -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/maintenance/aux_atmospherics/deck_2/starboard/wing) -"ijj" = ( -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 6 - }, -/turf/simulated/floor/plating, -/area/engineering/atmos/air) -"ijn" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/maintenance/operations) -"ijr" = ( -/obj/machinery/door/blast/shutters/open{ - dir = 2; - id = "seconddeckdocksaf"; - name = "Security Checkpoint Shutter" - }, -/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, -/turf/simulated/floor/tiled/dark/full, -/area/security/checkpoint2) -"ijC" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor/wood, -/area/crew_quarters/heads/hop/xo) -"ijE" = ( -/obj/machinery/button/remote/airlock{ - dir = 8; - id = "cryo_toilet_1"; - name = "Door Bolt Control"; - pixel_x = -24; - pixel_y = 6; - specialfunctions = 4 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/effect/floor_decal/corner/green/diagonal, -/obj/structure/toilet{ - dir = 1; - pixel_y = -1 - }, -/turf/simulated/floor/tiled/white, -/area/horizon/crew_quarters/cryo/washroom) -"ijH" = ( -/obj/effect/floor_decal/corner/paleblue/full{ - dir = 4 - }, -/turf/unsimulated/floor, -/area/centcom/legion/hangar5) -"ijJ" = ( -/obj/effect/floor_decal/corner/green{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/gen_treatment) -"ijU" = ( -/obj/random/junk, -/obj/effect/decal/cleanable/dirt, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/engineering) -"ikd" = ( -/obj/machinery/camera/network/engineering{ - c_tag = "Engineering - Equipment Storage"; - dir = 8 - }, -/obj/effect/floor_decal/corner/yellow/full{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/storage_eva) -"ikf" = ( -/obj/machinery/recharge_station, -/obj/effect/floor_decal/spline/plain{ - dir = 4 - }, -/turf/unsimulated/floor, -/area/centcom/distress_prep) -"iki" = ( -/obj/machinery/embedded_controller/radio/simple_docking_controller{ - frequency = 1380; - id_tag = "specops_shuttle_port"; - name = "port docking hatch controller"; - pixel_x = -23; - pixel_y = 28; - tag_door = "specops_shuttle_port_hatch" - }, -/turf/simulated/floor/shuttle/black, -/area/shuttle/specops) -"ikj" = ( -/obj/structure/table/wood, -/obj/item/paper_bin{ - pixel_x = -12; - pixel_y = 6 - }, -/obj/item/pen/blue{ - pixel_x = -12; - pixel_y = 6 - }, -/obj/effect/floor_decal/spline/fancy/wood, -/turf/unsimulated/floor/carpet, -/area/centcom/legion/hangar5) -"ikk" = ( -/obj/structure/table/wood, -/obj/item/storage/box/lights/colored/blue{ - pixel_x = 6; - pixel_y = 10 - }, -/obj/item/storage/box/lights/colored/cyan{ - pixel_x = -6; - pixel_y = 10 - }, -/obj/item/storage/box/lights/colored/green{ - pixel_x = 6; - pixel_y = 6 - }, -/obj/item/storage/box/lights/colored/magenta{ - pixel_x = -6; - pixel_y = 6 - }, -/obj/item/storage/box/lights/colored/red{ - pixel_x = 6; - pixel_y = 2 - }, -/obj/item/storage/box/lights/colored/yellow{ - pixel_x = -6; - pixel_y = 2 - }, -/obj/machinery/button/switch/windowtint{ - dir = 1; - id = "bar"; - pixel_y = 30; - pixel_x = 5 - }, -/obj/machinery/light_switch{ - pixel_x = -5; - pixel_y = 30; - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/horizon/bar/backroom) -"iks" = ( -/obj/effect/decal/fake_object{ - color = "#545c68"; - density = 1; - dir = 4; - icon = 'icons/obj/railing.dmi'; - icon_state = "mcorneroverlay1"; - name = "railing" - }, -/turf/simulated/abyss{ - density = 1 - }, -/area/antag/ninja) -"ikt" = ( -/obj/effect/floor_decal/corner/mauve{ - dir = 10 - }, -/obj/effect/floor_decal/industrial/warning, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology/xenoflora) -"ikw" = ( -/obj/structure/flora/ausbushes/grassybush, -/obj/effect/floor_decal/spline/fancy/wood/corner{ - dir = 4 - }, -/turf/simulated/floor/holofloor/grass, -/area/horizon/holodeck/source_picnicarea) -"ikx" = ( -/obj/machinery/shower{ - pixel_y = 20 - }, -/obj/structure/curtain/open/shower, -/turf/unsimulated/floor/freezer, -/area/centcom/distress_prep) -"ikz" = ( -/obj/effect/floor_decal/corner_wide/green{ - dir = 5 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/hallway/medical) -"ikA" = ( -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/random/dirt_75, -/turf/simulated/floor/plating, -/area/maintenance/wing/port/far) -"ikD" = ( -/obj/effect/floor_decal/industrial/outline/blue, -/turf/simulated/floor/holofloor/carpet/rubber, -/area/horizon/holodeck/source_basketball) -"ikF" = ( -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/corner/dark_green{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/hangar/intrepid) -"ikL" = ( -/obj/structure/bed/stool, -/turf/unsimulated/floor/plating, -/area/centcom/specops) -"ikN" = ( -/obj/structure/table/rack, -/obj/item/clothing/under/color/green, -/obj/item/clothing/shoes/sneakers/brown, -/obj/item/melee/energy/axe, -/obj/effect/decal/fake_object/light_source/invisible, -/turf/simulated/floor, -/area/tdome/tdome1) -"ikV" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/shutters/open{ - dir = 2; - id = "warehouse3"; - name = "Warehouse Shutter" - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/full, -/area/operations/storage) -"ikZ" = ( -/obj/structure/window/reinforced/crescent{ - dir = 8 - }, -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/structure/railing/mapped, -/obj/effect/floor_decal/corner/brown{ - dir = 9 - }, -/turf/unsimulated/floor, -/area/antag/burglar) -"ild" = ( -/obj/machinery/shieldwallgen{ - req_access = list(55); - anchored = 1; - wrenched = 1 - }, -/obj/effect/floor_decal/corner/mauve/full{ - dir = 4 - }, -/obj/structure/cable/green, -/obj/machinery/alarm/south, -/obj/machinery/button/remote/airlock{ - id = "hazardous_access"; - name = "Hazardous Containment"; - req_access = list(55); - specialfunctions = 4; - dir = 4; - pixel_x = 23; - desiredstate = 1 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology/hazardous) -"ili" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/table/wood, -/obj/random/pottedplant_small{ - pixel_x = 7; - pixel_y = 2 - }, -/obj/machinery/power/outlet{ - pixel_y = 4; - pixel_x = -8 - }, -/turf/simulated/floor/carpet/art, -/area/crew_quarters/lounge) -"ill" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/horizon/security/investigations_hallway) -"iln" = ( /turf/simulated/floor/carpet/rubber, -/area/engineering/bluespace_drive/monitoring) -"ilq" = ( -/obj/structure/bed/stool/chair/padded/brown{ - dir = 8 +/area/horizon/engineering/reactor/indra/mainchamber) +"iaJ" = ( +/obj/effect/spider/stickyweb, +/turf/simulated/floor/exoplanet/barren/raskara, +/area/centcom/shared_dream) +"iaK" = ( +/obj/machinery/door/blast/shutters{ + dir = 4; + id = "shutters_custodialgarage"; + name = "Custodial Garage Shutter" }, -/obj/effect/floor_decal/spline/fancy/wood/cee{ +/obj/machinery/door/firedoor, +/obj/effect/floor_decal/industrial/loading/yellow{ dir = 4 }, -/obj/structure/window/reinforced, -/obj/machinery/power/apc/east, -/obj/structure/cable/green{ - icon_state = "0-8" - }, -/turf/simulated/floor/wood, -/area/bridge/upperdeck) -"ilx" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/structure/window/reinforced/crescent, -/obj/structure/railing/mapped, -/turf/unsimulated/floor/plating, -/area/centcom/bar) -"ilF" = ( -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/reinforced/airless, -/area/engineering/engine_room/rust) -"ilI" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/engineering/locker_room) -"ilQ" = ( +/turf/simulated/floor/tiled/dark/full, +/area/horizon/service/custodial) +"iaO" = ( /obj/item/device/gps/stationary/mining_shuttle{ pixel_x = -22; pixel_y = -8 @@ -58083,131 +56582,1667 @@ /obj/item/clothing/accessory/holster/utility/machete, /obj/item/tent/mining, /turf/simulated/floor/tiled/dark, -/area/shuttle/mining) -"ilU" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ +/area/horizon/shuttle/mining) +"iaR" = ( +/obj/effect/floor_decal/corner/dark_green{ dir = 10 }, /turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/port/docks) -"ilW" = ( -/obj/effect/map_effect/window_spawner/full/borosilicate/reinforced/firedoor, -/obj/machinery/door/blast/shutters/open{ - id = "exploratory_chem_shutters"; - dir = 4 +/area/horizon/rnd/hallway) +"ibk" = ( +/obj/effect/floor_decal/corner{ + dir = 10 }, -/turf/simulated/floor/tiled/dark/full, -/area/rnd/chemistry) -"ilY" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/effect/floor_decal/industrial/hatch_tiny/yellow, -/obj/machinery/atmospherics/binary/pump/fuel{ - name = "Fuel Tank to Thrusters" - }, -/obj/machinery/atmospherics/binary/pump{ - name = "Air Reserve to Airlock Reserve"; - dir = 4 - }, -/turf/simulated/floor/plating, -/area/shuttle/intrepid/engineering) -"ima" = ( -/obj/effect/landmark/lobby_mobs_location, -/turf/unsimulated/floor, -/area/centcom/start) -"imc" = ( -/obj/effect/floor_decal/industrial/hatch_door/red, -/obj/machinery/door/airlock/external{ - dir = 8 - }, -/obj/effect/map_effect/marker_helper/airlock/exterior, -/obj/machinery/door/blast/shutters/open{ - dir = 8; - id = "intrepid_bay_outer"; - name = "Intrepid Shutter" - }, -/obj/effect/map_effect/marker/airlock{ - master_tag = "sccv_intrepid_port"; - name = "sccv_intrepid_port"; - req_one_access = null - }, -/turf/simulated/floor/tiled/dark/full, -/area/shuttle/intrepid/port_compartment) -"ime" = ( -/obj/machinery/shieldgen, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/storage_hard) -"img" = ( -/obj/structure/bed/stool/chair{ - dir = 8 - }, -/obj/machinery/light{ +/obj/effect/floor_decal/corner{ dir = 1 }, -/obj/effect/floor_decal/corner/brown/full{ +/turf/simulated/floor/marble/dark, +/area/horizon/holodeck/source_tribunal) +"ibl" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/corner/brown/diagonal, +/turf/simulated/floor/tiled, +/area/horizon/operations/loading) +"ibn" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/xenological) +"ibp" = ( +/obj/machinery/power/apc/east, +/obj/structure/cable/green{ + icon_state = "0-8" + }, +/obj/machinery/camera/network/research{ + c_tag = "Xenology Studies"; + dir = 8; + network = list("Research","Xeno_Bio") + }, +/obj/structure/table/standard, +/obj/effect/floor_decal/corner/mauve{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/xenological) +"ibq" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 6 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/horizon/rnd/hallway/secondary) +"ibs" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 10 + }, +/obj/machinery/door/firedoor, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/full, +/area/horizon/hallway/primary/deck_2/central) +"ibu" = ( +/obj/effect/floor_decal/corner/grey/diagonal, +/obj/structure/bed/stool/chair/office/light{ + dir = 8 + }, +/obj/machinery/alarm/north, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/reception) +"ibv" = ( +/obj/machinery/vending/vendors, +/obj/effect/floor_decal/corner/purple/full{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled, +/area/horizon/service/custodial) +"ibz" = ( +/obj/structure/extinguisher_cabinet/east, +/obj/random/dirt_75, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/starboard/nacelle) +"ibJ" = ( +/obj/structure/closet/secure_closet/guncabinet{ + name = "Weaponry (Energy Carbines and .45 Pistols)" + }, +/obj/item/gun/projectile/sec, +/obj/item/gun/projectile/sec, +/obj/machinery/atmospherics/pipe/simple/hidden/aux, +/obj/item/ammo_magazine/c45m, +/obj/item/ammo_magazine/c45m, +/obj/item/gun/energy/gun, +/obj/item/gun/energy/gun, +/obj/effect/floor_decal/industrial/outline/security, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/command/bridge/aibunker) +"ibM" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_mining{ + dir = 1; + name = "Cargo Bay"; + req_one_access = list(26,29,31,48,67,70) + }, +/obj/effect/map_effect/door_helper/unres{ dir = 1 }, /turf/simulated/floor/tiled, -/area/operations/lobby) -"imm" = ( +/area/horizon/operations/loading) +"ibP" = ( +/obj/structure/window/reinforced/crescent{ + dir = 4 + }, +/obj/structure/window/reinforced/crescent{ + dir = 1 + }, +/obj/structure/window/reinforced/crescent, +/obj/structure/flora/ausbushes/fullgrass, +/obj/structure/flora/ausbushes/ppflowers, +/turf/simulated/floor/grass/no_edge, +/area/centcom/spawning) +"ibR" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance{ + dir = 4; + name = "Public Garden Maintenance"; + req_one_access = list(12, 35) + }, +/turf/simulated/floor/tiled/full, +/area/horizon/service/hydroponics/garden) +"ibU" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/visible/universal{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/engineering/atmos/turbine) +"ibX" = ( +/obj/effect/floor_decal/corner/grey/diagonal, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/reception) +"ibY" = ( +/obj/structure/cable/green{ + icon_state = "2-4" + }, /obj/effect/floor_decal/corner/dark_blue{ dir = 5 }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/recharger/wallcharger{ + pixel_x = 5; + pixel_y = 28 + }, +/turf/simulated/floor/tiled, +/area/horizon/command/bridge/supply) +"icd" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/shuttle/intrepid/main_compartment) +"ich" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 10 + }, +/obj/structure/table/standard, +/obj/structure/flora/pottedplant{ + pixel_y = 16 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/rnd/xenobiology/xenoflora) +"ico" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/surgery) +"ics" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 10 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/turf/simulated/floor/wood, +/area/horizon/repoffice/consular_one) +"ict" = ( +/turf/simulated/wall, +/area/horizon/operations/office_aux) +"icu" = ( +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/structure/railing/mapped, +/turf/simulated/floor/lino, +/area/horizon/service/dining_hall) +"icw" = ( +/obj/effect/shuttle_landmark/horizon/exterior/sneaky/starboard_nacelle_1{ + dir = 4 + }, +/turf/simulated/wall/shuttle/scc_space_ship/cardinal, +/area/horizon/maintenance/deck_2/wing/port/nacelle) +"icB" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/corner/yellow{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/machinery/ringer/north{ + department = "Engineering"; + id = "engie_ringer"; + pixel_y = 30; + req_access = null; + req_one_access = list(11,24) + }, +/turf/simulated/floor/tiled, +/area/horizon/engineering/lobby) +"icD" = ( +/obj/effect/floor_decal/corner/red{ + dir = 9 + }, +/obj/machinery/computer/security/nuclear{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/mercenary) +"icE" = ( +/obj/structure/bed/stool/chair/shuttle, +/obj/machinery/recharger/wallcharger{ + pixel_x = 4; + pixel_y = 22 + }, +/obj/machinery/recharger/wallcharger{ + pixel_x = 4; + pixel_y = 32 + }, +/obj/effect/floor_decal/corner/dark_blue{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/legion) +"icG" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/yellow{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/horizon/engineering/reactor/supermatter/mainchamber) +"icI" = ( +/obj/structure/closet/secure_closet/guncabinet{ + name = "Bridge Defense Armor"; + req_access = list(60) + }, +/obj/item/clothing/head/helmet/security/generic, +/obj/item/clothing/head/helmet/security/generic, +/obj/item/clothing/head/helmet/security/generic, +/obj/item/clothing/suit/armor/carrier/generic, +/obj/item/clothing/suit/armor/carrier/generic, +/obj/item/clothing/suit/armor/carrier/generic, +/obj/effect/floor_decal/corner/dark_blue/full{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/outline/red, +/obj/machinery/light{ + dir = 4 + }, +/obj/item/clothing/mask/gas/alt, +/obj/item/clothing/mask/gas/alt, +/obj/item/clothing/mask/gas/alt, +/turf/simulated/floor/tiled, +/area/horizon/command/bridge/bridge_crew) +"icJ" = ( +/obj/effect/floor_decal/corner/paleblue{ + dir = 10 + }, +/obj/effect/floor_decal/industrial/warning, +/turf/unsimulated/floor{ + icon_state = "dark_preview" + }, +/area/centcom/ferry) +"icK" = ( +/obj/effect/floor_decal/corner/lime/diagonal{ + dir = 8 + }, +/obj/effect/floor_decal/spline/plain, +/obj/machinery/sleeper{ + dir = 8 + }, +/obj/item/device/radio/intercom/east{ + frequency = 1213; + name = "Intercom"; + subspace_transmission = 1; + syndie = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/mercenary) +"icP" = ( +/turf/simulated/wall/r_wall, +/area/horizon/security/lobby) +"icV" = ( +/obj/machinery/atmospherics/pipe/simple/visible/purple{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/structure/bed/stool/chair/office/dark{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/horizon/engineering/atmos/propulsion) +"icW" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/aux{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/machinery/light, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/command/bridge/aibunker) +"icX" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/black{ + dir = 4 + }, +/obj/machinery/meter, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/atmos/propulsion/starboard) +"ida" = ( +/obj/effect/floor_decal/corner_wide/yellow/full, +/turf/simulated/floor/tiled, +/area/horizon/engineering/bluespace_drive) +"idd" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/turf/unsimulated/floor, +/area/centcom/ferry) +"idg" = ( +/obj/effect/floor_decal/corner/yellow/full{ + dir = 1 + }, +/obj/machinery/alarm/north, +/obj/structure/table/standard, +/obj/item/storage/box/fancy/crayons/chalkbox{ + pixel_y = 5 + }, +/turf/simulated/floor/tiled, +/area/horizon/engineering/lobby) +"idh" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/aux, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/main/port) +"idk" = ( +/obj/effect/floor_decal/corner/grey/diagonal, +/obj/effect/floor_decal/spline/plain{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/white, +/area/horizon/service/kitchen) +"idl" = ( +/obj/machinery/door/airlock/external{ + dir = 1; + icon_state = "door_locked"; + locked = 1; + name = "Shuttle Hatch"; + req_access = list(13) + }, +/obj/machinery/door/blast/regular/open{ + dir = 8; + id = "crescent_exterior_blast" + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/effect/map_effect/marker_helper/airlock/interior, +/obj/effect/map_effect/marker/airlock/shuttle{ + master_tag = "crescent_shuttle"; + name = "crescent_shuttle"; + shuttle_tag = "crescent_shuttle"; + req_access = list(103); + req_one_access = null + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/hapt) +"idu" = ( +/obj/machinery/light/small/emergency{ + dir = 4 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark, +/area/horizon/maintenance/deck_2/wing/starboard/nacelle) +"idB" = ( +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/carpet, +/area/horizon/repoffice/consular_one) +"idJ" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/light/small/emergency{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/main/port) +"idN" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/obj/item/device/flashlight/lantern, +/turf/simulated/floor/holofloor/wood, +/area/horizon/holodeck/source_sauna) +"idO" = ( +/obj/machinery/camera/network/reactor{ + c_tag = "Engineering - INDRA Room 1"; + dir = 4 + }, +/obj/effect/floor_decal/corner_wide/yellow{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/horizon/engineering/reactor/indra/mainchamber) +"iea" = ( +/obj/effect/floor_decal/corner_wide/yellow/full{ + dir = 1 + }, +/obj/structure/sign/securearea{ + desc = "A caution sign which reads 'DISPOSALS' and 'AUTHORIZED PERSONNEL ONLY'."; + name = "\improper DISPOSALS sign"; + pixel_y = 32 + }, +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/turf/simulated/floor/tiled, +/area/horizon/stairwell/engineering/deck_2) +"iec" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/horizon/medical/psych) +"ieh" = ( +/obj/structure/lattice/catwalk, +/obj/structure/sign/drop{ + desc = "A warning sign which reads 'DANGER: MASS EJECTOR PATH ON THIS SIGN'."; + name = "\improper DANGER: MASS EJECTOR PATH sign" + }, +/obj/item/hullbeacon/red, +/turf/simulated/open/airless, +/area/horizon/exterior) +"iej" = ( +/obj/structure/flora/ausbushes/sparsegrass, +/turf/simulated/floor/holofloor/grass, +/area/horizon/holodeck/source_wildlife) +"ieq" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner/brown{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/button/remote/blast_door{ + id = "miningbay"; + name = "Mining Bay Entrance"; + pixel_x = 22; + pixel_y = 29; + req_access = list(48); + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/horizon/hangar/operations) +"ier" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/atmos) +"ies" = ( +/obj/machinery/firealarm/south, +/turf/simulated/floor/tiled, +/area/horizon/operations/warehouse) +"iey" = ( +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/port) +"iez" = ( +/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/horizon/shuttle/mining) +"ieE" = ( +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/full, +/area/horizon/operations/mining_main/refinery) +"ieF" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/filingcabinet/chestdrawer{ + pixel_x = 10 + }, +/obj/structure/filingcabinet/filingcabinet{ + pixel_x = -5 + }, /obj/machinery/light/small{ dir = 1 }, -/turf/simulated/floor/tiled/dark, -/area/horizon/grauwolf) -"imq" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 8 - }, -/obj/effect/floor_decal/spline/fancy{ +/turf/simulated/floor/lino/diamond, +/area/horizon/service/library) +"ieJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 2; + icon_state = "pdoor0"; + id = "Security Lockdown"; + name = "Security Blast Door"; + opacity = 0 + }, +/obj/machinery/door/firedoor, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/door/airlock/maintenance{ + dir = 4; + name = "Security Maintenance"; + req_access = list(63) + }, +/turf/simulated/floor/tiled/full, +/area/horizon/maintenance/deck_2/service/starboard) +"ieK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/bed/stool/chair/sofa/pew/right{ + dir = 8 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 10 + }, +/turf/simulated/floor/wood, +/area/horizon/service/chapel/main) +"ieR" = ( +/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/crew/chargebay) +"ieU" = ( +/obj/effect/decal/fake_object{ + dir = 4; + icon = 'icons/effects/props/holodeck/konyang/32x32.dmi'; + icon_state = "plank"; + name = "floor planks" + }, +/obj/effect/decal/fake_object{ + desc = "A lovely umbrella for those rainy Konyanger days."; + dir = 4; + icon = 'icons/effects/props/holodeck/konyang/64x64.dmi'; + icon_state = "umbrella2"; + name = "traditional Konyanger umbrella"; + pixel_x = -31; + pixel_y = 3 + }, +/obj/effect/decal/fake_object{ + dir = 4; + icon = 'icons/effects/props/holodeck/konyang/32x32.dmi'; + icon_state = "plank_shadow"; + name = "floor planks" + }, +/turf/simulated/floor/holofloor/wood{ + dir = 8; + icon = 'icons/turf/flooring/exoplanet/konyang.dmi'; + icon_state = "beachcorner"; + name = "shallow water" + }, +/area/horizon/holodeck/source_konyang) +"ifi" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 5 + }, +/obj/machinery/light/floor{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_3/central) +"ifj" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/camera/motion{ + network = list("Command","Security","Tcomsat"); + c_tag = "Telecommunications - Control Room" + }, +/obj/machinery/atmospherics/unary/freezer{ + dir = 8; + icon_state = "freezer_1"; + use_power = 1 + }, +/obj/effect/floor_decal/industrial/outline/blue, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/tcommsat/entrance) +"ift" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/corner/red/diagonal, +/obj/effect/floor_decal/spline/plain/corner{ + dir = 8 + }, +/turf/simulated/floor/lino, +/area/horizon/service/cafeteria) +"ifw" = ( +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/command/bridge/aibunker) +"ify" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 6 + }, +/obj/machinery/firealarm/east, +/obj/machinery/light_switch{ + dir = 4; + pixel_x = 23; + pixel_y = -6 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/security/evidence_storage) +"ifJ" = ( +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/obj/effect/floor_decal/corner/dark_blue/full{ + dir = 8 + }, +/obj/item/gun/energy/mousegun/xenofauna, +/obj/item/gun/energy/mousegun/xenofauna, +/obj/machinery/firealarm/north, +/obj/machinery/power/apc/critical/west, +/obj/structure/table/steel, +/turf/simulated/floor/tiled/dark, +/area/horizon/security/checkpoint2) +"ifN" = ( /obj/structure/railing/mapped{ dir = 8 }, -/obj/effect/floor_decal/corner_wide/white{ - dir = 9 +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/obj/structure/bed/stool/chair/padded/blue{ + dir = 4 + }, +/turf/unsimulated/floor{ + icon_state = "wood" + }, +/area/centcom/spawning) +"ifO" = ( +/obj/effect/floor_decal/corner/red/diagonal, +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/spline/plain{ + dir = 8 }, /obj/machinery/light/floor{ dir = 8 }, -/turf/simulated/floor/tiled/dark/full, -/area/hallway/primary/central_one) -"imu" = ( -/obj/structure/bed/stool/chair/padded/purple, -/obj/machinery/light{ +/obj/structure/railing/mapped{ + dir = 8 + }, +/turf/simulated/floor/lino, +/area/horizon/service/cafeteria) +"igf" = ( +/obj/effect/floor_decal/corner/paleblue{ + dir = 10 + }, +/turf/unsimulated/floor, +/area/centcom/spawning) +"igl" = ( +/obj/effect/floor_decal/spline/plain/corner{ + dir = 8 + }, +/turf/simulated/floor/beach/sand{ + icon_state = "beach" + }, +/area/centcom/shared_dream) +"igr" = ( +/obj/effect/floor_decal/industrial/loading/yellow{ dir = 4 }, -/turf/simulated/floor/carpet/purple, -/area/crew_quarters/heads/hor) -"imA" = ( -/obj/structure/railing/mapped{ +/turf/unsimulated/floor, +/area/centcom/spawning) +"igt" = ( +/obj/effect/floor_decal/corner/paleblue{ + dir = 5 + }, +/obj/machinery/embedded_controller/radio/simple_docking_controller{ + frequency = 1380; + id_tag = "centcom_shuttle_bay"; + name = "shuttle bay controller"; + pixel_y = 25; + tag_door = "centcom_shuttle_bay_door" + }, +/turf/unsimulated/floor{ + icon_state = "dark_preview" + }, +/area/centcom/ferry) +"igv" = ( +/obj/machinery/disposal/small/north, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/obj/effect/floor_decal/spline/fancy/wood, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/horizon/command/heads/rd) +"igw" = ( +/obj/machinery/vending/snack{ + name = "Free Chocolate Corp"; + prices = list() + }, +/turf/unsimulated/floor{ + dir = 8; + icon_state = "wood" + }, +/area/centcom/legion/hangar5) +"igB" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance_hatch{ + dir = 4; + req_one_access = list(12,63) + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/wing/port/far) +"igI" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/reactor/indra/mainchamber) +"igR" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/hatch{ + dir = 1; + name = "Starboard Propulsion"; + req_one_access = list(11,24) + }, +/turf/simulated/floor/tiled/full, +/area/horizon/engineering/atmos/propulsion) +"igY" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/bluespace_drive) +"iha" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/binary/pump{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/reactor/indra/mainchamber) +"ihd" = ( +/obj/structure/flora/ausbushes/palebush, +/obj/effect/overlay/palmtree_r, +/turf/simulated/floor/holofloor/beach/sand{ + dir = 1; + icon_state = "beachcorner" + }, +/area/horizon/holodeck/source_desert) +"ihh" = ( +/obj/structure/bed/stool/padded/brown{ + dir = 4 + }, +/obj/effect/landmark{ + name = "raiderstart" + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 7 + }, +/turf/unsimulated/floor/wood, +/area/antag/raider) +"ihk" = ( +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/port/far) +"ihp" = ( +/obj/effect/floor_decal/corner_wide/yellow{ + dir = 5 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/platform, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/horizon/engineering/hallway/interior) +"ihy" = ( +/obj/machinery/camera/network/reactor{ + c_tag = "Engineering - INDRA Monitoring Room"; + dir = 1 + }, +/obj/effect/floor_decal/spline/plain, +/obj/structure/sign/nosmoking_1{ + pixel_y = -24 + }, +/turf/simulated/floor/carpet/rubber, +/area/horizon/engineering/reactor/indra/monitoring) +"ihA" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/port/near) +"ihI" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/corner/dark_blue{ + dir = 4 + }, +/obj/effect/floor_decal/corner/dark_blue, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/platform_deco{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/horizon/command/bridge/upperdeck) +"ihL" = ( +/obj/machinery/porta_turret/stationary, +/obj/effect/floor_decal/industrial/warning/full, +/turf/simulated/floor/reinforced, +/area/horizon/command/bridge/selfdestruct) +"iib" = ( +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/structure/disposalpipe/segment{ + icon_state = "pipe-c" + }, +/obj/effect/floor_decal/spline/plain/lime{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/service/hydroponics/garden) +"iic" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/purple{ + dir = 8 + }, +/turf/simulated/wall/shuttle/scc_space_ship/cardinal, +/area/horizon/service/custodial/disposals/deck_1) +"iid" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/unsimulated/floor/plating, +/area/centcom/specops) +"iii" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/light, +/obj/effect/floor_decal/corner/yellow{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/horizon/engineering/storage_eva) +"iik" = ( +/obj/effect/obfuscation, +/turf/unsimulated/wall/steel, +/area/centcom/start) +"iiv" = ( +/obj/machinery/vending/snack{ + name = "Free Chocolate Corp"; + prices = list() + }, +/turf/unsimulated/floor, +/area/centcom/control) +"iiw" = ( +/obj/machinery/appliance/cooker/stove, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/outline/grey, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/service/kitchen) +"iiz" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/horizon/operations/office) +"iiF" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning, +/obj/structure/sign/drop{ + desc = "A warning sign which reads 'DANGER: FALLING HAZARD' and 'THIS EQUIPMENT STARTS AND STOPS AUTOMATICALLY'."; + name = "\improper DANGER: FALLING HAZARD sign"; + pixel_x = 32; + pixel_y = -32 + }, +/turf/simulated/floor/tiled/full, +/area/horizon/stairwell/port/deck_2) +"iiG" = ( +/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/horizon/engineering/hallway/interior) +"iiL" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/security/firing_range) +"iiN" = ( +/obj/structure/shuttle_part/tcfl{ + icon_state = "0,1" + }, +/turf/unsimulated/floor/plating, +/area/shuttle/legion) +"iiR" = ( +/obj/machinery/door/firedoor, +/obj/effect/floor_decal/corner/brown, +/obj/effect/floor_decal/corner/dark_green{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled, +/area/horizon/operations/lobby) +"iiS" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 9 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/horizon/engineering/reactor/indra/office) +"ijh" = ( +/obj/machinery/light/spot{ + dir = 8; + must_start_working = 1 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/table/steel, +/obj/item/storage/bag/inflatable{ + pixel_y = 10; + pixel_x = 2 + }, +/obj/item/device/gps/science{ + pixel_x = 3 + }, +/obj/item/device/gps{ + pixel_x = -6 + }, +/obj/item/device/gps/mining{ + pixel_x = 12 + }, +/obj/item/device/gps{ + pixel_x = -6 + }, +/obj/item/device/gps/science{ + pixel_x = 3 + }, +/obj/item/device/gps/mining{ + pixel_x = 12 + }, +/turf/simulated/floor/plating, +/area/horizon/hangar/intrepid) +"ijk" = ( +/obj/effect/floor_decal/corner/mauve/diagonal, +/turf/simulated/floor/tiled/dark, +/area/horizon/storage/eva) +"ijq" = ( +/obj/machinery/atmospherics/binary/pump{ + dir = 8; + name = "Nitrogen to Mix" + }, +/turf/simulated/floor/plating, +/area/horizon/engineering/atmos/air) +"ijt" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/engineering/storage/lower) +"ijw" = ( +/obj/machinery/alarm/east, +/obj/effect/floor_decal/corner_wide/yellow{ + dir = 6 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/shields) +"ijx" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/obj/machinery/hologram/holopad/long_range, +/turf/simulated/floor/wood, +/area/horizon/command/heads/xo) +"ijD" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/corner/dark_blue{ + dir = 4 + }, +/obj/structure/platform_deco{ + dir = 8 + }, +/obj/structure/table/reinforced/steel, +/turf/simulated/floor/tiled/dark, +/area/horizon/command/bridge/controlroom) +"ijH" = ( +/obj/effect/floor_decal/corner/paleblue/full{ + dir = 4 + }, +/turf/unsimulated/floor, +/area/centcom/legion/hangar5) +"ijM" = ( +/obj/effect/floor_decal/corner_wide/grey/diagonal, +/obj/effect/floor_decal/spline/plain{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/operations/break_room) +"ijR" = ( +/obj/structure/cable/green{ + icon_state = "4-8"; + d1 = 4; + d2 = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/obj/machinery/door/airlock/security{ + dir = 4; + id_tag = "HoSdoor"; + name = "Head of Security's Office"; + req_access = list(58); + secured_wires = 1 + }, +/turf/simulated/floor/tiled, +/area/horizon/command/heads/hos) +"ika" = ( +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/effect/floor_decal/corner/dark_green{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/horizon/engineering/hallway/fore) +"ikf" = ( +/obj/machinery/recharge_station, +/obj/effect/floor_decal/spline/plain{ + dir = 4 + }, +/turf/unsimulated/floor, +/area/centcom/distress_prep) +"iki" = ( +/obj/machinery/embedded_controller/radio/simple_docking_controller{ + frequency = 1380; + id_tag = "specops_shuttle_port"; + name = "port docking hatch controller"; + pixel_x = -23; + pixel_y = 28; + tag_door = "specops_shuttle_port_hatch" + }, +/turf/simulated/floor/shuttle/black, +/area/shuttle/specops) +"ikj" = ( +/obj/structure/table/wood, +/obj/item/paper_bin{ + pixel_x = -12; + pixel_y = 6 + }, +/obj/item/pen/blue{ + pixel_x = -12; + pixel_y = 6 + }, +/obj/effect/floor_decal/spline/fancy/wood, +/turf/unsimulated/floor/carpet, +/area/centcom/legion/hangar5) +"ikn" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/main/starboard) +"iko" = ( +/obj/machinery/button/remote/airlock{ + dir = 5; + id = "rep_office_a"; + name = "representative door bolts"; + pixel_x = 25; + pixel_y = 39; + specialfunctions = 4 + }, +/obj/machinery/button/remote/airlock{ + dir = 5; + id = "rep_office_a"; + name = "representative door control"; + pixel_x = 35; + pixel_y = 39 + }, +/obj/machinery/button/switch/windowtint{ + dir = 9; + id = "repa"; + pixel_x = 35; + pixel_y = 30; + req_access = list(38) + }, +/obj/machinery/light_switch{ + dir = 9; + pixel_x = 25; + pixel_y = 30 + }, +/obj/effect/landmark/start{ + name = "Corporate Liaison" + }, +/obj/structure/bed/stool/chair/office/bridge/generic{ + dir = 4 + }, +/obj/machinery/button/switch/windowtint{ + dir = 9; + id = "rep"; + pixel_x = 27; + pixel_y = -23; + req_access = list(38) + }, +/turf/simulated/floor/carpet, +/area/horizon/repoffice/representative_one) +"ikq" = ( +/obj/machinery/power/terminal{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 5 + }, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/horizon/engineering/atmos/turbine) +"iks" = ( +/obj/effect/decal/fake_object{ + color = "#545c68"; + density = 1; + dir = 4; + icon = 'icons/obj/railing.dmi'; + icon_state = "mcorneroverlay1"; + name = "railing" + }, +/turf/simulated/abyss{ + density = 1 + }, +/area/antag/ninja) +"ikw" = ( +/obj/structure/flora/ausbushes/grassybush, +/obj/effect/floor_decal/spline/fancy/wood/corner{ + dir = 4 + }, +/turf/simulated/floor/holofloor/grass, +/area/horizon/holodeck/source_picnicarea) +"ikx" = ( +/obj/machinery/shower{ + pixel_y = 20 + }, +/obj/structure/curtain/open/shower, +/turf/unsimulated/floor/freezer, +/area/centcom/distress_prep) +"ikD" = ( +/obj/effect/floor_decal/industrial/outline/blue, +/turf/simulated/floor/holofloor/carpet/rubber, +/area/horizon/holodeck/source_basketball) +"ikG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/material/shard, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/main/port) +"ikH" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/dark, +/area/horizon/service/chapel/office) +"ikL" = ( +/obj/structure/bed/stool, +/turf/unsimulated/floor/plating, +/area/centcom/specops) +"ikN" = ( +/obj/structure/table/rack, +/obj/item/clothing/under/color/green, +/obj/item/clothing/shoes/sneakers/brown, +/obj/item/melee/energy/axe, +/obj/effect/decal/fake_object/light_source/invisible, +/turf/simulated/floor, +/area/tdome/tdome1) +"ikO" = ( +/obj/structure/railing/mapped, +/obj/structure/table/standard, +/obj/item/storage/toolbox/electrical{ + pixel_y = 10 + }, +/obj/item/storage/toolbox/mechanical{ + pixel_y = -3 + }, +/obj/effect/floor_decal/corner/dark_blue{ + dir = 10 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark, +/area/horizon/weapons/longbow) +"ikP" = ( +/obj/effect/floor_decal/corner/purple{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/horizon/service/custodial) +"ikQ" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 10 + }, +/obj/structure/table/stone/marble, +/obj/machinery/chemical_dispenser/bar_alc/full{ + dir = 4; + pixel_y = 6 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/marble/dark, +/area/horizon/command/bridge/minibar) +"ikR" = ( +/obj/effect/floor_decal/industrial/outline/security, +/turf/simulated/floor/tiled, +/area/horizon/operations/warehouse) +"ikW" = ( +/obj/structure/bed/stool/chair/padded/beige, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/carpet, +/area/horizon/command/heads/captain) +"ikZ" = ( +/obj/structure/window/reinforced/crescent{ + dir = 8 + }, +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/structure/railing/mapped, +/obj/effect/floor_decal/corner/brown{ + dir = 9 + }, +/turf/unsimulated/floor, +/area/antag/burglar) +"ila" = ( +/obj/structure/bed/stool/chair/shuttle{ + dir = 4 + }, +/obj/machinery/light, +/turf/simulated/floor/shuttle/dark_blue, +/area/horizon/shuttle/escape_pod/pod2) +"ilh" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance_hatch{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/research) +"ilj" = ( +/obj/structure/table/steel, +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/break_room) +"ilk" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/platform_stairs/full/east_west_cap{ + dir = 8 + }, +/obj/structure/platform/cutout, +/turf/simulated/floor/tiled, +/area/horizon/command/bridge/upperdeck) +"ill" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/horizon/security/investigations_hallway) +"ilm" = ( +/obj/structure/table/standard, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/effect/floor_decal/corner/grey/diagonal, +/obj/item/paper_bin, +/obj/item/pen, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/reception) +"ilv" = ( +/obj/effect/floor_decal/corner/mauve/full{ + dir = 4 + }, +/obj/structure/platform{ + dir = 8 + }, +/obj/machinery/light/floor{ dir = 4 }, /turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/central) +/area/horizon/rnd/hallway/secondary) +"ilx" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/window/reinforced/crescent, +/obj/structure/railing/mapped, +/turf/unsimulated/floor/plating, +/area/centcom/bar) +"ily" = ( +/obj/structure/closet/walllocker/emerglocker{ + pixel_y = -32 + }, +/obj/effect/floor_decal/corner/dark_blue{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/outline/emergency_closet, +/obj/machinery/camera/network/third_deck{ + c_tag = "Third Deck - Starboard Dock Port"; + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_3/starboard/docks) +"ilE" = ( +/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/machinery/light, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/aux{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/green{ + dir = 8 + }, +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor/plating, +/area/horizon/stairwell/engineering/deck_1) +"ilL" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/alarm/east, +/obj/structure/table/rack, +/obj/random/loot, +/turf/simulated/floor, +/area/horizon/maintenance/deck_3/security/port) +"ilP" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/structure/closet/crate, +/obj/random/loot, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/research) +"ima" = ( +/obj/effect/landmark/lobby_mobs_location, +/turf/unsimulated/floor, +/area/centcom/start) +"imh" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/maintenance/deck_2/wing/starboard) +"imj" = ( +/obj/machinery/door/airlock/external{ + dir = 4 + }, +/obj/effect/map_effect/marker/airlock/docking{ + landmark_tag = "nav_horizon_dock_deck_3_port_5"; + master_tag = "airlock_horizon_dock_deck_3_port_5"; + name = "airlock_horizon_dock_deck_3_port_5" + }, +/obj/effect/map_effect/marker_helper/airlock/interior, +/obj/machinery/access_button{ + pixel_x = -22; + pixel_y = 32 + }, +/turf/simulated/floor/plating, +/area/horizon/hallway/primary/deck_3/starboard/docks) +"imk" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/corner/dark_green{ + dir = 9 + }, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/machinery/disposal/small/east, +/obj/machinery/camera/network/third_deck{ + c_tag = "Third Deck - Central Ring Starboard"; + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_3/central) +"iml" = ( +/turf/simulated/wall, +/area/horizon/maintenance/substation/wing_starboard) +"imp" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/obj/machinery/disposal/small/south{ + pixel_y = 16 + }, +/obj/structure/disposalpipe/trunk, +/obj/machinery/button/switch/windowtint{ + dir = 1; + id = "cap"; + pixel_y = 28; + pixel_x = -4 + }, +/obj/machinery/light_switch{ + dir = 1; + pixel_x = 4; + pixel_y = 28 + }, +/turf/simulated/floor/wood, +/area/horizon/command/heads/captain) +"ims" = ( +/obj/structure/shuttle_part/scc/scout{ + icon_state = "1,6" + }, +/turf/simulated/floor/plating, +/area/horizon/shuttle/canary) +"imC" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + dir = 1 + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/aux, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/auxatmos) "imF" = ( /obj/effect/floor_decal/corner/red/full, /turf/unsimulated/floor, /area/centcom/spawning) -"imG" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/cable/green{ - icon_state = "4-8" +"imH" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 6 }, -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/machinery/alarm/north{ - req_one_access = list(11, 24, 47, 65) - }, -/turf/simulated/floor/plating, -/area/shuttle/intrepid/port_compartment) +/obj/structure/railing/mapped, +/turf/simulated/floor/wood, +/area/horizon/service/cafeteria) "imJ" = ( /obj/machinery/door/airlock/glass_medical{ name = "Emergency Surgery"; @@ -58218,18 +58253,18 @@ icon_state = "white" }, /area/centcom/holding) -"imN" = ( -/obj/structure/cable{ +"imM" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/fuel, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; icon_state = "1-2" }, -/obj/machinery/door/airlock/engineering{ - dir = 1; - name = "Deck 2 Research Substation"; - req_one_access = list(11,24) - }, -/obj/machinery/door/firedoor, +/obj/structure/lattice/catwalk/indoor/grate/dark, /turf/simulated/floor/plating, -/area/maintenance/substation/research) +/area/horizon/shuttle/intrepid/starboard_compartment) "imS" = ( /obj/machinery/conveyor_switch/oneway{ id = "merchant_receiving"; @@ -58247,28 +58282,49 @@ }, /turf/simulated/floor/wood, /area/shuttle/skipjack) -"imV" = ( -/obj/structure/cable{ +"imW" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/machinery/alarm/north{ + req_one_access = list(11, 24, 47, 65) + }, +/turf/simulated/floor/plating, +/area/horizon/shuttle/intrepid/port_compartment) +"inb" = ( +/obj/structure/cable/green{ icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor, +/area/horizon/command/bridge/upperdeck) +"ing" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 4 + }, /obj/effect/floor_decal/corner/dark_green{ dir = 6 }, -/obj/machinery/light/floor{ - dir = 4 +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 }, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/central) -"inf" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/recharge_station, -/turf/simulated/floor/tiled/dark/full, -/area/shuttle/intrepid/port_storage) +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/full, +/area/horizon/hallway/primary/deck_2/starboard) "ink" = ( /obj/structure/bed/stool/padded/brown{ dir = 8 @@ -58283,52 +58339,41 @@ }, /turf/unsimulated/floor/rubber_carpet, /area/antag/jockey) -"inp" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 1 +"ino" = ( +/obj/structure/trash_pile, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/aft) +"inx" = ( +/obj/structure/cable/green{ + icon_state = "1-2" }, -/turf/simulated/floor/tiled/dark, -/area/horizon/bar) -"inu" = ( -/obj/effect/floor_decal/corner_wide/yellow{ - dir = 9 - }, -/obj/effect/floor_decal/spline/plain{ - dir = 4 - }, -/obj/machinery/light{ +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/corner/dark_green/full{ dir = 8 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/railing/mapped{ + dir = 8 + }, /turf/simulated/floor/tiled, -/area/engineering/break_room) -"inw" = ( -/obj/structure/table/wood, -/obj/item/device/flashlight/lamp, -/turf/simulated/floor/carpet, -/area/medical/psych) -"iny" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 6 - }, -/obj/machinery/light{ +/area/horizon/stairwell/starboard/deck_2) +"inB" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance_hatch{ dir = 1 }, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/starboard/docks) -"inA" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/starboard) +"inC" = ( +/obj/structure/railing/mapped{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/lounge/secondary) +/obj/structure/railing/mapped, +/obj/structure/flora/ausbushes/ywflowers, +/obj/structure/flora/ausbushes/brflowers, +/turf/simulated/floor/grass/no_edge, +/area/horizon/rnd/hallway) "inE" = ( /obj/structure/sign/poster/lore/tcaf2{ pixel_x = 29; @@ -58338,34 +58383,15 @@ icon_state = "wood" }, /area/centcom/legion/hangar5) -"inO" = ( -/obj/structure/table/standard, -/obj/item/storage/box/fancy/vials{ - pixel_x = -4; - pixel_y = 10 - }, -/obj/item/storage/box/syringes, -/obj/item/storage/box/beakers{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/effect/floor_decal/corner/mauve/full{ +"inP" = ( +/obj/effect/floor_decal/spline/fancy/wood/cee, +/obj/structure/flora/ausbushes/ywflowers, +/obj/structure/railing/mapped{ dir = 8 }, -/obj/machinery/camera/network/research{ - c_tag = "Research - XenoBotanical Lab"; - dir = 4 - }, -/obj/machinery/requests_console/north{ - department = "Xenobotany"; - departmentType = 2; - dir = 8; - name = "Xenobotany Requests Console"; - pixel_x = -19; - pixel_y = 0 - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology/xenoflora) +/obj/structure/window/reinforced, +/turf/simulated/floor/grass/no_edge, +/area/horizon/hallway/primary/deck_3/port) "inS" = ( /obj/structure/closet{ name = "contraband" @@ -58375,48 +58401,53 @@ /obj/item/gun/projectile/improvised_handgun, /turf/unsimulated/floor, /area/centcom/legion) -"inU" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 10 +"inT" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/machinery/ringer/south, -/obj/structure/disposalpipe/junction{ +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/door/airlock/maintenance_hatch{ dir = 4; - icon_state = "pipe-j2" + req_one_access = list(12) }, -/turf/simulated/floor/tiled, -/area/bridge) +/obj/machinery/door/firedoor, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor, +/area/horizon/maintenance/deck_3/aft/starboard) +"inV" = ( +/obj/machinery/portable_atmospherics/hydroponics, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/rnd/xenobiology/xenoflora) "inZ" = ( /obj/random/pottedplant, /turf/simulated/floor/holofloor/lino, /area/horizon/holodeck/source_meetinghall) -"ioc" = ( -/obj/effect/floor_decal/industrial/warning/corner, -/obj/structure/sign/radiation{ - pixel_y = 32 - }, -/obj/machinery/light/spot{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/engine_room/rust) "ioe" = ( /obj/machinery/floodlight, /turf/simulated/floor/tiled/dark/full, /area/shuttle/skipjack) -"iog" = ( -/obj/structure/window/shuttle/scc_space_ship, -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/visible/black, -/turf/simulated/floor/plating, -/area/engineering/atmos) -"ioh" = ( -/obj/structure/shuttle_part/scc/scout{ - icon_state = "7,5" +"ioj" = ( +/obj/structure/disposalpipe/segment{ + icon_state = "pipe-c" }, -/turf/simulated/floor/plating, -/area/shuttle/canary) +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/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, +/area/horizon/hallway/primary/deck_3/port) "iok" = ( /obj/effect/landmark{ name = "ninjastart" @@ -58424,29 +58455,26 @@ /obj/effect/decal/fake_object/light_source/invisible, /turf/unsimulated/floor/blue_circuit, /area/antag/ninja) -"ioq" = ( -/obj/effect/floor_decal/corner/black{ - dir = 6 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/dark, -/area/hangar/intrepid) -"ior" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/machinery/door/airlock/external, -/obj/effect/map_effect/marker/airlock/docking{ - landmark_tag = "nav_horizon_dock_deck_3_port_4"; - master_tag = "airlock_horizon_dock_deck_3_port_4"; - name = "airlock_horizon_dock_deck_3_port_4" - }, -/obj/effect/map_effect/marker_helper/airlock/interior, -/obj/machinery/access_button{ - dir = 1; - pixel_x = 28; - pixel_y = 12 +"iom" = ( +/obj/structure/foamedmetal, +/obj/structure/shuttle_part/scc_space_ship{ + icon_state = "d2-2-f" }, /turf/simulated/floor/plating, -/area/horizon/hallway/deck_three/primary/port/docks) +/area/horizon/maintenance/deck_2/wing/starboard) +"ioo" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/wood, +/area/horizon/command/heads/hos) "iot" = ( /obj/structure/shuttle_part/scc_space_ship{ icon_state = "d2-2-f" @@ -58485,42 +58513,118 @@ icon_state = "dark_preview" }, /area/centcom/specops) -"ioH" = ( -/obj/machinery/camera/network/engineering{ - c_tag = "Engineering - Turbine Combustion Chamber"; +"ioA" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 10 + }, +/obj/effect/floor_decal/corner/dark_green{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/junction{ dir = 1; - pixel_x = -11 + icon_state = "pipe-j2" }, -/obj/machinery/atmospherics/pipe/simple/visible/purple, -/turf/simulated/floor/reinforced/airless, -/area/engineering/engine_room/turbine) -"ioR" = ( -/obj/structure/railing/mapped, -/obj/structure/ladder{ - pixel_y = 16 +/turf/simulated/floor/tiled, +/area/horizon/rnd/hallway) +"ioC" = ( +/obj/machinery/door/airlock/glass_research{ + dir = 4; + id_tag = "xeno_entrance_int_b"; + name = "Xenobiology"; + req_access = list(55); + locked = 1 }, -/turf/simulated/open, -/area/maintenance/research_port) +/obj/effect/map_effect/door_helper/unres{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/xenobiology) +"ioM" = ( +/obj/structure/table/steel, +/obj/item/storage/box/bodybags, +/obj/effect/floor_decal/corner/lime/full, +/obj/item/storage/box/gloves{ + pixel_y = 11 + }, +/turf/simulated/floor/tiled/white{ + name = "cooled white floor"; + temperature = 278.15 + }, +/area/horizon/medical/morgue) "ioS" = ( /obj/effect/floor_decal/industrial/warning, /obj/structure/grille, /turf/simulated/floor/reinforced/airless, /area/horizon/exterior) -"ioZ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 +"ioT" = ( +/obj/structure/table/wood, +/obj/item/storage/box/lights/colored/blue{ + pixel_x = 6; + pixel_y = 10 }, -/obj/structure/cable{ - icon_state = "1-2" +/obj/item/storage/box/lights/colored/cyan{ + pixel_x = -6; + pixel_y = 10 }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/random/dirt_75, -/obj/random/dirt_75, -/turf/simulated/floor/plating, -/area/maintenance/wing/port/far) -"ipf" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/item/storage/box/lights/colored/green{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/item/storage/box/lights/colored/magenta{ + pixel_x = -6; + pixel_y = 6 + }, +/obj/item/storage/box/lights/colored/red{ + pixel_x = 6; + pixel_y = 2 + }, +/obj/item/storage/box/lights/colored/yellow{ + pixel_x = -6; + pixel_y = 2 + }, +/obj/machinery/button/switch/windowtint{ + dir = 1; + id = "bar"; + pixel_y = 30; + pixel_x = 5 + }, +/obj/machinery/light_switch{ + pixel_x = -5; + pixel_y = 30; + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/service/bar/backroom) +"ioU" = ( +/obj/machinery/button/remote/airlock/screamer{ + channel = "Command"; + dir = 8; + id = "Vault_Airlock"; + message = "The vault door bolts have been toggled."; + name = "Door Bolt Control"; + pixel_x = -19; + pixel_y = 29; + req_one_access = list(20,41); + specialfunctions = 4; + desiredstate = 1 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -58528,87 +58632,134 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/machinery/door/firedoor, -/obj/effect/floor_decal/industrial/hatch/yellow, /obj/structure/cable/green{ icon_state = "4-8" }, -/obj/machinery/door/airlock/command{ - dir = 4; - name = "Captain's Office"; - req_access = list(20) - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/captain) -"ipg" = ( -/obj/structure/tank_wall/hydrogen{ - icon_state = "h15" - }, -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/airless, -/area/engineering/atmos) -"iph" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/turf/simulated/floor/tiled/dark, -/area/storage/eva) -"ipj" = ( -/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, -/turf/simulated/floor/tiled/dark/full, -/area/medical/equipment) -"ipm" = ( -/obj/structure/platform/ledge{ - dir = 4 - }, -/obj/structure/platform/ledge{ - dir = 1 - }, -/obj/structure/platform_deco/ledge{ - dir = 10 - }, +/obj/structure/lattice/catwalk/indoor, /obj/structure/railing/mapped, /turf/simulated/open, -/area/hallway/medical/upper) -"ipo" = ( -/obj/structure/disposalpipe/junction{ - dir = 1; - icon_state = "pipe-j2" +/area/horizon/operations/office) +"ipa" = ( +/obj/effect/floor_decal/corner_wide/green{ + dir = 5 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/lattice/catwalk/indoor/grate, -/turf/simulated/floor, -/area/bridge/upperdeck) -"ipp" = ( -/obj/structure/sink/kitchen{ - dir = 8; - name = "surgical sink"; - pixel_x = 20 - }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment{ - icon_state = "pipe-c" +/obj/effect/floor_decal/corner_wide/green, +/obj/machinery/photocopier, +/obj/structure/sign/nosmoking_1{ + pixel_y = 32 }, /turf/simulated/floor/tiled/white, -/area/medical/ors) -"ipr" = ( -/obj/effect/floor_decal/corner/dark_blue/full{ +/area/horizon/medical/exam) +"ipe" = ( +/obj/machinery/camera/network/engineering{ + c_tag = "Engineering - Atmospherics Tanks 4"; + dir = 8 + }, +/turf/simulated/floor/plating, +/area/horizon/engineering/atmos/air) +"ipi" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/corner/purple/diagonal, +/obj/effect/floor_decal/industrial/warning{ dir = 1 }, -/obj/structure/closet/secure_closet/bridge_crew, -/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/table/steel, +/obj/item/material/stool/chair/folding{ + pixel_y = 20 + }, +/obj/item/material/stool/chair/folding{ + pixel_y = 22 + }, +/obj/structure/railing/mapped{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/service/custodial/disposals/deck_2) +"ipk" = ( +/obj/machinery/atmospherics/unary/engine/scc_shuttle, +/turf/simulated/floor/plating, +/area/horizon/shuttle/intrepid/port_storage) +"ipt" = ( /turf/simulated/floor/tiled, -/area/bridge/bridge_crew) +/area/horizon/operations/lobby) +"ipx" = ( +/obj/machinery/computer/general_air_control/large_tank_control/wall{ + input_tag = "mixed_in"; + name = "Mixed Gas Tank Monitor"; + output_tag = "mixed_out"; + pixel_y = -3; + sensors = list("mixed_sensor"="Tank") + }, +/turf/simulated/wall/r_wall, +/area/horizon/engineering/atmos) +"ipz" = ( +/obj/structure/flora/ausbushes/ppflowers, +/obj/structure/flora/ausbushes/sunnybush, +/turf/simulated/floor/grass/no_edge, +/area/horizon/crew/lounge) +"ipB" = ( +/obj/effect/floor_decal/corner/dark_green/full, +/turf/simulated/floor/tiled, +/area/horizon/engineering/hallway/fore) +"ipC" = ( +/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/horizon/shuttle/quark/cargo_hold) +"ipD" = ( +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/effect/floor_decal/spline/fancy{ + dir = 8 + }, +/obj/item/aicard, +/obj/structure/table/reinforced/steel, +/turf/simulated/floor/carpet/rubber, +/area/horizon/command/bridge/controlroom) "ipG" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 }, /turf/simulated/floor/tiled/dark, /area/horizon/security/firing_range) +"ipJ" = ( +/obj/structure/bed/stool/chair/office/light{ + dir = 1 + }, +/obj/effect/floor_decal/corner/mauve{ + dir = 5 + }, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/chemistry) +"ipK" = ( +/obj/machinery/disposal/deliveryChute{ + dir = 4 + }, +/obj/structure/disposalpipe/trunk, +/obj/effect/floor_decal/industrial/warning/full, +/obj/structure/plasticflaps/airtight{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/operations/mail_room) "ipM" = ( /obj/effect/floor_decal/corner/dark_blue{ dir = 10 @@ -58619,88 +58770,51 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/security/evidence_storage) -"ipT" = ( -/obj/effect/floor_decal/corner_wide/yellow{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/blue{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos/storage) -"ipV" = ( +"ipR" = ( +/obj/effect/floor_decal/industrial/warning, /obj/structure/cable/green{ - icon_state = "2-8" + icon_state = "1-8" }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 6 - }, -/obj/structure/table/standard, -/obj/item/device/taperecorder{ - pixel_x = -4; - pixel_y = 5 - }, -/obj/machinery/recharger{ - pixel_x = 8; - pixel_y = 6 - }, -/obj/random/pottedplant_small{ - pixel_x = 3; - pixel_y = -2 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/heads/hop/xo) -"ipW" = ( -/obj/machinery/door/airlock/external{ - dir = 4; - frequency = 1380; - icon_state = "door_locked"; - id_tag = "escape_pod_2_hatch"; - locked = 1; - name = "Escape Pod Hatch"; - req_access = list(13) - }, -/turf/simulated/floor/shuttle/dark_blue, -/area/shuttle/escape_pod/pod2) -"ipZ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/airlock/research{ - dir = 1; - name = "Spectrometry"; - req_access = list(65) - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenoarch_atrium) -"iqa" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 10 - }, -/obj/random/pottedplant, -/turf/simulated/floor/wood, -/area/crew_quarters/lounge/secondary) -"iqf" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/maintenance{ - dir = 4; - req_one_access = list(12, 35) - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/door/blast/regular/open{ - id = "hangarlockdown"; - name = "Hangar Lockdown" +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 }, /turf/simulated/floor/tiled/full, -/area/maintenance/hangar/port) +/area/horizon/engineering/storage_hard) +"ipY" = ( +/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/horizon/shuttle/quark/cargo_hold) +"iqb" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/lattice/catwalk/indoor, +/turf/simulated/floor/plating, +/area/horizon/engineering/reactor/indra/mainchamber) "iqj" = ( /obj/effect/floor_decal/corner/white{ dir = 9 @@ -58715,25 +58829,17 @@ name = "coast" }, /area/horizon/holodeck/source_konyang) -"iqm" = ( -/obj/machinery/door/airlock/glass_service{ +"iqp" = ( +/obj/structure/sign/directions/all{ dir = 4; - name = "Kitchen"; - req_access = list(28) + pixel_x = 32; + pixel_y = 32 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 +/obj/effect/floor_decal/corner/dark_green/full{ + dir = 1 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/door/firedoor, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/full, -/area/horizon/kitchen) +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_3/central) "iqr" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 5 @@ -58760,125 +58866,126 @@ /obj/structure/grille, /turf/space/dynamic, /area/template_noop) -"iqA" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 +"iqz" = ( +/obj/structure/cable/green{ + icon_state = "0-2" }, -/obj/structure/cable/yellow{ - icon_state = "4-8" +/obj/structure/cable/green{ + icon_state = "2-8" }, -/turf/simulated/floor/reinforced/airless, -/area/engineering/engine_room/rust) -"iqE" = ( -/obj/structure/platform{ - dir = 1 +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/obj/effect/map_effect/window_spawner/full/reinforced/polarized/grille/firedoor{ + id = "consularA" + }, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id = "bridge blast"; + name = "Bridge Blast Doors"; + opacity = 0 + }, +/turf/simulated/floor, +/area/horizon/repoffice/consular_one) +"iqC" = ( +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 2; + icon_state = "shutter0"; + id = "entrance_shutters"; + name = "Entrance Lockdown Shutters"; + opacity = 0 }, /obj/effect/floor_decal/industrial/hatch/yellow, -/obj/structure/window/reinforced, -/obj/machinery/door/firedoor{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/bridge/upperdeck) +/turf/simulated/floor/tiled/full, +/area/horizon/medical/gen_treatment) "iqG" = ( /obj/effect/floor_decal/corner/lime/diagonal, /turf/unsimulated/floor{ icon_state = "dark_preview" }, /area/centcom/holding) -"iqN" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/maintenance/wing/starboard/far) -"iqP" = ( -/obj/machinery/computer/telecomms/server{ - network = "tcommsat" - }, -/turf/simulated/floor/tiled/dark/full, -/area/tcommsat/entrance) -"iqT" = ( -/obj/structure/table/rack, -/obj/item/stack/material/plasteel{ - amount = 20; - pixel_y = 4; - randpixel = 0 - }, -/obj/item/stack/material/glass{ - amount = 50; - pixel_x = -1; - pixel_y = 2; - randpixel = 0 - }, -/obj/item/stack/material/steel{ - amount = 50; - pixel_x = 1; - pixel_y = -2; - randpixel = 0 - }, -/obj/item/stack/material/steel{ - amount = 50; - pixel_x = 1; - pixel_y = -2; - randpixel = 0 - }, -/obj/item/stack/material/steel{ - amount = 50; - pixel_x = 1; - pixel_y = -2; - randpixel = 0 - }, -/obj/item/reagent_containers/weldpack, -/obj/machinery/camera/network/supply{ - c_tag = "Operations - Machinist Workshop Starboard 2"; - dir = 1 - }, -/obj/item/stack/material/glass{ - amount = 50; - pixel_x = -1; - pixel_y = 2; - randpixel = 0 - }, -/obj/item/stack/material/steel{ - amount = 50; - pixel_x = 1; - pixel_y = -2; - randpixel = 0 - }, -/obj/item/device/paint_sprayer, -/obj/structure/platform{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark/full, -/area/operations/lower/machinist) -"iqU" = ( -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/obj/structure/cable/green{ - icon_state = "2-4" - }, +"iqH" = ( /obj/effect/floor_decal/corner/dark_green{ - dir = 10 + dir = 5 }, -/obj/structure/disposalpipe/junction{ +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/spline/plain/purple{ dir = 1 }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 +/obj/effect/floor_decal/spline/plain/red, +/obj/structure/disposalpipe/segment{ + dir = 4 }, /turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/central) +/area/horizon/service/hydroponics) +"iqL" = ( +/obj/structure/table/standard, +/obj/machinery/firealarm/south, +/obj/effect/floor_decal/corner/mauve{ + dir = 10 + }, +/obj/structure/closet/crate/drop/grey{ + desc = "A large, sturdy crate, that stores grenade components."; + name = "grenade crate"; + pixel_y = -4; + tablestatus = -1 + }, +/obj/item/storage/box/syringegun, +/obj/item/gun/launcher/syringe, +/obj/item/grenade/chem_grenade, +/obj/item/grenade/chem_grenade, +/obj/item/grenade/chem_grenade, +/obj/item/grenade/chem_grenade, +/obj/item/device/assembly/igniter, +/obj/item/device/assembly/igniter, +/obj/item/device/assembly/igniter, +/obj/item/device/assembly/igniter, +/obj/item/device/assembly/timer, +/obj/item/device/assembly/timer, +/obj/item/device/assembly/timer, +/obj/item/device/assembly/timer, +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/chemistry) +"iqS" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_medical{ + dir = 1; + name = "Main Storage"; + req_access = list(66) + }, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/main_storage) "iqY" = ( /obj/structure/bed/stool/chair/sofa/corner/concave/brown{ dir = 8 }, /turf/simulated/floor/carpet/purple, /area/centcom/shared_dream) +"irb" = ( +/obj/effect/floor_decal/corner/green/diagonal, +/turf/simulated/floor/tiled/white, +/area/horizon/crew/washroom/deck_2) +"irf" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor, +/area/horizon/command/bridge/upperdeck) "irg" = ( /obj/effect/floor_decal/corner_wide/paleblue/diagonal{ dir = 8 @@ -58950,6 +59057,22 @@ }, /turf/simulated/floor/tiled/dark, /area/shuttle/mercenary) +"irh" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/storage/eva) +"irl" = ( +/obj/effect/floor_decal/corner/dark_green/full{ + dir = 1 + }, +/obj/machinery/camera/network/third_deck{ + c_tag = "Third Deck - Starboard Lounge Port Entrance"; + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_3/port) "irm" = ( /obj/machinery/firealarm/south, /obj/machinery/power/apc/west, @@ -58963,26 +59086,61 @@ /obj/structure/engineer_maintenance/electric, /turf/simulated/floor/tiled, /area/horizon/security/holding_cell_a) -"irA" = ( -/obj/machinery/atmospherics/binary/pump{ - dir = 4 +"irn" = ( +/obj/effect/floor_decal/industrial/outline/firefighting_closet, +/obj/structure/closet/walllocker/firecloset{ + pixel_y = 32 }, -/obj/machinery/camera/network/engineering{ - c_tag = "Engineering - Atmospherics Control 2"; +/obj/effect/floor_decal/spline/plain, +/obj/effect/floor_decal/spline/plain{ dir = 1 }, -/obj/effect/floor_decal/corner/yellow, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 8 +/turf/simulated/floor/carpet/rubber, +/area/horizon/tcommsat/chamber) +"iro" = ( +/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, +/turf/simulated/floor/tiled, +/area/horizon/command/bridge/cciaroom/lounge) +"irp" = ( +/obj/effect/floor_decal/corner/dark_green, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/effect/floor_decal/spline/plain/corner/orange, +/obj/effect/floor_decal/spline/plain/corner/red{ + dir = 1 }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/atmos) -"irN" = ( -/obj/effect/floor_decal/industrial/outline/service, -/obj/machinery/chem_master/condimaster, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/hydroponics/lower) +/obj/effect/floor_decal/corner/dark_green{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/horizon/service/hydroponics) +"irq" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/reinforced/airless, +/area/horizon/engineering/atmos/propulsion/starboard) +"irz" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 5 + }, +/obj/machinery/disposal/small/south, +/obj/structure/disposalpipe/trunk, +/turf/simulated/floor/tiled, +/area/horizon/operations/lobby) +"irD" = ( +/obj/structure/foamedmetal, +/turf/simulated/floor/plating, +/area/horizon/rnd/eva) +"irI" = ( +/obj/structure/railing/mapped, +/turf/simulated/open, +/area/horizon/stairwell/engineering/deck_2) +"irP" = ( +/obj/machinery/atmospherics/pipe/simple/visible/green{ + dir = 5 + }, +/turf/simulated/floor/plating, +/area/horizon/engineering/reactor/supermatter/mainchamber) "irQ" = ( /obj/structure/table/stone/marble, /obj/machinery/appliance/mixer/cereal{ @@ -58999,23 +59157,22 @@ }, /turf/simulated/floor/tiled/full, /area/horizon/security/investigators_office) -"irW" = ( -/obj/machinery/camera/network/engineering{ - c_tag = "Engineering - Port Combustion Chamber"; - dir = 1; - pixel_x = -11 +"isb" = ( +/obj/effect/floor_decal/corner_wide/green{ + dir = 10 }, -/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ - dir = 5 +/obj/structure/railing/mapped, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/hallway/upper) +"isc" = ( +/obj/structure/cable/green{ + icon_state = "2-8" }, -/turf/simulated/floor/reinforced/airless, -/area/engineering/atmos/propulsion) -"isf" = ( -/obj/effect/map_effect/window_spawner/full/reinforced/polarized/firedoor{ - id = "cmooffice" +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 }, -/turf/simulated/floor/tiled/dark/full, -/area/crew_quarters/heads/cmo) +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/atmos) "ish" = ( /obj/effect/floor_decal/corner/red{ dir = 6 @@ -59039,57 +59196,39 @@ /obj/structure/lattice/catwalk, /turf/simulated/floor/airless, /area/horizon/exterior) -"iso" = ( -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard/far) "isp" = ( /obj/structure/shuttle_part/mercenary/small{ icon_state = "3,1" }, /turf/unsimulated/floor/plating, /area/shuttle/syndicate_elite) -"isq" = ( -/obj/effect/floor_decal/corner_wide/purple/diagonal, -/obj/structure/cable/green{ - icon_state = "1-2" +"ist" = ( +/obj/effect/map_effect/marker_helper/mapmanip/submap/edge{ + dir = 1 }, -/turf/simulated/floor/tiled/white, -/area/rnd/test_range) -"isr" = ( -/obj/machinery/door/blast/shutters/open{ - dir = 4; - id = "CHE2shutters"; - name = "Window Shutter" +/turf/simulated/floor/tiled, +/area/horizon/operations/warehouse) +"isw" = ( +/obj/structure/tank_wall/hydrogen{ + icon_state = "h16" }, -/obj/effect/map_effect/window_spawner/full/borosilicate/reinforced/firedoor, -/turf/simulated/floor/tiled/dark/full, -/area/medical/pharmacy) -"isx" = ( -/obj/item/clothing/ears/earmuffs{ - pixel_x = 3; - pixel_y = 2 +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/atmospherics/pipe/simple/visible/red, +/turf/simulated/floor/airless, +/area/horizon/engineering/atmos) +"isA" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 5 }, -/obj/structure/table/standard, -/turf/simulated/floor/tiled/dark, -/area/maintenance/wing/port/far) +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_3/starboard/docks) "isH" = ( /obj/effect/floor_decal/corner/blue/diagonal, /obj/structure/table/glass, /obj/item/storage/box/fancy/tray/autopsy, /turf/simulated/floor/tiled/white, /area/horizon/security/autopsy_laboratory) -"isJ" = ( -/obj/structure/table/wood, -/obj/item/modular_computer/laptop/preset/representative{ - pixel_x = -1; - pixel_y = 5 - }, -/turf/simulated/floor/carpet, -/area/lawoffice/representative) "isL" = ( /obj/structure/table/rack, /obj/item/rig/retro/equipped, @@ -59098,6 +59237,13 @@ icon_state = "wood" }, /area/centcom/legion/hangar5) +"isM" = ( +/obj/structure/shuttle_part/scc/scout{ + density = 0; + icon_state = "2,12" + }, +/turf/simulated/floor/plating, +/area/horizon/shuttle/canary) "isN" = ( /obj/effect/decal/cleanable/dirt, /obj/item/trash/cigbutt, @@ -59107,42 +59253,37 @@ icon_state = "wood" }, /area/centcom/legion/hangar5) -"isQ" = ( -/obj/structure/lattice/catwalk/indoor, -/obj/machinery/atmospherics/pipe/zpipe/down/supply{ - dir = 8 - }, -/turf/simulated/open, -/area/engineering/atmos/storage) -"isU" = ( -/obj/machinery/door/airlock/external{ - dir = 1; - frequency = 1380; - icon_state = "door_locked"; - id_tag = "centcom_shuttle_dock_inner"; - locked = 1; - name = "Docking Port Airlock"; - req_access = list(13) - }, -/obj/machinery/atmospherics/pipe/simple/hidden, -/turf/simulated/floor/plating, -/area/security/checkpoint2) -"isZ" = ( -/obj/machinery/door/airlock/glass_engineering{ - dir = 4; - name = "Shield Generator"; - req_one_access = list(11,24); - secured_wires = 1 - }, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 +"isP" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 5 }, +/obj/machinery/vending/tool, +/obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled, -/area/storage/shields) +/area/horizon/storage/primary) +"isQ" = ( +/turf/simulated/wall/r_wall, +/area/horizon/crew/journalistoffice) +"isR" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/break_room) +"isW" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/item/reagent_containers/glass/bucket, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/ringer/east{ + department = "Hydroponics"; + id = "ringer_hydroponics"; + req_access = list(35) + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/service/hydroponics/lower) "itb" = ( /obj/machinery/disposal/small/west, /obj/structure/disposalpipe/trunk{ @@ -59156,59 +59297,42 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/security/meeting_room) -"itf" = ( -/obj/structure/table/standard, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 5 +"ite" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 1 }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 8 - }, -/obj/random/pottedplant_small, -/turf/simulated/floor/wood, -/area/rnd/hallway) +/turf/simulated/floor/tiled, +/area/horizon/operations/office) "iti" = ( /obj/effect/floor_decal/corner/white{ dir = 6 }, /turf/simulated/floor/holofloor/tiled/dark, /area/horizon/holodeck/source_boxingcourt) -"itk" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/sortjunction{ - dir = 4; - name = "Atmospherics"; - sortType = "Atmospherics" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/structure/lattice/catwalk/indoor/grate, -/turf/simulated/floor/plating, -/area/hallway/engineering/rust) "itp" = ( /turf/simulated/wall/shuttle/dark/corner/underlay{ dir = 10 }, /area/centcom/legion/hangar5) -"ity" = ( -/obj/effect/floor_decal/corner/red/diagonal, -/obj/effect/floor_decal/industrial/outline/grey, -/obj/machinery/air_sensor{ - frequency = 1441; - id_tag = "n2o_sensor" +"itu" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 6 }, -/obj/effect/decal/fake_object/light_source/invisible, -/turf/simulated/floor/reinforced/n20, -/area/engineering/atmos/air) +/obj/structure/table/standard, +/obj/random/tool{ + pixel_y = 5 + }, +/turf/simulated/floor/tiled, +/area/horizon/engineering/reactor/indra/office) +"itv" = ( +/obj/structure/shuttle_part/scc/scout{ + icon_state = "1,9" + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/horizon/shuttle/canary) "itC" = ( /obj/effect/floor_decal/corner/red{ dir = 6 @@ -59216,12 +59340,58 @@ /obj/effect/floor_decal/industrial/loading/yellow, /turf/unsimulated/floor, /area/centcom/spawning) -"itI" = ( -/obj/structure/platform/ledge{ - dir = 8 +"itF" = ( +/obj/machinery/door/airlock/research{ + name = "Dissection Observation"; + req_access = list(7) }, +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/rnd/xenobiology/dissection) +"itH" = ( /turf/simulated/open, -/area/hallway/medical/upper) +/area/horizon/medical/hallway/upper) +"itL" = ( +/obj/structure/table/standard, +/obj/machinery/light, +/obj/effect/floor_decal/corner/mauve/full{ + dir = 4 + }, +/obj/item/reagent_containers/glass/beaker{ + pixel_y = 8 + }, +/obj/item/reagent_containers/glass/beaker{ + pixel_y = 8 + }, +/obj/item/device/slime_scanner{ + pixel_x = -11; + pixel_y = 4 + }, +/obj/item/device/slime_scanner{ + pixel_x = -11; + pixel_y = 4 + }, +/obj/item/storage/box/slides{ + pixel_x = 5; + pixel_y = 5 + }, +/obj/item/storage/box/syringes{ + pixel_x = 5; + pixel_y = 1 + }, +/obj/item/storage/box/syringes{ + pixel_x = 5; + pixel_y = 1 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/xenobiology) "itO" = ( /obj/structure/sign/directions/mndl{ pixel_y = -4 @@ -59232,38 +59402,66 @@ }, /turf/unsimulated/wall/darkshuttlewall, /area/centcom/checkpoint/aft) -"itW" = ( -/obj/machinery/light/small/emergency{ +"itP" = ( +/turf/simulated/floor/tiled/dark, +/area/horizon/weapons/longbow) +"itZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ dir = 8 }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, +/obj/structure/bed/stool/chair/shuttle/double{ + pixel_x = -8 + }, +/obj/effect/floor_decal/corner/brown{ + dir = 6 + }, +/obj/effect/floor_decal/spline/plain/black{ + dir = 5 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, /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, +/area/horizon/shuttle/intrepid/main_compartment) +"iug" = ( +/obj/machinery/portable_atmospherics/canister/empty, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/random/dirt_75, /turf/simulated/floor, -/area/maintenance/engineering_ladder) -"iuk" = ( -/turf/simulated/wall/shuttle/unique/scc/mining{ - icon_state = "7,5" +/area/horizon/maintenance/deck_3/aft/starboard) +"iuj" = ( +/obj/structure/table/wood, +/obj/item/paper_bin{ + pixel_x = -6 }, -/area/shuttle/mining) -"iuu" = ( -/obj/effect/floor_decal/spline/fancy/wood/corner{ - dir = 1 +/obj/item/pen/blue{ + pixel_x = 8; + pixel_y = 3 }, -/obj/machinery/vending/boozeomat{ - opacity = 1 +/obj/item/pen/red{ + pixel_x = 5 }, -/turf/simulated/floor/tiled/dark, -/area/horizon/bar) -"iuG" = ( +/obj/item/pen/green{ + pixel_y = -3; + pixel_x = 3 + }, +/turf/simulated/floor/carpet, +/area/horizon/repoffice/consular_one) +"iur" = ( +/obj/machinery/vending/cola, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/hatch/operations, +/turf/simulated/floor/tiled/full, +/area/horizon/operations/commissary) +"iuD" = ( /obj/structure/cable/green{ icon_state = "1-2" }, @@ -59272,13 +59470,12 @@ /obj/machinery/door/firedoor, /obj/machinery/door/airlock/service{ dir = 1; - id_tag = "chapdoor"; - name = "Chaplain's Office"; - req_access = list(22) + name = "Disposals and Recycling"; + req_one_access = list(26,67,31,29) }, -/obj/effect/map_effect/door_helper/unres, -/turf/simulated/floor/tiled/dark, -/area/chapel/office) +/obj/machinery/atmospherics/pipe/simple/hidden/green, +/turf/simulated/floor/tiled/full, +/area/horizon/service/custodial/disposals/deck_1) "iuJ" = ( /obj/effect/floor_decal/corner/dark_blue{ dir = 9 @@ -59296,6 +59493,22 @@ icon_state = "dark_preview" }, /area/centcom/holding) +"iuO" = ( +/obj/structure/disposalpipe/junction{ + dir = 4 + }, +/obj/effect/floor_decal/corner/brown{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/horizon/operations/office) +"iuV" = ( +/obj/machinery/atmospherics/pipe/simple/visible/red{ + dir = 5 + }, +/obj/machinery/meter, +/turf/simulated/floor/plating, +/area/horizon/engineering/atmos/air) "iuZ" = ( /obj/structure/table/wood, /obj/effect/decal/fake_object{ @@ -59322,33 +59535,33 @@ }, /turf/simulated/floor/carpet/purple, /area/centcom/shared_dream) -"ivg" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/effect/floor_decal/spline/plain, -/obj/structure/sink/kitchen{ - dir = 8; - name = "sink"; - pixel_x = 21 +"ivk" = ( +/obj/effect/floor_decal/corner/purple/full{ + dir = 8 }, -/obj/structure/extinguisher_cabinet/east, -/turf/simulated/floor/tiled/white, -/area/horizon/kitchen) -"ivi" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/camera/network/reactor{ - c_tag = "Engineering - Supermatter Reactor 4" +/obj/structure/table/steel, +/obj/item/paper_bin{ + pixel_x = -4; + pixel_y = 7 }, -/obj/structure/extinguisher_cabinet/north, -/obj/structure/railing/mapped{ - dir = 4 +/obj/item/pen{ + pixel_x = -4; + pixel_y = 8 }, -/obj/machinery/portable_atmospherics/canister/nitrogen/prechilled, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"ivl" = ( -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled/white, -/area/hallway/medical) +/obj/item/device/hand_labeler, +/obj/machinery/ringer/west{ + department = "Auxiliary Custodial"; + id = "ringers_custodialaux"; + name = "\improper Auxiliary Custodial Ringer Terminal"; + pixel_y = 5; + req_access = list(26) + }, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled, +/area/horizon/service/custodial/auxiliary) "ivn" = ( /obj/item/storage/box/fancy/cookiesnack, /obj/item/storage/box/fancy/admints{ @@ -59374,51 +59587,13 @@ icon_state = "wood" }, /area/centcom/ferry) -"ivt" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/firedoor{ - dir = 4 - }, -/obj/machinery/door/airlock/glass_research{ - dir = 4; - name = "Conference Room"; - req_access = list(47) - }, -/obj/effect/map_effect/door_helper/unres{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/conference) -"ivx" = ( -/obj/machinery/door/blast/shutters{ - id = "shutters_deck2_workshopdesk"; - name = "Machinist Workshop Desk Shutter" - }, -/obj/structure/table/reinforced/steel, -/obj/machinery/door/window/desk/northright{ - name = "Machinist Workshop Desk"; - req_access = list(29) +"ivo" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 5 }, +/obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, -/area/operations/lower/machinist) -"ivB" = ( -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/tiled/dark/full/airless, -/area/bridge/controlroom) -"ivF" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/full, -/area/horizon/stairwell/central) -"ivG" = ( -/obj/effect/floor_decal/corner/mauve/full{ - dir = 8 - }, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/machinery/disposal/small/east, -/turf/simulated/floor/tiled/white, -/area/rnd/telesci) +/area/horizon/hallway/primary/deck_2/starboard) "ivH" = ( /obj/effect/decal/fake_object{ density = 1; @@ -59445,33 +59620,50 @@ /obj/effect/decal/cleanable/dirt, /turf/unsimulated/floor/wood, /area/antag/burglar) -"ivW" = ( -/obj/machinery/atmospherics/pipe/simple/visible/purple, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/atmospherics/binary/pump{ - dir = 8; - name = "Phoron to Connector" +"ivX" = ( +/obj/machinery/icecream_vat, +/obj/effect/floor_decal/industrial/outline/grey, +/turf/simulated/floor/tiled/freezer{ + name = "cooled tiles"; + temperature = 253.15 }, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/atmos) -"iwc" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ +/area/horizon/service/kitchen/freezer) +"ivY" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ dir = 4 }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ +/obj/machinery/door/airlock/hatch{ + dir = 4; + locked = 1; + name = "Supermatter Reactor Crystal Access"; + req_one_access = list(11,24); + id_tag = "engine_access_hatch" + }, +/obj/machinery/door/firedoor{ dir = 4 }, -/obj/structure/cable/green{ - icon_state = "4-8" +/turf/simulated/floor/plating, +/area/horizon/engineering/reactor/supermatter/mainchamber) +"ivZ" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/structure/cable{ + icon_state = "1-2" }, -/obj/structure/lattice/catwalk/indoor/grate, -/turf/simulated/floor, -/area/bridge/upperdeck) -"iwe" = ( -/obj/effect/floor_decal/corner/paleblue/diagonal, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/heads/cmo) +/obj/random/dirt_75, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/starboard/nacelle) +"iwa" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/plating, +/area/horizon/rnd/xenoarch/atrium) +"iwb" = ( +/turf/simulated/wall, +/area/horizon/maintenance/substation/civ_d2) "iwg" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -59487,20 +59679,15 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled/full, /area/horizon/security/hallway) -"iwj" = ( -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard) -"iwn" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/table/standard{ - no_cargo = 1 +"iwl" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 }, -/obj/item/reagent_containers/glass/rag, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard/deck1) +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/horizon/operations/warehouse) "iwo" = ( /obj/effect/step_trigger/teleporter/random{ affect_ghosts = 1; @@ -59514,131 +59701,91 @@ }, /turf/unsimulated/mineral/asteroid, /area/template_noop) -"iwp" = ( -/obj/machinery/power/apc/low/west, -/obj/structure/table/reinforced/steel, -/obj/effect/floor_decal/industrial/hatch/grey, -/obj/machinery/chemical_dispenser/bar_soft/full{ - dir = 4; - pixel_y = 4; - pixel_x = -2 - }, -/obj/item/storage/box/drinkingglasses{ - pixel_y = 4; - pixel_x = 8 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/button/switch/windowtint{ - id = "OM Windows"; - pixel_x = 4; - pixel_y = 25; - req_access = list(41); - dir = 1 - }, -/obj/machinery/light_switch{ - pixel_x = -4; - pixel_y = 25; - dir = 1 - }, -/obj/structure/cable/green{ - icon_state = "0-4" - }, -/turf/simulated/floor/tiled/full, -/area/operations/qm) "iwq" = ( /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 +"iws" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 10 }, +/obj/effect/floor_decal/spline/plain, /turf/simulated/floor/tiled, -/area/hallway/engineering) -"iwI" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/corner/black/full{ - dir = 4 +/area/horizon/service/hydroponics) +"iwv" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 }, -/turf/simulated/floor/tiled, -/area/operations/lower/machinist) -"iwT" = ( -/turf/unsimulated/floor/monotile, -/area/antag/loner) -"iwV" = ( -/obj/structure/cable{ - icon_state = "1-4" +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/turf/simulated/floor/wood, +/area/horizon/crew/lounge) +"iwC" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/atmospherics/binary/pump{ + dir = 8; + name = "Connectors to Filtering" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/lattice/catwalk/indoor/grate/damaged, -/obj/effect/decal/cleanable/greenglow, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/plating, -/area/maintenance/operations) -"iwX" = ( -/turf/simulated/wall/r_wall, -/area/bridge/selfdestruct) -"ixc" = ( -/obj/structure/closet/crate, -/obj/random/loot, -/obj/random/junk, -/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/atmos) +"iwJ" = ( /obj/effect/floor_decal/industrial/warning{ dir = 4 }, -/turf/simulated/floor, -/area/horizon/maintenance/deck_three/aft/starboard) -"ixg" = ( -/obj/structure/cable/green{ - icon_state = "4-8"; - d1 = 4; - d2 = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/structure/cable/green{ - icon_state = "2-4" - }, -/obj/machinery/door/airlock/security{ - dir = 4; - id_tag = "HoSdoor"; - name = "Head of Security's Office"; - req_access = list(58); - secured_wires = 1 - }, -/turf/simulated/floor/tiled, -/area/horizon/security/head_of_security) -"ixh" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/machinery/light/small/emergency{ +/obj/machinery/light{ dir = 4 }, /turf/simulated/floor/plating, -/area/maintenance/wing/starboard) +/area/horizon/hangar/intrepid) +"iwK" = ( +/obj/machinery/vending/cigarette, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/horizon/crew/lounge) +"iwN" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/gravity_gen) +"iwO" = ( +/obj/effect/floor_decal/corner/grey{ + dir = 10 + }, +/obj/structure/weapon_rack/double{ + pixel_y = -32 + }, +/obj/machinery/light, +/turf/simulated/floor/lino, +/area/horizon/service/bar) +"iwP" = ( +/obj/machinery/alarm/north, +/obj/effect/floor_decal/corner/brown{ + dir = 5 + }, +/obj/random/pottedplant, +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled, +/area/horizon/operations/office) +"iwT" = ( +/turf/unsimulated/floor/monotile, +/area/antag/loner) +"ixf" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 5 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/horizon/crew/lounge) "ixi" = ( /obj/structure/window/reinforced{ dir = 4 @@ -59654,16 +59801,17 @@ icon_state = "wood" }, /area/centcom/legion) -"ixm" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 +"ixo" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/visible/green, -/obj/structure/tank_wall/nitrogen{ - icon_state = "n2" - }, -/turf/simulated/floor/plating, -/area/engineering/atmos/air) +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor, +/area/horizon/command/bridge/upperdeck) +"ixp" = ( +/obj/random/contraband, +/turf/simulated/floor/tiled/dark, +/area/horizon/maintenance/deck_2/wing/starboard/nacelle) "ixr" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 8 @@ -59672,13 +59820,16 @@ /obj/item/flame/candle, /turf/simulated/floor/holofloor/wood, /area/horizon/holodeck/source_chapel) +"ixs" = ( +/obj/structure/ship_weapon_dummy, +/turf/simulated/wall/shuttle/unique/scc/scout{ + icon_state = "2,6" + }, +/area/horizon/shuttle/canary) "ixt" = ( /obj/effect/floor_decal/spline/plain, /turf/simulated/floor/tiled/ramp/bottom, /area/merchant_station/warehouse) -"ixx" = ( -/turf/simulated/wall/r_wall, -/area/crew_quarters/heads/hor) "ixy" = ( /obj/machinery/mech_recharger, /obj/machinery/light{ @@ -59689,48 +59840,10 @@ "ixC" = ( /turf/unsimulated/floor, /area/centcom/evac) -"ixD" = ( -/obj/structure/closet/secure_closet/machinist, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled/dark/full, -/area/operations/lower/machinist/surgicalbay) -"ixE" = ( -/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/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled, -/area/operations/lobby) -"ixF" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/closet/crate, -/obj/random/loot, +"ixJ" = ( +/obj/structure/girder, /turf/simulated/floor/plating, -/area/maintenance/wing/port) -"ixH" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/lattice/catwalk/indoor/grate, -/turf/simulated/floor, -/area/horizon/hallway/deck_three/primary/starboard) +/area/horizon/maintenance/deck_2/wing/starboard/far) "ixK" = ( /obj/machinery/button/remote/airlock{ dir = 8; @@ -59757,18 +59870,35 @@ }, /turf/unsimulated/floor, /area/centcom/bar) -"ixU" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 +"ixL" = ( +/obj/effect/floor_decal/corner/grey/diagonal, +/obj/effect/floor_decal/spline/plain{ + dir = 1 }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/item/hullbeacon/red, -/obj/machinery/camera/network/supply{ - c_tag = "Operations - Mining Shuttle Dock Starboard"; +/obj/effect/floor_decal/spline/plain, +/turf/simulated/floor/tiled/white, +/area/horizon/service/kitchen) +"ixO" = ( +/obj/machinery/door/airlock/external{ dir = 4 }, -/turf/simulated/floor/airless, -/area/hangar/operations) +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/effect/map_effect/marker/airlock{ + master_tag = "airlock_horizon_bunker"; + name = "airlock_horizon_bunker"; + frequency = 1109; + req_one_access = list(19) + }, +/obj/effect/map_effect/marker_helper/airlock/interior, +/obj/machinery/access_button{ + pixel_x = -9; + pixel_y = 27; + dir = 8 + }, +/turf/simulated/floor, +/area/horizon/ai/upload_foyer) "ixW" = ( /obj/effect/map_effect/window_spawner/full/reinforced/polarized/firedoor{ id = "Interro" @@ -59780,12 +59910,37 @@ icon_state = "wood" }, /area/centcom/legion/hangar5) -"iyc" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 1 +"ixZ" = ( +/obj/machinery/door/firedoor, +/obj/structure/table/stone/marble, +/obj/machinery/door/blast/shutters{ + dir = 8; + id = "bar_shutter"; + name = "Bar Shutter" }, -/turf/simulated/wall/shuttle/scc, -/area/shuttle/intrepid/engineering) +/obj/machinery/power/outlet, +/turf/simulated/floor/tiled/dark, +/area/horizon/service/bar) +"iyb" = ( +/obj/effect/shuttle_landmark/horizon/dock/deck_3/starboard_1{ + dir = 4 + }, +/obj/machinery/door/airlock/external{ + dir = 4 + }, +/obj/machinery/access_button{ + dir = 8; + pixel_x = -12; + pixel_y = -28 + }, +/obj/effect/map_effect/marker_helper/airlock/exterior, +/obj/effect/map_effect/marker/airlock/docking{ + landmark_tag = "nav_horizon_dock_deck_3_starboard_1"; + master_tag = "airlock_horizon_dock_deck_3_starboard_1"; + name = "airlock_horizon_dock_deck_3_starboard_1" + }, +/turf/simulated/floor/plating, +/area/horizon/hallway/primary/deck_3/port/docks) "iyd" = ( /obj/machinery/light{ dir = 1 @@ -59795,103 +59950,79 @@ }, /turf/unsimulated/floor/plating, /area/centcom/suppy) -"iyf" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/hologram/holopad, -/turf/simulated/floor/wood, -/area/crew_quarters/lounge/secondary) -"iyl" = ( -/obj/structure/cable/green{ - icon_state = "4-8" +"iyh" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 10 }, /obj/structure/disposalpipe/segment{ - dir = 4 + dir = 8; + icon_state = "pipe-c" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/corner_wide/green, -/turf/simulated/floor/tiled/white, -/area/hallway/medical) -"iym" = ( -/obj/structure/table/rack, -/obj/item/device/gps/science{ - pixel_x = 4; - pixel_y = 11 - }, -/obj/item/device/gps/science{ - pixel_x = 4; - pixel_y = 7 - }, -/obj/item/device/gps/science{ - pixel_x = 4; - pixel_y = 3 - }, -/obj/item/device/gps/science{ - pixel_y = -1; - pixel_x = 4 - }, -/obj/machinery/alarm/north, -/obj/item/device/multitool{ - pixel_x = -8; - pixel_y = 10 - }, -/obj/item/screwdriver, -/obj/machinery/camera/network/research{ - c_tag = "Research - Telescience"; - dir = 4 - }, -/turf/simulated/floor/tiled/dark/full, -/area/rnd/telesci) -"iyw" = ( -/obj/effect/floor_decal/corner_wide/yellow/full{ - dir = 4 - }, -/obj/effect/floor_decal/corner_wide/yellow/diagonal, -/obj/structure/table/steel, -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/chemical_dispenser/bar_soft/full{ - pixel_y = 7 - }, -/obj/item/reagent_containers/food/drinks/drinkingglass/newglass/coffeecup{ - pixel_x = 6; - pixel_y = -12 - }, -/obj/item/reagent_containers/food/drinks/drinkingglass/newglass/coffeecup{ - pixel_x = -6; - pixel_y = -12 - }, -/obj/item/reagent_containers/food/drinks/drinkingglass/newglass/coffeecup{ - pixel_x = 6; - pixel_y = -19 - }, -/obj/item/reagent_containers/food/drinks/drinkingglass/newglass/coffeecup{ - pixel_x = -6; - pixel_y = -19 - }, -/turf/simulated/floor/tiled, -/area/engineering/break_room) -"iyz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ icon_state = "1-2" }, -/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_3/starboard) +"iyi" = ( +/obj/machinery/light, +/obj/structure/table/wood, +/obj/machinery/photocopier/faxmachine{ + anchored = 0; + department = "Consular Office B"; + pixel_y = 4; + req_one_access = list(38,19,72) + }, +/obj/machinery/ringer/north{ + dir = 4; + pixel_y = 0; + pixel_x = 10; + department = "Consular B"; + id = "consular_b_ringer"; + req_access = null; + req_one_access = list(72) + }, +/turf/simulated/floor/carpet, +/area/horizon/repoffice/consular_two) +"iyt" = ( +/obj/machinery/alarm/south, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/stairwell/bridge/deck_2) +"iyA" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 1 + }, +/obj/structure/table/stone/marble, +/obj/machinery/chemical_dispenser/coffeemaster/full{ + pixel_y = 7 + }, +/turf/simulated/floor/marble/dark, +/area/horizon/command/bridge/minibar) +"iyC" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass{ - dir = 1; - name = "Deck 3 Starboard Lounge" +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 }, -/turf/simulated/floor/tiled, -/area/crew_quarters/lounge/secondary) +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/hangar/starboard) +"iyD" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/effect/floor_decal/spline/fancy/wood, +/obj/structure/bed/stool/bar/padded/red, +/turf/simulated/floor/wood, +/area/horizon/service/bar) "iyL" = ( /obj/effect/spider/stickyweb, /obj/effect/floor_decal/spline/plain{ @@ -59899,12 +60030,6 @@ }, /turf/simulated/floor/exoplanet/barren/raskara, /area/centcom/shared_dream) -"iyM" = ( -/obj/item/device/radio/intercom/west, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/space_heater, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/lobby) "iyP" = ( /obj/machinery/vending/snack{ pixel_x = -4; @@ -59915,6 +60040,34 @@ }, /turf/unsimulated/floor/wood, /area/centcom/bar) +"iyT" = ( +/obj/effect/floor_decal/corner_wide/paleblue{ + dir = 10 + }, +/obj/machinery/button/remote/blast_door{ + id = "LCKDshutters"; + name = "MedBay Lockdown Control"; + pixel_x = -28; + pixel_y = -19; + req_access = list(40) + }, +/obj/machinery/button/remote/blast_door{ + id = "cmowindowshutters"; + name = "Window Shutters"; + pixel_x = -2; + pixel_y = -19; + req_access = list(40) + }, +/obj/machinery/light, +/obj/machinery/button/remote/airlock{ + id = "CMOdoor"; + name = "Office Door Control"; + pixel_x = 9; + pixel_y = -19; + req_access = list(40) + }, +/turf/simulated/floor/tiled/white, +/area/horizon/command/heads/cmo) "iyU" = ( /obj/effect/floor_decal/corner/dark_blue{ dir = 5 @@ -59926,40 +60079,52 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, /area/horizon/security/equipment) -"iyV" = ( +"iza" = ( +/obj/machinery/disposal/small/north, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/effect/floor_decal/corner/dark_green{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/aft) -"izn" = ( -/obj/effect/floor_decal/spline/fancy/wood, -/obj/structure/bed/stool/chair/wood{ dir = 4 }, -/obj/structure/railing/mapped, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 7 + }, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/machinery/light, /turf/simulated/floor/wood, -/area/horizon/cafeteria) -"izs" = ( -/obj/machinery/door/firedoor, -/obj/effect/decal/cleanable/cobweb, -/obj/structure/plasticflaps/airtight, -/obj/machinery/door/airlock/hatch{ +/area/horizon/repoffice/representative_one) +"izc" = ( +/obj/machinery/atmospherics/binary/pump/high_power{ dir = 4; - name = "Deck 2 Starboard Pod"; - req_access = list(12) + name = "Intake to Hot Loop"; + target_pressure = 15000 }, -/obj/item/tape/engineering{ - icon_state = "engineering_door" +/obj/effect/floor_decal/industrial/hatch_tiny/firefighting_closet, +/turf/simulated/floor/plating, +/area/horizon/engineering/reactor/supermatter/mainchamber) +"izi" = ( +/turf/simulated/floor/lino, +/area/horizon/service/chapel/main) +"izo" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor, +/area/horizon/maintenance/deck_3/bridge) +"izr" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 5 }, -/turf/simulated/floor/tiled/dark, -/area/maintenance/wing/starboard/far) +/obj/effect/floor_decal/industrial/loading/yellow{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled, +/area/horizon/stairwell/port/deck_3) "izt" = ( /obj/vehicle/bike/speeder, /obj/structure/sign/flag/biesel/large/north, @@ -59972,79 +60137,67 @@ }, /turf/unsimulated/floor/plating, /area/centcom/specops) -"izA" = ( -/obj/machinery/light, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 +"izC" = ( +/obj/machinery/door/airlock/highsecurity{ + dir = 1; + name = "AI Secure Storage"; + req_access = list(16) }, -/obj/effect/floor_decal/corner_wide/green{ - dir = 10 +/obj/structure/cable/green{ + icon_state = "2-4" }, -/obj/structure/bed/stool/chair/office/dark{ +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/machinery/door/blast/regular/open{ + id = "AICore"; + name = "AI Core Blast Door"; dir = 4 }, -/turf/simulated/floor/tiled/white, -/area/medical/ward) -"izF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/dark, +/area/horizon/ai/upload) +"izD" = ( /obj/structure/window/shuttle/scc_space_ship, /obj/structure/grille, -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 8; - icon_state = "shutter0"; - id = "LCKDshutters"; - name = "MedBay Lockdown Shutters"; - opacity = 0 - }, /obj/machinery/door/firedoor, +/obj/machinery/door/blast/shutters{ + dir = 4; + id = "shutters_disposals"; + name = "\improper Viewing Shutter" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/purple{ + dir = 10 + }, /turf/simulated/floor/plating, -/area/medical/equipment) -"izG" = ( -/obj/machinery/light{ - dir = 8 +/area/horizon/service/custodial/disposals/deck_1) +"izH" = ( +/obj/effect/floor_decal/corner/lime/diagonal, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/alarm/cold/east, +/turf/simulated/floor/tiled/white{ + name = "cooled white floor"; + temperature = 278.15 }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 9 - }, -/obj/structure/flora/pottedplant{ - icon_state = "plant-29" - }, -/turf/simulated/floor/wood, -/area/chapel/main) +/area/horizon/medical/morgue) "izI" = ( /turf/unsimulated/floor{ dir = 1; name = "staircase" }, /area/centcom/spawning) -"izK" = ( -/obj/machinery/light, -/obj/machinery/ringer/south{ - department = "Pharmacy Frontdesk"; - id = "pharmacy_ringer"; - req_access = list(33) - }, -/obj/machinery/camera/network/medbay{ - c_tag = "Medical - Chemistry Lab Alpha"; - dir = 1 - }, -/obj/effect/floor_decal/corner_wide/orange{ - dir = 10 - }, -/obj/effect/floor_decal/industrial/outline/medical, -/obj/structure/closet/secure_closet/chemical, -/turf/simulated/floor/tiled/white, -/area/medical/pharmacy) -"izT" = ( -/obj/effect/floor_decal/industrial/loading/yellow, -/obj/structure/platform{ +"izM" = ( +/obj/effect/floor_decal/corner/yellow/full{ dir = 4 }, -/obj/machinery/light{ - dir = 8 +/obj/structure/sign/nosmoking_1{ + pixel_y = -32 }, -/turf/simulated/floor/tiled/dark/full, -/area/operations/lower/machinist) +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/vending/tool, +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/storage/tech) "izU" = ( /obj/effect/floor_decal/industrial/warning, /obj/machinery/light{ @@ -60071,12 +60224,24 @@ /obj/item/clothing/mask/trinary_mask, /turf/simulated/floor/marble, /area/horizon/holodeck/source_trinary) +"izW" = ( +/obj/structure/platform_stairs, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/dark, +/area/horizon/rnd/lab) "izX" = ( /obj/effect/floor_decal/corner/grey{ dir = 8 }, /turf/unsimulated/floor, /area/antag/mercenary) +"iAe" = ( +/obj/effect/floor_decal/industrial/outline/service, +/obj/machinery/chemical_dispenser, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/service/hydroponics/lower) "iAh" = ( /obj/machinery/door/airlock/silver{ id_tag = "tower_stall_1"; @@ -60098,6 +60263,22 @@ icon_state = "dark_preview" }, /area/centcom/control) +"iAp" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/window/southright{ + name = "Pun Pun's Cage"; + req_access = list(25) + }, +/turf/simulated/floor/carpet, +/area/horizon/service/bar/backroom) "iAr" = ( /obj/effect/floor_decal/industrial/warning{ dir = 4 @@ -60120,14 +60301,6 @@ }, /turf/simulated/floor/plating, /area/merchant_station/warehouse) -"iAs" = ( -/obj/machinery/alarm/south, -/turf/simulated/floor/plating, -/area/maintenance/substation/security) -"iAt" = ( -/obj/structure/disposalpipe/junction, -/turf/simulated/floor/tiled/full, -/area/hallway/primary/central_two) "iAy" = ( /obj/effect/decal/fake_object{ color = "#545c68"; @@ -60146,122 +60319,194 @@ dir = 4 }, /area/antag/raider) -"iAJ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ +"iAA" = ( +/obj/structure/disposaloutlet{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ +/obj/structure/disposalpipe/trunk{ dir = 4 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/reinforced, +/area/horizon/rnd/xenobiology/hazardous) +"iAM" = ( +/obj/structure/table/steel, +/obj/effect/floor_decal/corner/lime{ + dir = 9 }, -/obj/effect/floor_decal/spline/fancy/wood, -/turf/simulated/floor/wood, -/area/horizon/bar) -"iAK" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/hologram/holopad, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 +/obj/item/device/radio/med{ + pixel_x = -6; + pixel_y = 12 }, -/obj/structure/cable/green{ - icon_state = "1-8" +/obj/item/device/radio/med{ + pixel_x = -6; + pixel_y = 12 }, -/turf/simulated/floor/tiled/white, -/area/medical/pharmacy) -"iAL" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden{ - dir = 1 +/obj/item/device/radio/med{ + pixel_x = 6; + pixel_y = 12 }, -/turf/simulated/floor/plating, -/area/maintenance/hangar/starboard) -"iAN" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 +/obj/item/device/radio/med{ + pixel_x = 6; + pixel_y = 12 }, -/obj/effect/floor_decal/spline/fancy/wood/corner{ - dir = 8 +/obj/item/device/radio/med{ + pixel_x = -6; + pixel_y = 6 }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 1 +/obj/item/device/radio/med{ + pixel_x = -6; + pixel_y = 6 }, -/turf/simulated/floor/wood, -/area/lawoffice/representative_two) +/obj/item/device/radio/med{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/item/device/radio/med{ + pixel_x = 6; + pixel_y = 6 + }, +/turf/simulated/floor/tiled, +/area/horizon/medical/emergency_storage) "iAO" = ( /obj/structure/sign/vacuum, /turf/unsimulated/wall/darkshuttlewall, /area/centcom/specops) -"iAR" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 7 - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/lawoffice/representative) -"iAX" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/effect/large_stock_marker, -/obj/machinery/firealarm/south, -/turf/simulated/floor/tiled, -/area/operations/storage) -"iBe" = ( +"iAQ" = ( /obj/structure/cable{ icon_state = "4-8" }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 +/obj/effect/floor_decal/corner/dark_blue{ + dir = 10 }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/effect/landmark/latejoinlift, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_3/central) +"iAU" = ( /obj/structure/disposalpipe/junction{ dir = 8; icon_state = "pipe-j2" }, -/turf/simulated/floor/tiled, -/area/horizon/crew_quarters/cryo/living_quarters_lift) -"iBf" = ( -/obj/machinery/atmospherics/binary/pump{ - dir = 8 +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/full, +/area/horizon/hallway/primary/deck_1/central) +"iAV" = ( +/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/rnd/xenoarch_atrium) -"iBj" = ( -/obj/effect/floor_decal/industrial/warning{ +/area/horizon/shuttle/quark/cargo_hold) +"iAW" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/corner/dark_green/full{ + dir = 1 + }, +/obj/effect/floor_decal/spline/plain/corner/green{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 4 }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/horizon/service/hydroponics/lower) +"iBa" = ( +/obj/structure/bed/stool/chair{ + dir = 4 + }, +/obj/effect/floor_decal/corner/brown{ + dir = 10 + }, +/obj/effect/landmark/start{ + name = "Assistant" + }, +/turf/simulated/floor/tiled, +/area/horizon/operations/lobby) +"iBb" = ( +/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 }, -/turf/simulated/floor/plating, -/area/maintenance/engineering) -"iBm" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 10 - }, -/obj/effect/floor_decal/spline/plain/corner{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/black{ +/obj/effect/floor_decal/corner/dark_green{ dir = 5 }, -/obj/machinery/camera/motion{ - network = list("Command","Security","Tcomsat"); - c_tag = "Telecommunications - Central Compartment Starboard"; +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/horizon/hangar/intrepid) +"iBi" = ( +/obj/structure/closet/crate, +/obj/effect/floor_decal/corner/brown{ + dir = 9 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled, +/area/horizon/operations/warehouse) +"iBn" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/corner/dark_green{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/horizon/hangar/auxiliary) +"iBo" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 1 + }, +/obj/machinery/portable_atmospherics/canister/air/airlock, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/hangar/starboard) +"iBr" = ( +/obj/structure/toilet{ + pixel_y = 16 + }, +/obj/machinery/light/small{ dir = 4 }, -/obj/machinery/light, -/turf/simulated/floor/carpet/rubber, -/area/tcommsat/chamber) +/obj/structure/bed/handrail{ + dir = 4 + }, +/obj/machinery/button/remote/airlock{ + dir = 1; + id = "main_unit_2"; + name = "Door Bolt Control"; + pixel_y = 34; + specialfunctions = 4 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/crew/fitness/changing) "iBs" = ( /turf/simulated/floor/shuttle/dark_blue, /area/shuttle/transport1) +"iBt" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/random/junk, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/cargo_compartment) "iBu" = ( /obj/structure/table/rack, /obj/item/gun/projectile/pistol{ @@ -60275,12 +60520,14 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/unsimulated/floor, /area/antag/mercenary) -"iBz" = ( -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 1 +"iBy" = ( +/obj/structure/stairs/south, +/obj/structure/stairs_railing{ + dir = 4; + pixel_x = -32 }, -/turf/simulated/floor, -/area/maintenance/engineering_ladder) +/turf/simulated/floor/plating, +/area/horizon/stairwell/starboard/deck_1) "iBA" = ( /obj/effect/floor_decal/corner/paleblue/full{ dir = 1 @@ -60290,24 +60537,12 @@ }, /turf/unsimulated/floor, /area/centcom/spawning) -"iBE" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/structure/sign/nosmoking_1{ - pixel_x = 32 - }, -/turf/simulated/floor/tiled, -/area/operations/lobby) +"iBC" = ( +/obj/structure/platform, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/vending/cigarette, +/turf/simulated/floor/tiled/full, +/area/horizon/command/bridge/upperdeck) "iBG" = ( /obj/machinery/door/blast/regular{ dir = 4; @@ -60316,32 +60551,28 @@ }, /turf/simulated/floor, /area/tdome/tdome2) -"iBH" = ( +"iBM" = ( +/obj/effect/floor_decal/corner_wide/lime/diagonal, /obj/structure/cable/green{ - icon_state = "1-2" + icon_state = "1-8" }, -/obj/machinery/power/apc/low/east, -/obj/structure/cable/green{ - icon_state = "0-2" +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 }, -/obj/machinery/power/sensor{ - name = "Powernet Sensor - Deck 1, 2, and 3 Medical Subgrid"; - name_tag = "Deck 1, 2, and 3 Medical Subgrid" +/turf/simulated/floor/tiled/white, +/area/horizon/medical/reception) +"iBP" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/item/reagent_containers/glass/bucket, +/obj/item/reagent_containers/glass/bucket, +/obj/effect/floor_decal/corner/purple{ + dir = 9 }, -/turf/simulated/floor/plating, -/area/maintenance/substation/medical) -"iBI" = ( -/obj/structure/ladder{ - pixel_y = 8 - }, -/turf/simulated/open, -/area/horizon/maintenance/deck_three/aft/starboard) -"iBL" = ( -/obj/item/material/shard{ - icon_state = "medium" - }, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard/deck1) +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled, +/area/horizon/service/custodial) "iBR" = ( /obj/machinery/conveyor{ dir = 1; @@ -60349,21 +60580,6 @@ }, /turf/simulated/floor/tiled/dark, /area/supply/dock) -"iBV" = ( -/obj/machinery/vending/hydronutrients/xenobotany, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology/xenoflora) -"iBW" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 4 - }, -/obj/effect/floor_decal/corner/yellow, -/obj/machinery/atmospherics/pipe/simple/visible/black{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/engineering/engine_room/turbine) "iBZ" = ( /obj/effect/floor_decal/corner/blue/full{ dir = 1 @@ -60416,67 +60632,23 @@ icon_state = "dark_preview" }, /area/centcom/control) -"iCb" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ +"iCf" = ( +/obj/effect/floor_decal/corner_wide/purple{ dir = 5 }, -/obj/machinery/light, -/turf/simulated/floor/tiled, -/area/rnd/eva) -"iCd" = ( -/obj/item/modular_computer/console/preset/ai{ +/obj/effect/floor_decal/corner_wide/purple{ dir = 8 }, -/turf/simulated/floor/bluegrid{ - name = "cooled mainframe floor"; - temperature = 278 - }, -/area/turret_protected/ai) -"iCh" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/corner/brown{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment{ +/obj/machinery/button/remote/airlock{ dir = 1; - icon_state = "pipe-c" + id = "harvd"; + name = "Door Bolt Control"; + pixel_y = 22; + req_access = list(65); + specialfunctions = 4 }, -/turf/simulated/floor/tiled, -/area/operations/office) -"iCj" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/port) -"iCm" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/multi_tile/glass{ - dir = 2; - name = "Deck 3 Port Docks" - }, -/turf/simulated/floor/tiled/full, -/area/horizon/hallway/deck_three/primary/port/docks) +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/xenoarch/atrium) "iCt" = ( /obj/structure/table/rack, /obj/item/clothing/mask/breath, @@ -60500,6 +60672,15 @@ }, /turf/unsimulated/floor, /area/antag/mercenary) +"iCy" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/freezer{ + name = "cooled tiles"; + temperature = 253.15 + }, +/area/horizon/service/kitchen/freezer) "iCE" = ( /obj/structure/table/rack, /obj/item/clothing/under/color/red, @@ -60511,36 +60692,12 @@ /obj/effect/decal/fake_object/light_source/invisible, /turf/simulated/floor, /area/tdome/tdome2) -"iCF" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/medical/pharmacy) -"iCO" = ( -/obj/structure/cable{ - icon_state = "0-2" - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/machinery/power/apc/high/east, -/turf/simulated/floor/plating, -/area/engineering/drone_fabrication) -"iCP" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 10 - }, -/obj/machinery/ai_status_display{ - pixel_y = -32 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, +"iCJ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 + dir = 6 }, -/obj/machinery/light/floor, /turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/starboard) +/area/horizon/maintenance/deck_2/wing/starboard/auxatmos) "iCU" = ( /obj/structure/table/fancy, /obj/item/flame/candle{ @@ -60557,23 +60714,119 @@ }, /turf/unsimulated/floor/wood, /area/antag/actor) -"iCX" = ( -/obj/machinery/atmospherics/pipe/simple/heat_exchanging, -/turf/simulated/floor/reinforced/airless, -/area/engineering/atmos/propulsion/starboard) -"iCZ" = ( +"iDn" = ( /obj/effect/decal/cleanable/dirt, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/port) +"iDq" = ( /obj/structure/cable/green{ icon_state = "1-4" }, -/turf/simulated/floor/plating, -/area/maintenance/hangar/starboard) -"iDe" = ( -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment{ +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/alarm/south, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/simulated/floor/wood/walnut, +/area/horizon/medical/smoking) +"iDr" = ( +/obj/machinery/firealarm/west, +/obj/effect/floor_decal/corner/dark_green/full{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/horizon/crew/fitness/changing) +"iDt" = ( +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/structure/cable{ + icon_state = "12-0" + }, +/obj/machinery/atmospherics/pipe/zpipe/up/supply, +/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers, +/obj/effect/floor_decal/industrial/warning/full, +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/structure/railing/mapped, +/obj/structure/disposalpipe/up, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/wing/starboard) +"iDA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/structure/trash_pile, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/auxatmos) +"iDH" = ( +/turf/simulated/wall, +/area/horizon/engineering/reactor/indra/office) +"iDS" = ( +/obj/structure/bed/stool/chair/sofa/corner/concave/orange, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/carpet/red, +/area/horizon/service/bar) +"iDV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/random/junk, +/obj/machinery/alarm/north, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/operations/starboard) +"iEb" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/light, +/obj/effect/floor_decal/corner/dark_green{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_3/central) +"iEo" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/door/firedoor/multi_tile{ + dir = 2 + }, +/obj/machinery/door/airlock/multi_tile/glass{ + dir = 1; + name = "Deck 1 Port Stairwell Auxiliary Hangar Elevator" + }, +/turf/simulated/floor/tiled/full, +/area/horizon/rnd/eva) +"iEp" = ( /obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/airlock/glass_mining{ + dir = 1; + name = "Break Room"; + req_one_access = list(26,29,31,48,67,70) + }, +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/horizon/operations/break_room) +"iEv" = ( +/obj/structure/cable{ icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -60582,106 +60835,19 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/full, -/area/horizon/hallway/deck_three/primary/central) -"iDj" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/structure/cable{ + icon_state = "0-4" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/wood, -/area/medical/psych) -"iDk" = ( -/obj/effect/shuttle_landmark/escape_pod/start/pod4, -/turf/simulated/floor/shuttle/dark_blue, -/area/shuttle/escape_pod/pod4) -"iDp" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/obj/machinery/door/airlock/external{ - dir = 4 - }, -/obj/effect/map_effect/marker/airlock/docking{ - landmark_tag = "nav_horizon_dock_deck_3_port_5"; - master_tag = "airlock_horizon_dock_deck_3_port_5"; - name = "airlock_horizon_dock_deck_3_port_5" - }, -/obj/effect/map_effect/marker_helper/airlock/interior, +/obj/machinery/power/apc/north, /turf/simulated/floor/plating, -/area/horizon/hallway/deck_three/primary/port/docks) -"iDw" = ( -/obj/structure/closet/crate/bin, -/obj/random/loot, -/turf/simulated/floor/plating, -/area/maintenance/engineering) -"iDB" = ( -/obj/machinery/alarm/north, -/obj/machinery/suit_cycler/engineering/prepared/atmos, -/obj/effect/floor_decal/industrial/outline/firefighting_closet, -/turf/simulated/floor/tiled/dark/full, -/area/storage/eva) -"iDL" = ( -/turf/simulated/wall/shuttle/scc_space_ship/cardinal, -/area/bridge/minibar) -"iDM" = ( -/obj/structure/plasticflaps/airtight, -/obj/machinery/door/airlock/medical{ - dir = 1; - name = "Morgue"; - req_one_access = list(6,33) - }, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/full, -/area/medical/morgue/lower) -"iEz" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/atmospherics/portables_connector{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/outline/red, -/turf/simulated/floor/plating, -/area/engineering/atmos/air) -"iEA" = ( -/obj/effect/floor_decal/spline/plain/cee{ - dir = 8 - }, -/turf/simulated/floor/carpet/rubber, -/area/hallway/primary/central_one) +/area/horizon/maintenance/deck_1/wing/starboard/far) "iEC" = ( /obj/effect/floor_decal/spline/plain{ dir = 4 }, /turf/simulated/floor/exoplanet/grass, /area/centcom/shared_dream) -"iED" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/platform_stairs/full/east_west_cap/half{ - dir = 1 - }, -/obj/structure/platform, -/turf/simulated/floor/tiled/full, -/area/hallway/engineering) "iEE" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 4 @@ -60695,46 +60861,67 @@ icon_state = "wood" }, /area/centcom/control) -"iEP" = ( -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 4; - icon_state = "shutter0"; - id = "LCKDshutters"; - name = "MedBay Lockdown Shutters"; - opacity = 0 +"iEH" = ( +/turf/simulated/wall/shuttle/scc, +/area/horizon/shuttle/intrepid/starboard_compartment) +"iEK" = ( +/obj/effect/landmark{ + name = "Observer-Start" }, -/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, -/turf/simulated/floor/tiled/dark/full, -/area/medical/main_storage) -"iES" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/structure/tank_wall/phoron{ - icon_state = "ph13" - }, -/turf/simulated/floor/airless, -/area/engineering/atmos) -"iEX" = ( -/obj/effect/floor_decal/industrial/warning{ +/obj/effect/floor_decal/spline/plain{ dir = 1 }, +/obj/effect/floor_decal/spline/fancy, +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/effect/floor_decal/corner_wide/white{ + dir = 5 + }, +/obj/machinery/light/floor{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/hallway/primary/deck_2/central) +"iEL" = ( +/obj/structure/trash_pile, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/machinery/alarm/north, /turf/simulated/floor/plating, -/area/maintenance/wing/port/deck1) +/area/horizon/maintenance/deck_1/auxatmos) +"iER" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/obj/effect/map_effect/door_helper/unres{ + dir = 1 + }, +/obj/machinery/door/airlock/glass_engineering{ + dir = 1; + name = "Engineering Hallway"; + req_access = list(10) + }, +/turf/simulated/floor/tiled/full, +/area/horizon/engineering/lobby) +"iEU" = ( +/obj/machinery/firealarm/west, +/obj/effect/floor_decal/corner/yellow{ + dir = 9 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/closet/secure_closet/engineering_electrical, +/turf/simulated/floor/tiled, +/area/horizon/engineering/storage_eva) +"iEV" = ( +/obj/effect/floor_decal/corner/green/diagonal, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/white, +/area/horizon/crew/fitness/changing) "iEZ" = ( /obj/effect/floor_decal/corner/grey, /turf/unsimulated/floor, /area/centcom/control) -"iFd" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/atmospherics/binary/pump{ - dir = 4; - name = "Waste to Filtering"; - use_power = 1 - }, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/atmos) "iFf" = ( /obj/machinery/atmospherics/unary/vent_pump/high_volume{ dir = 8; @@ -60744,67 +60931,61 @@ /obj/structure/lattice/catwalk/indoor/grate/dark, /turf/simulated/floor/plating, /area/shuttle/skipjack) -"iFq" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 1 +"iFh" = ( +/obj/structure/bed/stool/chair/padded/red, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 5 }, -/obj/machinery/light/floor, -/turf/simulated/floor/tiled/dark, -/area/horizon/bar) -"iFt" = ( -/obj/effect/floor_decal/corner/yellow/full{ - dir = 1 +/obj/structure/platform{ + dir = 8 }, -/turf/simulated/floor/tiled/dark, -/area/engineering/engine_waste) -"iFu" = ( -/obj/structure/closet/crate, -/obj/random/loot, -/obj/random/loot, -/obj/random/loot, -/obj/random/loot, -/obj/machinery/light/small/emergency{ - dir = 4 +/turf/simulated/floor/wood, +/area/horizon/service/dining_hall) +"iFp" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 10 }, -/turf/simulated/floor, -/area/maintenance/security_port) +/obj/structure/disposalpipe/segment, +/obj/machinery/light_switch{ + dir = 8; + pixel_x = -19 + }, +/turf/simulated/floor/wood, +/area/horizon/command/bridge/minibar) +"iFv" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 5 + }, +/obj/structure/table/reinforced/steel, +/obj/machinery/requests_console/north{ + announcementConsole = 1; + department = "Bridge"; + departmentType = 5; + name = "Bridge Requests Console"; + pixel_y = 32 + }, +/obj/item/paper_bin{ + pixel_y = 3; + pixel_x = -5 + }, +/obj/item/pen{ + pixel_x = -5 + }, +/turf/simulated/floor/tiled, +/area/horizon/command/bridge/controlroom) "iFD" = ( /turf/unsimulated/floor/dark_monotile, /area/antag/actor) -"iFG" = ( -/obj/machinery/hologram/holopad, -/obj/effect/floor_decal/corner/mauve/diagonal, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" +"iFK" = ( +/obj/machinery/light, +/obj/effect/floor_decal/corner/dark_green{ + dir = 10 }, -/turf/simulated/floor/tiled/white, -/area/rnd/lab) -"iFH" = ( -/obj/machinery/atmospherics/unary/engine/scc_ship_engine, -/turf/simulated/floor/reinforced{ - blocks_air = 1; - density = 1; - name = "thruster mount" +/obj/structure/bed/stool/chair{ + dir = 1 }, -/area/engineering/atmos/propulsion) -"iFL" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/maintenance{ - dir = 1; - name = "Deck 1 Medical Maintenance"; - req_access = list(5) - }, -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 2; - icon_state = "shutter0"; - id = "LCKDshutters"; - name = "Medical Lockdown Shutters"; - opacity = 0 - }, -/turf/simulated/floor/tiled/full, -/area/medical/morgue/lower) +/turf/simulated/floor/tiled, +/area/horizon/engineering/hallway/fore) "iFM" = ( /obj/structure/table/fancy, /obj/item/storage/box/fancy/matches{ @@ -60817,40 +60998,36 @@ }, /turf/unsimulated/floor/wood, /area/antag/actor) -"iFO" = ( -/obj/effect/floor_decal/spline/fancy, -/obj/item/book/manual/wiki/security_space_law, -/obj/item/book/manual/evaguide{ - pixel_x = 2; - pixel_y = 2 - }, -/obj/structure/railing/mapped, -/obj/structure/table/reinforced/steel, -/turf/simulated/floor/carpet/rubber, -/area/bridge/controlroom) -"iFU" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 5 - }, -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/turf/simulated/floor/tiled, -/area/rnd/eva) -"iFV" = ( -/obj/structure/cable/yellow{ +"iFS" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable{ icon_state = "4-8" }, -/obj/machinery/atmospherics/pipe/simple/visible/cyan{ +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/turf/simulated/floor/plating, -/area/engineering/engine_room) +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/airlock/atmos{ + dir = 4; + name = "Deck 2 Starboard Auxiliary Atmospherics"; + req_one_access = list(11,24) + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/maintenance/deck_2/wing/starboard/auxatmos) "iGa" = ( -/obj/structure/lattice/catwalk, -/obj/structure/reagent_dispensers/fueltank, -/turf/simulated/open, -/area/horizon/hydroponics) +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner_wide/yellow{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/horizon/engineering/bluespace_drive) "iGc" = ( /obj/machinery/autolathe{ desc = "Your typical Autolathe. It appears to have much more options than your regular one, however..."; @@ -60864,39 +61041,44 @@ }, /turf/simulated/floor/tiled, /area/merchant_station/warehouse) -"iGe" = ( -/obj/structure/platform/ledge, -/turf/simulated/floor/carpet/rubber, -/area/rnd/telesci) +"iGf" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_2/fore) "iGg" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/effect/floor_decal/industrial/warning, /turf/simulated/floor/reinforced/airless, /area/horizon/exterior) -"iGk" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 1 - }, -/obj/effect/floor_decal/spline/plain, -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/black{ +"iGl" = ( +/obj/effect/floor_decal/industrial/warning/corner{ dir = 4 }, -/turf/simulated/floor/carpet/rubber, -/area/tcommsat/chamber) +/turf/simulated/floor/reinforced/airless, +/area/horizon/engineering/reactor/indra/mainchamber) "iGm" = ( /obj/effect/floor_decal/corner/grey/full, /turf/unsimulated/floor, /area/centcom/control) -"iGC" = ( -/obj/structure/tank_wall{ - icon_state = "m-15" +"iGw" = ( +/obj/machinery/light{ + dir = 8 }, -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/plating, -/area/engineering/atmos) +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 10 + }, +/obj/machinery/light_switch{ + dir = 8; + pixel_x = -22; + pixel_y = 23 + }, +/obj/structure/flora/pottedplant{ + icon_state = "plant-33" + }, +/turf/simulated/floor/wood, +/area/horizon/service/chapel/main) "iGD" = ( /obj/structure/table/reinforced/steel, /obj/effect/floor_decal/corner/paleblue/diagonal{ @@ -60911,6 +61093,16 @@ }, /turf/simulated/floor/tiled/white, /area/merchant_station) +"iGE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/horizon/maintenance/deck_2/wing/starboard/auxatmos) +"iGG" = ( +/obj/machinery/crusher_base, +/turf/simulated/floor/plating, +/area/horizon/service/custodial/disposals/deck_1) "iGH" = ( /obj/machinery/atmospherics/pipe/simple/visible/purple{ dir = 4 @@ -60938,13 +61130,30 @@ /obj/effect/floor_decal/industrial/warning/corner, /turf/simulated/floor/tiled, /area/horizon/security/hallway) -"iGO" = ( -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/structure/cable/green{ - icon_state = "1-2" +"iGQ" = ( +/turf/simulated/wall/r_wall, +/area/horizon/command/heads/chief) +"iGU" = ( +/obj/structure/bed/stool/chair/office/light{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 }, /turf/simulated/floor/plating, -/area/maintenance/research_port) +/area/horizon/engineering/drone_fabrication) +"iGX" = ( +/obj/structure/table/wood, +/obj/item/flame/candle, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/obj/machinery/alarm/east, +/turf/simulated/floor/wood, +/area/horizon/service/chapel/main) "iHc" = ( /obj/item/inflatable_duck, /obj/item/beach_ball, @@ -60957,93 +61166,40 @@ /obj/machinery/vending/boozeomat/merchant, /turf/simulated/floor/tiled, /area/merchant_station) -"iHf" = ( -/turf/simulated/floor/grass/no_edge, -/area/horizon/cafeteria) -"iHi" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark/full, -/area/shuttle/intrepid/main_compartment) -"iHl" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/hatch/red, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 +"iHe" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/effect/landmark{ + name = "Revenant" }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/wing/port/far) +"iHh" = ( +/turf/simulated/wall/shuttle/scc_space_ship/cardinal, +/area/horizon/engineering/atmos/propulsion) +"iHj" = ( +/obj/effect/floor_decal/industrial/outline/medical, +/obj/machinery/washing_machine, +/obj/machinery/power/apc/low/east, /obj/structure/cable/green{ - icon_state = "4-8" + icon_state = "0-8" }, -/obj/machinery/light/small/emergency{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/secure_ammunition_storage) -"iHp" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/effect/floor_decal/spline/plain/purple{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/horizon/hydroponics) -"iHq" = ( -/obj/effect/floor_decal/spline/fancy/wood/cee, -/turf/simulated/floor/wood, -/area/crew_quarters/heads/hor) -"iHt" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/turf/simulated/floor/tiled/full, -/area/horizon/hallway/deck_two/fore) -"iHu" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/spline/fancy/wood{ +/obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 }, -/obj/structure/disposalpipe/sortjunction{ - dir = 1; - name = "Bar"; - sortType = "Bar" +/turf/simulated/floor/tiled/full, +/area/horizon/medical/washroom) +"iHs" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance{ + dir = 4; + req_one_access = list(12, 35) }, -/turf/simulated/floor/wood, -/area/horizon/bar) +/obj/machinery/door/blast/regular/open{ + id = "hangarlockdown"; + name = "Hangar Lockdown" + }, +/turf/simulated/floor/tiled/full, +/area/horizon/maintenance/deck_1/hangar/port) "iHv" = ( /obj/effect/floor_decal/corner/brown/diagonal, /obj/structure/disposalpipe/segment{ @@ -61063,6 +61219,25 @@ /obj/random/hoodie, /turf/unsimulated/floor/plating, /area/centcom/holding) +"iHy" = ( +/obj/effect/floor_decal/industrial/outline/research, +/obj/machinery/suit_cycler/science/prepared, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/storage/eva/expedition) +"iHC" = ( +/obj/structure/table/standard, +/obj/effect/floor_decal/corner/mauve{ + dir = 9 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/item/device/camera, +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/xenobiology/foyer) "iHD" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 4 @@ -61071,67 +61246,10 @@ /obj/item/flame/candle, /turf/simulated/floor/holofloor/wood, /area/horizon/holodeck/source_sauna) -"iHE" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/corner/brown{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/hangar/operations) -"iHG" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 8 - }, -/obj/structure/table/stone/marble, -/obj/machinery/chemical_dispenser/bar_soft/full{ - dir = 4; - pixel_y = 3 - }, -/turf/simulated/floor/marble/dark, -/area/bridge/minibar) -"iHJ" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden, -/obj/effect/map_effect/marker/airlock{ - frequency = 1002; - master_tag = "airlock_horizon_deck_3_fore_starboard_1"; - name = "airlock_horizon_deck_3_fore_starboard_1" - }, -/turf/simulated/floor, -/area/maintenance/bridge) -"iHL" = ( -/obj/effect/floor_decal/corner/black{ - dir = 9 - }, -/obj/effect/floor_decal/industrial/loading/yellow{ - dir = 4 - }, +"iHF" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/dark, -/area/hangar/auxiliary) -"iHP" = ( -/obj/effect/landmark{ - name = "Observer-Start" - }, -/obj/effect/floor_decal/spline/plain{ - dir = 1 - }, -/obj/effect/floor_decal/spline/fancy, -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/effect/floor_decal/corner_wide/white{ - dir = 5 - }, -/obj/machinery/light/floor{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark/full, -/area/hallway/primary/central_one) +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_3/central) "iHV" = ( /obj/effect/floor_decal/corner/beige/diagonal, /obj/machinery/atmospherics/unary/vent_scrubber/on{ @@ -61139,121 +61257,103 @@ }, /turf/simulated/floor/tiled/white, /area/horizon/security/forensic_laboratory) -"iIa" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden{ - dir = 8 - }, -/obj/effect/map_effect/marker/airlock/docking{ - landmark_tag = "nav_horizon_dock_deck_3_starboard_3"; - master_tag = "airlock_horizon_dock_deck_3_starboard_3"; - name = "airlock_horizon_dock_deck_3_starboard_3" - }, -/obj/machinery/light/small/emergency{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/horizon/hallway/deck_three/primary/starboard/docks) "iId" = ( /obj/effect/floor_decal/spline/plain, /turf/simulated/floor/wood, /area/centcom/shared_dream) -"iIm" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/bed/stool/chair/padded/black, -/turf/simulated/floor/tiled, -/area/maintenance/wing/starboard/deck1) -"iIx" = ( -/obj/structure/table/wood, -/obj/machinery/requests_console/east{ - department = "Psychiatric Wing" - }, -/obj/item/modular_computer/laptop/preset/medical{ - pixel_y = 4 - }, -/obj/random/pottedplant_small{ - pixel_x = 7; - pixel_y = 14 - }, -/turf/simulated/floor/carpet, -/area/medical/psych) -"iIE" = ( -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/obj/effect/floor_decal/industrial/warning/corner{ +"iIh" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, /obj/structure/cable/green{ icon_state = "4-8" }, -/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{ +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ 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{ - frequency = 1379; - id_tag = "indra_airlock_interior"; - locked = 1; - name = "INDRA Reactor Airlock Interior"; - req_one_access = list(11,24) - }, -/obj/machinery/access_button{ - command = "cycle_interior"; - frequency = 1379; - master_tag = "indra_airlock_control"; - name = "INDRA Reactor Airlock Access"; - pixel_x = 23; - req_one_access = list(11,24) - }, -/obj/machinery/embedded_controller/radio/airlock/access_controller{ - id_tag = "indra_airlock_control"; - name = "INDRA Reactor Airlock Access Console"; - pixel_x = 38; - tag_exterior_door = "indra_airlock_exterior"; - tag_interior_door = "indra_airlock_interior" - }, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/engine_monitoring/rust) -"iIM" = ( -/obj/effect/floor_decal/spline/fancy/wood{ +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/obj/effect/floor_decal/spline/fancy/wood{ +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor, +/area/horizon/hallway/primary/deck_3/starboard) +"iIi" = ( +/obj/structure/stairs/south, +/obj/structure/stairs_railing{ dir = 8 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/wood, -/area/horizon/crew_quarters/lounge/bar) -"iIO" = ( -/obj/structure/plasticflaps/mining, -/obj/machinery/door/blast/shutters{ - dir = 2; - id = "shutters_deck2_rescon"; - name = "Conveyor Shutter" +/turf/simulated/floor/plating, +/area/horizon/stairwell/starboard/deck_1) +"iIj" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 }, -/obj/machinery/conveyor{ - id = "rnd"; +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/horizon/command/bridge/upperdeck) +"iIs" = ( +/obj/machinery/atmospherics/pipe/manifold/visible{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/rnd/xenobiology/xenoflora) +"iIt" = ( +/obj/structure/bed/stool/chair/office/light{ + dir = 8 + }, +/obj/effect/landmark/start{ + name = "Xenoarchaeologist" + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 6 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/wood, +/area/horizon/rnd/conference) +"iIy" = ( +/turf/simulated/floor/reinforced, +/area/horizon/rnd/xenobiology) +"iIz" = ( +/obj/effect/floor_decal/corner/grey/diagonal{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/service/cafeteria) +"iIH" = ( +/obj/machinery/power/breakerbox/activated{ + RCon_tag = "Operations Substation" + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/substation/operations) +"iIN" = ( +/obj/structure/platform_stairs/south_north_solo{ dir = 1 }, -/turf/simulated/floor/tiled/dark/full, -/area/rnd/lab) +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 6 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/horizon/command/bridge/meeting_room) "iIV" = ( /obj/effect/map_effect/window_spawner/full/reinforced/indestructible, /obj/structure/sign/staff_only{ @@ -61263,53 +61363,39 @@ icon_state = "plating" }, /area/centcom/spawning) -"iJf" = ( -/obj/machinery/door/window/eastright, -/turf/simulated/floor/tiled/dark/full, -/area/rnd/telesci) -"iJn" = ( -/obj/machinery/door/firedoor, -/obj/structure/window/shuttle/scc_space_ship, -/obj/structure/grille, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "bridge blast"; - name = "Bridge Blast Doors"; - opacity = 0 - }, -/obj/machinery/door/blast/shutters{ - dir = 4; - id = "shutters_deck3_xo"; - name = "Safety Shutter" - }, -/turf/simulated/floor/tiled/dark/full, -/area/crew_quarters/heads/hop/xo) -"iJq" = ( +"iJe" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" + icon_state = "4-8" }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/dark, -/area/shuttle/intrepid/main_compartment) +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/obj/structure/filingcabinet{ + pixel_x = -9 + }, +/obj/machinery/papershredder{ + pixel_x = 7 + }, +/turf/simulated/floor/wood, +/area/horizon/command/heads/captain) +"iJl" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/power/terminal{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/horizon/engineering/bluespace_drive) "iJr" = ( /obj/structure/bed/stool/chair/holochair{ dir = 1 }, /turf/simulated/floor/holofloor/carpet, /area/horizon/holodeck/source_meetinghall) -"iJt" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/industrial/warning, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/plating, -/area/maintenance/operations) "iJv" = ( /obj/machinery/shower{ pixel_y = 24 @@ -61319,55 +61405,82 @@ }, /turf/simulated/floor/tiled/freezer, /area/horizon/security/washroom) -"iJC" = ( -/obj/machinery/atmospherics/pipe/simple/visible/black{ - dir = 9 +"iJD" = ( +/obj/machinery/status_display{ + pixel_y = -32 }, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"iJM" = ( -/obj/machinery/door/blast/shutters/open{ - dir = 8; - id = "shutters_hangarseccp"; - name = "Security Checkpoint Shutter" - }, -/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, -/turf/simulated/floor/tiled/dark/full, -/area/security/checkpoint) -"iJR" = ( -/obj/machinery/power/smes/buildable/substation{ - RCon_tag = "Substation - Operations" - }, -/obj/structure/cable/green{ - icon_state = "0-2" - }, -/obj/structure/cable, -/turf/simulated/floor/plating, -/area/maintenance/substation/supply) -"iJV" = ( +/obj/machinery/light, /obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 + dir = 1 }, -/obj/machinery/alarm/north{ - pixel_y = 51 +/obj/random/pottedplant, +/obj/effect/floor_decal/corner/dark_blue{ + dir = 10 }, +/turf/simulated/floor/reinforced, +/area/horizon/command/bridge/controlroom) +"iJH" = ( +/obj/machinery/biogenerator/small/north, +/obj/effect/floor_decal/spline/plain/lime, /turf/simulated/floor/tiled/dark, -/area/rnd/xenoarch_storage) +/area/horizon/service/hydroponics/garden) +"iJW" = ( +/obj/structure/tank_wall/phoron{ + density = 0; + icon_state = "ph12"; + opacity = 0 + }, +/obj/machinery/atmospherics/unary/vent_pump/siphon/on/atmos{ + id_tag = "ph_out" + }, +/turf/simulated/floor/reinforced/phoron, +/area/horizon/engineering/atmos) "iJX" = ( /obj/effect/floor_decal/industrial/warning{ dir = 9 }, /turf/simulated/floor/reinforced/airless, /area/horizon/exterior) -"iKf" = ( -/turf/simulated/wall, -/area/horizon/bar) -"iKg" = ( -/obj/effect/floor_decal/corner/mauve{ - dir = 9 +"iJZ" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/corner/brown{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/horizon/operations/break_room) +"iKa" = ( +/obj/effect/floor_decal/corner_wide/green{ + dir = 6 + }, +/obj/effect/landmark/start{ + name = "Medical Intern" + }, +/obj/structure/bed/stool/chair{ + dir = 8 }, /turf/simulated/floor/tiled/white, -/area/rnd/xenobiology) +/area/horizon/medical/hallway/upper) +"iKb" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/effect/landmark/latejoincyborg, +/turf/simulated/floor/tiled, +/area/horizon/crew/chargebay) "iKh" = ( /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -61384,6 +61497,15 @@ }, /turf/unsimulated/floor/plating, /area/centcom/legion/hangar5) +"iKi" = ( +/obj/structure/sign/nosmoking_2{ + pixel_x = 32 + }, +/obj/structure/table/rack, +/obj/random/toolbox, +/obj/effect/floor_decal/industrial/outline/grey, +/turf/simulated/floor/tiled/dark, +/area/horizon/maintenance/deck_2/wing/starboard/nacelle) "iKk" = ( /obj/structure/table/reinforced/steel, /obj/item/storage/firstaid/fire{ @@ -61399,83 +61521,48 @@ }, /turf/unsimulated/floor, /area/centcom/legion/hangar5) -"iKn" = ( -/obj/machinery/portable_atmospherics/powered/scrubber/huge/stationary, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology/xenoflora) -"iKo" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/maintenance_hatch{ - dir = 4; - req_one_access = list(12,63) - }, -/turf/simulated/floor/plating, -/area/maintenance/wing/port/deck1) -"iKv" = ( -/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/storage_eva) -"iKA" = ( -/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, -/turf/simulated/floor/tiled/dark/full, -/area/medical/exam) -"iKB" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 1 - }, -/obj/effect/floor_decal/spline/fancy, -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/effect/floor_decal/corner_wide/white{ - dir = 5 +"iKq" = ( +/obj/effect/map_effect/window_spawner/full/borosilicate/reinforced/firedoor, +/obj/machinery/door/blast/regular/open{ + dir = 8; + fail_secure = 1; + id = "telesci_lockdown"; + name = "Hazardous Containment Lockdown" }, /turf/simulated/floor/tiled/dark/full, -/area/hallway/primary/central_one) -"iKD" = ( -/obj/effect/floor_decal/corner_wide/purple{ - dir = 8 - }, -/obj/effect/floor_decal/corner_wide/purple{ - dir = 6 - }, -/obj/effect/floor_decal/industrial/warning{ +/area/horizon/rnd/telesci) +"iKr" = ( +/obj/structure/disposalpipe/trunk{ dir = 4 }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/button/remote/blast_door{ - dir = 4; - id = "iso_b_purge"; - name = "PURGE Atmosphere"; - pixel_x = 28; - pixel_y = -26; - req_access = list(47) - }, -/obj/machinery/button/remote/blast_door{ - dir = 4; - id = "iso_b"; - name = "Blast Door Control"; - pixel_x = 22; - pixel_y = -36; - req_access = list(47) - }, -/obj/machinery/button/remote/airlock{ - dir = 4; - id = "riso2"; - name = "Door Bolt Control"; - pixel_x = 22; - pixel_y = -25; - req_access = list(47); - specialfunctions = 4 - }, -/obj/machinery/atmospherics/valve/digital/open{ - dir = 4; - name = "Isolation B" - }, +/obj/machinery/disposal/small/north, /turf/simulated/floor/tiled/white, -/area/rnd/xenoarch_atrium) +/area/horizon/rnd/chemistry) +"iKs" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/horizon/hangar/intrepid) +"iKu" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_2/central) +"iKH" = ( +/obj/vehicle/train/cargo/trolley/pussywagon, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/service/custodial) "iKI" = ( /obj/effect/floor_decal/corner/dark_blue{ dir = 9 @@ -61491,46 +61578,21 @@ }, /turf/simulated/floor/marble, /area/horizon/holodeck/source_tribunal) -"iKN" = ( -/obj/structure/cable{ - icon_state = "1-2" +"iKQ" = ( +/obj/structure/table/wood, +/obj/item/storage/box/fancy/matches{ + pixel_x = 6; + pixel_y = 11 }, -/obj/structure/cable/orange{ - icon_state = "4-8" +/obj/random/pottedplant_small{ + pixel_x = -7; + pixel_y = 10 }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 +/obj/machinery/door/window/southright{ + req_access = list(37) }, -/obj/effect/floor_decal/corner_wide/yellow/full{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/bluespace_drive) -"iKS" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor, -/area/maintenance/engineering_ladder) -"iKV" = ( -/obj/machinery/alarm/freezer/west, -/obj/structure/engineer_maintenance/pipe, -/obj/structure/engineer_maintenance/electric{ - dir = 8 - }, -/turf/simulated/floor/tiled/freezer{ - name = "cooled tiles"; - temperature = 253.15 - }, -/area/horizon/kitchen/freezer) +/turf/simulated/floor/lino/diamond, +/area/horizon/service/library) "iKW" = ( /obj/item/hullbeacon/red, /obj/structure/sign/securearea{ @@ -61541,27 +61603,6 @@ }, /turf/simulated/floor/reinforced/airless, /area/horizon/exterior) -"iKY" = ( -/obj/structure/table/stone/marble, -/obj/machinery/reagentgrinder{ - pixel_x = 4; - pixel_y = 16 - }, -/obj/item/reagent_containers/glass/beaker/large{ - pixel_x = -9; - pixel_y = 15 - }, -/obj/item/reagent_containers/glass/beaker/large{ - pixel_x = -9; - pixel_y = 6 - }, -/obj/item/storage/box/gloves{ - pixel_x = 5; - pixel_y = -2 - }, -/obj/structure/extinguisher_cabinet/east, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/kitchen) "iKZ" = ( /obj/effect/floor_decal/corner/grey{ dir = 5 @@ -61571,162 +61612,46 @@ }, /turf/unsimulated/floor, /area/antag/mercenary) -"iLa" = ( -/obj/effect/floor_decal/corner/dark_green/diagonal, -/obj/structure/bookcase{ - icon_state = "book-5" +"iLe" = ( +/turf/unsimulated/wall/darkshuttlewall, +/area/centcom/legion) +"iLs" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 }, +/turf/simulated/floor/wood/walnut, +/area/horizon/medical/smoking) +"iLv" = ( +/turf/unsimulated/floor, +/area/centcom/bar) +"iLE" = ( +/obj/structure/bed/stool/chair/office/bridge/generic, +/obj/effect/floor_decal/corner/dark_blue{ + dir = 6 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/weapons/grauwolf) +"iLG" = ( /obj/structure/cable/green{ icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/full, -/area/medical/ward/isolation) -"iLc" = ( -/obj/effect/floor_decal/corner_wide/green/full{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/machinery/computer/shuttle_control/lift/wall{ - dir = 4; - pixel_x = -32; - shuttle_tag = "Morgue Lift" - }, -/obj/structure/railing/mapped{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/hallway/medical) -"iLd" = ( -/obj/machinery/power/apc/west, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 8 - }, -/obj/structure/cable/green, -/turf/simulated/floor/wood, -/area/journalistoffice) -"iLe" = ( -/turf/unsimulated/wall/darkshuttlewall, -/area/centcom/legion) -"iLh" = ( -/obj/structure/grille/diagonal, -/obj/structure/window/shuttle/scc_space_ship, -/obj/machinery/door/blast/shutters/open{ - dir = 2; - id = "bar_viewing_shutters"; - name = "Bar Viewing Shutters" - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/reinforced, -/area/horizon/bar) -"iLk" = ( -/obj/effect/floor_decal/corner/teal/diagonal, -/obj/item/storage/box/condiment{ - pixel_y = 13 - }, -/obj/effect/decal/fake_object{ - desc = "A chalkboard with the menu of the cafe written on it."; - dir = 8; - icon = 'icons/obj/coffeemenu.dmi'; - icon_state = "left"; - name = "coffee menu chalkboard"; - pixel_x = 32 - }, -/obj/item/reagent_containers/food/condiment/shaker/pumpkinspice{ - pixel_y = 6 - }, -/obj/item/reagent_containers/food/condiment/shaker/peppermill{ - pixel_x = 2 - }, -/obj/item/reagent_containers/food/condiment/shaker/salt{ - pixel_x = 7 - }, -/obj/item/reagent_containers/food/condiment/shaker/sprinkles{ - pixel_x = -5; - pixel_y = 2 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/item/storage/box/fancy/donut{ - pixel_x = 1; - pixel_y = -9 - }, -/obj/structure/table/stone/marble, -/obj/effect/floor_decal/spline/plain{ - dir = 4 - }, -/turf/simulated/floor/lino, -/area/horizon/cafeteria) -"iLm" = ( -/obj/effect/map_effect/window_spawner/full/reinforced/polarized/grille/firedoor{ - id = "cap" - }, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "bridge blast"; - name = "Bridge Blast Doors"; - opacity = 0 - }, -/obj/structure/cable/green{ - icon_state = "0-8" - }, -/turf/simulated/floor, -/area/crew_quarters/captain) -"iLn" = ( -/obj/structure/bed/stool/chair/sofa/left/purple{ - dir = 1 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/machinery/light_switch{ - pixel_x = -5; - pixel_y = -20 - }, -/turf/simulated/floor/carpet/purple, -/area/crew_quarters/heads/hor) -"iLo" = ( -/turf/simulated/wall, -/area/horizon/crew_quarters/washroom/central) -"iLr" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/smes/rust) -"iLv" = ( -/turf/unsimulated/floor, -/area/centcom/bar) -"iLz" = ( -/obj/structure/railing/mapped{ - dir = 1 +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 }, -/turf/simulated/open, -/area/maintenance/wing/starboard) +/turf/simulated/floor/tiled/white, +/area/horizon/medical/hallway) "iLH" = ( /obj/structure/table/reinforced/steel, /obj/machinery/alarm/south{ alarm_id = 1501; breach_detection = 0; - name = "Isolation A"; + name = null; rcon_setting = 3; report_danger_level = 0; req_one_access = list(7,47,24,11) @@ -61737,19 +61662,53 @@ pixel_y = 5 }, /turf/simulated/floor/tiled/dark, -/area/outpost/research/anomaly_storage) +/area/horizon/rnd/xenoarch/anomaly_storage) "iLJ" = ( /obj/item/modular_computer/console/preset/command, /turf/unsimulated/floor/rubber_carpet, /area/centcom/control) -"iLS" = ( -/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, -/turf/simulated/floor/bluegrid/server, -/area/server) -"iLT" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +"iLL" = ( +/turf/simulated/wall/r_wall, +/area/horizon/repoffice/consular_one) +"iLR" = ( +/turf/simulated/wall/r_wall, +/area/horizon/engineering/atmos) +"iLW" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 9 }, +/turf/simulated/floor/tiled, +/area/horizon/security/brig) +"iMa" = ( +/obj/machinery/atmospherics/valve{ + name = "Thermal Relief Valve" + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/atmos/turbine) +"iMi" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/starboard/nacelle) +"iMl" = ( +/obj/structure/table/glass{ + table_reinf = "glass" + }, +/obj/structure/curtain/open/medical, +/obj/item/folder, +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/floor_decal/corner_wide/green{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/ward) +"iMp" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -61759,108 +61718,37 @@ /obj/structure/cable/green{ icon_state = "4-8" }, -/obj/effect/floor_decal/corner/dark_green{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/bridge/upperdeck) -"iLW" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/horizon/security/brig) -"iMb" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/table/standard{ - no_cargo = 1 - }, -/obj/random/gloves, -/turf/simulated/floor/tiled, -/area/maintenance/wing/starboard/deck1) -"iMc" = ( -/obj/effect/floor_decal/corner/brown{ - dir = 10 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/light/spot, -/obj/machinery/portable_atmospherics/canister/air, -/turf/simulated/floor/tiled, -/area/hangar/operations) -"iMg" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/structure/tank_wall/carbon_dioxide{ - icon_state = "co2-13" - }, -/turf/simulated/floor/airless, -/area/engineering/atmos) -"iMj" = ( -/obj/machinery/light, -/obj/item/modular_computer/console/preset/command/teleporter{ - dir = 4 - }, -/obj/effect/floor_decal/spline/plain/cee, -/turf/simulated/floor/carpet/rubber, -/area/teleporter) -"iMo" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/effect/floor_decal/spline/plain{ - dir = 5 - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/r_n_d/protolathe, -/turf/simulated/floor/carpet/rubber, -/area/rnd/lab) -"iMA" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, /obj/structure/disposalpipe/segment{ - icon_state = "pipe-c" - }, -/obj/effect/floor_decal/corner/purple{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/horizon/custodial) -"iMC" = ( -/obj/structure/railing/mapped, -/obj/structure/bed/stool/chair/office/dark{ dir = 4 }, -/obj/effect/landmark/start{ - name = "Engineering Apprentice" +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor/plating, +/area/horizon/hangar/intrepid) +"iMr" = ( +/obj/effect/landmark/entry_point/aft{ + name = "aft, bottom AI core" }, -/obj/effect/floor_decal/corner_wide/yellow/full, -/obj/effect/floor_decal/corner_wide/yellow/diagonal{ - dir = 4 +/turf/simulated/wall/shuttle/scc_space_ship/cardinal, +/area/horizon/maintenance/deck_1/auxatmos) +"iMK" = ( +/obj/effect/floor_decal/spline/fancy/wood/cee{ + dir = 1 }, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/engineering/break_room) -"iMG" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/effect/floor_decal/corner_wide/yellow{ - dir = 6 - }, -/obj/machinery/light/spot{ - dir = 4; - must_start_working = 1 - }, -/turf/simulated/floor/tiled, -/area/engineering/bluespace_drive) +/obj/structure/flora/ausbushes/ywflowers, +/turf/simulated/floor/grass/no_edge, +/area/horizon/hallway/primary/deck_3/central) "iMM" = ( /turf/simulated/wall/shuttle/space_ship/mercenary, /area/shuttle/mercenary) +"iMP" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/corner/yellow{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/horizon/engineering/hallway/fore) "iMQ" = ( /obj/machinery/light/small{ dir = 4; @@ -61871,54 +61759,29 @@ icon_state = "dark_preview" }, /area/centcom/spawning) -"iMS" = ( -/obj/effect/floor_decal/corner/white/diagonal, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/structure/closet/walllocker/firecloset/medical{ - pixel_x = -32 - }, -/obj/structure/engineer_maintenance/pipe{ - dir = 8 - }, -/obj/structure/engineer_maintenance/electric, -/turf/simulated/floor/tiled, -/area/medical/paramedic) +"iMT" = ( +/obj/machinery/atmospherics/pipe/simple/visible/purple, +/turf/simulated/wall/shuttle/scc_space_ship/cardinal, +/area/horizon/engineering/atmos/turbine) "iMW" = ( /turf/simulated/wall/shuttle/unique/mercenary/small{ icon_state = "3,9" }, /area/shuttle/syndicate_elite) -"iMY" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable{ - icon_state = "1-2" +"iMX" = ( +/obj/machinery/door/airlock/external, +/obj/machinery/access_button{ + pixel_x = 28 }, -/obj/machinery/door/airlock/atmos{ - dir = 1; - req_one_access = list(11,24) +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/effect/map_effect/marker_helper/airlock/interior, +/obj/effect/map_effect/marker/airlock{ + master_tag = "airlock_horizon_deck_3_aft_1"; + name = "airlock_horizon_deck_3_aft_1"; + frequency = 1001 }, -/obj/effect/floor_decal/industrial/hatch_door/engineering{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/atmos/air) -"iMZ" = ( -/obj/structure/closet/crate, -/obj/item/circuitboard/smes, -/obj/item/circuitboard/smes, -/obj/item/smes_coil, -/obj/item/smes_coil, -/obj/item/smes_coil/super_capacity, -/obj/item/smes_coil/super_capacity, -/obj/item/smes_coil/super_io, -/obj/item/smes_coil/super_io, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/storage_hard) +/turf/simulated/floor, +/area/horizon/maintenance/deck_3/aft/port/far) "iNc" = ( /turf/unsimulated/floor/freezer, /area/antag/mercenary) @@ -61931,19 +61794,31 @@ }, /turf/simulated/floor/shuttle/black, /area/shuttle/hapt) -"iNg" = ( -/obj/effect/floor_decal/corner/black{ - dir = 6 - }, -/obj/structure/railing/mapped{ +"iNl" = ( +/obj/effect/floor_decal/spline/fancy/wood{ dir = 4 }, -/turf/simulated/floor/tiled/dark, -/area/hangar/auxiliary) -"iNi" = ( -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/maintenance/wing/port/deck1) +/turf/simulated/floor/wood, +/area/horizon/command/heads/xo) +"iNt" = ( +/obj/effect/map_effect/window_spawner/full/reinforced/polarized/firedoor{ + id = "rep" + }, +/turf/simulated/floor/tiled, +/area/horizon/repoffice/representative_one) +"iNu" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/corner/yellow{ + dir = 5 + }, +/obj/effect/floor_decal/corner/dark_green{ + dir = 8 + }, +/obj/machinery/alarm/west, +/turf/simulated/floor/tiled, +/area/horizon/engineering/hallway/fore) "iNy" = ( /obj/structure/bed/stool/chair{ dir = 1 @@ -61958,6 +61833,12 @@ }, /turf/simulated/floor/exoplanet/barren/raskara, /area/centcom/shared_dream) +"iND" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 9 + }, +/turf/simulated/floor/plating, +/area/horizon/engineering/reactor/supermatter/mainchamber) "iNF" = ( /obj/machinery/door/airlock/command{ name = "Thunderdome Administration"; @@ -61965,141 +61846,121 @@ }, /turf/simulated/floor, /area/tdome/tdome2) -"iNG" = ( +"iNH" = ( /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/green{ + icon_state = "4-8" }, -/obj/structure/extinguisher_cabinet/west, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, /turf/simulated/floor/tiled, -/area/hangar/auxiliary) +/area/horizon/hallway/primary/deck_3/central) +"iNI" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 4 + }, +/obj/machinery/light, +/turf/simulated/floor/plating, +/area/horizon/engineering/atmos/air) "iNN" = ( /obj/effect/map_effect/window_spawner/full/reinforced/indestructible, /turf/unsimulated/floor/plating, /area/centcom/control) -"iNP" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/dark, -/area/engineering/atmos/propulsion) -"iNU" = ( -/obj/structure/cable/green{ - icon_state = "0-2" +"iNY" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 8; + icon_state = "2-8" }, -/obj/machinery/power/smes/buildable{ - charge = 5000000; - input_attempt = 1; - input_level = 200000; - output_attempt = 1; - output_level = 200000 - }, -/turf/simulated/floor, -/area/turret_protected/ai_upload_foyer) -"iNW" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/effect/large_stock_marker, -/turf/simulated/floor/tiled, -/area/operations/storage) -"iNX" = ( -/obj/machinery/computer/general_air_control/large_tank_control/terminal{ - sensors = list("port_prop_sensor"="Port Propulsion Sensor"); - output_tag = "port_prop_out"; - frequency = 1442; - name = "Port Propulsion Control Console"; - input_tag = "port_prop_in" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/purple{ - dir = 6 - }, -/obj/effect/floor_decal/industrial/outline/emergency_closet, -/obj/structure/sign/nosmoking_1{ - pixel_y = 32 - }, -/turf/simulated/floor/tiled/dark, -/area/engineering/atmos/propulsion) -"iOb" = ( -/obj/machinery/power/portgen/basic, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/storage_hard) -"iOi" = ( -/obj/machinery/door/airlock/service{ - dir = 1; - name = "Chapel Storage"; - req_access = list(22) - }, -/obj/effect/map_effect/door_helper/unres, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/full, -/area/chapel/main) -"iOj" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/maintenance_hatch{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard/far) -"iOk" = ( +/turf/simulated/floor/carpet/rubber, +/area/horizon/maintenance/deck_1/workshop) +"iOa" = ( /obj/effect/floor_decal/corner/dark_blue{ - dir = 10 - }, -/obj/structure/table/standard, -/obj/item/storage/box/lights/mixed, -/obj/item/storage/box/lights/tubes, -/obj/item/device/lightreplacer, -/turf/simulated/floor/tiled, -/area/bridge/bridge_crew) -"iOs" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 9 }, -/obj/effect/floor_decal/corner/dark_green{ - dir = 6 +/obj/machinery/light/floor{ + dir = 8 + }, +/obj/structure/platform_deco{ + dir = 1 }, /turf/simulated/floor/tiled, -/area/hangar/intrepid) +/area/horizon/command/bridge/upperdeck) +"iOd" = ( +/obj/structure/grille, +/obj/machinery/door/firedoor, +/obj/structure/window/shuttle/scc_space_ship/cardinal, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/structure/cable/green{ + icon_state = "0-8" + }, +/obj/machinery/door/blast/regular/open{ + dir = 2; + id = "shutters_deck3_longbow"; + name = "Safety Blast Door" + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/weapons/longbow) +"iOf" = ( +/obj/structure/closet/crate, +/obj/effect/floor_decal/corner/brown{ + dir = 6 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/camera/network/supply{ + c_tag = "Operations - Aux Desk"; + dir = 8 + }, +/obj/machinery/requests_console/east{ + department = "Operations Office (Aux)"; + departmentType = 2; + name = "Operations (Aux) Requests Console" + }, +/turf/simulated/floor/tiled, +/area/horizon/operations/office_aux) +"iOo" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/simulated/floor, +/area/horizon/maintenance/deck_3/aft/starboard) "iOy" = ( /obj/effect/floor_decal/corner/grey{ dir = 4 }, /turf/unsimulated/floor/dark, /area/antag/actor) -"iOE" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 8 +"iOC" = ( +/obj/machinery/fusion_fuel_injector/mapped{ + dir = 4; + initial_id_tag = "horizon_fusion" }, -/obj/effect/floor_decal/spline/fancy/wood{ +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/carpet/rubber, +/area/horizon/engineering/reactor/indra/mainchamber) +"iOH" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/structure/flora/ausbushes/ppflowers, -/obj/structure/flora/ausbushes/sunnybush, -/turf/simulated/floor/grass/no_edge, -/area/horizon/hallway/deck_three/primary/port) -"iOF" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/random/dirt_75, -/turf/simulated/floor/tiled/dark, -/area/maintenance/wing/port/far) -"iOG" = ( -/obj/structure/table/rack, -/obj/random/loot, -/turf/simulated/floor, -/area/maintenance/wing/port/far) -"iOI" = ( -/obj/effect/floor_decal/corner/green/diagonal, -/obj/item/bedsheet/medical{ - icon_state = "sheet-roll" +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 }, -/obj/structure/bed/padded, /turf/simulated/floor/tiled/white, -/area/medical/ward/isolation) +/area/horizon/storage/eva/expedition) "iOJ" = ( /obj/effect/floor_decal/spline/plain{ dir = 10 @@ -62108,6 +61969,16 @@ icon_state = "desert" }, /area/centcom/shared_dream) +"iON" = ( +/obj/effect/floor_decal/corner/purple/full{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/purple{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/service/custodial/disposals/deck_1) "iOS" = ( /obj/effect/floor_decal/industrial/warning{ dir = 8 @@ -62121,21 +61992,15 @@ }, /turf/simulated/floor/plating, /area/merchant_station/warehouse) -"iOY" = ( -/obj/structure/platform/ledge{ - dir = 1 +"iPa" = ( +/obj/machinery/door/firedoor, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/structure/curtain/open/medical, +/obj/machinery/light_switch{ + pixel_y = -19 }, -/obj/machinery/atmospherics/unary/heater{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology/xenoflora) -"iPb" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/reinforced/airless, -/area/engineering/atmos/propulsion) +/turf/simulated/floor/tiled/white, +/area/horizon/medical/surgery) "iPd" = ( /turf/simulated/floor/holofloor/lino, /area/horizon/holodeck/source_meetinghall) @@ -62146,13 +62011,43 @@ }, /turf/unsimulated/floor/wood, /area/centcom/bar) -"iPr" = ( -/obj/structure/table/steel, -/obj/effect/floor_decal/corner/purple/full{ - dir = 8 +"iPf" = ( +/obj/effect/floor_decal/corner/grey/diagonal, +/obj/structure/sink/kitchen{ + dir = 4; + pixel_x = -21 }, -/turf/simulated/floor/tiled, -/area/maintenance/wing/starboard) +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/white, +/area/horizon/service/kitchen) +"iPl" = ( +/obj/effect/floor_decal/corner_wide/purple{ + dir = 9 + }, +/obj/effect/floor_decal/corner_wide/purple{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/xenoarch/atrium) +"iPn" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/emergency{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/port) +"iPo" = ( +/obj/machinery/atmospherics/pipe/manifold4w/hidden, +/obj/effect/map_effect/marker/airlock{ + frequency = 2001; + master_tag = "airlock_horizon_deck_2_starboard_aft"; + name = "airlock_horizon_deck_2_starboard_aft" + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/port/near) "iPt" = ( /obj/machinery/door/firedoor, /obj/effect/floor_decal/industrial/hatch/yellow, @@ -62170,13 +62065,21 @@ icon_state = "dark_preview" }, /area/centcom/control) +"iPx" = ( +/obj/machinery/light/small/emergency{ + dir = 1 + }, +/obj/structure/table/rack, +/obj/random/loot, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/port/far) "iPz" = ( /obj/structure/table/reinforced/steel, /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/outpost/research/anomaly_storage) +/area/horizon/rnd/xenoarch/anomaly_storage) "iPB" = ( /obj/structure/table/reinforced/steel, /obj/machinery/light{ @@ -62186,51 +62089,57 @@ /obj/item/storage/box/zipties, /turf/unsimulated/floor, /area/centcom/legion/hangar5) -"iPD" = ( -/obj/effect/floor_decal/corner_wide/yellow{ - dir = 5 +"iPC" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 }, /obj/structure/cable/green{ icon_state = "4-8" }, -/obj/structure/platform_deco{ - dir = 8 +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor, +/area/horizon/hallway/primary/deck_3/port) +"iPE" = ( +/obj/machinery/door/airlock/multi_tile/glass{ + dir = 2; + name = "Hangar" }, -/turf/simulated/floor/tiled, -/area/hallway/engineering) +/obj/machinery/door/firedoor/multi_tile{ + dir = 1 + }, +/obj/machinery/door/blast/regular/open{ + id = "hangarlockdown"; + name = "Hangar Lockdown" + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/full, +/area/horizon/stairwell/starboard/deck_1) +"iPF" = ( +/obj/structure/tank_wall/phoron{ + density = 0; + icon_state = "ph6"; + opacity = 0 + }, +/turf/simulated/floor/reinforced/phoron, +/area/horizon/engineering/atmos) "iPG" = ( /obj/structure/bed/stool/chair/shuttle{ dir = 8 }, /turf/simulated/floor/tiled/dark, /area/shuttle/syndicate_elite) -"iPI" = ( -/obj/structure/platform_deco/ledge{ - dir = 1 - }, -/turf/simulated/open, -/area/operations/office) "iPK" = ( /obj/structure/shuttle_part/ccia{ icon_state = "2,0" }, /turf/unsimulated/floor/plating, /area/shuttle/transport1) -"iPO" = ( -/obj/effect/floor_decal/corner_wide/purple{ - dir = 6 - }, -/obj/effect/floor_decal/corner_wide/purple{ - dir = 8 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/alarm/east, -/turf/simulated/floor/tiled/white, -/area/rnd/xenoarch_atrium) "iPS" = ( /obj/effect/floor_decal/industrial/warning{ dir = 8 @@ -62249,6 +62158,10 @@ }, /turf/unsimulated/floor/plating, /area/antag/raider) +"iPU" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/fuel, +/turf/simulated/wall/shuttle/scc, +/area/horizon/shuttle/intrepid/port_storage) "iPV" = ( /obj/item/gun/projectile/automatic/rifle/z8{ pixel_y = 10 @@ -62307,59 +62220,58 @@ /obj/structure/table/reinforced/steel, /turf/unsimulated/floor/plating, /area/centcom/specops) -"iPW" = ( -/obj/machinery/atmospherics/pipe/simple/visible/red, -/obj/machinery/atmospherics/binary/pump{ - dir = 8; - name = "Hydrogen to Connector" - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/atmos) -"iQt" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +"iQj" = ( +/obj/machinery/floodlight, +/obj/effect/floor_decal/industrial/outline/grey, +/turf/simulated/floor/plating, +/area/horizon/hangar/auxiliary) +"iQp" = ( /obj/structure/cable/green{ - icon_state = "1-2" + icon_state = "4-8" }, -/turf/simulated/floor/wood, -/area/lawoffice/representative_two) -"iQy" = ( -/obj/effect/floor_decal/corner/brown{ +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/corner/dark_green{ dir = 6 }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/light{ +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, /turf/simulated/floor/tiled, -/area/operations/office_aux) -"iQz" = ( +/area/horizon/hangar/intrepid) +"iQu" = ( +/obj/structure/platform{ + dir = 8 + }, /obj/effect/floor_decal/spline/fancy/wood{ dir = 8 }, -/obj/effect/floor_decal/spline/fancy/wood/corner{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/simulated/floor/wood, -/area/bridge/meeting_room) -"iQF" = ( -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/machinery/disposal/small/west, -/obj/effect/floor_decal/corner/red/diagonal, -/obj/effect/floor_decal/spline/plain{ +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/light/floor{ dir = 4 }, -/turf/simulated/floor/lino, -/area/horizon/cafeteria) +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/wood, +/area/horizon/command/bridge/meeting_room) +"iQA" = ( +/obj/effect/floor_decal/corner_wide/purple{ + dir = 6 + }, +/obj/effect/floor_decal/corner_wide/purple{ + dir = 8 + }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/structure/platform{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/xenoarch/atrium) "iQG" = ( /obj/machinery/alarm/south, /obj/effect/floor_decal/corner/green/diagonal, @@ -62369,51 +62281,13 @@ /obj/machinery/light/small, /turf/simulated/floor/tiled/white, /area/horizon/security/washroom) -"iQI" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/light/small{ - dir = 4 +"iQU" = ( +/obj/structure/lattice, +/obj/structure/ladder{ + pixel_y = 10 }, -/turf/simulated/floor/tiled, -/area/operations/storage) -"iQL" = ( -/obj/effect/floor_decal/corner/brown{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/intrepid/starboard_compartment) -"iQM" = ( -/obj/machinery/atmospherics/pipe/simple/visible/purple{ - dir = 4 - }, -/obj/machinery/firealarm/north, -/obj/machinery/meter, -/obj/effect/floor_decal/corner_wide/black{ - dir = 5 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/engineering/atmos/propulsion/starboard) -"iQP" = ( -/obj/structure/bed/stool/chair/sofa/pew/right{ - dir = 8 - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 7 - }, -/turf/simulated/floor/wood, -/area/chapel/main) -"iQR" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/black{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/engineering/atmos/propulsion/starboard) +/turf/simulated/open, +/area/horizon/engineering/atmos/storage) "iQV" = ( /obj/effect/overlay/palmtree_r, /turf/simulated/floor/beach/sand{ @@ -62427,6 +62301,22 @@ name = "overgrowth" }, /area/horizon/holodeck/source_moghes) +"iRa" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/structure/bed/handrail{ + dir = 1 + }, +/obj/machinery/camera/network/intrepid{ + dir = 1; + c_tag = "Intrepid - Port Nacelle" + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/shuttle/intrepid/port_storage) "iRc" = ( /obj/machinery/computer/pod{ dir = 1; @@ -62438,51 +62328,43 @@ icon_state = "white" }, /area/tdome/tdomeadmin) -"iRh" = ( -/obj/machinery/atmospherics/omni/mixer{ - active_power_usage = 7500; - tag_east = 1; - tag_east_con = 0; - tag_north = 1; - tag_north_con = 0.5; - tag_south = 1; - tag_south_con = 0.5; - tag_west = 2 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/dark, -/area/engineering/atmos/propulsion/starboard) -"iRp" = ( -/obj/effect/floor_decal/corner/mauve{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, +"iRg" = ( +/obj/structure/table/reinforced/wood, /obj/structure/cable/green{ - icon_state = "4-8" + icon_state = "1-2" }, -/obj/structure/disposalpipe/junction{ - dir = 8 +/obj/item/paper_scanner{ + pixel_x = -1 }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology/xenological) -"iRq" = ( -/obj/effect/floor_decal/corner_wide/purple/full, -/obj/effect/floor_decal/corner_wide/purple{ - dir = 4 +/obj/random/pottedplant_small{ + pixel_x = -14; + pixel_y = 5 }, -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ +/turf/simulated/floor/carpet, +/area/horizon/command/heads/captain) +"iRm" = ( +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/machinery/computer/ship/sensors, +/obj/effect/floor_decal/corner/dark_blue{ dir = 5 }, -/obj/structure/cable/green{ - icon_state = "1-4" +/turf/simulated/floor/tiled/dark, +/area/horizon/command/bridge/aibunker) +"iRo" = ( +/obj/effect/floor_decal/industrial/outline/grey, +/obj/structure/closet/crate, +/obj/random/loot, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/auxatmos) +"iRv" = ( +/obj/structure/tank_wall{ + icon_state = "m-15" }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenoarch_atrium) +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/plating, +/area/horizon/engineering/atmos) "iRw" = ( /obj/structure/table/stone/marble, /obj/structure/window/reinforced/holowindow{ @@ -62490,9 +62372,29 @@ }, /turf/simulated/floor/holofloor/lino, /area/horizon/holodeck/source_meetinghall) -"iRC" = ( -/turf/simulated/floor/plating, -/area/hangar/intrepid) +"iRy" = ( +/obj/structure/bed/stool/chair/padded/brown{ + dir = 8 + }, +/obj/effect/landmark/start{ + name = "Passenger" + }, +/turf/simulated/floor/carpet/art, +/area/horizon/crew/lounge) +"iRB" = ( +/obj/machinery/door/blast/regular{ + id = "turbineexterior"; + dir = 4 + }, +/turf/simulated/floor/reinforced/airless, +/area/horizon/engineering/atmos/turbine) +"iRI" = ( +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/dark, +/area/horizon/stairwell/bridge/deck_2) "iRV" = ( /obj/structure/bed/stool/chair/sofa/right/brown, /obj/effect/floor_decal/spline/fancy/wood{ @@ -62500,78 +62402,44 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/holodeck/source_biesel) -"iRW" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 8 - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard) "iRX" = ( /turf/simulated/floor/exoplanet/water/shallow{ icon_state = "pool" }, /area/horizon/holodeck/source_sauna) -"iSc" = ( -/obj/structure/stairs_lower/stairs_upper, -/turf/simulated/wall/r_wall, -/area/horizon/custodial/disposals) -"iSg" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/maintenance/wing/port) -"iSh" = ( +"iRZ" = ( /obj/effect/map_effect/window_spawner/full/reinforced/polarized/firedoor{ - id = "ce" - }, -/turf/simulated/floor/tiled/dark/full, -/area/crew_quarters/heads/chief) -"iSj" = ( -/obj/structure/table/standard, -/obj/machinery/camera/network/engineering{ - c_tag = "Engineering - Locker Room"; - dir = 4 - }, -/obj/item/hoist_kit, -/obj/item/ladder_mobile, -/obj/effect/floor_decal/corner/yellow{ - dir = 9 + id = "repb" }, /turf/simulated/floor/tiled, -/area/engineering/locker_room) -"iSl" = ( -/obj/machinery/atmospherics/unary/engine/scc_shuttle, -/obj/effect/landmark/entry_point/aft{ - name = "aft, port thrusters" +/area/horizon/repoffice/representative_two) +"iSe" = ( +/obj/structure/cable/green{ + icon_state = "4-8" }, -/turf/simulated/floor/plating, -/area/shuttle/intrepid/port_storage) +/obj/effect/floor_decal/corner/brown{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/newscaster/north, +/turf/simulated/floor/tiled, +/area/horizon/hangar/operations) "iSo" = ( /obj/structure/shuttle/engine/heater, /turf/simulated/floor/plating, /area/shuttle/mercenary) +"iSq" = ( +/obj/effect/floor_decal/corner/grey/diagonal, +/obj/item/device/radio/intercom/expedition/west, +/obj/structure/table/stone/marble, +/obj/machinery/light/small, +/turf/simulated/floor/tiled/white, +/area/horizon/shuttle/intrepid/buffet) "iSu" = ( /obj/structure/lattice, /obj/structure/grille, @@ -62596,43 +62464,82 @@ /obj/effect/floor_decal/industrial/outline/grey, /turf/simulated/floor/tiled/dark, /area/horizon/security/evidence_storage) -"iSJ" = ( -/obj/structure/table/rack, -/obj/structure/railing/mapped, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard/far) -"iSM" = ( -/obj/effect/floor_decal/corner/beige{ - dir = 9 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge/aibunker) -"iSS" = ( -/turf/simulated/abyss, -/area/antag/ninja) -"iSZ" = ( -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 4 - }, +"iSC" = ( /obj/effect/floor_decal/corner_wide/green{ - dir = 1 + dir = 5 }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 +/obj/effect/floor_decal/corner_wide/green, +/obj/structure/sink{ + pixel_x = -7; + pixel_y = 23 }, /turf/simulated/floor/tiled/white, -/area/medical/gen_treatment) -"iTb" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 +/area/horizon/medical/exam) +"iSD" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/wood, +/area/horizon/crew/lounge) +"iSH" = ( +/obj/effect/floor_decal/corner_wide/yellow{ + dir = 5 + }, /obj/structure/cable/green{ icon_state = "1-2" }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology/xenological) +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/turf/simulated/floor/tiled, +/area/horizon/engineering/hallway/aft) +"iSI" = ( +/obj/machinery/power/apc/super/critical/south, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/effect/floor_decal/corner/dark_blue{ + dir = 8 + }, +/obj/effect/floor_decal/corner/yellow, +/obj/structure/cable/yellow, +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/atmos/turbine) +"iSR" = ( +/obj/structure/bed/stool/chair{ + dir = 4 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/obj/machinery/requests_console/west{ + department = "Chapel"; + departmentType = 1 + }, +/turf/simulated/floor/wood, +/area/horizon/service/chapel/office) +"iSS" = ( +/turf/simulated/abyss, +/area/antag/ninja) +"iSU" = ( +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/door/airlock/medical{ + dir = 1; + name = "Psychiatric Office"; + req_access = list(64) + }, +/obj/effect/map_effect/door_helper/unres, +/turf/simulated/floor/tiled/full, +/area/horizon/medical/psych) "iTd" = ( /obj/effect/floor_decal/corner_wide/paleblue{ dir = 6 @@ -62645,25 +62552,34 @@ /obj/effect/floor_decal/industrial/outline/red, /turf/simulated/floor/tiled/dark/full, /area/horizon/security/armoury) -"iTq" = ( -/obj/machinery/firealarm/east, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lime{ - dir = 10 - }, +"iTe" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 + dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/light/floor{ dir = 4 }, -/turf/simulated/floor/tiled/dark, -/area/storage/eva) +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/horizon/hangar/intrepid) +"iTg" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/horizon/maintenance/substation/wing_starboard) +"iTp" = ( +/obj/machinery/iv_drip, +/obj/effect/floor_decal/corner_wide/green/full{ + dir = 4 + }, +/obj/machinery/firealarm/east, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/equipment) "iTt" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -62682,84 +62598,98 @@ }, /turf/simulated/floor/tiled, /area/horizon/security/hallway) -"iTx" = ( -/obj/structure/table/reinforced, -/obj/item/device/healthanalyzer, -/obj/effect/floor_decal/corner_wide/purple{ - dir = 9 +"iTv" = ( +/obj/machinery/door/airlock/engineering{ + dir = 4; + name = "Operations Substation" }, -/obj/effect/floor_decal/corner_wide/purple/diagonal, -/turf/simulated/floor/tiled/white, -/area/rnd/test_range) -"iTD" = ( -/turf/simulated/floor/reinforced, -/area/rnd/isolation_c) -"iTP" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/corner/red/diagonal, -/obj/effect/floor_decal/spline/plain{ - dir = 10 - }, -/turf/simulated/floor/lino, -/area/horizon/cafeteria) -"iTT" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/purple{ - dir = 5 - }, -/turf/simulated/wall/shuttle/scc_space_ship/cardinal, -/area/horizon/custodial/disposals) -"iTW" = ( -/obj/machinery/atmospherics/pipe/simple/visible/black{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/engineering/atmos/propulsion/starboard) -"iUc" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/machinery/disposal/small/south, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/effect/floor_decal/corner_wide/green/full{ - dir = 8 - }, -/obj/machinery/camera/network/medbay{ - c_tag = "Medical - Aft Treatment Room" - }, -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/tiled/white, -/area/medical/icu) -"iUg" = ( /obj/structure/cable{ icon_state = "4-8" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/door/firedoor, /turf/simulated/floor/plating, -/area/maintenance/wing/port/deck1) -"iUi" = ( +/area/horizon/maintenance/substation/operations) +"iTB" = ( +/obj/machinery/atmospherics/binary/pump{ + dir = 4; + name = "Nitrous Oxide to Mix" + }, +/turf/simulated/floor/plating, +/area/horizon/engineering/atmos/air) +"iTG" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 9 + }, +/obj/structure/closet/walllocker/medical/firstaid{ + pixel_x = -32 + }, +/obj/effect/floor_decal/industrial/outline/medical, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_3/starboard) +"iTL" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 10 + }, +/obj/machinery/spectrophotometer, +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/xenological) +"iTM" = ( /obj/structure/cable/green{ - icon_state = "0-2" + icon_state = "4-8" }, -/obj/effect/floor_decal/corner/yellow{ - dir = 1 +/obj/effect/floor_decal/corner/dark_green{ + dir = 10 }, -/obj/effect/floor_decal/corner/dark_blue{ +/obj/structure/railing/mapped, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_3/central) +"iTN" = ( +/obj/structure/bed/stool/chair/sofa/corner/convex/red{ + dir = 4 + }, +/obj/item/device/radio/intercom/west, +/obj/structure/engineer_maintenance/pipe/wall, +/turf/simulated/floor/carpet/red, +/area/horizon/service/library) +"iTS" = ( +/obj/effect/floor_decal/corner_wide/yellow/diagonal, +/obj/structure/disposalpipe/trunk{ dir = 8 }, -/obj/machinery/power/apc/super/west, +/obj/machinery/disposal/small/north, /turf/simulated/floor/tiled/dark, -/area/engineering/atmos) +/area/horizon/engineering/break_room) +"iTV" = ( +/obj/machinery/light/small/emergency{ + dir = 4 + }, +/obj/structure/reagent_dispensers/watertank, +/obj/effect/floor_decal/industrial/outline/grey, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/auxatmos) +"iUl" = ( +/obj/machinery/atmospherics/pipe/zpipe/up/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning/full, +/obj/structure/cable/green{ + icon_state = "12-0" + }, +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/structure/cable/green, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/hangar/port) "iUn" = ( /obj/structure/table/reinforced, /obj/item/storage/pill_bottle/dice, @@ -62769,14 +62699,6 @@ }, /turf/simulated/floor/tiled, /area/horizon/security/brig) -"iUo" = ( -/obj/structure/closet/crate, -/obj/random/loot, -/obj/machinery/light/small/emergency{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard/deck1) "iUu" = ( /obj/item/material/ashtray/bronze{ pixel_y = -7 @@ -62787,6 +62709,19 @@ }, /turf/unsimulated/floor/wood, /area/centcom/evac) +"iUw" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/structure/bed/stool/chair/padded/beige, +/turf/simulated/floor/wood, +/area/horizon/command/bridge/upperdeck) "iUB" = ( /obj/effect/floor_decal/industrial/warning{ dir = 4 @@ -62796,17 +62731,16 @@ }, /turf/unsimulated/floor/plating, /area/antag/mercenary) -"iUD" = ( -/obj/machinery/light/small/emergency{ - dir = 8 +"iUC" = ( +/obj/structure/cable/green{ + icon_state = "1-2" }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/corner/dark_blue{ + dir = 5 }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard) +/turf/simulated/floor/tiled, +/area/horizon/command/bridge/controlroom) "iUH" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/simple/hidden, @@ -62820,6 +62754,10 @@ }, /turf/simulated/floor/tiled/dark/full, /area/shuttle/skipjack) +"iUJ" = ( +/obj/structure/platform, +/turf/simulated/floor/tiled, +/area/horizon/rnd/xenoarch/atrium) "iUN" = ( /obj/structure/table/standard, /obj/machinery/recharger{ @@ -62841,20 +62779,17 @@ }, /turf/template_noop, /area/template_noop) -"iUY" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ +"iUZ" = ( +/obj/effect/floor_decal/industrial/warning/corner{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/alarm/north, /turf/simulated/floor/plating, -/area/maintenance/wing/port/far) +/area/horizon/hangar/intrepid) +"iVc" = ( +/obj/structure/window/reinforced, +/obj/machinery/chem_master, +/turf/simulated/floor/tiled/dark, +/area/horizon/rnd/xenoarch/atrium) "iVd" = ( /obj/item/reagent_containers/food/drinks/carton/soymilk{ pixel_x = 6; @@ -62883,31 +62818,88 @@ icon_state = "dark_preview" }, /area/centcom/ferry) -"iVh" = ( -/obj/structure/table/standard, -/obj/machinery/requests_console/east{ - name = "Research Director RC"; - department = "Research Director's Desk"; - announcementConsole = 1 +"iVj" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/tiled/dark, +/area/horizon/maintenance/deck_2/wing/port/near) +"iVl" = ( +/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/horizon/hallway/primary/deck_2/central) +"iVn" = ( +/obj/machinery/camera/network/research{ + c_tag = "Research - XenoBotanical Lab Fore"; + dir = 1 }, -/obj/machinery/button/switch/windowtint{ - pixel_x = -6; - dir = 5; - pixel_y = 7; - id = "rdoffice" +/turf/simulated/floor/tiled/dark, +/area/horizon/rnd/xenobiology/xenoflora) +"iVr" = ( +/obj/structure/cable{ + icon_state = "1-2" }, -/turf/simulated/floor/carpet/purple, -/area/crew_quarters/heads/hor) -"iVv" = ( -/obj/machinery/light{ +/obj/effect/floor_decal/corner_wide/yellow/full, +/obj/machinery/door/airlock/maintenance{ + dir = 1; + req_one_access = list(11,24) + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/shields) +"iVt" = ( +/obj/machinery/light/small/emergency{ dir = 8 }, -/obj/effect/floor_decal/corner_wide/green{ +/obj/effect/floor_decal/industrial/hatch/red, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/command/bridge/selfdestruct) +"iVx" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 5 + }, +/obj/structure/bed/stool/chair/wood{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/horizon/service/cafeteria) +"iVG" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 9 }, -/obj/machinery/firealarm/west, -/turf/simulated/floor/tiled/white, -/area/medical/ward) +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/spline/fancy/wood, +/turf/simulated/floor/wood, +/area/horizon/service/bar) +"iVH" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/reinforced, +/area/horizon/engineering/gravity_gen) +"iVJ" = ( +/obj/machinery/air_sensor{ + frequency = 1442; + id_tag = "starboard_prop_sensor"; + output = 31 + }, +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 6 + }, +/turf/simulated/floor/reinforced/airless, +/area/horizon/engineering/atmos/propulsion) "iVP" = ( /obj/structure/closet/crate/secure/legion{ locked = 0; @@ -62941,76 +62933,19 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/security/evidence_storage) -"iVU" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/structure/engineer_maintenance/electric/wall, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/engine_room/rust) -"iVV" = ( -/obj/effect/floor_decal/corner/dark_blue/full{ - dir = 1 - }, -/obj/machinery/light_switch{ - pixel_x = 9; - pixel_y = 24 - }, -/obj/machinery/camera/motion{ - c_tag = "Grauwolf"; - dir = 8; - network = list("Command","Security") - }, -/turf/simulated/floor/tiled/dark, -/area/horizon/grauwolf) -"iWa" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/effect/floor_decal/corner/dark_blue/diagonal, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/structure/cable/green{ - icon_state = "2-4" - }, -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/bridge/supply) +"iVZ" = ( +/turf/simulated/wall/shuttle/scc_space_ship/cardinal, +/area/horizon/weapons/grauwolf) "iWb" = ( /turf/simulated/floor/exoplanet/grass, /area/centcom/shared_dream) -"iWd" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 7 - }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/turf/simulated/floor/wood, -/area/crew_quarters/captain) -"iWi" = ( -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/structure/railing/mapped{ +"iWk" = ( +/obj/effect/floor_decal/industrial/hatch/red, +/obj/effect/floor_decal/industrial/warning{ dir = 4 }, -/obj/item/material/shard, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard/far) +/turf/simulated/floor/reinforced/airless, +/area/horizon/engineering/reactor/indra/mainchamber) "iWm" = ( /obj/effect/floor_decal/spline/plain{ dir = 4 @@ -63020,6 +62955,26 @@ }, /turf/simulated/floor/marble/dark, /area/horizon/holodeck/source_tribunal) +"iWs" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/window/westleft{ + name = "Xenoarchaeology Platform Access"; + req_access = list(65) + }, +/obj/structure/railing/mapped, +/obj/structure/platform_stairs/full{ + dir = 8 + }, +/obj/structure/platform{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/rnd/xenoarch/atrium) "iWu" = ( /obj/machinery/door/airlock/centcom{ dir = 4; @@ -63028,12 +62983,6 @@ }, /turf/unsimulated/floor, /area/antag/mercenary) -"iWw" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/hallway/primary/central_one) "iWx" = ( /obj/structure/lattice/catwalk/indoor, /obj/machinery/door/blast/odin/open{ @@ -63042,50 +62991,36 @@ }, /turf/unsimulated/floor, /area/centcom/legion/hangar5) -"iWD" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/industrial/hatch/engineering, -/obj/machinery/door/airlock/engineering{ - name = "C-Goliath Drive Control Room"; - req_one_access = list(11,24) +"iWA" = ( +/obj/structure/plasticflaps/mining, +/obj/machinery/door/blast/shutters{ + dir = 2; + id = "shutters_deck2_rescon"; + name = "Conveyor Shutter" }, -/turf/simulated/floor/plating, -/area/engineering/bluespace_drive) -"iWF" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/effect/floor_decal/industrial/warning/corner{ +/obj/machinery/conveyor{ + id = "rnd"; dir = 1 }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard) -"iWG" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/obj/effect/floor_decal/corner/brown{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/intrepid/starboard_compartment) -"iWH" = ( +/turf/simulated/floor/tiled/dark/full, +/area/horizon/rnd/lab) +"iWE" = ( /obj/effect/floor_decal/corner/dark_green{ dir = 6 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 1 +/obj/machinery/atm{ + dir = 4; + pixel_x = 16 }, /turf/simulated/floor/tiled, -/area/hallway/primary/central_two) +/area/horizon/hallway/primary/deck_2/central) +"iWI" = ( +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/manifold/visible/black{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/atmos/turbine) "iWK" = ( /obj/effect/decal/fake_object{ desc = "A rudimentary, poorly utilized railing mechanism. Stepping over it is easy."; @@ -63109,16 +63044,22 @@ name = "mossy grass" }, /area/horizon/holodeck/source_konyang) -"iWL" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 5 +"iWM" = ( +/obj/machinery/door/airlock/multi_tile/glass{ + dir = 2; + name = "Research Hallway" }, -/obj/machinery/alarm/north, -/obj/machinery/atmospherics/unary/vent_pump/on{ +/obj/machinery/door/firedoor/multi_tile{ + dir = 2 + }, +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/simulated/floor/wood, -/area/chapel/main) +/obj/effect/floor_decal/corner/dark_green{ + dir = 10 + }, +/turf/simulated/floor/tiled/full, +/area/horizon/hallway/primary/deck_2/central) "iWR" = ( /obj/structure/flora/ausbushes/sparsegrass, /obj/effect/floor_decal/spline/fancy/wood/cee{ @@ -63126,6 +63067,53 @@ }, /turf/simulated/floor/holofloor/grass, /area/horizon/holodeck/source_battlemonsters) +"iWS" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 1 + }, +/obj/effect/floor_decal/spline/plain, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/black{ + dir = 4 + }, +/turf/simulated/floor/carpet/rubber, +/area/horizon/tcommsat/chamber) +"iWT" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/reinforced{ + blocks_air = 1; + density = 1; + name = "thruster mount" + }, +/area/horizon/engineering/atmos/propulsion/starboard) +"iWZ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 5 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/firealarm/west{ + dir = 1; + pixel_x = 0; + pixel_y = 26 + }, +/turf/simulated/floor/wood, +/area/horizon/repoffice/representative_two) "iXc" = ( /obj/effect/map_effect/window_spawner/full/reinforced/grille/firedoor, /obj/structure/cable/green, @@ -63139,87 +63127,120 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/security/brig) -"iXj" = ( -/obj/structure/ladder/up{ - pixel_y = 13 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/railing/mapped, -/obj/effect/decal/cleanable/cobweb2, -/obj/structure/lattice/catwalk/indoor/grate/dark, +"iXm" = ( +/obj/structure/closet, +/obj/random/contraband, +/obj/random/contraband, /turf/simulated/floor/plating, -/area/maintenance/research_port) -"iXq" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/corner/brown, -/turf/simulated/floor/tiled, -/area/operations/storage) -"iXt" = ( -/obj/machinery/door/blast/regular/open{ - id = "iso_c"; - name = "Safety Blast Door" +/area/horizon/maintenance/deck_2/research) +"iXw" = ( +/obj/effect/floor_decal/corner/dark_blue/full{ + dir = 8 }, -/obj/effect/map_effect/window_spawner/full/borosilicate/reinforced/firedoor, -/turf/simulated/floor/tiled/dark/full, -/area/rnd/isolation_a) +/obj/machinery/power/apc/north, +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_3/starboard/docks) "iXy" = ( /turf/simulated/floor/exoplanet/water/shallow{ icon = 'icons/turf/flooring/exoplanet/konyang.dmi'; icon_state = "water" }, /area/horizon/holodeck/source_konyang) +"iXz" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/conveyor{ + dir = 9; + id = "QMLoad"; + reversed = 1 + }, +/obj/machinery/status_display/supply_display{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled, +/area/horizon/operations/loading) +"iXA" = ( +/obj/structure/cable/orange{ + icon_state = "1-2" + }, +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/reactor/supermatter/mainchamber) +"iXC" = ( +/obj/effect/floor_decal/industrial/hatch/red, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/operations/secure_ammunition_storage) +"iXD" = ( +/obj/effect/floor_decal/corner/grey/diagonal, +/obj/effect/floor_decal/spline/plain, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/machinery/disposal/small/north, +/turf/simulated/floor/tiled/white, +/area/horizon/service/kitchen) "iXG" = ( /obj/structure/shuttle/engine/propulsion/burst/left, /turf/unsimulated/floor/plating, /area/shuttle/skipjack) -"iXK" = ( -/obj/structure/table/standard, -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/machinery/button/remote/airlock{ - id = "main_door"; - name = "Triage Door Control"; - pixel_y = 7; - req_access = list(5) +"iXH" = ( +/obj/structure/cable/green{ + icon_state = "0-4" }, -/obj/machinery/door/window{ - name = "Reception Desk"; - req_access = list(5) +/obj/effect/floor_decal/corner/dark_green{ + dir = 9 }, -/obj/machinery/button/remote/blast_door{ - id = "entrance_shutters"; - name = "Entrance Shutters Control"; - pixel_y = -5; - req_access = list(5) +/obj/machinery/power/apc/super/critical/west, +/obj/structure/engineer_maintenance/pipe{ + dir = 8 }, -/turf/simulated/floor/tiled/white, -/area/medical/reception) -"iXQ" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/engineer_maintenance/electric, +/turf/simulated/floor/tiled, +/area/horizon/hangar/auxiliary) +"iXO" = ( +/obj/machinery/atmospherics/unary/vent_pump{ + icon_state = "map_vent_out"; + use_power = 1; + dir = 1 + }, +/turf/simulated/floor/bluegrid/server, +/area/horizon/rnd/server) +"iYa" = ( +/obj/machinery/atmospherics/binary/pump/high_power{ + dir = 8; + name = "Aux Tanks Outlet" + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark, +/area/horizon/maintenance/deck_2/wing/starboard/auxatmos) +"iYf" = ( /obj/structure/cable/green{ icon_state = "1-2" }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/engineering{ + dir = 1; + name = "Engineering Substation"; + req_one_access = list(11,24) + }, /turf/simulated/floor/tiled/full, -/area/horizon/hallway/deck_two/fore) -"iXV" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden{ - dir = 8 - }, -/obj/effect/map_effect/marker/airlock{ - frequency = 2005; - master_tag = "airlock_horizon_deck_2_aft_sm"; - name = "airlock_horizon_deck_2_aft_sm" - }, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"iXY" = ( -/turf/simulated/wall/r_wall, -/area/hallway/engineering) +/area/horizon/stairwell/engineering/deck_2) "iYg" = ( /obj/effect/floor_decal/corner_wide/blue{ dir = 10 @@ -63227,17 +63248,24 @@ /obj/effect/floor_decal/spline/plain, /turf/simulated/floor/tiled/dark, /area/horizon/holodeck/source_pool) -"iYl" = ( -/obj/machinery/shipsensors/strong/venator{ - pixel_y = 7 - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/structure/railing/mapped, +"iYh" = ( /obj/structure/cable/green{ icon_state = "4-8" }, -/turf/simulated/floor/tiled/dark/full/airless, -/area/bridge/controlroom) +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/bluespace_drive) +"iYj" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/horizon/engineering/lobby) "iYm" = ( /obj/machinery/light{ dir = 1 @@ -63324,33 +63352,12 @@ }, /turf/unsimulated/floor, /area/antag/mercenary) -"iYn" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/door/firedoor, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/blast/shutters{ - dir = 4; - id = "engineering_storage"; - name = "Engineering Hard Storage" - }, -/turf/simulated/floor/tiled/full, -/area/engineering/storage_hard) -"iYp" = ( -/obj/effect/floor_decal/industrial/hatch_door/red, -/obj/machinery/door/airlock/external{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden, -/obj/effect/map_effect/marker_helper/airlock/interior, -/obj/effect/map_effect/marker/airlock{ - master_tag = "sccv_intrepid_starboard"; - name = "sccv_intrepid_starboard"; - req_one_access = null +"iYs" = ( +/obj/machinery/atmospherics/valve{ + name = "Thermal Relief Valve" }, /turf/simulated/floor/tiled/dark/full, -/area/shuttle/intrepid/starboard_compartment) +/area/horizon/engineering/atmos/turbine) "iYt" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -63369,82 +63376,94 @@ }, /turf/simulated/floor/tiled, /area/horizon/security/hallway) -"iYI" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/structure/cable/green{ - icon_state = "1-8" +"iYw" = ( +/obj/structure/shuttle_part/scc/scout{ + density = 0; + icon_state = "1,11" + }, +/turf/simulated/floor/plating, +/area/horizon/shuttle/canary) +"iYB" = ( +/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, +/area/horizon/command/bridge/aibunker) +"iYD" = ( +/obj/structure/table/wood, +/obj/item/modular_computer/laptop/preset/supply/om, +/turf/simulated/floor/carpet, +/area/horizon/command/heads/om) +"iYG" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/reinforced, +/area/horizon/rnd/xenoarch/isolation_a) +"iYR" = ( +/obj/effect/floor_decal/industrial/warning/corner, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/reactor/indra/mainchamber) +"iYU" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 5 + }, +/obj/machinery/status_display{ + pixel_y = 32 }, /turf/simulated/floor/tiled, -/area/operations/lobby) -"iYO" = ( -/obj/effect/floor_decal/spline/plain, +/area/horizon/hallway/primary/deck_3/port/docks) +"iYZ" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, /obj/structure/railing/mapped{ dir = 8 }, -/turf/simulated/floor/tiled/dark, -/area/hallway/primary/central_one) -"iYS" = ( -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/structure/cable{ - icon_state = "1-8" +/obj/structure/bed/handrail{ + dir = 1 }, -/obj/structure/cable{ - icon_state = "4-8" +/obj/item/hullbeacon/green, +/turf/simulated/floor/reinforced, +/area/horizon/shuttle/intrepid/main_compartment) +"iZc" = ( +/obj/machinery/disposal/deliveryChute, +/obj/machinery/door/window/eastleft{ + dir = 2; + req_access = list(55) }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"iYY" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_medical{ - dir = 1; - name = "Pharmacy"; - req_access = list(33) - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/full, -/area/medical/pharmacy) -"iZa" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/operations/storage) -"iZi" = ( -/turf/simulated/wall/shuttle/unique/scc/mining{ - icon_state = "7,3" - }, -/area/shuttle/mining) -"iZk" = ( /obj/machinery/door/blast/regular/open{ - dir = 8; - id = "hangarlockdown"; - name = "Hangar Lockdown" + fail_secure = 1; + id = "xenobio_f"; + name = "Cell Containment Blast Door"; + dir = 8 }, -/turf/simulated/floor/tiled/dark, -/area/hangar/intrepid) -"iZt" = ( -/obj/effect/map_effect/window_spawner/full/borosilicate/reinforced/firedoor, -/obj/machinery/door/blast/shutters/open{ - id = "RnDShutters" +/obj/structure/disposalpipe/trunk{ + dir = 1 }, /turf/simulated/floor/tiled/dark/full, -/area/rnd/conference) +/area/horizon/rnd/xenobiology) +"iZf" = ( +/obj/machinery/atm, +/turf/simulated/floor/tiled/dark, +/area/horizon/service/bar) +"iZq" = ( +/obj/machinery/door/airlock{ + dir = 1; + id_tag = "central_stall_2"; + name = "Stall 2" + }, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/turf/simulated/floor/tiled/full, +/area/horizon/crew/washroom/deck_2) "iZw" = ( /obj/effect/shuttle_landmark/burglar_ship/interim{ dir = 4 @@ -63461,18 +63480,36 @@ }, /turf/space/transit/north, /area/template_noop) -"iZy" = ( -/obj/structure/dispenser/oxygen, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/dark/full, -/area/bridge/aibunker) -"iZA" = ( -/obj/structure/platform_stairs/south_north_solo, +"iZB" = ( +/obj/effect/floor_decal/spline/fancy/wood/corner, /turf/simulated/floor/wood, -/area/bridge/meeting_room) +/area/horizon/command/bridge/minibar) "iZC" = ( /turf/unsimulated/wall/darkshuttlewall, /area/tdome/tdome2) +"iZD" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/structure/lattice/catwalk/indoor, +/turf/simulated/floor/plating, +/area/horizon/engineering/bluespace_drive) +"iZE" = ( +/obj/effect/floor_decal/corner_wide/lime/diagonal, +/obj/structure/disposalpipe/junction{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/reception) "iZF" = ( /obj/machinery/light, /obj/effect/floor_decal/corner/paleblue{ @@ -63486,70 +63523,28 @@ }, /turf/simulated/floor/holofloor/wood, /area/horizon/holodeck/source_sauna) -"iZL" = ( -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/machinery/door/airlock/maintenance_hatch{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"iZM" = ( -/obj/machinery/door/airlock/command{ - dir = 1; - name = "Captain's Office"; - req_access = list(20); - id_tag = "capoffice" - }, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "bridge blast"; - name = "Bridge Blast Doors"; - opacity = 0 - }, +"iZO" = ( /obj/structure/disposalpipe/segment, -/obj/machinery/door/firedoor, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled, -/area/crew_quarters/captain) -"iZN" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 6 +/obj/structure/cable/green{ + icon_state = "1-2" }, -/obj/structure/platform{ - dir = 8 - }, -/obj/machinery/light/floor{ - dir = 4 +/obj/effect/floor_decal/corner/dark_green{ + dir = 9 }, /turf/simulated/floor/tiled, -/area/bridge) +/area/horizon/hallway/primary/deck_3/central) "iZT" = ( /obj/effect/floor_decal/corner/grey, /obj/effect/floor_decal/industrial/warning/corner, /turf/unsimulated/floor, /area/antag/mercenary) -"iZY" = ( -/obj/random/dirt_75, -/obj/random/dirt_75, -/obj/random/dirt_75, -/turf/simulated/floor/tiled/dark, -/area/maintenance/wing/port/far) +"iZV" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/effect/floor_decal/corner/black{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_2/central) "iZZ" = ( /obj/effect/floor_decal/carpet{ dir = 4 @@ -63559,40 +63554,28 @@ }, /turf/simulated/floor/holofloor/carpet, /area/horizon/holodeck/source_courtroom) -"jaa" = ( -/obj/structure/window/borosilicate/reinforced/skrell{ - dir = 8 +"jae" = ( +/obj/machinery/door/airlock/maintenance{ + dir = 4; + name = "Research and Development Maintenance"; + req_access = list(7) }, -/obj/structure/window/borosilicate/reinforced/skrell, -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/turf/simulated/floor/bluegrid{ - name = "cooled mainframe floor"; - 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" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, /turf/simulated/floor/plating, -/area/maintenance/engineering) +/area/horizon/rnd/chemistry) +"jaq" = ( +/obj/effect/floor_decal/spline/plain/corner, +/obj/effect/floor_decal/spline/plain/corner{ + dir = 4 + }, +/obj/effect/floor_decal/spline/plain, +/obj/effect/floor_decal/spline/plain/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/black{ + dir = 4 + }, +/turf/simulated/floor/carpet/rubber, +/area/horizon/tcommsat/chamber) "jar" = ( /obj/machinery/atmospherics/unary/vent_pump/high_volume{ dir = 1; @@ -63610,155 +63593,170 @@ }, /turf/simulated/floor/tiled/dark, /area/shuttle/legion) -"jay" = ( -/obj/effect/floor_decal/corner_wide/yellow{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/blue{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos/storage) -"jaA" = ( +"jat" = ( /obj/structure/disposalpipe/segment{ - dir = 4; icon_state = "pipe-c" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 + dir = 9 }, -/obj/structure/cable/green{ - icon_state = "1-4" +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 }, /obj/structure/cable/green{ icon_state = "4-8" }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology/hazardous) +/turf/simulated/floor/tiled, +/area/horizon/crew/vacantoffice) "jaD" = ( /obj/machinery/conveyor{ id = "cargo_1" }, /turf/simulated/floor/tiled/dark, /area/supply/dock) -"jaN" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" +"jaE" = ( +/obj/structure/cable{ + icon_state = "0-8" }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/power/apc/low/east, /turf/simulated/floor/plating, -/area/maintenance/operations) -"jaP" = ( -/obj/machinery/computer/general_air_control/large_tank_control/terminal{ - sensors = list("starboard_prop_sensor"="Starboard Propulsion Sensor"); - output_tag = "starboard_prop_out"; - frequency = 1442; - name = "Starboard Propulsion Control Console"; - input_tag = "starboard_prop_in" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/purple{ - dir = 10 - }, -/obj/effect/floor_decal/industrial/outline/emergency_closet, -/obj/structure/sign/nosmoking_1{ - pixel_y = 32 +/area/horizon/maintenance/deck_1/operations/starboard/amidships) +"jaK" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/tiled, +/area/horizon/maintenance/deck_1/wing/starboard/far) +"jaO" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 5 }, /turf/simulated/floor/tiled/dark, -/area/engineering/atmos/propulsion/starboard) +/area/horizon/maintenance/deck_2/wing/starboard/nacelle) "jaR" = ( /obj/effect/floor_decal/corner/green/full, /turf/unsimulated/floor, /area/centcom/holding) +"jaS" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/door/airlock/command{ + dir = 4; + id_tag = "CEdoor"; + name = "Chief Engineer's Office"; + req_access = list(56) + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled, +/area/horizon/command/heads/chief) "jbb" = ( /obj/structure/window/shuttle/unique/tcfl{ icon_state = "17,3" }, /turf/simulated/floor/plating, /area/shuttle/legion) -"jbe" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/turf/unsimulated/floor/plating, -/area/centcom/legion/hangar5) -"jbj" = ( -/obj/structure/lattice/catwalk/indoor, -/turf/unsimulated/floor/plating, -/area/centcom/bar) -"jbl" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +"jbc" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 10 }, -/obj/effect/floor_decal/corner_wide/green{ - dir = 5 +/obj/structure/cable{ + icon_state = "2-8" }, -/turf/simulated/floor/tiled/white, -/area/hallway/medical/upper) -"jbq" = ( -/obj/machinery/door/airlock/multi_tile/glass{ - dir = 2; - name = "Deck 3 Port Stairwell" +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/starboard) +"jbd" = ( +/turf/simulated/wall/shuttle/scc_space_ship/cardinal, +/area/horizon/service/hydroponics/lower) +"jbe" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/unsimulated/floor/plating, +/area/centcom/legion/hangar5) +"jbh" = ( +/obj/machinery/light{ + dir = 4 }, -/obj/machinery/door/firedoor/multi_tile{ - dir = 2 +/obj/structure/closet/crate, +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/corner/brown{ + dir = 6 }, -/turf/simulated/floor/tiled/full, -/area/horizon/hallway/deck_three/primary/port) -"jbs" = ( -/obj/structure/flora/ausbushes/sparsegrass, -/obj/structure/flora/ausbushes/ppflowers, -/turf/simulated/floor/grass/no_edge, -/area/horizon/hallway/deck_two/fore) +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled, +/area/horizon/operations/loading) +"jbi" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 4 + }, +/turf/simulated/wall/shuttle/scc_space_ship/cardinal, +/area/horizon/engineering/atmos/propulsion/starboard) +"jbj" = ( +/obj/structure/lattice/catwalk/indoor, +/turf/unsimulated/floor/plating, +/area/centcom/bar) "jbt" = ( /obj/structure/table/reinforced/steel, /obj/item/modular_computer/handheld/pda/command/captain, /turf/unsimulated/floor/rubber_carpet, /area/centcom/control) -"jbE" = ( -/obj/structure/railing/mapped{ - dir = 8 +"jbx" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/operations/starboard) +"jbC" = ( +/obj/machinery/light, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 7 }, -/obj/structure/railing/mapped{ +/obj/effect/floor_decal/spline/fancy/wood{ dir = 1 }, -/turf/simulated/open, -/area/horizon/hydroponics) -"jbK" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 5 +/obj/structure/cable/green{ + icon_state = "1-4" }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"jbM" = ( -/obj/structure/window/shuttle/scc_space_ship, -/obj/structure/grille, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "bridge blast"; - name = "Bridge Blast Doors"; - opacity = 0 +/turf/simulated/floor/wood, +/area/horizon/command/heads/captain) +"jbH" = ( +/obj/structure/cable{ + icon_state = "4-8" }, -/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/hallway/interior) +"jbI" = ( /obj/structure/cable/green{ icon_state = "1-2" }, -/obj/structure/cable/green, -/obj/machinery/door/blast/shutters/open{ - dir = 4; - id = "shutters_deck3_bridgesafety"; - name = "Safety Shutter" +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + dir = 1; + name = "Deck 3 Starboard Lounge" }, -/obj/machinery/door/blast/shutters/open{ - dir = 4; - id = "conferencesafetyshutters"; - name = "Safety Shutter" - }, -/turf/simulated/floor/plating, -/area/bridge/meeting_room) +/turf/simulated/floor/tiled, +/area/horizon/crew/lounge) "jbP" = ( /obj/machinery/door/airlock/multi_tile/glass{ dir = 1; @@ -63771,12 +63769,6 @@ icon_state = "dark_preview" }, /area/centcom/holding) -"jbR" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/fuel{ - dir = 8 - }, -/turf/simulated/wall/shuttle/scc, -/area/shuttle/intrepid/port_storage) "jbS" = ( /obj/effect/shuttle_landmark/horizon/exterior/deck_1/starboard, /turf/template_noop, @@ -63807,38 +63799,46 @@ icon_state = "dark_preview" }, /area/centcom/ferry) -"jcd" = ( -/obj/effect/floor_decal/spline/plain/black, -/obj/structure/bed/stool/chair/shuttle/double{ - pixel_x = 8; - dir = 1 +"jcc" = ( +/obj/machinery/door/airlock/command{ + dir = 4; + id_tag = "hra_room"; + name = "Human Resources Meeting Room"; + req_one_access = list(19,38,72) }, -/obj/structure/bed/stool/chair/shuttle/double{ - pixel_x = -8; - dir = 1 +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id = "bridge blast"; + name = "Bridge Blast Doors"; + opacity = 0 }, -/turf/simulated/floor/tiled/dark/full, -/area/shuttle/intrepid/main_compartment) -"jch" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/structure/window/shuttle/scc_space_ship/cardinal, -/obj/structure/cable/green{ - icon_state = "1-4" +/turf/simulated/floor/tiled, +/area/horizon/command/bridge) +"jce" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/structure/cable/green{ - icon_state = "2-4" +/obj/machinery/button/remote/blast_door{ + dir = 1; + id = "medicalisolation"; + name = "Isolation Ward Shutters"; + pixel_y = 30; + req_access = list(5) }, -/obj/structure/cable/green{ - icon_state = "0-4" +/obj/effect/floor_decal/corner_wide/green{ + dir = 5 }, -/obj/machinery/door/blast/regular/open{ - dir = 2; - id = "shutters_deck3_longbow"; - name = "Safety Blast Door" +/turf/simulated/floor/tiled/white, +/area/horizon/medical/hallway/upper) +"jcf" = ( +/obj/structure/bed/stool/chair/shuttle{ + dir = 4 }, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/longbow) +/obj/item/device/radio/intercom/south, +/turf/simulated/floor/shuttle/dark_blue, +/area/horizon/shuttle/escape_pod/pod1) "jck" = ( /obj/effect/floor_decal/corner/blue{ dir = 10 @@ -63872,310 +63872,256 @@ icon_state = "dark_preview" }, /area/centcom/control) -"jcq" = ( -/obj/effect/floor_decal/corner_wide/green{ +"jcl" = ( +/turf/unsimulated/wall/fakepdoor{ + dir = 4 + }, +/area/horizon/hangar/operations) +"jcm" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner/dark_green/full{ + dir = 1 + }, +/obj/structure/sign/directions/prop{ + dir = 4; + pixel_y = 34 + }, +/turf/simulated/floor/tiled, +/area/horizon/engineering/hallway/fore) +"jcn" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/obj/structure/reagent_dispensers/watertank, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/hangar/port) +"jcr" = ( +/obj/effect/floor_decal/corner_wide/paleblue{ dir = 5 }, +/obj/machinery/photocopier, +/obj/machinery/power/apc/low/north, /obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/cable/green{ - icon_state = "2-4" - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 + icon_state = "0-2" }, /turf/simulated/floor/tiled/white, -/area/medical/gen_treatment) -"jcw" = ( -/obj/effect/floor_decal/corner/brown{ - dir = 1 +/area/horizon/command/heads/cmo) +"jct" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 10 }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/structure/disposalpipe/segment, +/obj/machinery/firealarm/south, /turf/simulated/floor/tiled, -/area/operations/lobby) -"jcD" = ( +/area/horizon/rnd/hallway) +"jcH" = ( +/obj/effect/floor_decal/corner/green/diagonal, /obj/structure/cable/green{ - icon_state = "1-4" + icon_state = "2-8" }, -/obj/structure/cable/green{ - icon_state = "2-4" +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 }, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/shuttle/intrepid/port_compartment) +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/alarm/north, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/ward/isolation) "jcN" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 1 }, /turf/unsimulated/floor/carpet, /area/antag/mercenary) -"jcP" = ( -/obj/effect/floor_decal/industrial/warning/cee{ +"jcO" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/door/airlock/engineering{ + dir = 1; + name = "Engineering Substation"; + req_one_access = list(11,24) + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/full, +/area/horizon/stairwell/engineering/deck_2) +"jda" = ( +/obj/effect/floor_decal/industrial/warning{ dir = 4 }, -/obj/machinery/light/small/emergency{ - dir = 8; - pixel_x = 16 +/obj/structure/cable/yellow{ + icon_state = "1-2" }, -/turf/simulated/floor, -/area/maintenance/engineering_ladder) -"jcT" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/reactor/indra/mainchamber) +"jdi" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/rnd/xenoarch/atrium) +"jdp" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 10 + }, +/obj/structure/table/standard, +/obj/item/stock_parts/subspace/amplifier, +/obj/item/stock_parts/subspace/amplifier, +/obj/item/stock_parts/subspace/amplifier, +/obj/item/device/radio/intercom/west, +/turf/simulated/floor/carpet/rubber, +/area/horizon/tcommsat/entrance) +"jdq" = ( +/obj/structure/sign/drop{ + desc = "A warning sign which reads 'DANGER: FALLING HAZARD' and 'THIS EQUIPMENT STARTS AND STOPS AUTOMATICALLY'."; + name = "\improper DANGER: FALLING HAZARD sign" + }, +/turf/simulated/wall, +/area/horizon/operations/office) +"jdJ" = ( /obj/structure/cable{ icon_state = "4-8" }, -/obj/effect/floor_decal/corner/dark_green/full{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hangar/intrepid) -"jcU" = ( -/obj/machinery/mech_recharger, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/railing/mapped{ - dir = 8 - }, -/mob/living/heavy_vehicle/premade/random/boring, -/turf/simulated/floor/plating, -/area/operations/lower/machinist) -"jcV" = ( -/obj/effect/floor_decal/corner/lime/diagonal, -/obj/structure/sink{ - dir = 8; - pixel_x = -12 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ +/obj/machinery/alarm/north, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/machinery/iv_drip, -/obj/item/clothing/mask/breath/medical, -/obj/item/tank/oxygen, -/turf/simulated/floor/tiled/white, -/area/shuttle/intrepid/medical) -"jcZ" = ( -/obj/effect/floor_decal/corner/dark_green/full{ - dir = 1 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/bed/stool/chair/padded/black{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hangar/intrepid) -"jde" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/horizon/bar) -"jdg" = ( -/turf/simulated/floor/carpet/rubber, -/area/bridge/controlroom) -"jdl" = ( -/obj/structure/reagent_dispensers/acid{ - pixel_y = 32; - pixel_x = -32 - }, -/turf/simulated/floor/carpet/rubber, -/area/operations/lower/machinist) -"jdm" = ( -/obj/structure/morgue{ - dir = 8 - }, -/turf/simulated/floor/tiled/freezer{ - name = "cooled tiles"; - temperature = 278.15 - }, -/area/medical/morgue/lower) -"jdy" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/item/device/radio/intercom/west{ - dir = 2; - pixel_x = 0; - pixel_y = -4 - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 7 - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 1 - }, -/obj/machinery/light/spot, -/obj/machinery/camera/network/command{ - c_tag = "Bridge - XO office"; - dir = 1 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/heads/hop/xo) -"jdC" = ( -/obj/effect/floor_decal/corner/dark_blue/diagonal, -/obj/structure/closet/secure_closet/security, -/obj/machinery/recharger/wallcharger{ - pixel_x = 4; - pixel_y = 24 - }, -/obj/machinery/recharger/wallcharger{ - pixel_x = 4; - pixel_y = 33 - }, -/obj/effect/floor_decal/industrial/outline/security, -/obj/machinery/alarm/east, -/turf/simulated/floor/tiled/dark, -/area/security/checkpoint) -"jdH" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/window/brigdoor/southright{ - name = "Ginny's Cage Access"; - req_access = list(56) - }, -/obj/machinery/light{ - dir = 1 - }, -/mob/living/simple_animal/carp/fluff/ginny, -/turf/simulated/floor/carpet, -/area/crew_quarters/heads/chief) -"jdN" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/obj/machinery/alarm/north, /obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/port/far) +"jdK" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/horizon/engineering/bluespace_drive) +"jdL" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/turf/simulated/floor/plating, -/area/maintenance/wing/port/far) -"jdP" = ( -/turf/simulated/wall, -/area/engineering/drone_fabrication) -"jdS" = ( -/obj/structure/disposalpipe/segment{ +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, /obj/structure/lattice/catwalk/indoor/grate, -/turf/simulated/floor, -/area/horizon/hallway/deck_three/primary/port) -"jdV" = ( -/obj/structure/window/shuttle/scc_space_ship, -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/effect/landmark/entry_point/aft{ - name = "aft, engineering hallway" - }, /turf/simulated/floor/plating, -/area/hallway/engineering/rust) +/area/horizon/hallway/primary/deck_2/central) +"jdO" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_3/port/docks) "jdW" = ( /obj/machinery/atmospherics/pipe/simple/heat_exchanging{ dir = 5 }, /turf/simulated/open/airless, /area/horizon/exterior) -"jec" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/effect/map_effect/window_spawner/full/reinforced/grille/firedoor, -/obj/machinery/door/blast/regular/open{ - name = "Command Bunker Lockdown"; - id = "command_bunker_lockdown" - }, -/turf/simulated/floor/tiled/dark/full, -/area/bridge/aibunker) -"jeh" = ( -/obj/structure/table/wood, -/obj/item/flame/candle, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 8 - }, -/obj/effect/floor_decal/spline/fancy/wood{ +"jdX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/obj/machinery/power/apc/low/east, -/obj/structure/cable/green{ - icon_state = "0-8" +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 }, -/turf/simulated/floor/wood, -/area/chapel/main) +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_engineering{ + dir = 4; + name = "INDRA Reactor Monitoring Room"; + req_access = list(11) + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/map_effect/door_helper/unres{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/reactor/indra/monitoring) +"jeb" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/lattice/catwalk/indoor/grate/damaged, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/port/near) +"jee" = ( +/obj/machinery/conveyor{ + dir = 8; + id = "mining_2" + }, +/turf/simulated/floor/plating, +/area/horizon/operations/mining_main/refinery) +"jei" = ( +/obj/structure/table/wood, +/obj/item/flame/candle{ + pixel_y = 16 + }, +/obj/item/reagent_containers/food/condiment/shaker/peppermill{ + pixel_x = 4; + pixel_y = 16 + }, +/obj/item/reagent_containers/food/condiment/shaker/salt{ + pixel_x = -6; + pixel_y = 16 + }, +/obj/machinery/power/outlet, +/turf/simulated/floor/wood/mahogany, +/area/horizon/service/dining_hall) "jek" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/effect/floor_decal/industrial/warning, /obj/structure/disposalpipe/segment, /turf/simulated/floor/reinforced/airless, /area/horizon/exterior) -"jeq" = ( -/obj/machinery/portable_atmospherics/canister/sleeping_agent, -/obj/structure/window/reinforced{ - dir = 8 - }, +"jem" = ( +/obj/structure/bed/stool/chair/sofa/right/orange, +/turf/simulated/floor/carpet/red, +/area/horizon/service/bar) +"jep" = ( /obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/reinforced, -/area/rnd/xenoarch_atrium) +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/shutters/open{ + dir = 2; + id = "seconddeckdockext"; + name = "Security Checkpoint External Shutter" + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/security/checkpoint2) "jeu" = ( /turf/unsimulated/floor/plating, /area/centcom/distress_prep) -"jew" = ( -/obj/effect/floor_decal/corner/brown/full, -/obj/machinery/camera/network/intrepid{ - dir = 1; - c_tag = "Intrepid - Starboard Compartment" - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/intrepid/starboard_compartment) -"jeD" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 4 - }, -/obj/structure/bed/stool/chair/padded/brown{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/lawoffice/consular_two) -"jeF" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass{ +"jey" = ( +/obj/machinery/computer/ship/sensors/terminal{ dir = 1 }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/full, -/area/horizon/hallway/deck_two/fore) +/turf/simulated/floor/tiled/dark, +/area/horizon/shuttle/quark/cockpit) +"jeB" = ( +/obj/machinery/light/small/emergency{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/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/horizon/maintenance/deck_2/wing/starboard) "jeG" = ( /obj/effect/floor_decal/corner/paleblue{ dir = 5 @@ -64188,73 +64134,44 @@ }, /turf/unsimulated/floor, /area/centcom/holding) -"jeW" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 +"jeR" = ( +/obj/effect/map_effect/window_spawner/full/reinforced/polarized/grille/firedoor{ + id = "XO" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id = "bridge blast"; + name = "Bridge Blast Doors"; + opacity = 0 }, /obj/structure/cable/green{ - icon_state = "1-8" + icon_state = "0-2" }, -/obj/structure/lattice/catwalk/indoor/grate, /turf/simulated/floor, -/area/bridge) -"jeY" = ( -/obj/effect/floor_decal/corner/dark_green{ +/area/horizon/command/heads/xo) +"jeX" = ( +/obj/effect/floor_decal/corner/dark_blue/full{ dir = 4 }, -/obj/structure/disposalpipe/segment{ +/obj/effect/floor_decal/industrial/warning{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 +/obj/machinery/button/remote/blast_door{ + id = "shutters_deck2_portstairwellsec"; + name = "Elevator Security Shutters"; + pixel_x = -5; + pixel_y = -22; + req_one_access = list(1,19) }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/effect/floor_decal/spline/plain/corner{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 +/obj/machinery/computer/shuttle_control/multi/lift/wall/robotics{ + dir = 1; + pixel_x = 7; + pixel_y = -22 }, /turf/simulated/floor/tiled, -/area/horizon/hallway/deck_two/fore) -"jfa" = ( -/obj/structure/extinguisher_cabinet/west, -/obj/effect/floor_decal/corner_wide/green{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/hallway/medical/upper) -"jfc" = ( -/obj/effect/floor_decal/corner/brown{ - dir = 5 - }, -/obj/machinery/camera/network/supply{ - c_tag = "Operations - Hangar Starboard Aft"; - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hangar/operations) -"jfh" = ( -/obj/effect/floor_decal/corner/mauve/full, -/obj/machinery/light/floor{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/rnd/hallway/secondary) -"jfk" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/turf/simulated/floor/plating, -/area/maintenance/substation/research) +/area/horizon/rnd/eva) "jfn" = ( /obj/machinery/door/window/southleft{ desc = "A strong door. An angry note is taped to the front."; @@ -64294,64 +64211,62 @@ /obj/effect/floor_decal/industrial/warning, /turf/unsimulated/floor, /area/centcom/legion) -"jfr" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +"jfp" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/structure/tank_wall/carbon_dioxide{ + icon_state = "co2-13" + }, +/turf/simulated/floor/airless, +/area/horizon/engineering/atmos) +"jfs" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, /obj/structure/cable/green{ - icon_state = "1-2" + icon_state = "1-4" }, -/obj/effect/floor_decal/corner/dark_green{ - dir = 6 +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" }, -/obj/effect/floor_decal/spline/plain/green{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/horizon/hydroponics/lower) -"jfy" = ( -/obj/structure/table/rack, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/unsimulated/floor/dark_monotile, -/area/antag/actor) -"jfG" = ( -/turf/simulated/wall, -/area/maintenance/security_port) -"jfK" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 1 - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 7 - }, -/turf/simulated/floor/wood, -/area/lawoffice/representative_two) -"jfQ" = ( -/obj/machinery/atmospherics/valve{ - dir = 4; - name = "Oxidant to Turbine" +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/research) +"jfF" = ( +/obj/structure/foamedmetal, +/obj/structure/shuttle_part/scc_space_ship{ + icon_state = "d2-1" }, /turf/simulated/floor/plating, -/area/engineering/atmos/air) +/area/horizon/maintenance/deck_2/cargo_compartment) +"jfM" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/cargo_compartment) +"jfO" = ( +/obj/structure/bed/stool/chair/padded/red{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/horizon/service/dining_hall) "jfT" = ( /obj/structure/punching_bag, /turf/simulated/floor/holofloor/tiled, /area/horizon/holodeck/source_boxingcourt) -"jfW" = ( +"jfY" = ( +/obj/structure/railing/mapped, /obj/structure/table/standard, -/obj/item/reagent_containers/spray/cleaner{ - desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; - icon_state = "sterilesprayblue"; - name = "surgery cleaner" - }, -/obj/effect/floor_decal/corner_wide/paleblue{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/medical/ors) +/obj/machinery/cell_charger, +/turf/simulated/floor/tiled/dark, +/area/horizon/rnd/lab) "jfZ" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 10 @@ -64374,6 +64289,12 @@ }, /turf/simulated/floor/tiled/dark, /area/shuttle/merchant) +"jgb" = ( +/obj/structure/table/rack, +/obj/random/loot, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor, +/area/horizon/maintenance/deck_3/aft/port) "jgc" = ( /obj/structure/closet/secure_closet/guncabinet{ name = "Ion Rifle" @@ -64395,39 +64316,89 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/security/investigations_hallway) -"jgk" = ( +"jgs" = ( +/obj/effect/map_effect/window_spawner/full/reinforced/grille/firedoor, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id = "bridge blast"; + name = "Bridge Blast Doors"; + opacity = 0 + }, /obj/structure/cable/green{ icon_state = "4-8" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/turf/simulated/floor, +/area/horizon/command/bridge/bridge_crew) +"jgx" = ( +/turf/simulated/wall, +/area/horizon/operations/loading) +"jgz" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/floor_decal/spline/fancy/wood{ dir = 4 }, +/obj/structure/table/wood, +/obj/random/pottedplant_small{ + pixel_x = -4; + pixel_y = 6 + }, +/turf/simulated/floor/wood, +/area/horizon/hallway/primary/deck_2/fore) +"jgG" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/table/steel, +/obj/random/pottedplant_small{ + pixel_x = -4; + pixel_y = 11 + }, +/obj/random/pottedplant_small{ + pixel_x = 6; + pixel_y = 11 + }, +/obj/random/pottedplant_small{ + pixel_x = -4; + pixel_y = 3 + }, +/obj/random/pottedplant_small{ + pixel_x = 6; + pixel_y = 3 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/service/hydroponics/lower) +"jgK" = ( +/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 }, -/obj/effect/floor_decal/corner/dark_green{ - dir = 5 - }, -/obj/effect/floor_decal/industrial/warning{ +/turf/simulated/floor/tiled/dark, +/area/horizon/shuttle/quark/cargo_hold) +"jgL" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 }, -/obj/effect/floor_decal/industrial/loading/yellow{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/security/checkpoint) -"jgv" = ( -/turf/simulated/wall, -/area/horizon/crew_quarters/fitness/changing) -"jgB" = ( -/obj/effect/floor_decal/corner/dark_green{ +/obj/effect/floor_decal/corner_wide/green/diagonal, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/exam) +"jgO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ dir = 6 }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/starboard) +/obj/effect/decal/cleanable/dirt, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/hangar/starboard) "jgX" = ( /obj/structure/table/reinforced/steel, /obj/item/gun/energy/blaster/carbine{ @@ -64447,16 +64418,74 @@ }, /turf/unsimulated/floor, /area/centcom/legion/hangar5) -"jhg" = ( -/obj/effect/floor_decal/corner/dark_blue{ +"jhb" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 10 + }, +/obj/machinery/disposal/small/north, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/horizon/crew/resdeck/living_quarters_lift) +"jhc" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 6 }, -/obj/machinery/alarm/east, +/obj/machinery/atmospherics/pipe/simple/hidden/aux{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/button/remote/blast_door{ + id = "shutters_bunker"; + name = "Command Bunker Blast Door"; + pixel_x = 37; + pixel_y = -17; + req_access = list(19) + }, +/obj/machinery/button/remote/airlock{ + id = "airlocks_bunker"; + name = "Command Bunker Bolts"; + pixel_x = 26; + pixel_y = -17; + req_access = list(19); + specialfunctions = 4; + desiredstate = 1 + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/command/bridge/aibunker) +"jhe" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/corner/brown/diagonal, /turf/simulated/floor/tiled/dark, -/area/teleporter) -"jhp" = ( -/turf/simulated/floor/tiled, -/area/engineering/locker_room) +/area/horizon/operations/mining_main/eva) +"jhi" = ( +/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/disposalpipe/junction{ + dir = 8; + icon_state = "pipe-j2" + }, +/turf/simulated/floor/tiled/full, +/area/horizon/hallway/primary/deck_2/central) "jhq" = ( /obj/effect/floor_decal/corner/dark_blue{ dir = 6 @@ -64472,6 +64501,49 @@ }, /turf/simulated/floor/tiled, /area/horizon/security/investigations_hallway) +"jhs" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner/dark_green{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_2/fore) +"jht" = ( +/obj/effect/floor_decal/corner/beige/full, +/obj/machinery/atmospherics/pipe/simple/hidden/aux{ + dir = 6 + }, +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/command/bridge/aibunker) +"jhu" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 10 + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/turf/simulated/floor/plating, +/area/horizon/engineering/reactor/supermatter/mainchamber) +"jhw" = ( +/obj/machinery/door/blast/shutters/open{ + dir = 8; + id = "shutters_hangarseccp"; + name = "Security Checkpoint Shutter" + }, +/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/security/checkpoint) "jhx" = ( /obj/machinery/computer/access_terminal/odyssey{ pixel_y = 32 @@ -64479,6 +64551,12 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/unsimulated/floor/linoleum, /area/antag/actor) +"jhy" = ( +/obj/effect/floor_decal/spline/fancy/wood/full, +/obj/structure/flora/ausbushes/ppflowers, +/obj/structure/flora/ausbushes/fernybush, +/turf/simulated/floor/grass/no_edge, +/area/horizon/hallway/primary/deck_2/central) "jhA" = ( /obj/effect/floor_decal/carpet{ dir = 8 @@ -64489,24 +64567,6 @@ }, /turf/simulated/floor/carpet/magenta, /area/horizon/holodeck/source_cafe) -"jhB" = ( -/obj/machinery/door/blast/regular{ - dir = 4; - id = "r-ust_vent"; - name = "INDRA Reactor Vent" - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/effect/floor_decal/industrial/loading/yellow{ - dir = 1 - }, -/turf/simulated/floor/reinforced/airless, -/area/engineering/engine_room/rust) -"jhD" = ( -/obj/effect/floor_decal/corner/dark_green/full, -/obj/structure/closet/toolcloset, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled, -/area/storage/primary) "jhN" = ( /obj/effect/floor_decal/corner/grey{ dir = 6 @@ -64516,13 +64576,15 @@ }, /turf/simulated/floor/marble, /area/horizon/holodeck/source_trinary) -"jhQ" = ( -/obj/effect/floor_decal/corner/green/diagonal, -/obj/structure/closet/secure_closet/personal, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/window/reinforced, -/turf/simulated/floor/tiled/white, -/area/horizon/crew_quarters/fitness/changing) +"jhO" = ( +/obj/structure/grille, +/obj/machinery/door/firedoor, +/obj/effect/landmark/entry_point/port{ + name = "port, deck 3 port hallway" + }, +/obj/structure/window/shuttle/scc_space_ship/cardinal, +/turf/simulated/floor/plating, +/area/horizon/hallway/primary/deck_3/starboard) "jhR" = ( /obj/effect/floor_decal/corner/grey{ dir = 10 @@ -64530,65 +64592,37 @@ /obj/effect/floor_decal/industrial/outline_straight/yellow, /turf/unsimulated/floor/dark, /area/antag/actor) -"jhV" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 +"jhT" = ( +/obj/machinery/recharger{ + pixel_y = 1 }, -/obj/effect/floor_decal/corner/green/diagonal{ - dir = 8 +/obj/effect/floor_decal/corner/dark_blue/full, +/obj/structure/table/steel, +/obj/machinery/camera/network/security{ + c_tag = "Security - Second Deck Checkpoint"; + dir = 4 }, -/turf/simulated/floor/tiled/white, -/area/medical/ward) +/turf/simulated/floor/tiled/dark, +/area/horizon/security/checkpoint2) "jib" = ( /obj/structure/shuttle_part/mercenary/small{ icon_state = "4,1" }, /turf/unsimulated/floor/plating, /area/shuttle/syndicate_elite) -"jie" = ( -/obj/structure/railing/mapped, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/green{ - icon_state = "0-8" +"jid" = ( +/obj/effect/floor_decal/corner_wide/paleblue{ + dir = 5 }, -/obj/machinery/power/apc/north, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard) -"jif" = ( -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/obj/machinery/camera/network/command{ - c_tag = "Bridge - Atrium Port Maintenance" - }, -/turf/simulated/floor/tiled, -/area/bridge/upperdeck) -"jig" = ( -/obj/structure/table/reinforced/wood, -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 2; - icon_state = "shutter0"; - id = "cap_office_desk"; - name = "Captain Desk Shutters"; - opacity = 0 +/turf/simulated/floor/tiled/white, +/area/horizon/medical/hallway) +"jih" = ( +/obj/machinery/atmospherics/unary/heater{ + dir = 4 }, +/obj/structure/extinguisher_cabinet/west, /turf/simulated/floor/tiled/dark/full, -/area/crew_quarters/captain) -"jij" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/operations/lobby) +/area/horizon/service/hydroponics/lower) "jil" = ( /obj/machinery/atmospherics/pipe/simple/heat_exchanging{ dir = 1 @@ -64596,6 +64630,21 @@ /obj/structure/lattice/catwalk/indoor, /turf/simulated/open/airless, /area/horizon/exterior) +"jio" = ( +/obj/machinery/atmospherics/unary/vent_pump/siphon/on/atmos{ + id_tag = "ph_out_portthruster" + }, +/turf/simulated/floor/reinforced/phoron, +/area/horizon/engineering/atmos) +"jip" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + dir = 4 + }, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/starboard) "jiq" = ( /obj/effect/floor_decal/corner/red{ dir = 6 @@ -64605,6 +64654,28 @@ }, /turf/unsimulated/floor, /area/centcom/evac) +"jir" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 6 + }, +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/effect/floor_decal/spline/plain{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_2/fore) +"jis" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/table/stone/marble, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/service/kitchen) "jiA" = ( /obj/effect/floor_decal/corner/white{ dir = 5 @@ -64614,74 +64685,15 @@ "jiH" = ( /turf/simulated/wall/shuttle/scc_space_ship/cardinal, /area/horizon/security/washroom) -"jiI" = ( -/obj/effect/floor_decal/spline/plain, -/obj/effect/floor_decal/spline/plain/corner{ - dir = 4 +"jiQ" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 5 }, -/obj/effect/floor_decal/spline/plain/corner{ +/obj/machinery/light/floor{ dir = 1 }, -/obj/machinery/atmospherics/pipe/simple/hidden/black{ - dir = 4 - }, -/obj/machinery/light, -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/turf/simulated/floor/carpet/rubber, -/area/tcommsat/chamber) -"jiL" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/obj/machinery/door/airlock/external{ - dir = 4 - }, -/obj/machinery/access_button{ - dir = 1; - pixel_x = 28; - pixel_y = -20 - }, -/obj/effect/map_effect/marker/airlock{ - frequency = 1003; - master_tag = "airlock_horizon_deck_1_aft_propulsion_1"; - name = "airlock_horizon_deck_1_aft_propulsion_1" - }, -/obj/effect/map_effect/marker_helper/airlock/interior, -/turf/simulated/floor/plating, -/area/engineering/atmos/propulsion/starboard) -"jiM" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 7 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/wood, -/area/crew_quarters/captain) -"jiS" = ( -/obj/machinery/light_switch{ - dir = 4; - pixel_x = 22; - pixel_y = 4 - }, -/obj/structure/railing/mapped, -/obj/structure/closet/secure_closet/custodial, -/obj/effect/floor_decal/corner/purple{ - dir = 6 - }, -/obj/effect/floor_decal/industrial/outline/custodial, /turf/simulated/floor/tiled, -/area/horizon/custodial) +/area/horizon/hallway/primary/deck_3/port) "jiT" = ( /obj/item/clothing/suit/armor/carrier/ballistic, /obj/item/clothing/shoes/sneakers, @@ -64700,78 +64712,57 @@ /obj/item/clothing/under/rank/centcom_commander, /turf/simulated/floor/shuttle/black, /area/shuttle/hapt) +"jiU" = ( +/obj/machinery/portable_atmospherics/canister/air, +/obj/machinery/atmospherics/portables_connector{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/outline/blue, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/tcommsat/entrance) +"jiV" = ( +/obj/effect/floor_decal/corner/dark_green/full, +/obj/machinery/firealarm/west, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/machinery/disposal, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_3/starboard) "jiZ" = ( /obj/effect/floor_decal/corner/red, /turf/unsimulated/floor, /area/antag/mercenary) -"jjh" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/structure/window/shuttle/scc_space_ship/cardinal, -/obj/effect/landmark/entry_point/fore{ - name = "fore, grauwolf compartment" - }, -/obj/machinery/door/blast/regular/open{ - dir = 8; - id = "shutters_deck2_grauwolf"; - name = "Safety Blast Door" - }, -/turf/simulated/floor/plating, -/area/horizon/grauwolf) +"jjc" = ( +/obj/structure/lattice, +/obj/structure/platform/ledge, +/turf/simulated/open, +/area/horizon/medical/hallway/upper) "jjj" = ( /obj/structure/shuttle_part/scc_space_ship{ icon_state = "d2-3" }, /turf/space/dynamic, /area/template_noop) -"jjk" = ( -/obj/structure/bed/stool/chair/shuttle{ - dir = 8 - }, -/obj/effect/floor_decal/corner/dark_blue/diagonal, -/obj/effect/floor_decal/spline/plain/black{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/intrepid/junction_compartment) "jjn" = ( /obj/structure/shuttle_part/ccia{ icon_state = "3,4" }, /turf/unsimulated/floor/plating, /area/shuttle/transport1) -"jjp" = ( -/obj/structure/table/standard, -/obj/item/storage/toolbox/mechanical{ - pixel_y = 6 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/floor_decal/corner/mauve{ - dir = 10 - }, -/obj/item/stack/material/phoron{ - amount = 15 - }, -/obj/item/storage/box/slides{ - pixel_x = -5; - pixel_y = 5 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/lab) "jjx" = ( /obj/machinery/door/firedoor, /obj/effect/floor_decal/corner/brown/diagonal, /turf/simulated/floor/tiled/dark, /area/horizon/holodeck_control) -"jjy" = ( -/obj/structure/lattice, -/obj/structure/platform/ledge{ - dir = 1 +"jjz" = ( +/obj/structure/cable{ + icon_state = "4-8" }, -/turf/simulated/open, -/area/hallway/primary/central_one) +/obj/effect/floor_decal/corner/dark_green/diagonal, +/turf/simulated/floor/tiled, +/area/horizon/hangar/auxiliary) "jjA" = ( /obj/machinery/porta_turret/legion{ cover_set = 0; @@ -64788,194 +64779,216 @@ /obj/effect/floor_decal/industrial/warning/full, /turf/simulated/floor/tiled/dark, /area/shuttle/legion) -"jjF" = ( -/obj/effect/map_effect/window_spawner/full/reinforced/polarized/grille/firedoor{ - id = "consularB" - }, -/obj/structure/cable/green{ - icon_state = "0-8" - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor, -/area/lawoffice/consular_two) -"jjH" = ( -/obj/machinery/light, -/obj/structure/sign/directions/dock{ - dir = 4; - pixel_y = -32 - }, -/obj/effect/floor_decal/corner/dark_green{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/central) -"jjS" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 7 - }, -/obj/machinery/firealarm/south, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ +"jjD" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/spline/plain/red{ dir = 4 }, +/obj/effect/floor_decal/corner/dark_green{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/horizon/service/hydroponics) +"jjG" = ( +/obj/structure/tank_wall/phoron{ + density = 0; + icon_state = "ph11"; + opacity = 0 + }, +/obj/machinery/atmospherics/unary/vent_pump/siphon/on/atmos{ + id_tag = "ph_out_starboardthruster" + }, +/turf/simulated/floor/reinforced/phoron, +/area/horizon/engineering/atmos) +"jjJ" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/hidden/aux, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/operations/starboard/amidships) +"jjO" = ( +/obj/effect/floor_decal/corner/mauve/full{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/firealarm/north, +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/xenobiology/foyer) +"jjP" = ( +/obj/structure/platform_stairs, +/obj/machinery/door/window/northleft, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/dark, +/area/horizon/rnd/xenobiology/dissection) +"jjU" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 5 + }, +/obj/structure/table/wood, +/obj/machinery/newscaster/north, +/turf/simulated/floor/tiled, +/area/horizon/operations/lobby) +"jjV" = ( +/obj/effect/floor_decal/industrial/warning, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/turf/simulated/floor/wood, -/area/crew_quarters/captain) -"jjT" = ( -/obj/machinery/door/airlock{ - dir = 1; - name = "Washroom" - }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/firedoor{ +/obj/machinery/atmospherics/pipe/simple/hidden{ dir = 4 }, +/obj/machinery/newscaster/south, /turf/simulated/floor/tiled, -/area/horizon/crew_quarters/cryo/washroom) -"jjV" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/structure/trash_pile, -/obj/effect/decal/cleanable/cobweb2, -/obj/machinery/light/small/emergency{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/wing/cargo_compartment) +/area/horizon/hallway/primary/deck_3/port/docks) "jjW" = ( /obj/effect/shuttle_landmark/horizon/exterior/deck_2/starboard_fore, /turf/template_noop, /area/template_noop) -"jjZ" = ( -/obj/effect/floor_decal/corner/dark_green/full{ - dir = 4 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/railing/mapped, -/turf/simulated/floor/tiled, -/area/hallway/primary/aft) "jkb" = ( /obj/effect/decal/warning_stripes, /obj/machinery/acting/changer, /turf/unsimulated/floor/monotile, /area/antag/loner) -"jkk" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 10 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, +"jki" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/light_switch{ - pixel_y = -19; - pixel_x = -6 - }, -/obj/item/device/radio/intercom/south{ - pixel_x = 14 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/captain) -"jkq" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 10 - }, -/turf/simulated/wall/shuttle/scc, -/area/shuttle/intrepid/engineering) -"jks" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/effect/floor_decal/corner/dark_green/full{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, /turf/simulated/floor/tiled, -/area/horizon/stairwell/central) +/area/horizon/rnd/hallway) +"jkm" = ( +/obj/effect/map_effect/window_spawner/full/reinforced/grille/firedoor, +/obj/machinery/door/blast/regular/open{ + name = "Command Bunker Lockdown"; + id = "command_bunker_lockdown" + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/command/bridge/aibunker) +"jko" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/reactor/supermatter/mainchamber) "jkt" = ( /turf/unsimulated/floor{ dir = 4; icon_state = "ramptop" }, /area/centcom/holding) +"jkv" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_3/starboard/docks) +"jkx" = ( +/obj/effect/landmark/entry_point/fore{ + name = "fore, civilian lounges, starboard" + }, +/turf/simulated/wall/shuttle/scc_space_ship/cardinal, +/area/horizon/crew/lounge) "jkz" = ( /obj/effect/floor_decal/industrial/warning, /turf/simulated/floor/tiled/dark, /area/shuttle/mercenary) +"jkA" = ( +/obj/effect/floor_decal/corner_wide/green{ + dir = 10 + }, +/obj/machinery/light/floor, +/obj/structure/railing/mapped, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/hallway/upper) "jkB" = ( /obj/structure/railing/mapped, /obj/effect/floor_decal/industrial/warning, /turf/simulated/floor/reinforced/airless, /area/horizon/exterior) -"jkC" = ( -/obj/machinery/ringer_button{ - id = "pharmacy_ringer"; - pixel_x = -21; - pixel_y = 22 +"jkJ" = ( +/obj/structure/cable{ + icon_state = "1-2" }, -/obj/effect/floor_decal/corner_wide/orange{ - dir = 9 +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 }, -/turf/simulated/floor/tiled/white, -/area/medical/reception) -"jkG" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 1 +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ +/obj/effect/floor_decal/corner/dark_green{ dir = 4 }, /turf/simulated/floor/tiled, -/area/engineering/break_room) -"jkM" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/door/firedoor, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/full, -/area/horizon/hallway/deck_three/primary/central) +/area/horizon/hallway/primary/deck_3/central) "jkQ" = ( /obj/effect/floor_decal/spline/plain{ dir = 1 }, /turf/simulated/floor/plating/snow, /area/centcom/shared_dream) +"jkS" = ( +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/structure/railing/mapped, +/obj/effect/floor_decal/corner/dark_blue/full, +/obj/machinery/computer/ship/navigation, +/turf/simulated/floor/tiled/dark, +/area/horizon/command/bridge/controlroom) +"jkU" = ( +/obj/structure/railing/mapped, +/obj/structure/sign/directions/tcom{ + dir = 8; + pixel_x = -32 + }, +/turf/simulated/open, +/area/horizon/engineering/break_room) +"jkX" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/railing/mapped, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/hallway/primary/deck_2/central) +"jkY" = ( +/obj/structure/platform{ + dir = 8 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/horizon/command/heads/rd) "jlb" = ( /obj/machinery/vending/coffee/free{ pixel_x = 5 @@ -64991,58 +65004,41 @@ }, /turf/simulated/floor/holofloor/grass, /area/horizon/holodeck/source_picnicarea) -"jln" = ( -/obj/effect/floor_decal/industrial/outline/service, -/turf/simulated/floor/tiled, -/area/operations/storage) -"jlo" = ( -/obj/effect/floor_decal/corner_wide/purple{ - dir = 6 +"jli" = ( +/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/command/heads/rd) +"jll" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 5 }, -/obj/effect/floor_decal/corner_wide/purple{ - dir = 10 +/obj/item/clipboard{ + pixel_y = 2; + pixel_x = -22 }, -/obj/effect/floor_decal/corner_wide/purple{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenoarch_atrium) -"jlp" = ( -/obj/structure/table/standard, -/obj/machinery/vending/wallmed1{ - req_access = null; - pixel_y = 32 - }, -/obj/machinery/alarm/east{ - req_one_access = list(24,11,65,74) - }, -/obj/item/paper_bin{ - pixel_y = 3; - pixel_x = 4 - }, -/obj/item/pen{ - pixel_x = 3; +/obj/item/stack/packageWrap, +/obj/item/device/hand_labeler, +/obj/item/stack/wrapping_paper, +/obj/structure/table/reinforced/steel, +/obj/item/folder/sec{ pixel_y = 3 }, -/obj/structure/cable/green{ - icon_state = "0-8" +/turf/simulated/floor/tiled, +/area/horizon/command/bridge/controlroom) +"jlm" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 5 }, -/obj/machinery/power/apc/quark/south, -/obj/item/storage/firstaid/regular, -/turf/simulated/floor/tiled/dark, -/area/shuttle/quark/cockpit) +/obj/machinery/vending/engivend, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled, +/area/horizon/engineering/storage_eva) +"jlx" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/wing/starboard/far) "jlz" = ( /obj/machinery/door/airlock/glass_centcom{ dir = 4; @@ -65068,55 +65064,39 @@ /obj/effect/floor_decal/corner_wide/dark_green/diagonal, /turf/simulated/floor/tiled/dark, /area/shuttle/skipjack) -"jlJ" = ( +"jlC" = ( /obj/structure/cable/green{ - icon_state = "2-4" + icon_state = "1-2" }, -/obj/structure/cable/green{ - icon_state = "1-4" +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/lattice/catwalk/indoor, +/turf/simulated/floor/plating, +/area/horizon/engineering/bluespace_drive) +"jlP" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 9 }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/effect/floor_decal/corner_wide/green, -/turf/simulated/floor/tiled/white, -/area/hallway/medical/upper) -"jlQ" = ( -/obj/effect/floor_decal/corner/dark_blue{ +/obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 }, -/obj/effect/floor_decal/corner/yellow{ - dir = 1 +/obj/machinery/camera/network/first_deck{ + c_tag = "First Deck - Hangar Access"; + dir = 4 }, -/obj/machinery/atmospherics/binary/pump{ - dir = 4; - name = "Oxidant to Mixer" +/turf/simulated/floor/tiled, +/area/horizon/hangar/intrepid/interstitial) +"jlT" = ( +/obj/machinery/light/small, +/obj/machinery/papershredder{ + pixel_x = -6 }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 +/obj/structure/filingcabinet/filingcabinet{ + pixel_x = 9; + pixel_y = 1 }, -/obj/machinery/firealarm/north, -/turf/simulated/floor/tiled/dark, -/area/engineering/engine_room/turbine) -"jlR" = ( -/turf/simulated/wall, -/area/horizon/custodial/auxiliary) -"jlY" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 1 - }, -/obj/machinery/portable_atmospherics/powered/pump/filled, -/obj/effect/floor_decal/industrial/outline/blue, /turf/simulated/floor/tiled/dark/full, -/area/engineering/atmos/storage) +/area/horizon/shuttle/intrepid/flight_deck) "jmb" = ( /obj/structure/shuttle_part/ert{ icon_state = "10,1"; @@ -65124,15 +65104,6 @@ }, /turf/unsimulated/floor/plating, /area/centcom/specops) -"jmf" = ( -/obj/effect/floor_decal/corner/dark_green/full{ - dir = 1 - }, -/obj/structure/bed/stool/chair/padded/beige{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_two) "jmg" = ( /obj/effect/map_effect/window_spawner/full/reinforced/polarized/firedoor{ id = "investigator_office" @@ -65147,69 +65118,12 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/security/investigators_office) -"jmi" = ( -/obj/machinery/conveyor_switch/oneway{ - id = "cargo_1" - }, -/obj/structure/railing/mapped, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hangar/operations) -"jmj" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 6 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/horizon/library) "jmk" = ( /obj/machinery/bodyscanner{ dir = 8 }, /turf/simulated/floor/tiled/white, /area/shuttle/hapt) -"jmn" = ( -/obj/item/device/radio/intercom/north{ - listening = 0; - name = "Custom Channel" - }, -/obj/item/device/radio/intercom/north{ - frequency = 1343; - name = "Private Channel" - }, -/obj/effect/landmark/start{ - name = "AI" - }, -/obj/effect/floor_decal/industrial/warning/full, -/obj/structure/cable/green{ - icon_state = "0-8" - }, -/obj/machinery/button/remote/blast_door{ - desc = "A remote control-switch for the AI core maintenance door."; - dir = 1; - id = "AICore"; - name = "AI Core Blast Doors"; - pixel_x = 25; - pixel_y = 25; - req_access = list(20) - }, -/obj/machinery/button/remote/blast_door{ - dir = 1; - id = "ai_upload"; - name = "AI Upload Blast Door"; - pixel_x = 39; - pixel_y = 25; - req_access = list(16) - }, -/turf/simulated/floor/bluegrid{ - name = "cooled mainframe floor"; - temperature = 278 - }, -/area/turret_protected/ai) "jmq" = ( /obj/machinery/door/airlock/centcom{ name = "Starboard Checkpoint Door"; @@ -65225,34 +65139,24 @@ icon_state = "dark_preview" }, /area/centcom/holding) -"jmu" = ( -/obj/structure/cable/green{ - icon_state = "4-8" +"jms" = ( +/obj/effect/floor_decal/corner_wide/green{ + dir = 6 }, -/obj/effect/floor_decal/corner/yellow{ - dir = 5 +/obj/structure/table/standard, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/main_storage) +"jmx" = ( +/obj/structure/shuttle_part/scc/scout{ + icon_state = "1,8" }, -/turf/simulated/floor/tiled, -/area/engineering/lobby) -"jmw" = ( -/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/white/diagonal, -/obj/machinery/door/airlock/glass_medical{ - dir = 4; - name = "Paramedic Quarters"; - req_access = list(67) - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled, -/area/medical/paramedic) +/turf/simulated/floor/plating, +/area/horizon/shuttle/canary) +"jmy" = ( +/obj/structure/grille, +/obj/structure/window/shuttle/scc_space_ship, +/turf/simulated/floor/plating, +/area/horizon/shuttle/escape_pod/pod2) "jmz" = ( /obj/effect/decal/fake_object{ desc = "An automated turret."; @@ -65265,11 +65169,37 @@ }, /turf/unsimulated/floor/plating, /area/antag/mercenary) -"jmC" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/random/junk, -/turf/simulated/floor, -/area/maintenance/engineering_ladder) +"jmA" = ( +/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/horizon/hangar/auxiliary) +"jmD" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/effect/floor_decal/corner/dark_green{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_3/central) +"jmE" = ( +/obj/effect/floor_decal/corner/purple{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_2/starboard) "jmJ" = ( /obj/structure/bed/stool/chair{ dir = 1 @@ -65286,65 +65216,116 @@ /obj/effect/decal/fake_object/light_source/invisible, /turf/simulated/floor/shuttle/black, /area/centcom/specops) -"jmO" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; - icon_state = "2-8" +"jmX" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 }, -/turf/simulated/floor/carpet/rubber, -/area/maintenance/engineering/auxillary) -"jna" = ( -/obj/effect/floor_decal/corner/dark_green, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/main/port) +"jmY" = ( +/obj/item/ladder_mobile, +/obj/item/reagent_containers/extinguisher_refill/filled, +/obj/structure/table/steel, +/obj/effect/floor_decal/corner/dark_blue/full{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/storage/eva) +"jmZ" = ( +/obj/machinery/airlock_sensor{ + pixel_x = 6; + pixel_y = 28 + }, +/obj/effect/map_effect/marker/airlock/docking{ + landmark_tag = "nav_horizon_dock_deck_3_port_5"; + master_tag = "airlock_horizon_dock_deck_3_port_5"; + name = "airlock_horizon_dock_deck_3_port_5" + }, +/obj/machinery/embedded_controller/radio/airlock/docking_port{ + pixel_x = -6; + pixel_y = 28 + }, +/turf/simulated/floor/plating, +/area/horizon/hallway/primary/deck_3/starboard/docks) +"jne" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/atmos) +"jni" = ( +/obj/structure/table/standard, +/obj/item/folder/yellow, +/obj/effect/floor_decal/corner/brown{ + dir = 6 + }, +/obj/item/paper_bin{ + pixel_y = 5 + }, +/obj/item/pen/black, +/obj/item/device/price_scanner, /turf/simulated/floor/tiled, -/area/hallway/primary/central_one) +/area/horizon/operations/office) "jnl" = ( /obj/structure/bed/stool, /turf/unsimulated/floor, /area/centcom/legion/hangar5) -"jnp" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/highsecurity{ - dir = 4; - icon_state = "door_locked"; - id_tag = "airlocks_deck2_ammostorage"; - locked = 1; - name = "Secure Ammunition Storage"; - req_one_access = list(75) - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/blast/regular{ - dir = 2; - id = "shutters_deck1_ammostorage"; - name = "Secure Ammunition Storage Blast Door" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ +"jnn" = ( +/obj/effect/floor_decal/corner/grey/diagonal, +/obj/structure/bed/stool/chair/office/light{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 +/obj/machinery/disposal/small/south, +/obj/structure/disposalpipe/trunk, +/obj/structure/sign/nosmoking_1{ + pixel_y = 35 }, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/reception) +"jnq" = ( /obj/structure/cable/green{ icon_state = "4-8" }, -/turf/simulated/floor/tiled/full, -/area/horizon/secure_ammunition_storage) -"jns" = ( -/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" + icon_state = "2-8" }, -/obj/structure/cable/green{ - icon_state = "1-8" +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 }, -/obj/structure/cable/green{ - icon_state = "1-4" +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 }, -/turf/simulated/floor/tiled/dark/full, -/area/shuttle/intrepid/junction_compartment) +/obj/structure/disposalpipe/sortjunction/flipped{ + dir = 8; + name = "Psychiatry"; + sortType = "Psychiatry" + }, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/hallway) +"jnu" = ( +/obj/effect/landmark/entry_point/fore{ + name = "fore, d1 airlock" + }, +/turf/simulated/wall/shuttle/scc_space_ship/cardinal, +/area/horizon/maintenance/deck_1/hangar/starboard) +"jnw" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/tiled/dark/airless, +/area/horizon/exterior) +"jnx" = ( +/obj/machinery/light, +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/atmos/propulsion/starboard) "jny" = ( /obj/effect/floor_decal/corner{ dir = 4 @@ -65354,12 +65335,6 @@ "jnz" = ( /turf/simulated/wall, /area/horizon/security/evidence_storage) -"jnA" = ( -/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/hallway/primary/central_one) "jnB" = ( /obj/effect/map_effect/window_spawner/full/reinforced/grille/firedoor, /obj/structure/cable/green, @@ -65374,6 +65349,24 @@ /obj/machinery/atmospherics/pipe/simple/hidden, /turf/simulated/floor/tiled/dark/full, /area/horizon/security/brig) +"jnC" = ( +/obj/structure/filingcabinet{ + pixel_x = -7 + }, +/obj/structure/filingcabinet/chestdrawer{ + pixel_x = 7 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/floor_decal/corner/mauve/full{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/xenobiology/foyer) +"jnE" = ( +/turf/simulated/floor/carpet/purple, +/area/horizon/command/heads/rd) "jnI" = ( /obj/effect/floor_decal/corner/grey{ dir = 4 @@ -65387,38 +65380,100 @@ }, /turf/unsimulated/floor/plating, /area/centcom/spawning) -"jnS" = ( +"jnL" = ( +/obj/structure/disposalpipe/junction{ + icon_state = "pipe-j2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/full, +/area/horizon/hallway/primary/deck_2/fore) +"jnQ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/wing/starboard) +"jnR" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, /obj/structure/cable{ icon_state = "1-8" }, -/turf/simulated/floor/tiled, -/area/hangar/intrepid) -"jnV" = ( -/obj/machinery/hologram/holopad/long_range, -/turf/simulated/floor/tiled/dark/full, -/area/bridge/aibunker) -"jnX" = ( -/obj/machinery/atmospherics/pipe/simple/visible/black{ +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/aux{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 9 + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/operations/starboard/amidships) +"jnU" = ( +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/industrial/warning{ dir = 1 }, -/obj/machinery/meter, -/obj/machinery/light{ - dir = 8 - }, +/obj/structure/disposalpipe/segment, /turf/simulated/floor/plating, -/area/engineering/engine_room) -"joe" = ( -/obj/machinery/telecomms/server/presets/service, -/turf/simulated/floor/bluegrid, -/area/tcommsat/chamber) -"jof" = ( -/obj/structure/closet/secure_closet/xenoarchaeologist{ - req_access = null; - req_one_access = list(7,47) +/area/horizon/maintenance/deck_1/operations/starboard) +"jod" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenoarch_storage) +/obj/structure/platform, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/corner/dark_blue/diagonal, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/obj/structure/engineer_maintenance/pipe/wall, +/turf/simulated/floor/tiled, +/area/horizon/command/bridge/upperdeck) +"joj" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/full, +/area/horizon/hallway/primary/deck_2/starboard) +"jok" = ( +/obj/structure/table/wood, +/obj/random/pottedplant_small{ + pixel_y = 16 + }, +/turf/simulated/floor/carpet, +/area/horizon/command/bridge/cciaroom) "jon" = ( /obj/effect/decal/cleanable/dirt, /obj/item/ore, @@ -65427,10 +65482,73 @@ }, /turf/unsimulated/floor, /area/antag/raider) -"jop" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/dark, -/area/engineering/atmos/propulsion/starboard) +"jos" = ( +/obj/machinery/door/airlock/glass_service{ + dir = 4; + name = "Kitchen"; + req_access = list(28) + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/full, +/area/horizon/service/kitchen) +"jot" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 6 + }, +/turf/simulated/floor/wood, +/area/horizon/command/bridge) +"jou" = ( +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/structure/railing/mapped{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/horizon/engineering/reactor/supermatter/mainchamber) +"jov" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/engineer_maintenance/pipe/wall, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/horizon/hangar/operations) +"jow" = ( +/obj/structure/window/shuttle/scc_space_ship, +/obj/structure/grille, +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/shutters{ + dir = 2; + id = "shutters_deck2_hydroponicswindowssafety"; + name = "Viewing Shutter" + }, +/obj/effect/landmark/entry_point/fore{ + name = "fore, d1 garden" + }, +/turf/simulated/floor/plating, +/area/horizon/service/hydroponics/lower) "joy" = ( /obj/machinery/chemical_dispenser/bar_soft/full{ pixel_y = 7 @@ -65443,43 +65561,38 @@ }, /turf/unsimulated/floor, /area/antag/raider) -"joC" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 10 +"joA" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 9 }, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard) -"joD" = ( -/obj/machinery/door/airlock/glass_command{ - name = "Supplies"; - req_one_access = list(19,38) - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/firedoor, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/structure/cable/green{ - icon_state = "1-2" +/obj/machinery/camera/network/command{ + c_tag = "Bridge - Starboard 2"; + dir = 1 }, /turf/simulated/floor/tiled, -/area/bridge/controlroom) -"joF" = ( -/obj/effect/landmark/entry_point/port{ - name = "port, deck 1 maintenance" - }, -/turf/simulated/wall/shuttle/scc_space_ship/cardinal, -/area/maintenance/wing/port/deck1) -"joG" = ( -/obj/effect/floor_decal/corner/dark_green/full, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/machinery/light{ +/area/horizon/command/bridge/controlroom) +"joE" = ( +/obj/structure/railing/mapped{ dir = 8 }, +/obj/structure/disposalpipe/down{ + dir = 8 + }, +/obj/structure/lattice, +/turf/simulated/open, +/area/horizon/maintenance/deck_2/wing/port) +"joI" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/floor_decal/corner/dark_green/full{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "2-8" + }, /turf/simulated/floor/tiled, -/area/horizon/stairwell/central) +/area/horizon/hallway/primary/deck_1/central) "joK" = ( /obj/effect/floor_decal/spline/plain{ dir = 6 @@ -65491,102 +65604,10 @@ /obj/item/stack/rods, /turf/space/dynamic, /area/antag/raider) -"joQ" = ( -/obj/effect/floor_decal/corner/mauve/diagonal, -/obj/structure/sink{ - dir = 4; - pixel_x = 12 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora) "joT" = ( /obj/effect/floor_decal/corner/white/diagonal, /turf/simulated/floor/holofloor/carpet/rubber, /area/horizon/holodeck/source_gym) -"joU" = ( -/turf/simulated/floor/tiled/dark, -/area/engineering/engine_waste) -"joV" = ( -/obj/effect/floor_decal/corner/green/diagonal{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/medical/ward) -"joW" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lime{ - dir = 5 - }, -/obj/machinery/firealarm/west, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/structure/closet/crate{ - name = "Cremation Urn Materials" - }, -/obj/item/stack/material/wood/full, -/obj/item/stack/material/steel/full, -/obj/item/stack/material/bronze/full, -/obj/item/stack/material/glass/full, -/obj/item/device/hand_labeler, -/turf/simulated/floor/tiled/white{ - name = "cooled white floor"; - temperature = 278.15 - }, -/area/medical/morgue/lower) -"joZ" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/floor_decal/corner/dark_green{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/engineering/lobby) -"jpa" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/effect/floor_decal/corner/dark_green{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/junction{ - dir = 1; - icon_state = "pipe-j2" - }, -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/central) -"jpb" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/corner/brown{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/operations/break_room) "jpd" = ( /obj/structure/bed/stool/padded/brown{ dir = 8 @@ -65596,19 +65617,41 @@ }, /turf/unsimulated/floor/rubber_carpet, /area/antag/jockey) +"jpg" = ( +/obj/effect/floor_decal/corner_wide/paleblue/full{ + dir = 4 + }, +/obj/random/pottedplant, +/obj/machinery/firealarm/south, +/turf/simulated/floor/tiled/white, +/area/horizon/command/heads/cmo) "jph" = ( /obj/structure/sign/staff_only, /turf/unsimulated/wall/darkshuttlewall, /area/centcom/control) -"jpq" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ +"jpo" = ( +/obj/structure/bed/stool/chair/padded/brown{ + dir = 4 + }, +/turf/simulated/floor/carpet, +/area/horizon/crew/journalistoffice) +"jpp" = ( +/obj/machinery/maneuvering_engine, +/obj/effect/landmark/entry_point/aft{ + name = "aft, port maneuvering engines" + }, +/turf/simulated/wall/shuttle/scc_space_ship/cardinal, +/area/horizon/maintenance/deck_2/wing/starboard/nacelle) +"jpr" = ( +/obj/structure/bed/stool/chair/wood{ dir = 8 }, -/obj/effect/floor_decal/corner_wide/green{ +/obj/effect/floor_decal/spline/fancy/wood{ dir = 6 }, -/turf/simulated/floor/tiled/white, -/area/medical/icu) +/obj/structure/railing/mapped, +/turf/simulated/floor/wood, +/area/horizon/service/cafeteria) "jpt" = ( /obj/structure/table/stone/marble, /obj/effect/floor_decal/spline/fancy/wood{ @@ -65616,25 +65659,28 @@ }, /turf/unsimulated/floor, /area/centcom/bar) -"jpI" = ( -/obj/machinery/atmospherics/unary/outlet_injector{ - dir = 8; - frequency = 1441; - id = "ph_in"; - name = "phoron injector"; - use_power = 1 +"jpy" = ( +/obj/structure/flora/ausbushes/fullgrass, +/obj/structure/railing/mapped, +/turf/simulated/floor/grass/no_edge, +/area/horizon/service/cafeteria) +"jpz" = ( +/obj/structure/railing/mapped, +/obj/structure/railing/mapped{ + dir = 4 }, -/turf/simulated/floor/reinforced/phoron, -/area/engineering/atmos) -"jpK" = ( -/obj/structure/cable{ - icon_state = "1-2" +/obj/structure/lattice, +/obj/structure/platform/ledge{ + dir = 1 }, -/obj/effect/floor_decal/corner/dark_green{ - dir = 5 +/obj/structure/platform/ledge{ + dir = 8 }, -/turf/simulated/floor/tiled, -/area/hangar/intrepid) +/obj/structure/platform_deco/ledge{ + dir = 6 + }, +/turf/simulated/open, +/area/horizon/hallway/primary/deck_2/central) "jpR" = ( /obj/machinery/computer/slot_machine, /obj/machinery/light/small{ @@ -65642,129 +65688,74 @@ }, /turf/simulated/floor/tiled/dark/full, /area/antag/raider) -"jpS" = ( -/obj/structure/shuttle_part/scc_space_ship{ - icon_state = "d2-1-f" +"jpY" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/power/terminal{ + dir = 4 }, -/obj/effect/landmark/entry_point/fore{ - name = "fore, deck 2 port maintenance" - }, -/turf/simulated/wall, -/area/maintenance/wing/port/far) -"jpU" = ( -/obj/machinery/bluespace_beacon, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 8 +/obj/machinery/camera/network/engineering{ + c_tag = "Engineering - Deck 3 - Command Substation"; + dir = 4 }, +/turf/simulated/floor, +/area/horizon/maintenance/substation/command) +"jqe" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 5 }, /obj/structure/lattice/catwalk/indoor/grate/dark, /turf/simulated/floor/plating, -/area/shuttle/mining) -"jqc" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"jql" = ( -/obj/effect/floor_decal/corner_wide/yellow/full{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/engineering/rust) -"jqo" = ( -/obj/structure/disposalpipe/segment, -/turf/simulated/wall/shuttle/scc_space_ship/cardinal, -/area/horizon/grauwolf) -"jqp" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/area/horizon/maintenance/deck_2/wing/port/near) +"jqn" = ( /obj/machinery/door/firedoor, -/obj/machinery/door/airlock/engineering{ - dir = 1; - name = "Engineering Storage"; - req_one_access = list(11,24) +/obj/effect/floor_decal/corner/dark_green{ + dir = 6 }, -/turf/simulated/floor/plating, -/area/engineering/storage/lower) -"jqz" = ( -/obj/structure/cable/green{ - icon_state = "0-2" - }, -/obj/structure/table/steel, -/obj/machinery/cell_charger, -/obj/item/device/multitool, -/obj/effect/floor_decal/corner/dark_blue/full{ - dir = 8 - }, -/obj/machinery/alarm/north, -/obj/machinery/power/apc/low/west, -/turf/simulated/floor/tiled/dark, -/area/storage/eva) -"jqB" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/bridge/controlroom) -"jqD" = ( -/obj/machinery/disposal/small/north, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/structure/disposalpipe/trunk{ +/obj/effect/floor_decal/industrial/hatch_door/red{ dir = 1 }, -/obj/effect/floor_decal/corner_wide/green{ - dir = 10 +/turf/simulated/floor/tiled, +/area/horizon/hangar/auxiliary) +"jqx" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/effect/floor_decal/corner/dark_blue{ + dir = 6 }, -/obj/effect/landmark/start{ - name = "Paramedic" +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/storage/eva) +"jqU" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume/aux{ + dir = 8 }, -/turf/simulated/floor/tiled/white, -/area/hallway/medical/upper) -"jqE" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ +/obj/effect/floor_decal/industrial/outline_straight/red, +/obj/effect/floor_decal/industrial/outline_straight/red{ dir = 4 }, -/turf/simulated/floor/tiled/dark, -/area/hangar/intrepid) -"jqL" = ( -/obj/structure/cable/orange{ - icon_state = "1-2" +/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 }, -/obj/effect/floor_decal/industrial/warning/corner, /turf/simulated/floor/plating, -/area/engineering/bluespace_drive) -"jqS" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 9 - }, -/obj/machinery/power/apc/low/west, -/obj/structure/cable/green{ - icon_state = "0-2" - }, -/turf/simulated/floor/tiled, -/area/horizon/stairwell/bridge) +/area/horizon/shuttle/quark/cargo_hold) "jqW" = ( /obj/structure/shuttle/engine/heater, /obj/structure/window/reinforced/crescent{ @@ -65778,35 +65769,52 @@ }, /turf/unsimulated/floor/plating, /area/centcom/legion) -"jrq" = ( -/obj/structure/window/shuttle/scc_space_ship, -/obj/structure/grille, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/crew_quarters/lounge/secondary) -"jrr" = ( -/obj/structure/cable/green{ - icon_state = "0-2" - }, -/obj/effect/floor_decal/corner/brown{ - dir = 5 - }, -/obj/structure/table/steel, -/obj/machinery/power/apc/low/north, -/obj/item/device/suit_cooling_unit, -/obj/item/device/suit_cooling_unit, -/turf/simulated/floor/tiled/dark, -/area/outpost/mining_main/eva) -"jrs" = ( -/obj/effect/floor_decal/corner/mauve{ +"jra" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 10 }, -/obj/structure/cable/green{ - icon_state = "0-4" +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" }, -/obj/machinery/power/apc/south, /turf/simulated/floor/tiled/white, -/area/rnd/telesci) +/area/horizon/rnd/xenobiology) +"jrj" = ( +/obj/structure/railing/mapped, +/obj/effect/floor_decal/corner/dark_green{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_2/central) +"jrl" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/service/bar) +"jrm" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/bluespace_drive) "jrt" = ( /obj/effect/floor_decal/corner/brown{ dir = 10 @@ -65815,74 +65823,64 @@ /obj/machinery/light/floor, /turf/simulated/floor/tiled/dark, /area/horizon/holodeck_control/beta) -"jrw" = ( -/obj/effect/map_effect/window_spawner/full/reinforced/polarized/firedoor{ - id = "Bar_Private_Lounge" - }, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/bar) -"jry" = ( -/obj/machinery/door/firedoor{ - req_one_access = list(24,11,67,73) - }, -/obj/effect/floor_decal/industrial/hatch_door/yellow{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark/full, -/area/shuttle/intrepid/main_compartment) "jrA" = ( /obj/effect/floor_decal/spline/plain{ dir = 1 }, /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 +"jrC" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black, +/obj/structure/shuttle/engine/heater{ + dir = 1 }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/quark/cargo_hold) -"jrE" = ( -/obj/effect/floor_decal/corner_wide/yellow/diagonal, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/dark, -/area/engineering/break_room) -"jrG" = ( -/obj/effect/floor_decal/corner/beige/full{ - dir = 4 +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/structure/railing/mapped, +/turf/simulated/floor/plating, +/area/horizon/engineering/atmos/propulsion/starboard) +"jrH" = ( +/obj/structure/cable{ + icon_state = "4-8" }, -/obj/effect/floor_decal/industrial/loading/yellow{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/medical/icu) -"jrJ" = ( -/turf/simulated/floor/tiled/dark, -/area/rnd/xenoarch_atrium) -"jrK" = ( /obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/full, -/area/horizon/hallway/deck_three/primary/port/docks) -"jrP" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/corner/brown{ - dir = 5 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 }, -/turf/simulated/floor/tiled, -/area/operations/break_room) -"jrS" = ( -/obj/effect/floor_decal/corner/yellow{ - dir = 6 +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 }, /obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/atmospherics/unary/freezer{ - dir = 8; - icon_state = "freezer" +/obj/machinery/door/airlock/hatch{ + dir = 4; + name = "Telecommunications"; + req_access = list(11,24) }, -/turf/simulated/floor/tiled/dark, -/area/engineering/engine_waste) +/turf/simulated/floor/tiled/dark/full, +/area/horizon/tcommsat/entrance) +"jrN" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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/horizon/engineering/hallway/aft) +"jrQ" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_3/security/starboard) "jrZ" = ( /obj/effect/floor_decal/spline/plain, /turf/simulated/floor/beach/sand{ @@ -65890,93 +65888,61 @@ icon_state = "beachcorner" }, /area/centcom/shared_dream) -"jsd" = ( -/obj/machinery/light/small/emergency{ - dir = 8 - }, +"jse" = ( /obj/structure/cable{ + d1 = 1; + d2 = 2; icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/yellow, /obj/structure/lattice/catwalk/indoor/grate/dark, /turf/simulated/floor/plating, -/area/maintenance/wing/port/far) -"jsj" = ( -/obj/structure/cable/green{ - icon_state = "1-2" +/area/horizon/engineering/storage/lower) +"jsi" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/mining{ - dir = 1; - id_tag = "qmdoor"; - name = "Operations Manager"; - req_access = list(41) +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/full, -/area/operations/qm) -"jsk" = ( -/turf/simulated/wall, -/area/medical/washroom) +/obj/effect/floor_decal/corner/lime{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/horizon/medical/morgue) "jsm" = ( /obj/effect/floor_decal/corner/white/full, /turf/simulated/floor/holofloor/tiled/dark, /area/horizon/holodeck/source_boxingcourt) -"jso" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, +"jsp" = ( /obj/structure/cable/green{ - icon_state = "1-8" + icon_state = "1-2" }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" +/obj/machinery/atmospherics/pipe/simple/hidden/black, +/obj/structure/plasticflaps/airtight, +/obj/machinery/door/airlock/hatch{ + dir = 1; + name = "Telecommunications - Server Hall"; + req_access = list(61) }, -/turf/simulated/floor/tiled/full, -/area/hallway/primary/central_two) -"jsq" = ( -/obj/structure/sign/nosmoking_1{ - pixel_y = 32 - }, -/obj/machinery/atmospherics/pipe/simple/visible/black{ +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/tcommsat/chamber) +"jsu" = ( +/obj/effect/floor_decal/industrial/warning{ dir = 4 }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 +/obj/structure/railing/mapped{ + dir = 4 }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/reactor/indra/mainchamber) +"jsx" = ( +/obj/vehicle/train/cargo/engine/pussywagon, /turf/simulated/floor/tiled/dark, -/area/engineering/atmos/propulsion/starboard) -"jss" = ( -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/operations/lobby) -"jsB" = ( -/obj/machinery/iv_drip, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/outline/red, -/turf/simulated/floor/tiled/white, -/area/medical/gen_treatment) +/area/horizon/service/custodial) "jsF" = ( /obj/structure/lattice/catwalk, /obj/structure/railing/mapped, @@ -65985,129 +65951,38 @@ }, /turf/simulated/open/airless, /area/horizon/exterior) -"jsK" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 6 +"jsH" = ( +/obj/machinery/door/window/eastleft{ + name = "Xenoarchaeology Platform Access"; + req_access = list(65) }, -/obj/effect/floor_decal/industrial/outline/red, -/obj/machinery/atmospherics/unary/outlet_injector{ - frequency = 1441; - id = "fusion_injector_air"; - injecting = 1; - use_power = 1 +/obj/structure/platform_stairs/full/east_west_cap{ + dir = 8 }, -/turf/simulated/floor/reinforced/airless, -/area/engineering/engine_room/rust) -"jsO" = ( -/obj/machinery/door/window/northright, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/light/small/emergency{ - dir = 4 - }, -/obj/random/dirt_75, -/obj/random/dirt_75, -/turf/simulated/floor/carpet/rubber, -/area/maintenance/wing/port/far) -"jsQ" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 10 - }, -/obj/effect/floor_decal/corner/dark_green{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/platform/cutout, +/turf/simulated/floor/tiled/dark, +/area/horizon/rnd/xenoarch/atrium) +"jsU" = ( /obj/structure/cable/green{ icon_state = "1-2" }, -/obj/structure/disposalpipe/junction{ - dir = 1; - icon_state = "pipe-j2" - }, -/turf/simulated/floor/tiled, -/area/rnd/hallway) -"jsR" = ( -/obj/machinery/portable_atmospherics/hydroponics, -/obj/machinery/atmospherics/portables_connector{ - dir = 1 - }, -/obj/machinery/firealarm/south, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology/xenoflora) -"jsS" = ( -/obj/structure/table/wood, -/turf/simulated/floor/carpet, -/area/horizon/security/head_of_security) -"jsT" = ( -/obj/machinery/alarm/south, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 1 - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 7 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/captain) -"jsV" = ( -/turf/simulated/wall, -/area/maintenance/engineering) -"jsZ" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 6 - }, -/turf/simulated/floor/tiled/dark, -/area/engineering/break_room) -"jta" = ( -/obj/machinery/door/blast/shutters/open{ - dir = 2; - id = "shutters_deck2_hydroponicswindows"; - name = "Window Shutter" - }, -/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/hydroponics) -"jte" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 8 - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 4 - }, -/obj/structure/flora/ausbushes/ppflowers, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced{ +/obj/structure/disposalpipe/segment, +/obj/machinery/button/remote/airlock{ + id = "xeno_dissection"; + name = "Dissection access"; + req_access = list(55); + specialfunctions = 4; dir = 4; - pixel_y = -10 + pixel_x = 23; + pixel_y = 32; + desiredstate = 1 }, -/obj/structure/window/reinforced{ - dir = 8; - pixel_y = -10 - }, -/turf/simulated/floor/grass/no_edge, -/area/horizon/hallway/deck_three/primary/starboard) -"jtf" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard/deck1) +/turf/simulated/floor/carpet/rubber, +/area/horizon/rnd/xenobiology/dissection) "jtg" = ( /obj/effect/floor_decal/spline/fancy/wood, /obj/structure/bed/stool/bar/padded/red{ @@ -66116,33 +65991,9 @@ /obj/effect/landmark/actor_spawn, /turf/unsimulated/floor/wood, /area/antag/actor) -"jth" = ( -/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/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/bridge/meeting_room) -"jtl" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/structure/cable{ - d2 = 2; - icon_state = "0-2" - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard/far) +"jtk" = ( +/turf/simulated/wall/shuttle/scc, +/area/horizon/shuttle/intrepid/buffet) "jtn" = ( /obj/structure/foamedmetal, /obj/structure/shuttle_part/scc_space_ship{ @@ -66150,35 +66001,82 @@ }, /turf/simulated/floor/plating, /area/horizon/security/brig) -"jts" = ( -/obj/machinery/power/radial_floodlight, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/light{ +"jtz" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/airlock/glass_command{ + dir = 1; + id_tag = ""; + name = "Bridge Officer Preparation"; + req_access = list(19) + }, +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id = "bridge blast"; + name = "Bridge Blast Doors"; + opacity = 0; + dir = 4 + }, +/turf/simulated/floor/tiled/full, +/area/horizon/command/bridge/minibar) +"jtE" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/cargo_compartment) +"jtO" = ( +/obj/structure/railing/mapped{ dir = 8 }, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/storage_hard) -"jtu" = ( -/obj/effect/floor_decal/spline/fancy/wood, -/obj/machinery/hologram/holopad, +/obj/effect/floor_decal/corner/black{ + dir = 9 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/hangar/intrepid) +"jtP" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 9 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/cable/green{ + icon_state = "2-8" + }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/turf/simulated/floor/wood, -/area/horizon/crew_quarters/lounge/bar) -"jtx" = ( -/obj/structure/bed/stool/chair/padded/black, -/obj/effect/landmark/start{ - name = "Chief Engineer" +/obj/structure/disposalpipe/junction{ + dir = 1; + icon_state = "pipe-j2" }, -/obj/effect/floor_decal/spline/plain{ - dir = 1 +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_3/central) +"jtS" = ( +/obj/structure/closet/hazmat/research, +/obj/item/tank/oxygen, +/obj/item/clothing/mask/gas/alt, +/obj/machinery/button/remote/airlock{ + id = "xeno_bot_hazard"; + name = "Xenobotany Hazardous Specimens"; + pixel_y = -18; + req_access = list(52); + specialfunctions = 4 }, /turf/simulated/floor/tiled/dark, -/area/engineering/break_room) +/area/horizon/rnd/xenobiology/xenoflora) "jtX" = ( /obj/machinery/door/airlock/centcom{ name = "Checkpoint"; @@ -66192,19 +66090,31 @@ /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/full, /area/horizon/security/investigations_hallway) -"jue" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/aux{ - dir = 1 +"juh" = ( +/obj/machinery/alarm/north, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/horizon/engineering/storage/lower) +"juk" = ( +/obj/structure/shuttle_part/scc/scout{ + icon_state = "6,10"; + opacity = 1; + outside_part = 0 }, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 1 +/obj/structure/shuttle_part/scc/scout{ + icon = 'icons/obj/spaceship/scc/ship_engine.dmi'; + icon_state = "nozzle"; + opacity = 1; + outside_part = 0 }, -/obj/machinery/atmospherics/pipe/simple/hidden/green, -/obj/effect/floor_decal/corner/yellow{ - dir = 5 +/obj/machinery/atmospherics/pipe/simple/hidden/fuel, +/turf/simulated/floor/reinforced{ + blocks_air = 1; + density = 1; + name = "thruster mount"; + opacity = 1 }, -/turf/simulated/floor/tiled, -/area/hallway/engineering) +/area/horizon/shuttle/canary) "jul" = ( /turf/unsimulated/floor/stairs{ dir = 1 @@ -66222,105 +66132,73 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/holodeck_control) -"jun" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden{ +"juo" = ( +/obj/effect/floor_decal/corner_wide/black{ + dir = 10 + }, +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/simple/visible/green{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 8 }, -/obj/machinery/door/airlock/external, -/obj/effect/map_effect/marker/airlock{ - frequency = 1003; - master_tag = "airlock_horizon_deck_1_starboard_1"; - name = "airlock_horizon_deck_1_starboard_1" - }, -/obj/effect/map_effect/marker_helper/airlock/interior, -/obj/machinery/access_button{ - dir = 1; - pixel_x = -28; - pixel_y = 12 - }, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard/deck1) -"jur" = ( -/obj/structure/sink/kitchen{ - pixel_y = 27 - }, -/obj/effect/floor_decal/corner/grey/diagonal{ +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ dir = 8 }, -/turf/simulated/floor/tiled/white, -/area/horizon/cafeteria) -"juy" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/effect/floor_decal/corner/green/full{ +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 8 }, -/obj/item/bikehorn/rubberducky, -/turf/simulated/floor/tiled/white, -/area/operations/break_room) -"juC" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/heads/hor) -"juD" = ( -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/random/dirt_75, -/turf/simulated/floor/plating, -/area/maintenance/wing/port/far) -"juG" = ( -/obj/structure/platform_deco/ledge{ - dir = 4 - }, -/turf/simulated/open, -/area/horizon/hallway/deck_three/primary/central) -"juH" = ( +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/atmos/propulsion/starboard) +"jup" = ( +/obj/structure/closet/crate, +/obj/item/stock_parts/matter_bin, +/obj/item/stock_parts/matter_bin, +/obj/item/stock_parts/matter_bin, +/obj/item/stock_parts/matter_bin, +/obj/item/stock_parts/capacitor, +/obj/item/stock_parts/capacitor, +/obj/item/stock_parts/capacitor, +/obj/item/stock_parts/manipulator, +/obj/item/stock_parts/manipulator, +/obj/item/stock_parts/manipulator, +/obj/item/stock_parts/micro_laser, +/obj/item/stock_parts/micro_laser, +/obj/item/stock_parts/micro_laser, +/obj/item/stock_parts/scanning_module, +/obj/item/stock_parts/scanning_module, +/obj/item/stock_parts/scanning_module, +/obj/item/stock_parts/console_screen, +/obj/item/stock_parts/console_screen, +/obj/item/stack/cable_coil/random, +/obj/item/stack/cable_coil/random, +/turf/simulated/floor/carpet/rubber, +/area/horizon/maintenance/deck_1/workshop) +"juw" = ( /obj/structure/railing/mapped{ + density = 0; + icon_state = "railing0-0" + }, +/obj/machinery/firealarm/east, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/atmospherics/portables_connector{ dir = 8 }, -/turf/simulated/open, -/area/horizon/hallway/deck_three/primary/starboard) -"juI" = ( +/obj/machinery/portable_atmospherics/canister/empty, +/turf/simulated/floor/plating, +/area/horizon/engineering/storage/lower) +"juA" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 5 + }, +/obj/machinery/atmospherics/unary/vent_pump/on, /obj/structure/cable/green{ icon_state = "4-8" }, -/obj/effect/floor_decal/corner/brown{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/button/remote/blast_door{ - id = "miningbay"; - name = "Mining Bay Entrance"; - pixel_x = 22; - pixel_y = 29; - req_access = list(48); - dir = 1 - }, /turf/simulated/floor/tiled, -/area/hangar/operations) -"juK" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/structure/tank_wall/air{ - icon_state = "air8" - }, -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 10 - }, -/turf/simulated/floor/plating, -/area/engineering/atmos/air) +/area/horizon/stairwell/port/deck_2) "juN" = ( /obj/effect/map_effect/window_spawner/full/reinforced/indestructible, /obj/machinery/door/blast/odin{ @@ -66335,24 +66213,33 @@ }, /turf/unsimulated/floor/plating, /area/centcom/checkpoint/aft) -"juU" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/industrial/warning{ +"juQ" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ dir = 4 }, -/turf/simulated/floor/reinforced, -/area/engineering/gravity_gen) -"jva" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 +/obj/machinery/door/firedoor{ + dir = 4 }, -/obj/machinery/hologram/holopad, -/obj/item/device/radio/intercom/south, -/turf/simulated/floor/wood/walnut, -/area/medical/smoking) +/obj/machinery/door/airlock/hatch{ + dir = 4; + locked = 1; + name = "Supermatter Reactor Crystal Access"; + req_one_access = list(11,24); + id_tag = "engine_access_hatch" + }, +/turf/simulated/floor/plating, +/area/horizon/engineering/reactor/supermatter/mainchamber) +"juR" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 8 + }, +/obj/effect/map_effect/marker/airlock{ + frequency = 1002; + master_tag = "airlock_horizon_deck_3_fore_starboard_1"; + name = "airlock_horizon_deck_3_fore_starboard_1" + }, +/turf/simulated/floor, +/area/horizon/maintenance/deck_3/bridge) "jvb" = ( /obj/random/pottedplant, /obj/effect/floor_decal/spline/fancy/wood{ @@ -66360,24 +66247,6 @@ }, /turf/simulated/floor/holofloor/lino, /area/horizon/holodeck/source_courtroom) -"jvc" = ( -/obj/machinery/constructable_frame/machine_frame, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/turf/simulated/floor/plating, -/area/maintenance/wing/port/far) -"jvd" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard) "jve" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, @@ -66396,126 +66265,66 @@ }, /turf/simulated/floor/tiled/dark/full, /area/shuttle/skipjack) -"jvi" = ( -/obj/structure/platform_stairs/full{ - dir = 4 +"jvg" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/floor_decal/industrial/warning, +/obj/structure/cable/green{ + icon_state = "2-8" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora) -"jvj" = ( -/obj/effect/floor_decal/spline/fancy/wood/cee{ - dir = 8 - }, -/obj/structure/engineer_maintenance/pipe{ - dir = 8 - }, -/obj/structure/engineer_maintenance/electric, -/turf/simulated/floor/wood, -/area/bridge/meeting_room) -"jvl" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 5 - }, -/obj/structure/sign/directions/custodial{ - dir = 8; - pixel_y = 39 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/firealarm/north, -/turf/simulated/floor/tiled, -/area/hallway/primary/aft) -"jvq" = ( -/obj/machinery/firealarm/south, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/machinery/light, -/obj/structure/closet/secure_closet/psychiatric, -/turf/simulated/floor/wood, -/area/medical/psych) -"jvt" = ( -/obj/machinery/light/small/emergency{ +/turf/simulated/floor/plating, +/area/horizon/engineering/storage/lower) +"jvh" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ dir = 1 }, -/obj/machinery/embedded_controller/radio/airlock/airlock_controller{ - dir = 4; - pixel_x = -20 - }, -/obj/effect/map_effect/marker/airlock{ - frequency = 1002; - master_tag = "airlock_horizon_deck_3_fore_starboard_1"; - name = "airlock_horizon_deck_3_fore_starboard_1" - }, -/turf/simulated/floor, -/area/maintenance/bridge) -"jvv" = ( -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/white, -/area/medical/ors) -"jvx" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ +/obj/effect/floor_decal/corner/purple{ dir = 10 }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/firealarm/south, /turf/simulated/floor/tiled, -/area/engineering/locker_room) +/area/horizon/service/custodial) +"jvo" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 6 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/machinery/alarm/east, +/turf/simulated/floor/tiled, +/area/horizon/hangar/intrepid/interstitial) +"jvr" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 4 + }, +/obj/effect/floor_decal/spline/fancy{ + dir = 8 + }, +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/effect/floor_decal/corner_wide/white{ + dir = 6 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/hallway/primary/deck_2/central) +"jvy" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/corner/dark_green{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/horizon/hangar/intrepid) "jvz" = ( /obj/effect/floor_decal/corner/white{ dir = 8 }, /turf/simulated/floor/holofloor/tiled, /area/horizon/holodeck/source_battlemonsters) -"jvA" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/rnd/xenoarch_atrium) -"jvE" = ( -/obj/structure/tank_wall/hydrogen, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/visible/red, -/turf/simulated/floor/airless, -/area/engineering/atmos) -"jvF" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/structure/tank_wall/oxygen{ - icon_state = "o2-14" - }, -/turf/simulated/floor/plating, -/area/engineering/atmos/air) -"jvG" = ( -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/machinery/computer/ship/navigation{ - dir = 1 - }, -/obj/structure/railing/mapped, -/turf/simulated/floor/tiled/dark, -/area/bridge/aibunker) "jvH" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -66541,64 +66350,61 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/holodeck_control/beta) -"jvM" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 10 - }, -/obj/structure/cable/green, -/obj/machinery/power/apc/south, -/turf/simulated/floor/tiled, -/area/rnd/eva) -"jvN" = ( -/obj/effect/floor_decal/corner_wide/yellow{ - dir = 6 - }, -/obj/effect/floor_decal/spline/plain/corner{ - dir = 4 - }, -/obj/structure/reagent_dispensers/water_cooler, -/obj/machinery/alarm/east, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/engineering/break_room) -"jvQ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/corner/brown{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/operations/lobby) -"jvR" = ( -/obj/structure/cable/green{ +"jvL" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; icon_state = "4-8" }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/operations/starboard) +"jvO" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers{ + dir = 1 }, -/obj/effect/floor_decal/spline/plain, -/turf/simulated/floor/carpet/rubber, -/area/engineering/engine_monitoring) -"jvS" = ( -/obj/effect/floor_decal/corner/green/diagonal, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/closet/secure_closet/personal, -/turf/simulated/floor/tiled/white, -/area/horizon/crew_quarters/fitness/changing) +/obj/machinery/atmospherics/pipe/zpipe/down/supply{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "11-8" + }, +/turf/simulated/open, +/area/horizon/maintenance/deck_2/wing/port/far) +"jvP" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/door/airlock/glass_engineering{ + dir = 1; + name = "External Access"; + req_access = list(10) + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/aft_airlock) "jvW" = ( /turf/unsimulated/floor{ icon_state = "wood"; color = "#792f27" }, /area/centcom/ferry) -"jwa" = ( -/obj/structure/closet/crate, -/obj/random/loot, +"jvZ" = ( +/obj/effect/floor_decal/corner/purple{ + dir = 5 + }, /obj/effect/floor_decal/industrial/outline/yellow, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/loading/yellow{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/red{ + dir = 6 + }, /turf/simulated/floor/tiled/dark, -/area/maintenance/wing/starboard) +/area/horizon/service/custodial/disposals/deck_1) "jwd" = ( /obj/effect/decal/fake_object/light_source{ density = 1; @@ -66615,9 +66421,76 @@ name = "dirt" }, /area/horizon/holodeck/source_moghes) -"jwe" = ( -/turf/simulated/floor/tiled, -/area/engineering/rust_office) +"jwg" = ( +/obj/effect/floor_decal/spline/fancy/wood/cee{ + dir = 1 + }, +/obj/structure/flora/ausbushes/lavendergrass, +/obj/machinery/door/firedoor, +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = -14 + }, +/obj/structure/window/reinforced{ + dir = 4; + pixel_y = -10 + }, +/obj/structure/window/reinforced{ + dir = 8; + pixel_y = -10 + }, +/turf/simulated/floor/grass/no_edge, +/area/horizon/hallway/primary/deck_3/port) +"jwq" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/item/storage/toolbox/electrical{ + pixel_y = 5 + }, +/obj/item/storage/toolbox/mechanical{ + pixel_y = -2 + }, +/obj/item/device/multitool, +/obj/item/hoist_kit{ + pixel_y = 7 + }, +/obj/structure/table/rack, +/obj/item/device/binoculars/high_power{ + pixel_x = -2; + pixel_y = -1 + }, +/obj/item/device/radio, +/obj/item/device/radio, +/obj/item/device/flashlight/flare, +/obj/item/device/flashlight/flare, +/obj/machinery/recharger/wallcharger{ + pixel_x = 28; + pixel_y = 13 + }, +/obj/item/crowbar/red, +/obj/effect/floor_decal/corner/dark_blue{ + dir = 6 + }, +/obj/machinery/camera/network/canary{ + c_tag = "Canary - Main Compartment"; + dir = 1 + }, +/obj/item/storage/bag/inflatable, +/obj/machinery/alarm/east{ + dir = 2; + pixel_x = 0; + req_one_access = list(24,11,73,74) + }, +/obj/item/device/gps/stationary/sccv_canary{ + pixel_x = 23; + pixel_y = -9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/shuttle/canary) "jwt" = ( /obj/effect/decal/fake_object{ color = "#545c68"; @@ -66630,50 +66503,111 @@ density = 1 }, /area/antag/ninja) +"jwy" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/door/firedoor, +/obj/effect/landmark{ + name = "Revenant" + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/operations/starboard/far) "jwz" = ( /obj/machinery/atmospherics/pipe/simple/heat_exchanging{ dir = 10 }, /turf/simulated/open/airless, /area/horizon/exterior) -"jwJ" = ( -/obj/machinery/chem_master{ +"jwD" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel, +/obj/machinery/atmospherics/pipe/simple/hidden/aux, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/auxatmos) +"jwF" = ( +/obj/machinery/door/airlock/maintenance{ + dir = 4; + name = "Fuel Bay Maintenance"; + req_one_access = list(26,29,31,48,67,24,47) + }, +/obj/machinery/door/firedoor, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/aux{ dir = 8 }, -/obj/effect/floor_decal/spline/plain/cee{ - dir = 1 +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 4 }, -/turf/simulated/floor/carpet/rubber, -/area/rnd/chemistry) -"jwL" = ( -/obj/structure/cable/green{ - icon_state = "1-2" +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/firealarm/east, -/obj/machinery/camera/network/medbay{ - c_tag = "Medical - Morgue Storage Room"; +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/plasticflaps/airtight{ dir = 8 }, -/obj/effect/floor_decal/corner/lime{ - dir = 6 +/obj/machinery/door/blast/regular/open{ + id = "hangarlockdown"; + name = "Hangar Lockdown" }, /turf/simulated/floor/tiled, -/area/medical/emergency_storage) -"jwM" = ( -/obj/structure/lattice, -/obj/structure/platform/ledge{ - dir = 4 +/area/horizon/hangar/intrepid) +"jwO" = ( +/obj/structure/closet/firecloset/full, +/obj/effect/floor_decal/corner/dark_blue/full{ + dir = 8 }, -/turf/simulated/open, -/area/hallway/primary/central_one) -"jwN" = ( -/obj/effect/floor_decal/corner/brown/full{ - dir = 4 +/obj/effect/floor_decal/industrial/outline/red, +/obj/machinery/light{ + dir = 8 }, /turf/simulated/floor/tiled, -/area/outpost/mining_main/refinery) +/area/horizon/command/bridge/bridge_crew) +"jwU" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/table/steel, +/obj/item/device/radio{ + pixel_x = 6; + 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 = -7; + pixel_y = 5 + }, +/obj/item/device/radio{ + pixel_x = 6; + pixel_y = 5 + }, +/turf/simulated/floor/plating, +/area/horizon/hangar/intrepid) +"jwV" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/suspension_gen{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/storage/eva) "jxa" = ( /obj/machinery/door/airlock/hatch{ dir = 1; @@ -66686,43 +66620,33 @@ }, /turf/simulated/floor/tiled/dark/full, /area/shuttle/skipjack) -"jxj" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable/green{ - 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 = 10 - }, -/turf/simulated/floor/tiled, -/area/hangar/intrepid/interstitial) -"jxn" = ( -/obj/item/modular_computer/console/preset/medical{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/effect/floor_decal/corner/grey/diagonal, -/turf/simulated/floor/tiled/white, -/area/medical/reception) -"jxt" = ( -/obj/structure/tank_wall/air{ - density = 0; - icon_state = "air12"; - opacity = 0 - }, -/turf/simulated/floor/reinforced/airmix, -/area/engineering/atmos/air) -"jxv" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/visible/black{ - dir = 5 +"jxd" = ( +/obj/effect/floor_decal/industrial/warning/full, +/obj/machinery/porta_turret, +/obj/machinery/firealarm/east, +/obj/machinery/light{ + dir = 4 }, /turf/simulated/floor/tiled/dark/full, -/area/engineering/engine_room/turbine) +/area/horizon/storage/secure) +"jxf" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/obj/machinery/power/apc/low/north, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor, +/area/horizon/maintenance/deck_3/aft/port/far) +"jxg" = ( +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/structure/railing/mapped, +/turf/simulated/open, +/area/horizon/maintenance/deck_2/wing/port) "jxw" = ( /obj/machinery/pipedispenser/orderable{ pixel_y = 1 @@ -66735,37 +66659,62 @@ icon_state = "dark_preview" }, /area/centcom/specops) -"jxJ" = ( -/obj/machinery/light{ - dir = 1 - }, +"jxx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/effect/floor_decal/corner/dark_blue{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/starboard/docks) -"jxS" = ( -/obj/structure/shuttle_part/scc_space_ship{ - icon_state = "d3-5" - }, -/turf/simulated/wall/r_wall, -/area/rnd/xenobiology/xenoflora) -"jxU" = ( -/obj/effect/floor_decal/corner/lime/diagonal, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 9 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ +/obj/effect/floor_decal/industrial/loading/yellow{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/security/checkpoint2) +"jxA" = ( +/obj/effect/floor_decal/corner_wide/yellow{ dir = 9 }, /obj/structure/cable/green{ - icon_state = "4-8" + icon_state = "2-4" }, -/turf/simulated/floor/tiled/white, -/area/shuttle/intrepid/medical) -"jxW" = ( -/turf/simulated/wall/r_wall, -/area/engineering/aft_airlock) +/obj/machinery/firealarm/west, +/turf/simulated/floor/tiled, +/area/horizon/engineering/hallway/aft) +"jxD" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/obj/effect/floor_decal/industrial/outline/red, +/obj/machinery/atmospherics/unary/outlet_injector{ + frequency = 1441; + id = "fusion_injector_air"; + injecting = 1; + use_power = 1 + }, +/turf/simulated/floor/reinforced/airless, +/area/horizon/engineering/reactor/indra/mainchamber) +"jxT" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 6 + }, +/obj/structure/table/rack, +/obj/item/stack/material/glass{ + amount = 50 + }, +/obj/item/stack/material/glass{ + amount = 50 + }, +/obj/item/stack/material/glass{ + amount = 50 + }, +/obj/item/stack/material/glass/phoronrglass{ + amount = 20; + pixel_x = -4; + pixel_y = 4 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled, +/area/horizon/engineering/storage_eva) "jya" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/fake_object{ @@ -66777,17 +66726,20 @@ /obj/effect/decal/cleanable/cobweb, /turf/unsimulated/floor/monotile, /area/antag/raider) +"jyb" = ( +/turf/simulated/wall/shuttle/scc_space_ship/cardinal, +/area/horizon/crew/journalistoffice) +"jyc" = ( +/obj/structure/shuttle_part/scc/mining{ + icon_state = "7,9" + }, +/turf/simulated/floor/plating, +/area/horizon/shuttle/mining) "jye" = ( /obj/structure/bed/stool/padded/black, /obj/effect/floor_decal/industrial/outline/grey, /turf/simulated/floor/tiled/dark/full, /area/horizon/security/armoury) -"jyg" = ( -/obj/structure/trash_pile, -/obj/effect/floor_decal/industrial/outline/grey, -/obj/machinery/alarm/north, -/turf/simulated/floor/plating, -/area/maintenance/research_port) "jyk" = ( /obj/effect/floor_decal/corner/beige{ dir = 5 @@ -66804,22 +66756,22 @@ }, /turf/simulated/floor/tiled/white, /area/horizon/security/forensic_laboratory) -"jyl" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/light{ - dir = 8 +"jyn" = ( +/obj/effect/floor_decal/spline/fancy/wood/corner, +/turf/simulated/floor/wood, +/area/horizon/service/chapel/main) +"jyq" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 1 }, -/turf/simulated/floor/carpet, -/area/horizon/security/head_of_security) -"jys" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 }, -/obj/item/material/shard{ - icon_state = "small" +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 }, -/turf/simulated/floor/plating, -/area/maintenance/wing/cargo_compartment) +/turf/simulated/floor/tiled, +/area/horizon/engineering/break_room) "jyv" = ( /obj/effect/floor_decal/corner/red{ dir = 6 @@ -66847,24 +66799,23 @@ /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" +"jyF" = ( +/obj/structure/cable{ + icon_state = "1-2" }, -/turf/simulated/wall/shuttle/scc, -/area/shuttle/quark/cargo_hold) -"jyH" = ( -/obj/effect/floor_decal/corner_wide/purple{ - dir = 9 - }, -/obj/effect/floor_decal/corner_wide/purple{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/firedoor, /obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/white, -/area/rnd/xenoarch_atrium) +/obj/machinery/atmospherics/pipe/simple/hidden/aux, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/door/airlock/maintenance_hatch{ + dir = 1; + req_one_access = list(12) + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/main/port) "jyJ" = ( /obj/structure/window/reinforced{ dir = 8 @@ -66879,38 +66830,28 @@ }, /turf/simulated/floor/tiled/dark, /area/shuttle/merchant) -"jyM" = ( -/obj/structure/lattice, -/obj/structure/railing/mapped, -/obj/structure/railing/mapped{ - dir = 4 +"jyL" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 10 }, -/turf/simulated/open, -/area/horizon/hallway/deck_three/primary/starboard) -"jyQ" = ( -/obj/structure/platform_deco/ledge, -/turf/simulated/open, -/area/operations/office) -"jyS" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/structure/cable{ +/obj/machinery/atmospherics/pipe/simple/hidden/aux, +/obj/structure/cable/green{ icon_state = "1-4" }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/maintenance/aft) +/turf/simulated/floor/tiled/dark, +/area/horizon/command/bridge/aibunker) +"jyR" = ( +/obj/effect/floor_decal/spline/fancy/wood/corner{ + dir = 8 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/horizon/service/dining_hall) "jyT" = ( /obj/machinery/door/airlock/hatch{ dir = 1; @@ -66918,35 +66859,15 @@ }, /turf/simulated/floor/wood, /area/merchant_station) -"jyX" = ( -/obj/structure/cable/green{ - icon_state = "4-8" +"jyW" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 10 }, -/obj/effect/floor_decal/corner/brown{ - dir = 5 +/obj/structure/window/reinforced{ + dir = 1 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/newscaster/north, -/turf/simulated/floor/tiled, -/area/hangar/operations) -"jza" = ( -/obj/structure/plasticflaps/airtight{ - dir = 4 - }, -/obj/machinery/door/airlock/freezer{ - dir = 4; - name = "Freezer"; - req_access = list(28) - }, -/obj/machinery/door/firedoor, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/full, -/area/horizon/kitchen/freezer) +/turf/simulated/floor, +/area/horizon/hallway/primary/deck_3/port/docks) "jzd" = ( /obj/structure/shuttle/engine/propulsion{ icon_state = "propulsion_r"; @@ -66961,21 +66882,22 @@ }, /turf/unsimulated/floor/plating, /area/centcom/distress_prep) -"jze" = ( -/turf/simulated/wall/r_wall, -/area/horizon/crew_quarters/fitness/gym) -"jzi" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/obj/effect/floor_decal/corner_wide/yellow{ +"jzj" = ( +/obj/effect/floor_decal/corner/brown{ dir = 10 }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, /turf/simulated/floor/tiled, -/area/engineering/lobby) +/area/horizon/operations/office) "jzl" = ( /obj/effect/floor_decal/corner/dark_blue{ dir = 10 @@ -67001,27 +66923,19 @@ }, /turf/simulated/floor/tiled, /area/horizon/security/brig) -"jzp" = ( -/obj/structure/platform/ledge{ - dir = 1 +"jzr" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 }, -/obj/structure/railing/mapped, -/turf/simulated/open, -/area/operations/office) -"jzw" = ( -/turf/simulated/wall/shuttle/scc, -/area/shuttle/escape_pod/pod1) -"jzx" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 5 +/turf/simulated/floor/reinforced{ + blocks_air = 1; + density = 1; + name = "thruster mount" }, -/obj/machinery/alarm/north, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/port) -"jzF" = ( -/obj/structure/railing/mapped, -/turf/simulated/floor/tiled, -/area/engineering/atmos/storage) +/area/horizon/engineering/atmos/propulsion) +"jzB" = ( +/turf/simulated/wall/r_wall, +/area/horizon/maintenance/deck_2/wing/port) "jzG" = ( /obj/machinery/turretid{ ailock = 1; @@ -67046,154 +66960,107 @@ icon_state = "wood" }, /area/centcom/specops) -"jzI" = ( -/obj/effect/floor_decal/corner_wide/green{ - dir = 9 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/item/device/radio/intercom/west, -/turf/simulated/floor/tiled/white, -/area/medical/main_storage) -"jzL" = ( -/obj/effect/floor_decal/corner/yellow{ - dir = 1 - }, -/obj/effect/floor_decal/corner/yellow, +"jzH" = ( /obj/effect/floor_decal/corner/dark_blue{ - dir = 4 + dir = 10 }, -/obj/structure/engineer_maintenance/electric/wall, /turf/simulated/floor/tiled/dark, -/area/engineering/atmos) -"jzN" = ( -/obj/effect/floor_decal/industrial/outline/red, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard) -"jzT" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 4 +/area/horizon/weapons/grauwolf) +"jzR" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/structure/sign/flag/scc{ + pixel_y = 32 }, -/obj/structure/table/stone/marble, -/obj/random/pottedplant_small{ - pixel_x = 9; - pixel_y = 11 - }, -/turf/simulated/floor/marble/dark, -/area/bridge/minibar) -"jzV" = ( -/obj/structure/coatrack{ - pixel_x = 7; - pixel_y = 2 - }, -/obj/machinery/newscaster/east{ - dir = 8; - pixel_x = -11 - }, -/obj/machinery/light_switch{ - pixel_y = -19 - }, -/obj/structure/engineer_maintenance/electric, -/obj/structure/engineer_maintenance/pipe{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/heads/chief) -"jzW" = ( -/obj/machinery/suit_cycler/medical, -/turf/simulated/floor/tiled, -/area/medical/paramedic) +/turf/simulated/floor/tiled/dark/full, +/area/horizon/command/bridge/aibunker) "jAc" = ( /turf/simulated/floor/holofloor/tiled, /area/horizon/holodeck/source_battlemonsters) -"jAe" = ( -/obj/machinery/door/window/southleft{ - req_access = list(47); - name = "Secure Storage" +"jAf" = ( +/obj/effect/map_effect/window_spawner/full/reinforced/grille/firedoor, +/obj/structure/cable/green{ + icon_state = "0-8" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/carpet/rubber, -/area/rnd/lab) -"jAg" = ( -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/structure/cable{ - icon_state = "4-8" +/obj/structure/cable/green{ + icon_state = "1-8" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 +/obj/machinery/door/blast/regular/open{ + id = "AICore"; + name = "AI Core Blast Door" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 +/turf/simulated/floor/tiled/dark/full, +/area/horizon/ai/upload) +"jAr" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 8 }, -/turf/simulated/floor/plating, -/area/maintenance/research_port) +/obj/structure/bed/stool/chair/shuttle/double{ + pixel_x = 8 + }, +/obj/structure/bed/stool/chair/shuttle/double{ + pixel_x = -8 + }, +/obj/effect/floor_decal/spline/plain/black{ + dir = 1 + }, +/obj/machinery/alarm/east{ + req_one_access = list(11, 24, 47, 65) + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/shuttle/intrepid/main_compartment) +"jAs" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 5 + }, +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/obj/machinery/power/apc/low/north, +/turf/simulated/floor/tiled/dark, +/area/horizon/hangar/control) "jAw" = ( /obj/effect/decal/cleanable/dirt, /turf/unsimulated/floor/monotile, /area/antag/jockey) -"jAy" = ( -/obj/structure/shuttle_part/scc/scout{ - icon_state = "1,4" - }, -/turf/simulated/floor/plating, -/area/shuttle/canary) -"jAz" = ( -/obj/effect/floor_decal/corner/dark_blue/diagonal, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/bridge/supply) -"jAD" = ( -/obj/effect/floor_decal/corner/teal, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/structure/sign/double/map/left{ - desc = "A framed picture of a station."; - pixel_x = 16; - pixel_y = 32 - }, -/obj/machinery/light/small{ +"jAE" = ( +/turf/simulated/floor/tiled/full, +/area/horizon/hallway/primary/deck_3/port) +"jAJ" = ( +/obj/item/device/radio/intercom/east, +/obj/structure/disposalpipe/trunk{ dir = 8 }, -/turf/unsimulated/floor/dark, -/area/antag/actor) -"jAF" = ( -/obj/effect/floor_decal/corner_wide/yellow{ +/obj/machinery/disposal/small/west, +/obj/effect/floor_decal/corner/grey/diagonal, +/turf/simulated/floor/tiled/white, +/area/horizon/service/kitchen) +"jAM" = ( +/obj/machinery/atmospherics/pipe/tank/carbon_dioxide/scc_shuttle{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning/cee{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/shuttle/mining) +"jAT" = ( +/obj/effect/floor_decal/corner/dark_green{ dir = 5 }, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 1 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/effect/floor_decal/industrial/loading/yellow, /turf/simulated/floor/tiled, -/area/hallway/engineering) -"jAH" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - icon_state = "1-2" +/area/horizon/stairwell/starboard/deck_2) +"jAW" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/aux{ + dir = 4 }, -/obj/structure/lattice/catwalk/indoor, -/obj/structure/railing/mapped{ - dir = 8 +/obj/structure/cable{ + icon_state = "2-4" }, -/turf/simulated/open, -/area/operations/office) -"jAO" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/effect/floor_decal/corner/dark_green, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_two/fore) +/turf/simulated/floor/tiled/dark/full, +/area/horizon/command/bridge/aibunker) "jAX" = ( /obj/effect/floor_decal/corner/brown/diagonal, /obj/machinery/firealarm/north, @@ -67205,48 +67072,63 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/holodeck_control/beta) -"jAY" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 +"jBa" = ( +/obj/structure/cable{ + icon_state = "1-2" }, -/turf/simulated/floor/carpet/rubber, -/area/rnd/xenobiology/dissection) +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/alarm/east, +/turf/simulated/floor/plating, +/area/horizon/engineering/drone_fabrication) "jBb" = ( /obj/effect/floor_decal/corner/paleblue{ dir = 10 }, /turf/unsimulated/floor, /area/centcom/ferry) -"jBh" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable/green{ - icon_state = "1-2" +"jBf" = ( +/obj/effect/floor_decal/corner_wide/blue{ + dir = 5 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/lattice/catwalk/indoor/grate, -/turf/simulated/floor/plating, -/area/hangar/intrepid/interstitial) -"jBi" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 +/obj/effect/floor_decal/corner_wide/yellow{ + dir = 10 }, +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/alarm/south, +/turf/simulated/floor/reinforced, +/area/horizon/command/bridge/selfdestruct) +"jBg" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/random/junk, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/hangar/starboard) +"jBq" = ( +/obj/structure/cable/green{ + icon_state = "4-8" }, /obj/structure/cable/green{ - icon_state = "2-4" + icon_state = "2-8" }, -/obj/effect/floor_decal/spline/fancy/wood/corner, -/turf/simulated/floor/wood, -/area/horizon/crew_quarters/lounge/bar) -"jBl" = ( -/obj/effect/floor_decal/corner/dark_blue/full, -/obj/effect/map_effect/window_spawner/full/reinforced/polarized/firedoor{ - id = "repb" +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/structure/cable/green{ + icon_state = "1-4" }, -/turf/simulated/floor/tiled, -/area/lawoffice/representative_two) +/obj/structure/disposalpipe/junction{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/hallway) "jBs" = ( /obj/effect/floor_decal/spline/fancy/wood/cee{ dir = 4 @@ -67260,6 +67142,22 @@ }, /turf/simulated/floor/wood, /area/horizon/security/meeting_room) +"jBt" = ( +/obj/machinery/shield_capacitor/multiz{ + anchored = 1 + }, +/obj/machinery/power/sensor{ + long_range = 1; + name = "Powernet Sensor - Shield Subgrid"; + name_tag = "Shield Subgrid" + }, +/obj/structure/cable/cyan, +/obj/effect/floor_decal/corner_wide/yellow{ + dir = 9 + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/shields) "jBu" = ( /obj/effect/floor_decal/corner/paleblue{ dir = 5 @@ -67269,19 +67167,6 @@ }, /turf/unsimulated/floor, /area/centcom/bar) -"jBw" = ( -/obj/structure/window/shuttle/scc_space_ship, -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/shutters/open{ - dir = 2; - id = "shutters_deck3_bridgesafety"; - name = "Safety Shutter" - }, -/obj/structure/grille/diagonal{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/bridge/minibar) "jBx" = ( /obj/turbolift_map_holder/scc_ship/primary, /turf/simulated/floor/plating, @@ -67295,37 +67180,69 @@ }, /turf/simulated/floor/holofloor/tiled, /area/horizon/holodeck/source_thunderdomecourt) +"jBA" = ( +/obj/random/junk, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/maintenance/deck_1/auxatmos) +"jBH" = ( +/obj/structure/closet/crate, +/obj/item/stack/material/steel{ + max_amount = 25 + }, +/obj/item/stack/rods/full, +/obj/item/stack/packageWrap, +/turf/simulated/floor/plating, +/area/horizon/engineering/reactor/indra/office) "jBK" = ( /obj/effect/floor_decal/corner/blue{ dir = 4 }, /turf/simulated/floor/tiled/white, /area/horizon/security/autopsy_laboratory) -"jBV" = ( -/obj/structure/bed/stool/padded/red, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/lino, -/area/horizon/crew_quarters/lounge/bar) -"jBY" = ( -/obj/effect/floor_decal/corner_wide/yellow/full{ +"jBR" = ( +/obj/effect/floor_decal/industrial/loading/yellow{ dir = 8 }, -/obj/item/modular_computer/console/preset/engineering{ +/turf/simulated/floor/tiled, +/area/horizon/maintenance/deck_2/wing/port/far) +"jBX" = ( +/obj/structure/lattice, +/obj/structure/cable/green{ + icon_state = "11-1" + }, +/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/zpipe/down/supply{ + dir = 1 + }, +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/structure/railing/mapped{ dir = 4 }, -/turf/simulated/floor/tiled/dark/full, -/area/storage/shields) -"jCb" = ( -/obj/effect/floor_decal/corner/mauve/diagonal, -/obj/machinery/alarm/north, +/turf/simulated/open, +/area/horizon/maintenance/deck_2/service/starboard) +"jCa" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command{ + id_tag = "consular_office_b"; + name = "Consular Office B"; + req_access = list(72) + }, /turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora) +/area/horizon/command/bridge/upperdeck) "jCc" = ( /obj/effect/floor_decal/corner/grey{ dir = 9 @@ -67335,18 +67252,6 @@ }, /turf/simulated/floor/marble, /area/horizon/holodeck/source_trinary) -"jCf" = ( -/obj/machinery/light/small/emergency, -/obj/effect/floor_decal/industrial/warning{ - dir = 5 - }, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"jCg" = ( -/turf/simulated/wall/shuttle/unique/scc/mining{ - icon_state = "1,6" - }, -/area/shuttle/mining) "jCh" = ( /obj/effect/floor_decal/corner/paleblue{ dir = 5 @@ -67368,12 +67273,6 @@ }, /turf/unsimulated/floor, /area/centcom/bar) -"jCl" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/journalistoffice) "jCm" = ( /obj/effect/landmark{ name = "CCIAEscort" @@ -67382,6 +67281,23 @@ icon_state = "dark_preview" }, /area/centcom/control) +"jCn" = ( +/obj/effect/floor_decal/sign/c{ + pixel_x = -10; + pixel_y = 4 + }, +/obj/effect/floor_decal/spline/plain{ + dir = 1 + }, +/obj/effect/floor_decal/spline/plain, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/black{ + dir = 4 + }, +/turf/simulated/floor/carpet/rubber, +/area/horizon/tcommsat/chamber) "jCp" = ( /obj/effect/decal/fake_object{ icon = 'icons/misc/beach.dmi'; @@ -67404,21 +67320,40 @@ }, /turf/simulated/floor/tiled, /area/horizon/security/hallway) +"jCr" = ( +/obj/random/dirt_75, +/turf/simulated/floor, +/area/horizon/maintenance/deck_3/aft/starboard) "jCs" = ( /obj/structure/sign/directions/dock, /turf/unsimulated/wall/darkshuttlewall, /area/centcom/spawning) -"jCx" = ( -/obj/machinery/hologram/holopad, -/obj/effect/floor_decal/corner_wide/green{ - dir = 10 +"jCv" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 8 }, -/obj/effect/landmark/start{ - name = "Paramedic" +/obj/effect/floor_decal/industrial/warning{ + dir = 1 }, -/obj/machinery/firealarm/south, -/turf/simulated/floor/tiled/white, -/area/hallway/medical/upper) +/turf/simulated/floor/plating, +/area/horizon/rnd/xenoarch/atrium) +"jCz" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8"; + d1 = 4; + d2 = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_2/fore) "jCA" = ( /obj/machinery/door/airlock/centcom{ name = "The Big Empty"; @@ -67428,35 +67363,6 @@ icon_state = "dark_preview" }, /area/centcom/spawning) -"jCH" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 4 - }, -/obj/effect/floor_decal/spline/fancy{ - dir = 8 - }, -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/effect/floor_decal/corner_wide/white{ - dir = 6 - }, -/obj/machinery/light/floor{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark/full, -/area/hallway/primary/central_one) -"jCI" = ( -/obj/structure/table/standard, -/obj/item/device/flashlight/lamp{ - pixel_x = -11; - pixel_y = 1 - }, -/obj/effect/floor_decal/corner/beige{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/security/vacantoffice) "jCJ" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 4 @@ -67471,9 +67377,16 @@ icon_state = "wood" }, /area/centcom/evac) -"jCK" = ( -/turf/simulated/wall, -/area/engineering/atmos) +"jCL" = ( +/obj/structure/table/fancy/black, +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/platform{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/horizon/service/dining_hall) "jCX" = ( /obj/effect/map_effect/window_spawner/full/reinforced/grille/firedoor, /obj/structure/cable/green{ @@ -67497,101 +67410,90 @@ }, /turf/unsimulated/floor, /area/centcom/control) -"jDa" = ( -/obj/effect/landmark/entry_point/port{ - name = "port, ballast aft" +"jDb" = ( +/obj/structure/lattice/catwalk/indoor/grate/damaged{ + color = "#4c535b" }, -/turf/simulated/wall/shuttle/scc_space_ship/cardinal, -/area/maintenance/wing/port/far) +/obj/machinery/light/small/emergency{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/main/starboard) +"jDc" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/lattice/catwalk/indoor/grate/damaged{ + color = "#4c535b" + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/operations/starboard/far) "jDh" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/floor_decal/industrial/warning, /turf/unsimulated/floor, /area/antag/raider) -"jDj" = ( -/obj/effect/landmark/entry_point/fore{ - name = "fore, deck 3 port docks" - }, -/turf/simulated/wall/shuttle/scc_space_ship/cardinal, -/area/horizon/hallway/deck_three/primary/port/docks) -"jDk" = ( -/turf/simulated/wall/shuttle/scc_space_ship/cardinal, -/area/crew_quarters/heads/cmo) -"jDl" = ( -/obj/structure/table/standard, -/obj/effect/floor_decal/spline/plain/cee{ - dir = 4 - }, -/obj/machinery/button/remote/blast_door{ - dir = 5; - id = "shutters_deck2_workshopdesk"; - name = "Machinist Workshop Desk Shutters"; - pixel_x = -7; - pixel_y = 3 - }, -/obj/machinery/button/remote/blast_door{ - dir = 5; - id = "mech_bay_shutter"; - name = "Machinist Bay Shutters"; - pixel_x = 3; - pixel_y = 3 - }, -/turf/simulated/floor/carpet/rubber, -/area/operations/lower/machinist) -"jDq" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/structure/table/standard, -/obj/machinery/cell_charger{ - pixel_y = -4 - }, -/obj/machinery/recharger{ - pixel_x = -6; - pixel_y = 10 - }, -/obj/machinery/recharger{ - pixel_x = 6; - pixel_y = 10 - }, -/turf/simulated/floor/tiled, -/area/assembly/chargebay) -"jDs" = ( -/obj/item/device/radio/intercom/south, -/obj/machinery/camera/network/supply{ - c_tag = "Operations - Lower Warehouse 4"; - dir = 1 - }, -/obj/vehicle/train/cargo/trolley, -/obj/effect/floor_decal/corner/brown{ - dir = 10 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled, -/area/operations/storage) -"jDz" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/shutters/open{ - dir = 2; - id = "lounge_window_shutters"; - name = "Lounge Window Shutter" - }, -/obj/structure/grille, -/obj/structure/window/shuttle/scc_space_ship, -/turf/simulated/floor/plating, -/area/horizon/crew_quarters/lounge/bar) "jDD" = ( /obj/effect/floor_decal/industrial/warning, /obj/structure/railing/mapped, /obj/item/hullbeacon/red, /turf/simulated/floor/reinforced/airless, /area/horizon/exterior) +"jDE" = ( +/obj/structure/bookcase/libraryspawn/fiction, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/service/library) +"jDG" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 6 + }, +/obj/structure/displaycase/adhomai_map, +/obj/machinery/button/remote/blast_door{ + id = "shutters_deck3_captain"; + name = "External Shutters"; + pixel_y = -18 + }, +/turf/simulated/floor/wood, +/area/horizon/command/heads/captain) +"jDJ" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner/dark_green{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/horizon/engineering/hallway/fore) "jDL" = ( /obj/effect/floor_decal/spline/plain/corner{ dir = 4 }, /turf/unsimulated/floor, /area/antag/mercenary) +"jDM" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/atmos/propulsion) +"jDN" = ( +/obj/effect/floor_decal/corner/purple{ + dir = 6 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/service/custodial/disposals/deck_1) +"jDO" = ( +/obj/structure/window/reinforced, +/obj/machinery/chemical_dispenser/full, +/turf/simulated/floor/tiled/dark, +/area/horizon/rnd/xenoarch/atrium) "jDT" = ( /obj/effect/floor_decal/corner/grey/diagonal{ dir = 4 @@ -67601,42 +67503,53 @@ }, /turf/unsimulated/floor, /area/centcom/holding) -"jDU" = ( -/obj/machinery/conveyor{ - dir = 8; - id = "warehousetomail" +"jDW" = ( +/obj/structure/cable/green{ + icon_state = "4-8" }, -/obj/effect/floor_decal/corner/brown{ - dir = 9 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled, -/area/operations/storage) -"jDV" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 }, -/turf/simulated/floor/tiled/full, -/area/horizon/hallway/deck_two/fore) +/obj/structure/disposalpipe/junction{ + dir = 8 + }, +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor, +/area/horizon/hallway/primary/deck_3/starboard) "jDX" = ( /obj/effect/landmark{ name = "Holocarp Spawn Random" }, /turf/simulated/floor/holofloor/space, /area/horizon/holodeck/source_space) -"jEf" = ( -/obj/effect/floor_decal/corner/yellow/full, -/obj/structure/sign/nosmoking_1{ - pixel_y = -32 +"jDY" = ( +/obj/effect/floor_decal/corner/dark_green, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_3/central) +"jEa" = ( +/obj/machinery/door/airlock/command{ + dir = 1; + id_tag = "hra_room"; + name = "Human Resources Meeting Room"; + req_one_access = list(19,38,72) }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/table/standard, -/turf/simulated/floor/tiled/dark, -/area/engineering/storage/tech) -"jEg" = ( -/obj/effect/map_effect/window_spawner/full/borosilicate/reinforced/firedoor, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology) +/obj/machinery/door/firedoor, +/obj/effect/map_effect/door_helper/unres, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/horizon/command/bridge/cciaroom) +"jEc" = ( +/obj/machinery/conveyor{ + dir = 1; + id = "QMLoad" + }, +/turf/simulated/floor/tiled, +/area/horizon/operations/loading) "jEj" = ( /obj/structure/toilet{ dir = 8 @@ -67652,78 +67565,69 @@ }, /turf/simulated/floor, /area/tdome/tdome2) -"jEx" = ( -/turf/simulated/wall/shuttle/scc_space_ship/cardinal, -/area/hangar/operations) -"jEz" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/visible/green{ - dir = 6 - }, -/obj/structure/window/shuttle/scc_space_ship/cardinal, +"jEq" = ( +/obj/machinery/light/small/emergency, +/obj/structure/lattice/catwalk/indoor/grate/dark, /turf/simulated/floor/plating, -/area/engineering/engine_room/turbine) -"jEF" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/firealarm/east, -/obj/structure/reagent_dispensers/fueltank, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/storage_hard) -"jEG" = ( -/obj/effect/floor_decal/corner_wide/purple{ - dir = 8 - }, -/obj/effect/floor_decal/corner_wide/purple{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/junction{ - dir = 8; - icon_state = "pipe-j2" - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/alarm/north, -/turf/simulated/floor/tiled/white, -/area/rnd/xenoarch_atrium) +/area/horizon/maintenance/deck_1/wing/starboard) +"jED" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/pipedispenser, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/main/port) "jEH" = ( /obj/effect/floor_decal/industrial/outline/yellow, /obj/structure/closet/crate/drop, /obj/random/highvalue/no_weapon, /turf/simulated/floor/tiled, /area/merchant_station/warehouse) +"jEI" = ( +/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/horizon/hangar/auxiliary) "jEK" = ( /obj/effect/shuttle_landmark/horizon/exterior/deck_3/aft, /turf/template_noop, /area/template_noop) -"jEP" = ( -/turf/simulated/wall/r_wall, -/area/engineering/engine_waste) -"jES" = ( -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/structure/cable/green{ - icon_state = "4-8"; - d1 = 4; - d2 = 8 +"jEN" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/horizon/rnd/xenobiology/xenoflora) +"jEV" = ( +/obj/structure/grille, +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id = "bridge blast"; + name = "Bridge Blast Doors"; + opacity = 0 }, -/turf/simulated/floor/plating, -/area/maintenance/wing/cargo_compartment) -"jEU" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/effect/floor_decal/spline/plain{ - dir = 1 +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + icon_state = "1-4" }, /obj/structure/cable/green{ - icon_state = "4-8" + icon_state = "0-4" }, -/turf/simulated/floor/carpet/rubber, -/area/tcommsat/entrance) +/obj/machinery/door/blast/shutters/open{ + dir = 4; + id = "shutters_deck3_bridgesafety"; + name = "Safety Shutter" + }, +/obj/structure/window/shuttle/scc_space_ship, +/obj/machinery/door/blast/shutters/open{ + dir = 4; + id = "conferencesafetyshutters"; + name = "Safety Shutter" + }, +/turf/simulated/floor, +/area/horizon/command/bridge/meeting_room) "jEX" = ( /obj/structure/table/standard, /obj/item/paper_bin{ @@ -67739,63 +67643,6 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/security/interrogation/monitoring) -"jEZ" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/effect/floor_decal/corner/black{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/operations/lower/machinist) -"jFa" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/door/airlock/engineering{ - dir = 1; - name = "Deck 1 Civilian Substation"; - req_one_access = list(11,24) - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/full, -/area/maintenance/substation/hangar) -"jFb" = ( -/obj/machinery/atmospherics/pipe/simple/visible/black, -/obj/structure/shuttle/engine/heater{ - dir = 1 - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/structure/railing/mapped, -/turf/simulated/floor/plating, -/area/engineering/atmos/propulsion) -"jFc" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/obj/structure/lattice/catwalk/indoor/grate, -/turf/simulated/floor/plating, -/area/rnd/hallway) "jFf" = ( /obj/effect/floor_decal/corner/dark_blue/full{ dir = 8 @@ -67817,41 +67664,49 @@ }, /turf/unsimulated/floor/marble, /area/antag/wizard) -"jFn" = ( -/turf/simulated/wall, -/area/maintenance/wing/port) -"jFu" = ( +"jFo" = ( +/obj/effect/floor_decal/corner/black{ + dir = 6 + }, +/obj/effect/floor_decal/industrial/loading/yellow{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/hangar/auxiliary) +"jFs" = ( +/obj/machinery/mineral/stacking_machine{ + id = "horizon_stacking_3"; + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning/full, +/turf/simulated/floor/plating, +/area/horizon/operations/mining_main/refinery) +"jFt" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/light/spot{ + dir = 8 + }, +/obj/effect/floor_decal/corner/dark_green{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/horizon/hangar/intrepid) +"jFy" = ( /obj/structure/railing/mapped{ dir = 8 }, -/obj/effect/floor_decal/spline/plain{ - dir = 8 +/obj/structure/railing/mapped, +/obj/structure/platform/ledge{ + dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 +/obj/structure/platform/ledge{ + dir = 1 }, -/turf/simulated/floor/lino, -/area/horizon/crew_quarters/lounge/bar) -"jFw" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 6 - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/vending/frontiervend, -/turf/simulated/floor/tiled, -/area/security/checkpoint2) -"jFx" = ( -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/obj/structure/disposalpipe/segment{ - icon_state = "pipe-c" - }, -/obj/effect/floor_decal/spline/plain/lime{ - dir = 5 - }, -/turf/simulated/floor/tiled/dark, -/area/horizon/hydroponics/garden) +/turf/simulated/open, +/area/horizon/hallway/primary/deck_3/central) "jFB" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -67865,15 +67720,6 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/holodeck_control/beta) -"jFC" = ( -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/structure/railing/mapped, -/obj/structure/flora/ausbushes/ywflowers, -/obj/structure/flora/ausbushes/brflowers, -/turf/simulated/floor/grass/no_edge, -/area/rnd/hallway) "jFF" = ( /obj/machinery/door/airlock/external{ dir = 1; @@ -67886,78 +67732,74 @@ }, /turf/unsimulated/floor, /area/antag/raider) +"jFI" = ( +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/bluespace_drive) "jFL" = ( /mob/living/heavy_vehicle/premade/superheavy, /obj/machinery/mech_recharger, /turf/simulated/floor/shuttle/dark_red, /area/shuttle/hapt) -"jGa" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ +"jFR" = ( +/obj/structure/table/standard, +/obj/item/device/radio{ + pixel_x = -6 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark, +/area/horizon/maintenance/deck_2/wing/starboard/nacelle) +"jFT" = ( +/obj/structure/flora/ausbushes/sparsegrass, +/obj/machinery/alarm/west, +/turf/simulated/floor/grass/no_edge, +/area/horizon/service/hydroponics/lower) +"jFU" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/rnd/lab) +"jFV" = ( +/obj/machinery/power/apc/low/north, +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/effect/floor_decal/spline/plain/yellow{ dir = 9 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/full, -/area/bridge/upperdeck) +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/reactor/indra/smes) +"jFW" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/light/small/emergency{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/operations/starboard/far) +"jGb" = ( +/obj/machinery/light/spot{ + dir = 8 + }, +/obj/structure/closet/emcloset, +/obj/effect/floor_decal/industrial/outline/emergency_closet, +/turf/simulated/floor/tiled, +/area/horizon/hangar/operations) "jGc" = ( /obj/effect/floor_decal/spline/fancy/wood, /turf/unsimulated/floor/wood, /area/antag/burglar) -"jGe" = ( -/obj/effect/floor_decal/corner_wide/yellow/full{ - dir = 1 - }, -/obj/machinery/camera/network/engineering{ - c_tag = "Engineering - Hallway 6"; - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/engineering/rust) -"jGf" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small/emergency{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard/deck1) -"jGg" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 9 - }, -/obj/structure/disposalpipe/junction{ - dir = 8; - icon_state = "pipe-j2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/wood, -/area/bridge/minibar) -"jGl" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/platform, -/obj/machinery/computer/operating{ - name = "Xenobiology Operating Computer"; - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology/dissection) "jGn" = ( /obj/structure/bed/stool/chair/office/hover{ can_buckle = 0; @@ -67971,6 +67813,14 @@ }, /turf/simulated/open/airless, /area/template_noop) +"jGs" = ( +/obj/machinery/door/airlock/multi_tile/glass, +/obj/machinery/door/firedoor/multi_tile, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/full, +/area/horizon/hangar/intrepid/interstitial) "jGw" = ( /obj/machinery/button/remote/blast_door{ id = "crescent_checkpoint_access"; @@ -68003,15 +67853,6 @@ }, /turf/unsimulated/floor/rubber_carpet, /area/centcom/control) -"jGx" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 10 - }, -/obj/structure/sign/greencross/small{ - pixel_y = -32 - }, -/turf/simulated/floor/tiled, -/area/engineering/lobby) "jGA" = ( /obj/structure/table/rack, /obj/effect/floor_decal/industrial/outline/yellow, @@ -68021,12 +67862,26 @@ }, /turf/unsimulated/floor/dark_monotile, /area/antag/actor) -"jGM" = ( -/obj/machinery/power/breakerbox/activated{ - RCon_tag = "Service Substation" +"jGD" = ( +/obj/machinery/light{ + dir = 4 }, -/turf/simulated/floor/plating, -/area/maintenance/substation/civilian_west) +/obj/random/pottedplant, +/obj/effect/floor_decal/corner_wide/green/full{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/hallway) +"jGE" = ( +/turf/simulated/wall/r_wall, +/area/horizon/engineering/shields) +"jGJ" = ( +/obj/machinery/firealarm/east, +/obj/effect/floor_decal/corner/dark_blue{ + dir = 6 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/weapons/grauwolf) "jGN" = ( /obj/effect/floor_decal/corner/red/diagonal, /obj/effect/floor_decal/spline/fancy{ @@ -68034,6 +67889,10 @@ }, /turf/simulated/floor/tiled/white, /area/centcom/shared_dream) +"jGO" = ( +/obj/effect/floor_decal/corner/dark_green/diagonal, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_2/central) "jGP" = ( /obj/machinery/door/airlock/external{ dir = 4; @@ -68062,94 +67921,52 @@ }, /turf/simulated/floor/grass/no_edge, /area/centcom/spawning) -"jGW" = ( -/obj/structure/table/rack, -/obj/item/storage/box/monkeycubes{ - pixel_x = 5; - pixel_y = -2 - }, -/obj/item/storage/box/monkeycubes, -/obj/item/storage/box/monkeycubes{ - pixel_x = -5; - pixel_y = 2 - }, -/obj/item/reagent_containers/spray/cleaner{ - pixel_x = -4; - pixel_y = -3 - }, -/obj/structure/window/reinforced{ +"jGV" = ( +/obj/structure/platform_stairs/south_north_solo, +/obj/structure/platform{ dir = 4 }, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenoarch_atrium) -"jHe" = ( -/obj/effect/map_effect/window_spawner/full/reinforced/polarized/grille/firedoor{ - id = "consularA" - }, -/obj/structure/cable/green{ - icon_state = "0-2" - }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/port/far) +"jHa" = ( +/turf/simulated/wall, +/area/horizon/medical/psych) +"jHf" = ( /obj/structure/cable/green{ icon_state = "2-8" }, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "bridge blast"; - name = "Bridge Blast Doors"; - opacity = 0 - }, -/turf/simulated/floor, -/area/lawoffice/consular) -"jHm" = ( -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" +/turf/simulated/wall/shuttle/scc_space_ship/cardinal, +/area/horizon/command/bridge/controlroom) +"jHg" = ( +/obj/structure/sign/emergency/evacuation{ + dir = 8; + pixel_x = -32 }, /turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/starboard) -"jHp" = ( -/obj/structure/bed/stool/chair/shuttle{ +/area/horizon/hangar/operations) +"jHq" = ( +/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, +/obj/machinery/door/blast/shutters/open{ + id = "shutters_deck2_hydroponicswindows"; + name = "Window Shutter" + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/service/hydroponics) +"jHv" = ( +/obj/machinery/atmospherics/portables_connector{ dir = 8 }, -/obj/effect/floor_decal/corner/dark_blue/diagonal, -/obj/effect/floor_decal/spline/plain/black{ - dir = 4 - }, -/obj/machinery/firealarm/east, -/turf/simulated/floor/tiled/dark, -/area/shuttle/intrepid/junction_compartment) -"jHu" = ( -/obj/structure/tank_wall{ - icon_state = "m-8" - }, -/obj/effect/floor_decal/industrial/warning{ +/obj/effect/floor_decal/corner/yellow, +/obj/effect/floor_decal/corner/dark_blue{ dir = 8 }, -/turf/simulated/floor/plating, -/area/engineering/atmos) -"jHw" = ( -/obj/effect/floor_decal/spline/fancy, -/obj/machinery/computer/ship/sensors{ - dir = 1 +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/sign/directions/prop{ + dir = 4; + pixel_y = -22 }, -/turf/simulated/floor/carpet/rubber, -/area/bridge/controlroom) -"jHx" = ( -/obj/machinery/atmospherics/pipe/simple/visible/black{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/engineering/engine_room) +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/atmos) "jHC" = ( /obj/structure/table/rack, /obj/effect/map_effect/mecha_part_spawner/chassis, @@ -68159,107 +67976,129 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/unsimulated/floor/monotile, /area/antag/jockey) -"jHG" = ( -/obj/effect/floor_decal/industrial/warning{ +"jHI" = ( +/obj/structure/disposalpipe/segment{ + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_3/central) +"jHK" = ( +/turf/simulated/wall/r_wall, +/area/horizon/engineering/drone_fabrication) +"jHQ" = ( +/obj/machinery/newscaster{ + dir = 4; + pixel_x = 14 + }, +/obj/structure/disposalpipe/segment{ + icon_state = "pipe-c" + }, +/obj/effect/floor_decal/corner/paleblue/full{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 }, +/obj/random/pottedplant, /obj/machinery/light{ - dir = 8 + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/horizon/command/bridge/cciaroom/lounge) +"jHR" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/corner/dark_blue/diagonal, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/dark, +/area/horizon/ai/upload_foyer) +"jHT" = ( +/obj/effect/floor_decal/industrial/warning/corner, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" }, -/turf/simulated/floor/plating, -/area/hangar/intrepid) -"jHU" = ( /obj/machinery/atmospherics/pipe/simple/hidden/fuel{ dir = 5 }, -/obj/structure/shuttle_part/scc/scout{ - icon_state = "2,8"; - opacity = 1; - outside_part = 0 - }, -/turf/simulated/floor/reinforced{ - blocks_air = 1; - density = 1; - name = "thruster mount"; - opacity = 1 - }, -/area/shuttle/canary) -"jIa" = ( -/obj/effect/floor_decal/spline/fancy/wood{ +/obj/structure/bed/handrail{ dir = 1 }, -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/machinery/media/jukebox/audioconsole/wall{ - pixel_y = 32 +/turf/simulated/floor/tiled/dark, +/area/horizon/shuttle/intrepid/engineering) +"jHW" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 10 }, -/turf/simulated/floor/wood, -/area/horizon/bar) -"jIf" = ( -/obj/structure/viewport/zavod, -/turf/template_noop, -/area/horizon/grauwolf) +/obj/effect/floor_decal/industrial/warning, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/rnd/xenobiology/xenoflora) +"jHX" = ( +/obj/machinery/bodyscanner{ + dir = 4 + }, +/obj/effect/floor_decal/corner_wide/purple{ + dir = 9 + }, +/obj/effect/floor_decal/corner_wide/purple/diagonal, +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/test_range) +"jHY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor/plating, +/area/horizon/operations/lobby) "jIi" = ( /obj/machinery/iv_drip, /obj/effect/floor_decal/industrial/outline/red, /turf/unsimulated/floor, /area/centcom/legion/hangar5) -"jIj" = ( -/obj/effect/floor_decal/corner/brown{ - dir = 9 +"jIk" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 10 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/intrepid/main_compartment) -"jIp" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/turf/simulated/floor/plating, -/area/engineering/atmos/air) -"jIz" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/structure/lattice/catwalk/indoor/grate, -/turf/simulated/floor/plating, -/area/engineering/lobby) -"jID" = ( -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/simple/visible/purple, -/obj/effect/floor_decal/corner/yellow{ - dir = 1 - }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/engineering/atmos) -"jIH" = ( -/obj/effect/floor_decal/corner_wide/green/full{ +/obj/effect/floor_decal/spline/plain/red{ dir = 1 }, +/obj/effect/floor_decal/spline/plain/orange, +/turf/simulated/floor/tiled, +/area/horizon/service/hydroponics) +"jIt" = ( /obj/machinery/light{ dir = 1 }, -/obj/structure/bed/padded, -/obj/item/bedsheet/medical, -/obj/structure/curtain/open/medical, -/turf/simulated/floor/tiled/white, -/area/medical/exam) -"jII" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" +/turf/simulated/floor/bluegrid{ + name = "cooled mainframe floor"; + temperature = 278 }, -/turf/simulated/floor/tiled/white, -/area/rnd/chemistry) +/area/horizon/ai/chamber) "jIJ" = ( /obj/effect/floor_decal/corner/lime/diagonal{ dir = 8 @@ -68288,6 +68127,31 @@ /obj/item/storage/box/gloves, /turf/simulated/floor/tiled/dark, /area/shuttle/mercenary) +"jIK" = ( +/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/brown/full{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/horizon/operations/warehouse) +"jIL" = ( +/turf/simulated/wall, +/area/horizon/medical/hallway/upper) +"jIN" = ( +/obj/structure/stairs_railing{ + dir = 4; + pixel_x = -32 + }, +/turf/simulated/floor/tiled, +/area/horizon/operations/warehouse) "jIO" = ( /obj/effect/floor_decal/corner/dark_blue{ dir = 10 @@ -68297,10 +68161,6 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/security/meeting_room) -"jIQ" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/simulated/floor, -/area/maintenance/security_port) "jIU" = ( /obj/structure/bed/stool/chair/shuttle{ dir = 4 @@ -68310,119 +68170,76 @@ }, /turf/simulated/floor/tiled/dark, /area/shuttle/mercenary) -"jIW" = ( -/obj/effect/floor_decal/industrial/outline/service, -/obj/machinery/seed_extractor, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/hydroponics) -"jIX" = ( -/turf/simulated/floor/tiled/full, -/area/hallway/primary/central_one) -"jIY" = ( -/obj/effect/floor_decal/corner_wide/paleblue{ - dir = 9 +"jJa" = ( +/obj/effect/floor_decal/spline/plain/cee{ + dir = 1 }, -/turf/simulated/floor/tiled/white, -/area/hallway/medical/upper) -"jJb" = ( -/turf/simulated/floor/tiled/dark, -/area/engineering/gravity_gen) -"jJm" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/sign/gtr, -/turf/simulated/floor/tiled/white, -/area/medical/gen_treatment) -"jJp" = ( -/obj/structure/closet/crate, -/obj/effect/floor_decal/corner/brown{ +/turf/simulated/floor/carpet/rubber, +/area/horizon/hallway/primary/deck_2/central) +"jJc" = ( +/obj/effect/floor_decal/spline/fancy/wood{ dir = 10 }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled, -/area/operations/storage) -"jJq" = ( -/obj/effect/floor_decal/corner/green/diagonal, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 +/turf/simulated/floor/wood, +/area/horizon/command/bridge/meeting_room) +"jJe" = ( +/obj/structure/railing/mapped, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/light/small/emergency{ + dir = 1 }, -/obj/structure/cable/green{ - icon_state = "4-8" +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/research) +"jJh" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/structure/tank_wall/nitrogen{ + icon_state = "n15" }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/simulated/floor/plating, +/area/horizon/engineering/atmos/air) +"jJr" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 6 }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 +/obj/effect/map_effect/marker/airlock{ + frequency = 1001; + master_tag = "airlock_horizon_deck_3_aft_1"; + name = "airlock_horizon_deck_3_aft_1" }, -/turf/simulated/floor/tiled/white, -/area/horizon/crew_quarters/washroom/central) +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor, +/area/horizon/maintenance/deck_3/aft/port/far) "jJw" = ( /obj/effect/floor_decal/corner/lime, /turf/unsimulated/floor{ icon_state = "dark_preview" }, /area/centcom/holding) -"jJA" = ( -/obj/effect/floor_decal/spline/fancy{ - dir = 6 +"jJy" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + icon_state = "1-2" }, -/obj/item/modular_computer/console/preset/engineering{ - dir = 1 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/airlock/medical{ + dir = 1; + id_tag = "EXdoor1"; + name = "Examination Room"; + req_access = list(5) }, -/obj/structure/railing/mapped, -/obj/structure/railing/mapped{ +/turf/simulated/floor/tiled/full, +/area/horizon/medical/exam) +"jJJ" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance_hatch{ dir = 4 }, -/turf/simulated/floor/carpet/rubber, -/area/bridge/controlroom) -"jJE" = ( -/turf/simulated/wall, -/area/maintenance/engineering_ladder) -"jJF" = ( -/obj/structure/lattice/catwalk/indoor/grate/damaged{ - color = "#4c535b" - }, -/turf/simulated/floor/plating, -/area/maintenance/wing/port/far) -"jJG" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/effect/floor_decal/corner/dark_green{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/central) -"jJM" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, /obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/machinery/light/small/emergency{ - dir = 8 - }, /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) +/area/horizon/maintenance/deck_2/wing/starboard/far) "jJQ" = ( /obj/effect/floor_decal/industrial/warning{ dir = 1 @@ -68430,72 +68247,57 @@ /obj/effect/decal/cleanable/dirt, /turf/unsimulated/floor, /area/antag/jockey) -"jJX" = ( -/obj/structure/table/standard, -/obj/item/paper_scanner{ - pixel_x = -7 - }, -/obj/item/paper_bin, -/obj/item/pen/black, -/obj/effect/floor_decal/corner/mauve/full{ +"jJU" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/obj/machinery/firealarm/east, -/turf/simulated/floor/tiled/white, -/area/rnd/telesci) -"jJY" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, /obj/structure/cable/green{ - icon_state = "1-8" + icon_state = "4-8" }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 10 +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" }, -/turf/simulated/floor/wood, -/area/horizon/cafeteria) -"jKc" = ( -/obj/structure/shuttle_part/scc_space_ship{ - icon_state = "d3-5" - }, -/turf/simulated/wall/r_wall, -/area/maintenance/wing/port/far) +/turf/simulated/floor/tiled/white, +/area/horizon/command/heads/cmo) "jKe" = ( /obj/structure/bed/stool/chair/sofa/left/purple, /obj/effect/floor_decal/spline/fancy/wood, /turf/simulated/floor/wood/maple, /area/horizon/holodeck/source_cafe) +"jKf" = ( +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock{ + dir = 4; + name = "Emergency Supplies Closet"; + req_one_access = list(26,29,31,48,67,70) + }, +/obj/effect/map_effect/door_helper/unres{ + dir = 4 + }, +/turf/simulated/floor/tiled/full, +/area/horizon/maintenance/deck_2/wing/port) "jKh" = ( /obj/structure/bed/stool/chair/holochair{ dir = 8 }, /turf/simulated/floor/holofloor/carpet, /area/horizon/holodeck/source_meetinghall) -"jKl" = ( -/obj/effect/floor_decal/corner/green/diagonal, -/obj/structure/toilet{ - dir = 1; - pixel_y = -1 - }, -/obj/machinery/button/remote/airlock{ - dir = 8; - id = "central_stall_1"; - name = "Stall Door Lock"; - pixel_x = -24; - specialfunctions = 4 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/horizon/crew_quarters/washroom/central) "jKp" = ( /obj/structure/cryofeed{ dir = 1 @@ -68504,20 +68306,6 @@ /obj/structure/lattice/catwalk/indoor/grate/dark, /turf/unsimulated/floor/plating, /area/centcom/holding) -"jKq" = ( -/obj/effect/floor_decal/industrial/outline/firefighting_closet, -/obj/structure/closet/firecloset{ - anchored = 1; - canbemoved = 1 - }, -/turf/simulated/floor/carpet/rubber, -/area/engineering/engine_room/rust) -"jKr" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) "jKs" = ( /obj/effect/floor_decal/spline/plain{ dir = 1 @@ -68529,56 +68317,207 @@ /obj/structure/flora/ausbushes/ppflowers, /turf/simulated/floor/exoplanet/grass/grove, /area/centcom/shared_dream) -"jKv" = ( -/obj/structure/sink{ - pixel_y = 24 - }, -/obj/effect/floor_decal/industrial/outline/security, -/turf/simulated/floor/tiled/dark/full, -/area/rnd/xenobiology) -"jKE" = ( -/obj/structure/disposalpipe/segment{ - icon_state = "pipe-c" +"jKt" = ( +/obj/effect/floor_decal/corner/mauve/diagonal, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 }, /turf/simulated/floor/tiled/white, -/area/medical/pharmacy) -"jKF" = ( +/area/horizon/rnd/lab) +"jKx" = ( +/obj/structure/table/standard, +/obj/item/stack/packageWrap, +/obj/item/device/destTagger, +/obj/item/device/hand_labeler, +/obj/item/stack/wrapping_paper, +/obj/effect/floor_decal/corner/grey/diagonal, +/obj/machinery/ringer/north{ + department = "Medbay"; + id = "medbay_ringer"; + req_access = list(5) + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/reception) +"jKz" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/operations/storage) -"jKM" = ( -/obj/structure/platform/ledge{ +/turf/simulated/floor/tiled/dark, +/area/horizon/hangar/auxiliary) +"jKA" = ( +/obj/machinery/power/apc/north, +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/obj/effect/floor_decal/corner/mauve{ + dir = 5 + }, +/obj/structure/engineer_maintenance/pipe{ + dir = 1 + }, +/obj/structure/engineer_maintenance/electric{ dir = 8 }, -/turf/simulated/open, -/area/horizon/hallway/deck_three/primary/central) -"jKO" = ( +/turf/simulated/floor/tiled, +/area/horizon/rnd/hallway) +"jKB" = ( +/obj/effect/floor_decal/spline/fancy/wood/cee{ + dir = 8 + }, +/obj/structure/flora/ausbushes/ppflowers, +/turf/simulated/floor/grass/no_edge, +/area/horizon/command/bridge/upperdeck) +"jKD" = ( +/obj/structure/bed/stool/chair/office/bridge/pilot, +/turf/simulated/floor/carpet/rubber, +/area/horizon/command/bridge/controlroom) +"jKH" = ( +/obj/structure/table/standard, +/obj/item/folder/yellow{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/device/hand_labeler{ + pixel_y = -5 + }, +/obj/effect/floor_decal/corner/yellow{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/horizon/engineering/reactor/indra/office) +"jKJ" = ( +/obj/structure/grille, +/obj/machinery/door/firedoor, +/obj/structure/window/shuttle/scc_space_ship/cardinal, +/obj/structure/cable/green, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id = "bridge blast"; + name = "Bridge Blast Doors"; + opacity = 0 + }, +/obj/machinery/door/blast/shutters{ + dir = 4; + id = "shutters_deck3_captain"; + name = "Safety Shutter" + }, +/turf/simulated/floor/plating, +/area/horizon/command/heads/captain) +"jKL" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume, +/obj/machinery/airlock_sensor{ + dir = 8; + pixel_x = 20; + pixel_y = -6 + }, +/obj/effect/map_effect/marker/airlock/docking{ + landmark_tag = "nav_horizon_dock_deck_3_port_2"; + master_tag = "airlock_horizon_dock_deck_3_port_2"; + name = "airlock_horizon_dock_deck_3_port_2" + }, +/obj/machinery/embedded_controller/radio/airlock/docking_port{ + dir = 8; + pixel_x = 20; + pixel_y = 6 + }, +/turf/simulated/floor/plating, +/area/horizon/hallway/primary/deck_3/starboard/docks) +"jKP" = ( /obj/structure/cable{ icon_state = "4-8" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable{ - icon_state = "1-4" +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/light/small/emergency{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/starboard) +"jKU" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 }, /obj/structure/lattice/catwalk/indoor/grate, /turf/simulated/floor/plating, -/area/hangar/auxiliary) -"jKT" = ( -/turf/simulated/wall/shuttle/scc_space_ship/cardinal, -/area/maintenance/wing/port/deck1) +/area/horizon/hallway/primary/deck_1/central) +"jKX" = ( +/obj/structure/table/reinforced/wood, +/obj/machinery/computer/guestpass{ + pixel_y = 27 + }, +/obj/item/paper_bin, +/obj/item/pen/blue{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/pen, +/obj/item/stamp/xo{ + pixel_x = 6; + pixel_y = 14 + }, +/obj/item/stamp/denied{ + pixel_y = 14; + pixel_x = -2 + }, +/turf/simulated/floor/carpet, +/area/horizon/command/heads/xo) +"jKY" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_2/central) "jLa" = ( /obj/item/stack/material/cyborg/steel, /turf/unsimulated/floor, /area/centcom/bar) -"jLd" = ( -/obj/effect/floor_decal/industrial/warning/corner, -/obj/effect/floor_decal/industrial/warning/corner{ +"jLb" = ( +/obj/structure/table/standard, +/obj/item/storage/box/beakers{ + pixel_x = 5; + pixel_y = 5 + }, +/obj/item/storage/box/syringes{ + pixel_y = 2; + pixel_x = -8 + }, +/obj/effect/floor_decal/corner/mauve/diagonal, +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/chemistry) +"jLf" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/light/small/emergency{ dir = 1 }, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/engine_room/rust) +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/operations/starboard/far) "jLh" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 4 @@ -68587,29 +68526,10 @@ /obj/item/device/flashlight/lantern, /turf/simulated/floor/holofloor/wood, /area/horizon/holodeck/source_sauna) -"jLm" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard/deck1) -"jLn" = ( -/obj/machinery/floodlight, -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/plating, -/area/maintenance/engineering) -"jLo" = ( -/obj/effect/floor_decal/corner_wide/purple{ - dir = 6 - }, -/obj/effect/floor_decal/corner_wide/purple{ - dir = 8 - }, +"jLk" = ( +/obj/machinery/alarm/west, /turf/simulated/floor/tiled/white, -/area/rnd/xenoarch_atrium) +/area/horizon/medical/surgery) "jLr" = ( /obj/structure/window/reinforced/crescent{ dir = 1 @@ -68619,36 +68539,70 @@ /obj/machinery/light, /turf/simulated/floor/grass/no_edge, /area/centcom/spawning) -"jLA" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 9 - }, -/obj/machinery/alarm/west, -/obj/structure/engineer_maintenance/electric, -/obj/structure/engineer_maintenance/pipe{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/storage/eva) -"jLD" = ( -/obj/effect/floor_decal/corner/yellow{ - dir = 10 - }, -/obj/structure/bed/stool/chair/office/dark{ +"jLu" = ( +/obj/structure/platform/ledge{ dir = 4 }, -/turf/simulated/floor/tiled, -/area/engineering/lobby) -"jLO" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 5 +/obj/structure/platform/ledge{ + dir = 1 }, -/turf/simulated/floor/tiled, -/area/bridge/controlroom) +/obj/structure/platform_deco/ledge{ + dir = 10 + }, +/obj/structure/railing/mapped, +/turf/simulated/open, +/area/horizon/medical/hallway/upper) +"jLw" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/port/near) +"jLB" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/vending/coffee, +/turf/simulated/floor/tiled/dark, +/area/horizon/hallway/primary/deck_3/starboard) +"jLH" = ( +/turf/simulated/wall/shuttle/scc_space_ship/cardinal, +/area/horizon/command/heads/captain) +"jLJ" = ( +/obj/structure/ladder{ + pixel_y = 10 + }, +/turf/simulated/open, +/area/horizon/maintenance/deck_3/bridge) +"jLN" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance{ + dir = 4; + req_access = list(12) + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/door/blast/regular/open{ + id = "hangarlockdown"; + name = "Hangar Lockdown" + }, +/turf/simulated/floor/tiled/full, +/area/horizon/maintenance/deck_1/hangar/starboard) "jLP" = ( /obj/effect/step_trigger/thrower/shuttle/north, /turf/template_noop, /area/template_noop) +"jLQ" = ( +/obj/effect/floor_decal/industrial/outline_door/yellow{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/arrow/yellow{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/maintenance/deck_2/wing/port/nacelle) "jLU" = ( /obj/structure/sign/greencross, /turf/simulated/wall/shuttle/space_ship/mercenary, @@ -68660,54 +68614,52 @@ color = "#792f27" }, /area/centcom/ferry) -"jLX" = ( -/turf/simulated/wall/r_wall, -/area/turret_protected/ai_upload_foyer) -"jMa" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/effect/floor_decal/spline/plain{ - dir = 4 +"jLW" = ( +/obj/effect/map_effect/window_spawner/full/reinforced/polarized/grille/firedoor{ + id = "consularB" }, -/obj/effect/floor_decal/spline/plain{ - dir = 8 +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id = "bridge blast"; + name = "Bridge Blast Doors"; + opacity = 0 + }, +/turf/simulated/floor, +/area/horizon/repoffice/consular_two) +"jMf" = ( +/obj/structure/cable/green{ + icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 + dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/turf/simulated/floor/tiled/full, +/area/horizon/operations/mining_main/refinery) +"jMl" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/white, -/area/horizon/kitchen) -"jMk" = ( -/obj/structure/bed/stool/chair/office/dark{ - dir = 8 +/area/horizon/rnd/xenobiology) +"jMt" = ( +/obj/structure/cable/green{ + icon_state = "1-2" }, -/turf/simulated/floor/carpet/red, -/area/horizon/library) -"jMo" = ( -/obj/structure/closet/emcloset, -/obj/effect/floor_decal/corner/dark_green{ - dir = 9 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/outline/emergency_closet, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_two) -"jMv" = ( -/obj/structure/table/wood, -/turf/simulated/floor/carpet, -/area/journalistoffice) -"jMx" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 8 - }, -/obj/machinery/hologram/holopad, -/turf/simulated/floor/wood, -/area/lawoffice/consular) +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor, +/area/horizon/maintenance/deck_3/aft/holodeck) "jMA" = ( /obj/machinery/door/blast/odin{ id = "hideout_access" @@ -68715,15 +68667,6 @@ /obj/effect/decal/cleanable/dirt, /turf/unsimulated/floor/monotile, /area/antag/raider) -"jMF" = ( -/obj/effect/floor_decal/spline/fancy/wood/cee, -/obj/structure/flora/ausbushes/ywflowers, -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/structure/window/reinforced, -/turf/simulated/floor/grass/no_edge, -/area/horizon/hallway/deck_three/primary/starboard) "jMG" = ( /obj/effect/floor_decal/industrial/warning{ dir = 8 @@ -68738,100 +68681,107 @@ }, /turf/unsimulated/floor/plating, /area/antag/mercenary) -"jMH" = ( -/obj/machinery/power/apc/east, -/obj/structure/cable/green{ - icon_state = "0-8" - }, -/obj/machinery/camera/network/research{ - c_tag = "Xenology Studies"; - dir = 8; - network = list("Research","Xeno_Bio") - }, -/obj/structure/table/standard, -/obj/effect/floor_decal/corner/mauve{ - dir = 6 - }, +"jMI" = ( +/obj/effect/floor_decal/industrial/outline/medical, +/obj/machinery/stasis_bed, /turf/simulated/floor/tiled/white, -/area/rnd/xenobiology/xenological) -"jMM" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 +/area/horizon/medical/icu) +"jMK" = ( +/obj/effect/floor_decal/corner/mauve/full{ + dir = 1 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/disposalpipe/junction{ + icon_state = "pipe-j2" }, /obj/structure/cable/green{ - icon_state = "1-4" - }, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/corner/dark_green{ - dir = 5 - }, -/obj/machinery/ringer_button{ - pixel_y = 29; - id = "consular_a_ringer"; - pixel_x = -32 + icon_state = "1-2" }, /turf/simulated/floor/tiled, -/area/bridge/upperdeck) -"jMT" = ( +/area/horizon/rnd/hallway/secondary) +"jMO" = ( +/obj/structure/shuttle_part/scc_space_ship{ + icon_state = "d3-4-f" + }, +/turf/simulated/wall, +/area/horizon/engineering/drone_fabrication) +"jNf" = ( +/obj/structure/tank_wall{ + icon_state = "m-4" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/horizon/engineering/atmos) +"jNi" = ( /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, +/area/horizon/maintenance/deck_3/aft/port) +"jNl" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment{ - icon_state = "pipe-c" +/obj/effect/floor_decal/corner/red{ + dir = 6 + }, +/obj/machinery/door/airlock/glass_medical{ + dir = 1; + frequency = 1379; + id_tag = "processing_airlock_interior"; + locked = 1; + name = "Isolation Ward Interior"; + req_access = list(5) + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/dark, +/area/horizon/medical/ward/isolation) +"jNs" = ( +/obj/machinery/light/small/emergency{ + dir = 1 }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/hidden/aux, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel, /obj/structure/lattice/catwalk/indoor/grate/dark, /turf/simulated/floor/plating, -/area/maintenance/operations) -"jNe" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/bridge/upperdeck) -"jNg" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 10 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/machinery/light, -/obj/machinery/camera/network/command{ - c_tag = "Bridge - Captains Office Waiting Area"; - dir = 1; - network = list("Command","Capt_Office") - }, -/turf/simulated/floor/wood, -/area/bridge) -"jNk" = ( -/obj/structure/shuttle_part/scc_space_ship{ - icon_state = "d2-2" - }, -/turf/simulated/wall, -/area/operations/lobby) -"jNn" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/engineering/locker_room) -"jNq" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 9 - }, +/area/horizon/maintenance/deck_1/wing/port/far) +"jNt" = ( +/obj/structure/platform_stairs/south_north_solo, /turf/simulated/floor/plating, -/area/maintenance/research_port) -"jNw" = ( -/turf/simulated/wall/shuttle/scc_space_ship/cardinal, -/area/turret_protected/ai_upload_foyer) +/area/horizon/maintenance/deck_2/wing/port/far) +"jNv" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "sorting"; + reversed = 1 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/operations/mail_room) +"jNz" = ( +/obj/structure/window/shuttle/scc_space_ship, +/obj/structure/grille, +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 4; + icon_state = "shutter0"; + id = "LCKDshutters"; + name = "MedBay Lockdown Shutters"; + opacity = 0 + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/horizon/medical/smoking) "jNA" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -68849,6 +68799,22 @@ }, /turf/simulated/floor/tiled, /area/horizon/security/hallway) +"jNB" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/starboard) +"jND" = ( +/obj/effect/map_effect/window_spawner/full/reinforced/polarized/grille/firedoor{ + id = "hra" + }, +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor, +/area/horizon/command/bridge/cciaroom) "jNE" = ( /obj/machinery/light/small{ brightness_power = 0.5; @@ -68857,40 +68823,130 @@ }, /turf/unsimulated/floor/plating, /area/centcom/holding) -"jOc" = ( -/obj/effect/floor_decal/corner/green/diagonal, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/structure/bed/stool/chair/plastic{ +"jNF" = ( +/obj/structure/bed/stool/chair{ dir = 1 }, +/obj/machinery/power/apc/south{ + is_critical = 1 + }, +/obj/effect/floor_decal/corner_wide/green{ + dir = 10 + }, +/obj/structure/cable/green, /turf/simulated/floor/tiled/white, -/area/medical/ward/isolation) +/area/horizon/medical/hallway) +"jNL" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/item/hullbeacon/red, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/horizon/hangar/operations) +"jNM" = ( +/obj/structure/flora/ausbushes/ppflowers, +/obj/structure/flora/ausbushes/brflowers, +/obj/structure/railing/mapped, +/turf/simulated/floor/grass/no_edge, +/area/horizon/rnd/hallway/secondary) +"jNO" = ( +/obj/machinery/light/small, +/obj/structure/table/steel, +/obj/item/reagent_containers/spray/cleaner, +/obj/effect/floor_decal/corner/lime{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/tiled/white{ + name = "cooled white floor"; + temperature = 278.15 + }, +/area/horizon/medical/morgue) +"jNQ" = ( +/obj/structure/shuttle_part/scc/scout{ + density = 0; + icon_state = "2,11"; + outside_part = 0 + }, +/obj/machinery/atmospherics/unary/engine/scc_shuttle, +/turf/simulated/floor/plating, +/area/horizon/shuttle/canary) +"jNR" = ( +/obj/structure/shuttle/engine/propulsion/burst/left{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/horizon/shuttle/escape_pod/pod2) +"jNS" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_3/port) +"jNU" = ( +/obj/effect/floor_decal/spline/fancy/wood, +/obj/effect/floor_decal/spline/fancy/wood/corner{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/horizon/command/heads/rd) +"jNX" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 5 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/horizon/engineering/hallway/fore) +"jOa" = ( +/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/aux{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/horizon/engineering/atmos/air) +"jOb" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/corner/dark_green{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/horizon/hangar/intrepid/interstitial) "jOg" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 4 }, /turf/simulated/floor/holofloor/lino, /area/horizon/holodeck/source_courtroom) -"jOi" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/airlock/glass_research{ - dir = 4; - name = "Expedition EVA Storage"; - req_access = list(47) - }, -/obj/machinery/door/firedoor{ - dir = 4 - }, -/turf/simulated/floor/tiled/full, -/area/storage/eva) +"jOh" = ( +/obj/structure/table/rack, +/obj/random/loot, +/turf/simulated/floor, +/area/horizon/maintenance/deck_2/wing/starboard/far) "jOk" = ( /obj/structure/table/reinforced/steel, /obj/item/reagent_containers/glass/beaker/large{ @@ -68908,64 +68964,41 @@ /obj/effect/floor_decal/corner/green/diagonal, /turf/simulated/floor/tiled/white, /area/horizon/security/brig) -"jOo" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/effect/floor_decal/corner/brown{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ +"jOn" = ( +/obj/structure/bed/stool/chair/office/bridge{ dir = 4 }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 +/obj/effect/floor_decal/corner/dark_blue{ + dir = 9 }, -/obj/structure/engineer_maintenance/electric/wall, -/turf/simulated/floor/tiled, -/area/hangar/operations) -"jOp" = ( -/obj/structure/disposalpipe/junction{ - dir = 8; - icon_state = "pipe-j2" +/turf/simulated/floor/tiled/dark, +/area/horizon/command/bridge/meeting_room) +"jOq" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 +/turf/simulated/floor/reinforced{ + blocks_air = 1; + density = 1; + name = "thruster mount" }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/starboard) -"jOr" = ( -/obj/effect/floor_decal/corner/brown{ - dir = 5 - }, -/obj/machinery/light/floor{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/operations/office) +/area/horizon/engineering/atmos/propulsion/starboard) +"jOs" = ( +/turf/simulated/wall/r_wall, +/area/horizon/command/bridge/minibar) "jOt" = ( /obj/effect/floor_decal/corner/paleblue{ dir = 8 }, /turf/unsimulated/floor, /area/centcom/distress_prep) -"jOE" = ( -/obj/structure/window/reinforced{ - dir = 4 +"jOz" = ( +/obj/machinery/alarm/east, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 }, -/obj/structure/window/reinforced, -/obj/structure/lattice, -/turf/simulated/open, -/area/maintenance/wing/starboard) +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/atmos/propulsion/starboard) "jOF" = ( /obj/effect/step_trigger/teleporter/random{ affect_ghosts = 1; @@ -68989,48 +69022,69 @@ }, /turf/space/transit/north, /area/template_noop) -"jOJ" = ( -/obj/machinery/atmospherics/pipe/simple/visible/black{ - dir = 4 - }, +"jOO" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, /turf/simulated/floor/plating, -/area/engineering/atmos/air) -"jOM" = ( -/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 = 6 - }, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/central) -"jOT" = ( -/obj/machinery/light/floor{ +/area/horizon/maintenance/deck_2/aft) +"jOR" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark, +/area/horizon/rnd/xenoarch/atrium) +"jOV" = ( +/obj/effect/floor_decal/corner_wide/purple{ dir = 8 }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora) -"jOU" = ( -/obj/effect/floor_decal/corner/mauve{ +/obj/effect/floor_decal/corner_wide/purple{ dir = 6 }, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology/xenoflora) -"jPa" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, /obj/structure/cable/green{ icon_state = "4-8" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 +/obj/machinery/button/remote/blast_door{ + dir = 4; + id = "iso_b_purge"; + name = "PURGE Atmosphere"; + pixel_x = 28; + pixel_y = -26; + req_access = list(47) }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 +/obj/machinery/button/remote/blast_door{ + dir = 4; + id = "iso_b"; + name = "Blast Door Control"; + pixel_x = 22; + pixel_y = -36; + req_access = list(47) }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard) +/obj/machinery/button/remote/airlock{ + dir = 4; + id = "riso2"; + name = "Door Bolt Control"; + pixel_x = 22; + pixel_y = -25; + req_access = list(47); + specialfunctions = 4 + }, +/obj/machinery/atmospherics/valve/digital/open{ + dir = 4; + name = "Isolation B" + }, +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/xenoarch/atrium) +"jOZ" = ( +/obj/effect/floor_decal/corner_wide/yellow{ + dir = 5 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/horizon/engineering/hallway/interior) "jPh" = ( /obj/item/beach_ball, /obj/effect/floor_decal/spline/plain{ @@ -69046,60 +69100,53 @@ }, /turf/unsimulated/floor, /area/antag/mercenary) -"jPn" = ( -/obj/effect/floor_decal/corner/dark_green/full{ - dir = 4 +"jPq" = ( +/obj/structure/table/stone/marble, +/obj/machinery/chemical_dispenser/bar_soft/full{ + pixel_x = -1; + pixel_y = 12 }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"jPo" = ( -/obj/effect/floor_decal/corner/dark_green/full{ - dir = 4 +/obj/item/reagent_containers/glass/bottle/syrup/chocolate{ + pixel_x = -12; + pixel_y = 1 }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 +/obj/item/reagent_containers/glass/bottle/syrup/pumpkin{ + pixel_x = 7; + pixel_y = 1 }, -/obj/effect/floor_decal/spline/plain/red{ - dir = 1 +/obj/item/reagent_containers/glass/bottle/syrup/vanilla{ + pixel_x = 16; + pixel_y = 1 + }, +/obj/item/reagent_containers/glass/bottle/syrup/caramel{ + pixel_x = -3; + pixel_y = 1 }, -/obj/effect/floor_decal/spline/plain/orange, -/turf/simulated/floor/tiled, -/area/horizon/hydroponics) -"jPp" = ( -/turf/simulated/wall/r_wall, -/area/rnd/isolation_c) -"jPr" = ( /obj/effect/floor_decal/spline/fancy/wood{ - dir = 4 + dir = 9 }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 +/obj/machinery/light{ + dir = 1 }, /turf/simulated/floor/wood, -/area/crew_quarters/captain) -"jPt" = ( -/obj/effect/floor_decal/corner/mauve/full{ - dir = 1 +/area/horizon/service/cafeteria) +"jPx" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 9 }, -/obj/machinery/button/remote/airlock/screamer{ - channel = "Science"; - dir = 1; - id = "server_door_lock"; - message = "The Server Room Airlock's ID lock toggle has been used."; - name = "Server Room Control"; - pixel_y = 32; - req_access = list(47); - specialfunctions = 2 - }, -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/obj/machinery/light/floor{ - dir = 4 - }, -/obj/machinery/firealarm/east, /turf/simulated/floor/tiled, -/area/rnd/hallway/secondary) +/area/horizon/command/bridge/upperdeck) +"jPC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/fuel, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/shuttle/intrepid/port_compartment) "jPD" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/machinery/door/airlock/glass_security{ @@ -69119,60 +69166,152 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/tiled/full, /area/horizon/security/brig) -"jPP" = ( -/obj/structure/trash_pile, -/obj/machinery/light/small/emergency{ +"jPH" = ( +/obj/effect/landmark/entry_point/fore{ + name = "fore, mining shuttle" + }, +/turf/unsimulated/wall/fakepdoor{ dir = 4 }, -/obj/random/dirt_75, -/obj/effect/floor_decal/industrial/outline/grey, -/turf/simulated/floor/tiled/dark, -/area/maintenance/wing/port/far) -"jPZ" = ( -/obj/structure/window/shuttle/scc_space_ship, -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "bridge blast"; - name = "Bridge Blast Doors"; - opacity = 0 +/area/horizon/hangar/operations) +"jPI" = ( +/obj/effect/floor_decal/corner/dark_blue/full{ + dir = 8 }, -/obj/effect/landmark/entry_point/starboard{ - name = "starboard, representatives office" +/obj/structure/table/rack, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/item/clothing/head/helmet/pilot/scc{ + pixel_y = 8 }, -/obj/machinery/door/blast/shutters/open{ - dir = 4; - id = "shutters_deck3_bridgesafety"; - name = "Safety Shutter" +/obj/item/clothing/head/helmet/pilot/scc{ + pixel_y = 3 }, -/turf/simulated/floor/tiled/dark/full, -/area/lawoffice/representative_two) -"jQh" = ( -/obj/machinery/atmospherics/portables_connector, -/obj/machinery/portable_atmospherics/canister/air/airlock, -/obj/effect/floor_decal/industrial/warning{ +/obj/item/clothing/head/helmet/pilot/scc{ + pixel_y = -3 + }, +/obj/machinery/light/small{ dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/engineering/atmos/propulsion/starboard) -"jQj" = ( -/obj/machinery/atmospherics/binary/pump/on{ - name = "Distro to Airlock"; - target_pressure = 200 +/area/horizon/hangar/control) +"jPL" = ( +/obj/effect/floor_decal/corner_wide/lime{ + dir = 9 }, -/turf/simulated/floor, -/area/maintenance/bridge) -"jQo" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ +/obj/structure/engineer_maintenance/electric{ + dir = 8 + }, +/obj/structure/bed/stool/chair{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/reception) +"jPN" = ( +/obj/effect/floor_decal/industrial/warning{ dir = 5 }, +/obj/structure/sign/directions/tcom{ + dir = 8; + pixel_x = -32 + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_3/aft/port) +"jPO" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/turf/simulated/floor/carpet/rubber, -/area/tcommsat/entrance) +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/aux{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 4 + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/main/port) +"jPS" = ( +/obj/structure/table/rack, +/obj/random/loot, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/port/far) +"jPT" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/hatch{ + dir = 4; + name = "Supermatter Reactor SMES"; + req_one_access = list(11,24) + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/smes) +"jPX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/corner/dark_green{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/horizon/security/checkpoint2) +"jQd" = ( +/obj/machinery/button/remote/blast_door{ + dir = 8; + id = "exteriorpropulsionstarboard"; + name = "Exterior Blast Door"; + pixel_x = -22; + pixel_y = -3 + }, +/obj/machinery/button/remote/blast_door{ + dir = 8; + id = "interiorpropulsionstarboard"; + name = "Interior Blast Door"; + pixel_x = -22; + pixel_y = 8 + }, +/obj/machinery/button/remote/airlock{ + dir = 8; + id = "starboard_combustion"; + name = "Door Bolt Control"; + pixel_x = -28; + pixel_y = 7; + req_access = list(10); + specialfunctions = 4 + }, +/obj/effect/floor_decal/corner_wide/black{ + dir = 9 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/visible/black{ + dir = 1 + }, +/obj/machinery/meter, +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/atmos/propulsion) +"jQf" = ( +/obj/structure/railing/mapped{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/horizon/crew/lounge) +"jQk" = ( +/turf/simulated/wall/shuttle/scc_space_ship/cardinal, +/area/horizon/engineering/shields) "jQp" = ( /obj/structure/bed/stool/chair{ dir = 8 @@ -69180,90 +69319,28 @@ /obj/effect/floor_decal/industrial/outline/red, /turf/unsimulated/floor, /area/centcom/specops) -"jQx" = ( -/obj/structure/lattice/catwalk/indoor/grate/dark, +"jQt" = ( +/obj/machinery/mecha_part_fabricator{ + dir = 8 + }, +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/structure/railing/mapped, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/operations/machinist) +"jQO" = ( /obj/structure/cable/green{ - icon_state = "4-8" + icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/aux{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"jQA" = ( -/obj/effect/floor_decal/corner/dark_blue/full{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge/meeting_room) -"jQD" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/bridge/supply) -"jQH" = ( -/obj/machinery/door/airlock/glass_research{ - dir = 4; - name = "Hazardous Containment"; - req_access = list(55); - id_tag = "hazardous_access"; - locked = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/door/blast/regular/open{ - dir = 2; - fail_secure = 1; - id = "hazardous_lockdown"; - name = "Hazardous Containment Lockdown" - }, -/obj/machinery/door/firedoor{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology/hazardous) -"jQM" = ( -/turf/simulated/wall, -/area/horizon/maintenance/deck_three/aft/starboard) -"jQR" = ( -/obj/effect/floor_decal/corner/dark_blue/full{ - dir = 1 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge/meeting_room) -"jQW" = ( -/obj/machinery/firealarm/south, -/obj/effect/floor_decal/corner/yellow{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/engineering/locker_room) -"jRd" = ( -/obj/effect/floor_decal/corner/dark_blue{ +/obj/effect/floor_decal/corner/dark_green{ dir = 9 }, -/obj/item/device/radio/intercom/west, -/obj/structure/table/steel, -/obj/item/storage/box/fancy/donut, -/turf/simulated/floor/tiled/dark, -/area/security/checkpoint2) +/turf/simulated/floor/tiled, +/area/horizon/engineering/hallway/fore) +"jQY" = ( +/turf/simulated/wall/r_wall, +/area/horizon/stairwell/port/deck_2) "jRe" = ( /obj/structure/table/glass{ name = "reinforced glass table"; @@ -69272,23 +69349,58 @@ /obj/item/device/laser_pointer/red, /turf/unsimulated/floor/monotile, /area/antag/mercenary) -"jRl" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled/dark, -/area/maintenance/wing/starboard/far) -"jRm" = ( -/obj/effect/map_effect/window_spawner/full/reinforced/grille/firedoor, -/obj/structure/cable/green{ - icon_state = "0-8" +"jRf" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 9 }, -/turf/simulated/floor/tiled/dark/full, -/area/tcommsat/chamber) +/obj/structure/reagent_dispensers/water_cooler, +/turf/simulated/floor/carpet/rubber, +/area/horizon/engineering/bluespace_drive/monitoring) +"jRn" = ( +/obj/effect/landmark/entry_point/starboard{ + name = "starboard, compartment" + }, +/turf/simulated/wall/shuttle/unique/scc/scout{ + icon_state = "2,7" + }, +/area/horizon/shuttle/canary) +"jRo" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/aux{ + dir = 5 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/main/starboard) "jRt" = ( /obj/effect/floor_decal/corner{ dir = 9 }, /turf/simulated/floor/marble/dark, /area/horizon/holodeck/source_trinary) +"jRu" = ( +/obj/machinery/computer/general_air_control/large_tank_control/wall{ + input_tag = "n_in"; + name = "Nitrogen Supply Monitor"; + output_tag = "n_out"; + pixel_x = -32; + sensors = list("n_sensor"="Tank") + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/visible/supply, +/obj/structure/lattice/catwalk/indoor, +/turf/simulated/floor/plating, +/area/horizon/engineering/atmos/air) "jRv" = ( /obj/effect/floor_decal/corner/lime/diagonal, /obj/machinery/light, @@ -69296,70 +69408,33 @@ icon_state = "dark_preview" }, /area/centcom/holding) -"jRx" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/corner/dark_green{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/horizon/crew_quarters/cryo/living_quarters_lift) -"jRA" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 1 - }, -/obj/effect/floor_decal/spline/plain, -/obj/effect/floor_decal/sign/m{ - pixel_x = -10; - pixel_y = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/black{ - dir = 4 - }, -/turf/simulated/floor/carpet/rubber, -/area/tcommsat/chamber) +"jRz" = ( +/obj/structure/platform/ledge, +/turf/simulated/open, +/area/horizon/hallway/primary/deck_2/central) "jRB" = ( /obj/effect/map_effect/map_helper/ruler_tiles_3, /turf/simulated/floor/reinforced/airless, -/area/template_noop) -"jRE" = ( -/obj/effect/floor_decal/corner_wide/purple{ - dir = 8 - }, -/obj/effect/floor_decal/corner_wide/purple{ - dir = 5 - }, -/obj/machinery/door/firedoor, +/area/horizon/exterior) +"jRL" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/structure/disposalpipe/segment{ +/obj/effect/floor_decal/industrial/hatch/red, +/obj/effect/floor_decal/industrial/warning{ dir = 4 }, /obj/structure/cable/green{ icon_state = "4-8" }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenoarch_atrium) -"jRG" = ( -/turf/simulated/wall, -/area/horizon/crew_quarters/fitness/gym) -"jRM" = ( -/turf/simulated/floor/reinforced, -/area/bridge/selfdestruct) +/obj/machinery/light/small/emergency{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/operations/secure_ammunition_storage) "jRN" = ( /obj/machinery/door/airlock/hatch{ dir = 1; @@ -69390,22 +69465,6 @@ }, /turf/simulated/floor/tiled/dark/full, /area/shuttle/skipjack) -"jRQ" = ( -/obj/effect/floor_decal/corner/dark_green/full{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/lobby) -"jRT" = ( -/obj/effect/landmark/entry_point/aft{ - name = "aft engines, port 3" - }, -/turf/space/dynamic, -/area/engineering/atmos/propulsion) -"jRV" = ( -/obj/machinery/telecomms/bus/preset_four, -/turf/simulated/floor/bluegrid, -/area/tcommsat/chamber) "jRX" = ( /obj/machinery/light{ dir = 4 @@ -69415,21 +69474,15 @@ }, /turf/unsimulated/floor, /area/antag/mercenary) -"jRY" = ( -/obj/effect/floor_decal/industrial/hatch/red, -/obj/machinery/portable_atmospherics/canister/phoron, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/bluespace_drive) -"jSe" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 +"jSf" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/structure/cable/green{ - icon_state = "4-8" +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 }, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/central) +/turf/simulated/floor/tiled/dark, +/area/horizon/service/bar/backroom) "jSh" = ( /obj/machinery/door/airlock/hatch{ dir = 1; @@ -69442,24 +69495,37 @@ /obj/machinery/door/firedoor/noid, /turf/simulated/floor/tiled/dark/full, /area/shuttle/mercenary) +"jSj" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/random/dirt_75, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/starboard/nacelle) +"jSo" = ( +/obj/structure/window/shuttle/scc_space_ship, +/obj/structure/grille, +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/shutters{ + id = "shutters_disposals"; + name = "\improper Viewing Shutter" + }, +/turf/simulated/floor/plating, +/area/horizon/service/custodial/disposals/deck_1) "jSr" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /turf/unsimulated/floor/monotile, /area/antag/mercenary) -"jSF" = ( -/obj/machinery/atmospherics/pipe/simple/visible/purple{ - dir = 4 +"jSy" = ( +/obj/machinery/atmospherics/binary/pump/on{ + dir = 4; + name = "Distro to Airlock"; + target_pressure = 200 }, -/obj/effect/floor_decal/corner_wide/black{ - dir = 5 - }, -/obj/effect/floor_decal/industrial/warning{ +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/light/small/emergency{ dir = 1 }, -/obj/machinery/meter, -/obj/machinery/alarm/north, -/turf/simulated/floor/tiled/dark, -/area/engineering/atmos/propulsion) +/turf/simulated/floor, +/area/horizon/maintenance/deck_3/aft/port/far) "jSG" = ( /obj/structure/flora/log_bench{ dir = 1 @@ -69468,20 +69534,48 @@ icon_state = "desert" }, /area/centcom/shared_dream) -"jSN" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden, -/obj/effect/map_effect/marker/airlock{ - frequency = 3002; - master_tag = "airlock_horizon_deck_2_port_1"; - name = "airlock_horizon_deck_2_port_1" +"jSH" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 4 }, -/turf/simulated/floor, -/area/maintenance/wing/port/far) +/obj/structure/grille, +/obj/machinery/door/firedoor, +/obj/structure/window/shuttle/scc_space_ship, +/turf/simulated/floor/plating, +/area/horizon/engineering/reactor/supermatter/airlock) +"jSM" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 9 + }, +/obj/effect/floor_decal/spline/plain/corner/green{ + dir = 1 + }, +/obj/effect/floor_decal/spline/plain/corner/blue, +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/horizon/service/hydroponics/lower) "jSQ" = ( /obj/machinery/iv_drip, /obj/effect/floor_decal/industrial/outline/red, /turf/unsimulated/floor/plating, /area/centcom/specops) +"jSZ" = ( +/obj/effect/floor_decal/corner/green{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/white, +/area/horizon/crew/fitness/showers) "jTa" = ( /obj/machinery/newscaster/north, /obj/structure/filingcabinet/filingcabinet{ @@ -69508,17 +69602,6 @@ }, /turf/simulated/floor/tiled, /area/horizon/security/office) -"jTd" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled/white, -/area/medical/reception) "jTh" = ( /obj/machinery/conveyor_switch/oneway{ id = "merchant_shipping"; @@ -69532,53 +69615,21 @@ icon_state = "dark_preview" }, /area/centcom/specops) -"jTl" = ( -/obj/machinery/door/firedoor{ +"jTn" = ( +/obj/structure/sign/nosmoking_1{ + pixel_y = 32 + }, +/obj/machinery/atmospherics/pipe/simple/visible/black{ dir = 4 }, -/obj/machinery/door/airlock/medical{ - dir = 4; - name = "Cremation"; - req_one_access = list(6,33) - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/structure/plasticflaps/airtight{ - dir = 8 - }, -/turf/simulated/floor/tiled/full, -/area/medical/morgue/lower) -"jTo" = ( /obj/effect/floor_decal/industrial/warning{ - dir = 9 + dir = 1 }, -/obj/machinery/camera/network/research{ - dir = 4; - c_tag = "Xenobio - Cell E"; - network = list("Xeno_Bio") - }, -/turf/simulated/floor/reinforced, -/area/rnd/xenobiology) +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/atmos/propulsion) "jTp" = ( /turf/simulated/floor/marble/dark, /area/horizon/holodeck/source_tribunal) -"jTr" = ( -/obj/effect/floor_decal/corner_wide/lime/diagonal, -/obj/structure/disposalpipe/junction{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/medical/reception) "jTs" = ( /obj/structure/lattice/catwalk/indoor/grate/dark, /turf/simulated/floor/plating, @@ -69598,27 +69649,6 @@ }, /turf/simulated/floor/tiled/dark/airless, /area/horizon/exterior) -"jTw" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/effect/floor_decal/corner/dark_green{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/engineering/lobby) -"jTE" = ( -/obj/effect/floor_decal/corner_wide/lime/diagonal, -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/medical/reception) "jTI" = ( /obj/machinery/light{ dir = 4 @@ -69629,29 +69659,55 @@ icon_state = "wood" }, /area/centcom/distress_prep) -"jTJ" = ( -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/manifold/visible/black, -/turf/simulated/floor/tiled/dark, -/area/engineering/atmos) -"jTK" = ( -/obj/effect/floor_decal/spline/fancy/wood/cee{ - dir = 8 +"jTP" = ( +/obj/effect/floor_decal/corner_wide/green{ + dir = 5 + }, +/obj/effect/floor_decal/corner_wide/green, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/exam) +"jTT" = ( +/obj/structure/table/standard, +/obj/item/stack/material/glass/full{ + pixel_y = 3; + pixel_x = 7 + }, +/obj/item/stack/material/steel/full{ + pixel_y = 3; + pixel_x = -8 + }, +/turf/simulated/floor/plating, +/area/horizon/engineering/drone_fabrication) +"jTV" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, /obj/structure/cable/green{ - icon_state = "1-8" + icon_state = "4-8" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 +/obj/effect/floor_decal/spline/plain/lime{ + dir = 9 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 +/turf/simulated/floor/tiled/dark, +/area/horizon/service/hydroponics/garden) +"jTX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/surgery) +"jTY" = ( +/obj/structure/cable{ + icon_state = "1-2" }, -/turf/simulated/floor/wood, -/area/operations/qm) -"jTO" = ( -/turf/simulated/wall/shuttle/scc_space_ship/cardinal, -/area/engineering/storage_hard) +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor/plating, +/area/horizon/engineering/hallway/fore) "jUc" = ( /obj/structure/bed/stool/chair/shuttle{ dir = 8 @@ -69661,19 +69717,6 @@ }, /turf/simulated/floor/shuttle/black, /area/centcom/specops) -"jUd" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 10 - }, -/obj/effect/floor_decal/spline/plain/blue{ - dir = 1 - }, -/obj/item/device/radio/intercom/south, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/horizon/hydroponics/lower) "jUf" = ( /obj/machinery/door/window{ name = "AI Core Door"; @@ -69695,26 +69738,50 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/security/investigators_office) -"jUm" = ( -/obj/effect/map_effect/window_spawner/full/shuttle/scc{ - spawn_firedoor = 1; - spawn_grille = 1 - }, -/obj/machinery/door/blast/shutters/open{ - dir = 8; - id = "intrepid_bay_windows"; - name = "Intrepid Shutter" - }, +"jUl" = ( +/obj/effect/floor_decal/industrial/warning, /turf/simulated/floor/plating, -/area/shuttle/intrepid/port_compartment) -"jUr" = ( -/obj/effect/map_effect/window_spawner/full/borosilicate/reinforced, -/obj/machinery/door/blast/regular/open{ - id = "r_ust_core_blast"; - name = "INDRA Reactor Blast Doors" +/area/horizon/maintenance/deck_1/wing/port/far) +"jUu" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/corner/dark_blue/diagonal, +/turf/simulated/floor/tiled/dark, +/area/horizon/security/checkpoint) +"jUv" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/cable/green{ + icon_state = "1-4" }, /turf/simulated/floor/tiled/dark/full, -/area/engineering/engine_room/rust) +/area/horizon/engineering/bluespace_drive) +"jUx" = ( +/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/horizon/shuttle/quark/cockpit) "jUz" = ( /obj/structure/table/rack, /obj/item/clothing/shoes/magboots, @@ -69734,241 +69801,214 @@ }, /turf/simulated/open/airless, /area/horizon/exterior) -"jUB" = ( -/obj/effect/floor_decal/spline/plain{ +"jUG" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/corner/brown{ + dir = 9 + }, +/obj/effect/landmark/start{ + name = "Hangar Technician" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/light/floor{ dir = 8 }, -/obj/effect/floor_decal/spline/plain{ +/turf/simulated/floor/tiled, +/area/horizon/operations/office) +"jUN" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/black, -/turf/simulated/floor/carpet/rubber, -/area/tcommsat/chamber) -"jUH" = ( -/obj/machinery/camera/network/third_deck{ - c_tag = "Third Deck - Journalist Office"; - dir = 1 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 }, -/obj/random/pottedplant, -/obj/machinery/light{ - dir = 8 +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/alarm/north, +/obj/machinery/door/blast/shutters/open{ + dir = 8; + id = "shutters_hangardeskcpport"; + name = "Security Checkpoint Shutter" }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 10 +/obj/machinery/door/blast/regular/open{ + id = "hangarlockdown"; + name = "Hangar Lockdown" }, -/turf/simulated/floor/wood, -/area/journalistoffice) +/turf/simulated/floor/tiled, +/area/horizon/security/checkpoint) "jUQ" = ( /obj/machinery/papershredder, /turf/unsimulated/floor{ icon_state = "wood" }, /area/centcom/control) -"jUT" = ( -/obj/machinery/atmospherics/binary/pump{ - dir = 4 - }, -/obj/effect/floor_decal/corner/yellow, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/outline/yellow, +"jUZ" = ( /turf/simulated/floor/tiled/dark/full, -/area/engineering/atmos) -"jUU" = ( -/obj/structure/cable/green{ - icon_state = "4-8"; - d1 = 4; - d2 = 8 - }, -/obj/machinery/door/firedoor{ - req_one_access = list(24,11,67,73); - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/airlock/glass_service{ - dir = 8; - name = "Library" - }, -/turf/simulated/floor/tiled/full, -/area/horizon/library) -"jVh" = ( -/obj/effect/floor_decal/corner/dark_blue{ +/area/horizon/hangar/intrepid) +"jVe" = ( +/obj/effect/floor_decal/spline/fancy/wood{ dir = 9 }, -/obj/structure/platform{ +/obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/bridge) -"jVj" = ( -/obj/structure/cable/green{ - icon_state = "1-8" +/obj/machinery/requests_console/north{ + announcementConsole = 1; + department = "Consular's Office A"; + departmentType = 5; + name = "Consular's Office requests console"; + pixel_y = 34 }, /obj/structure/cable/green{ icon_state = "4-8" }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/atmospherics/binary/pump{ - dir = 8; - name = "Mix to Mixed Gas Tank" - }, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/atmos) +/turf/simulated/floor/wood, +/area/horizon/repoffice/consular_one) "jVl" = ( /obj/machinery/door/airlock/silver{ name = "Washroom" }, /turf/unsimulated/floor, /area/centcom/legion) -"jVp" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 10 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, +"jVo" = ( +/obj/structure/table/standard, +/obj/item/deck/cards, /turf/simulated/floor/tiled, -/area/horizon/hydroponics/garden) +/area/horizon/operations/break_room) "jVq" = ( /obj/structure/closet/emcloset, /turf/simulated/floor/shuttle/dark_blue, /area/shuttle/transport1) -"jVA" = ( -/obj/structure/table/stone/marble, -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/shutters{ - dir = 2; - id = "bar_shutter"; - name = "Bar Shutter" +"jVr" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 9 }, -/obj/machinery/power/outlet, +/obj/machinery/disposal/small/east, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/machinery/camera/network/command{ + c_tag = "Bridge - Starboard 1"; + dir = 4 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/command/bridge/controlroom) +"jVw" = ( +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/effect/floor_decal/corner/dark_blue/full{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/item/device/radio/intercom/north, +/obj/structure/table/reinforced/steel, +/obj/item/device/taperecorder, /turf/simulated/floor/tiled/dark, -/area/horizon/bar) +/area/horizon/command/bridge/controlroom) "jVB" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 1 }, /turf/unsimulated/floor, /area/centcom/ferry) -"jVE" = ( -/obj/machinery/light, -/obj/effect/floor_decal/corner_wide/black{ - dir = 10 - }, -/obj/effect/floor_decal/industrial/warning, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/engineering/atmos/propulsion) -"jVH" = ( -/obj/machinery/door/airlock/service{ - dir = 1; - name = "Journalist's Office"; - req_access = list(70) - }, -/obj/effect/map_effect/door_helper/unres, -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/full, -/area/journalistoffice) -"jVI" = ( -/obj/effect/landmark/entry_point/aft{ - name = "aft engines, port 2" - }, -/turf/space/dynamic, -/area/engineering/atmos/propulsion) -"jVL" = ( -/obj/machinery/button/remote/blast_door{ - dir = 1; - id = "intrepid_buffet"; - name = "Desk Shutters"; - pixel_x = 8; - pixel_y = 29 - }, -/obj/structure/table/stone/marble, -/obj/machinery/appliance/cooker/oven/small{ - pixel_y = 13; - pixel_x = -5 - }, -/obj/item/reagent_containers/food/drinks/drinkingglass/newglass/coffeecup{ - pixel_y = 21; - pixel_x = -2 - }, -/obj/item/reagent_containers/food/condiment/shaker/salt{ - pixel_x = 12; - pixel_y = 14 - }, -/obj/item/reagent_containers/food/condiment/shaker/peppermill{ - pixel_x = 12; - pixel_y = 9 - }, -/turf/simulated/floor/tiled/dark/full, -/area/shuttle/intrepid/buffet) -"jVR" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 9 - }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/firealarm/west, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/central) -"jVW" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/structure/engineer_maintenance/electric/wall, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/engine_room) -"jVX" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, +"jVF" = ( /obj/structure/cable/green{ icon_state = "4-8" }, +/obj/effect/floor_decal/corner/dark_green{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_3/central) +"jVM" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/horizon/crew/lounge) +"jVS" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + dir = 1 + }, +/turf/simulated/floor/tiled/full, +/area/horizon/hallway/primary/deck_2/fore) +"jVU" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_command{ + dir = 4; + name = "EVA Storage"; + req_access = list(18) + }, +/obj/effect/map_effect/door_helper/unres{ + dir = 4 + }, +/turf/simulated/floor/tiled/full, +/area/horizon/storage/eva) +"jVY" = ( +/obj/machinery/botany/extractor, +/obj/effect/floor_decal/corner/mauve{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/rnd/xenobiology/xenoflora) +"jWb" = ( +/obj/effect/floor_decal/corner/dark_blue/full{ + dir = 1 + }, /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, -/area/horizon/hallway/deck_three/primary/central) -"jWj" = ( +/turf/simulated/floor/tiled, +/area/horizon/command/bridge/upperdeck) +"jWg" = ( +/obj/structure/grille, +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id = "bridge blast"; + name = "Bridge Blast Doors"; + opacity = 0 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/shutters/open{ + dir = 4; + id = "shutters_deck3_bridgesafety"; + name = "Safety Shutter" + }, +/obj/structure/window/shuttle/scc_space_ship/cardinal, +/turf/simulated/floor/plating, +/area/horizon/command/bridge/minibar) +"jWh" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/horizon/operations/warehouse) +"jWk" = ( /obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/portable_atmospherics/canister/hydrogen, +/obj/structure/closet/emcloset{ + anchored = 1; + canbemoved = 1 + }, /turf/simulated/floor/tiled/dark/full, -/area/engineering/storage_hard) +/area/horizon/engineering/reactor/supermatter/mainchamber) "jWl" = ( /obj/structure/table/reinforced/steel, /obj/item/device/price_scanner, @@ -69977,44 +70017,48 @@ }, /turf/simulated/floor/wood, /area/merchant_station/warehouse) -"jWp" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 9 +"jWo" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, -/turf/simulated/floor/reinforced, -/area/horizon/grauwolf) -"jWr" = ( -/obj/effect/floor_decal/industrial/warning/corner{ +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor/plating, +/area/horizon/hallway/primary/deck_1/central) +"jWt" = ( +/obj/effect/floor_decal/industrial/outline_straight/service{ dir = 8 }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/structure/railing/mapped, -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/obj/structure/cable/green{ - icon_state = "2-4" - }, -/turf/simulated/floor/tiled/dark/full/airless, -/area/bridge/controlroom) -"jWu" = ( -/obj/item/modular_computer/console/preset/supply/machinist{ +/obj/effect/floor_decal/industrial/outline_straight/service{ dir = 4 }, -/obj/effect/floor_decal/spline/plain/cee{ - dir = 8 +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 1 }, -/obj/machinery/ringer/south{ - department = "Machinist Workshop"; - id = "robo_ringer"; - req_access = list(29) +/turf/simulated/floor/tiled/dark/full, +/area/horizon/service/hydroponics/lower) +"jWv" = ( +/obj/structure/cable/green{ + icon_state = "4-8" }, -/obj/machinery/light, -/turf/simulated/floor/carpet/rubber, -/area/operations/lower/machinist) +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/camera/network/supply{ + c_tag = "Operations - Upper Warehouse Starboard"; + dir = 1 + }, +/obj/effect/floor_decal/corner/brown{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/horizon/operations/office) "jWA" = ( /obj/structure/table/reinforced/wood, /obj/effect/floor_decal/spline/fancy/wood{ @@ -70024,19 +70068,27 @@ icon_state = "wood" }, /area/centcom/control) -"jWE" = ( -/obj/structure/cable/green{ - icon_state = "1-4" +"jWC" = ( +/obj/structure/table/rack{ + dir = 8 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 +/obj/effect/floor_decal/corner_wide/blue/full{ + dir = 8 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/item/circuitboard/ship/targeting{ + pixel_y = 8 }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/maintenance/engineering) +/obj/item/circuitboard/ship/helm{ + pixel_y = 4 + }, +/obj/item/circuitboard/ship/engines, +/obj/item/circuitboard/ship/sensors{ + pixel_y = -4 + }, +/obj/machinery/alarm/north, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/storage/tech) "jWF" = ( /obj/machinery/light{ dir = 4 @@ -70051,14 +70103,10 @@ /obj/effect/shuttle_landmark/horizon/exterior/deck_3/portaft, /turf/template_noop, /area/template_noop) -"jWJ" = ( -/obj/structure/railing/mapped, -/turf/simulated/floor/tiled, -/area/hangar/operations) -"jWN" = ( -/obj/random/contraband, +"jWO" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, /turf/simulated/floor/tiled/dark, -/area/maintenance/wing/port/far) +/area/horizon/storage/eva) "jWQ" = ( /obj/structure/table/reinforced/steel, /obj/item/storage/box/fancy/donut{ @@ -70075,6 +70123,19 @@ icon_state = "dark_preview" }, /area/centcom/specops) +"jWS" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 1 + }, +/obj/effect/floor_decal/spline/fancy, +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/effect/floor_decal/corner_wide/white{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/hallway/primary/deck_2/central) "jWU" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/binary/passive_gate{ @@ -70085,18 +70146,31 @@ /obj/structure/lattice/catwalk/indoor/grate/dark, /turf/simulated/floor/plating, /area/shuttle/skipjack) -"jXe" = ( -/obj/effect/floor_decal/corner/black{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ +"jWX" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/wood, +/area/horizon/service/bar) +"jWZ" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ +/obj/effect/floor_decal/industrial/warning{ dir = 8 }, -/turf/simulated/floor/tiled, -/area/operations/lower/machinist) +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/reactor/supermatter/mainchamber) +"jXb" = ( +/obj/structure/closet/emcloset, +/obj/effect/floor_decal/industrial/outline/emergency_closet, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/alarm/north, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/full, +/area/horizon/command/bridge/upperdeck) "jXg" = ( /obj/structure/shuttle_part/ccia{ icon_state = "5,0"; @@ -70104,15 +70178,22 @@ }, /turf/unsimulated/floor/plating, /area/shuttle/transport1) -"jXq" = ( -/obj/effect/floor_decal/corner/mauve{ - dir = 6 +"jXm" = ( +/obj/structure/cable/green, +/obj/effect/map_effect/window_spawner/full/reinforced/polarized/grille/firedoor{ + id = "XO" }, -/obj/structure/platform{ - dir = 8 +/turf/simulated/floor, +/area/horizon/command/heads/xo) +"jXo" = ( +/obj/effect/floor_decal/corner/mauve/diagonal, +/obj/machinery/light/floor, +/obj/machinery/disposal/small/north, +/obj/structure/disposalpipe/trunk{ + dir = 1 }, -/turf/simulated/floor/tiled, -/area/rnd/hallway/secondary) +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/lab) "jXr" = ( /obj/structure/cable/green{ icon_state = "1-2" @@ -70130,25 +70211,25 @@ /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/full, /area/horizon/security/lobby) -"jXx" = ( -/obj/effect/floor_decal/industrial/warning/cee{ +"jXt" = ( +/obj/structure/railing/mapped{ dir = 8 }, +/obj/structure/railing/mapped, +/obj/machinery/mech_recharger, +/obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/plating, -/area/hangar/intrepid) -"jXy" = ( -/obj/effect/floor_decal/corner/green/diagonal, -/obj/structure/bed/stool, -/obj/structure/curtain/open, -/obj/structure/window/reinforced, -/turf/simulated/floor/tiled/white, -/area/horizon/crew_quarters/fitness/changing) -"jXB" = ( -/obj/effect/floor_decal/corner_wide/green{ - dir = 5 +/area/horizon/operations/machinist) +"jXA" = ( +/turf/simulated/wall, +/area/horizon/service/hydroponics/garden) +"jXE" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 6 }, -/turf/simulated/floor/tiled/white, -/area/hallway/medical/upper) +/turf/simulated/floor, +/area/horizon/maintenance/deck_2/wing/starboard/far) "jXH" = ( /obj/effect/floor_decal/industrial/warning{ dir = 8 @@ -70163,73 +70244,50 @@ }, /turf/simulated/floor/plating, /area/merchant_station/warehouse) -"jXL" = ( -/obj/machinery/photocopier, -/turf/simulated/floor/carpet, -/area/journalistoffice) -"jXO" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 6 +"jXJ" = ( +/obj/effect/floor_decal/corner/beige{ + dir = 5 }, +/turf/simulated/floor/tiled, +/area/horizon/crew/vacantoffice) +"jXQ" = ( +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ icon_state = "1-2" }, -/obj/machinery/light{ - dir = 8 +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, -/obj/structure/disposalpipe/segment, -/obj/machinery/firealarm/east, -/obj/structure/platform_stairs/full/south_north_cap, /turf/simulated/floor/tiled, -/area/bridge/controlroom) -"jXT" = ( -/obj/effect/floor_decal/corner/red/diagonal, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/spline/plain{ - dir = 8 - }, -/obj/machinery/light/floor{ - dir = 8 - }, +/area/horizon/hallway/primary/deck_3/port) +"jXY" = ( /obj/structure/railing/mapped{ + dir = 4 + }, +/obj/structure/bed/stool/chair/office/dark{ dir = 8 }, -/turf/simulated/floor/lino, -/area/horizon/cafeteria) -"jXW" = ( -/obj/effect/floor_decal/industrial/hatch_door/red{ - dir = 1 - }, -/obj/machinery/door/airlock/external, -/obj/machinery/atmospherics/pipe/manifold/hidden{ - dir = 8 - }, -/obj/effect/map_effect/marker/airlock/shuttle{ - cycle_to_external_air = 1; - master_tag = "airlock_shuttle_intrepid"; - name = "airlock_shuttle_intrepid"; - req_one_access = null; - shuttle_tag = "Intrepid" - }, -/obj/effect/map_effect/marker_helper/airlock/exterior, -/turf/simulated/floor/tiled/dark/full, -/area/shuttle/intrepid/main_compartment) +/turf/simulated/floor/tiled/white, +/area/horizon/operations/machinist/surgicalbay) "jYe" = ( /obj/effect/floor_decal/corner/grey/diagonal, /turf/simulated/floor/marble, /area/horizon/holodeck/source_trinary) -"jYf" = ( -/obj/structure/sign/radiation{ - pixel_x = -32 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/effect/floor_decal/industrial/warning{ - dir = 9 - }, -/obj/structure/closet/radiation, -/obj/machinery/firealarm/north, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/engine_monitoring/rust) +"jYg" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/purple, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/engineering/atmos/propulsion) +"jYh" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/alarm/north, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/main/starboard) "jYi" = ( /obj/effect/shuttle_landmark/merc_ship/interim{ dir = 4 @@ -70237,43 +70295,24 @@ /obj/effect/step_trigger/thrower/shuttle/east, /turf/space/transit/north, /area/template_noop) -"jYj" = ( -/obj/effect/floor_decal/spline/plain, -/turf/simulated/floor/tiled/dark, -/area/hallway/primary/central_one) -"jYk" = ( -/obj/machinery/alarm/north, -/obj/machinery/light/floor{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"jYp" = ( -/turf/simulated/wall/shuttle/scc_space_ship/cardinal, -/area/bridge/cciaroom) -"jYw" = ( -/obj/structure/flora/ausbushes/fullgrass, -/turf/simulated/floor/grass/no_edge, -/area/horizon/cafeteria) -"jYy" = ( -/obj/effect/floor_decal/industrial/warning{ +"jYF" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/tank_wall/air{ - icon_state = "air7" +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 }, -/turf/simulated/floor/plating, -/area/engineering/atmos/air) -"jYB" = ( -/obj/machinery/door/firedoor, -/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, /obj/structure/cable{ - icon_state = "1-2" + d1 = 4; + d2 = 8; + icon_state = "4-8" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/full, -/area/hallway/engineering) +/turf/simulated/floor, +/area/horizon/maintenance/deck_3/aft/port) "jYG" = ( /obj/structure/closet/secure_closet/guncabinet{ name = "CCIA Bodyguard Primary"; @@ -70289,20 +70328,6 @@ icon_state = "dark_preview" }, /area/centcom/control) -"jYH" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor, -/area/horizon/maintenance/deck_three/aft/starboard) "jYL" = ( /obj/effect/floor_decal/corner/paleblue{ dir = 5 @@ -70323,65 +70348,40 @@ }, /turf/unsimulated/floor/plating, /area/shuttle/transport1) -"jYO" = ( -/obj/machinery/firealarm/west, -/obj/structure/flora/ausbushes/sparsegrass, -/obj/machinery/portable_atmospherics/hydroponics/soil, -/obj/structure/engineer_maintenance/electric/wall, -/turf/simulated/floor/grass/no_edge, -/area/horizon/hydroponics/garden) -"jYV" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, +"jYP" = ( /obj/structure/cable/green{ - icon_state = "1-2" + icon_state = "4-8" }, -/turf/simulated/floor/tiled, -/area/rnd/hallway/secondary) -"jYW" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 1 +/obj/effect/floor_decal/corner/yellow{ + dir = 10 }, -/obj/machinery/firealarm/north, -/turf/simulated/floor/wood, -/area/bridge/minibar) -"jYY" = ( -/obj/effect/floor_decal/corner/mauve{ +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 5 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/aft_airlock) +"jYR" = ( +/obj/effect/landmark{ + name = "Revenant" + }, +/obj/machinery/power/apc/low/north, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/random/dirt_75, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/starboard/nacelle) +"jYZ" = ( +/obj/machinery/door/airlock/maintenance{ + dir = 1 + }, +/obj/machinery/door/firedoor, /turf/simulated/floor/tiled, -/area/rnd/hallway) -"jZb" = ( -/obj/structure/closet/secure_closet/guncabinet{ - name = "Bridge Defense Armor"; - req_access = list(60) - }, -/obj/item/clothing/head/helmet/security/generic, -/obj/item/clothing/head/helmet/security/generic, -/obj/item/clothing/head/helmet/security/generic, -/obj/item/clothing/suit/armor/carrier/generic, -/obj/item/clothing/suit/armor/carrier/generic, -/obj/item/clothing/suit/armor/carrier/generic, -/obj/effect/floor_decal/corner/dark_blue/full{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/outline/red, -/obj/machinery/light{ - dir = 4 - }, -/obj/item/clothing/mask/gas/alt, -/obj/item/clothing/mask/gas/alt, -/obj/item/clothing/mask/gas/alt, -/turf/simulated/floor/tiled, -/area/bridge/supply) -"jZc" = ( -/obj/effect/floor_decal/industrial/outline/service, -/obj/machinery/chem_master, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/hydroponics/lower) +/area/horizon/maintenance/deck_1/wing/starboard/far) "jZe" = ( /obj/structure/railing/mapped{ dir = 1 @@ -70394,49 +70394,24 @@ }, /turf/unsimulated/floor, /area/centcom/evac) -"jZf" = ( -/obj/structure/table/standard, -/obj/item/storage/firstaid/o2{ - pixel_x = -17; - pixel_y = 8 +"jZh" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" }, -/obj/effect/floor_decal/corner_wide/green{ - dir = 5 - }, -/obj/item/storage/firstaid/o2{ - pixel_x = -17; - pixel_y = 3 - }, -/obj/item/storage/firstaid/toxin{ - pixel_x = -2; - pixel_y = 8 - }, -/obj/item/storage/firstaid/toxin{ - pixel_x = -2; - pixel_y = 3 - }, -/obj/item/storage/firstaid/fire{ - pixel_x = 13; - pixel_y = 8 - }, -/obj/item/storage/firstaid/fire{ - pixel_x = 13; - pixel_y = 3 - }, -/turf/simulated/floor/tiled/white, -/area/medical/main_storage) -"jZl" = ( -/obj/structure/lattice, -/obj/structure/railing/mapped, -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/machinery/camera/network/third_deck{ - c_tag = "Third Deck - Starboard Lounge Entrance"; +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/full, +/area/horizon/hallway/primary/deck_2/fore) +"jZk" = ( +/obj/item/modular_computer/console/preset/command/captain{ dir = 1 }, -/turf/simulated/open, -/area/horizon/hallway/deck_three/primary/starboard) +/obj/structure/railing/mapped, +/turf/simulated/floor/tiled/dark, +/area/horizon/command/bridge/aibunker) "jZm" = ( /obj/structure/window/reinforced/crescent{ dir = 8 @@ -70447,21 +70422,13 @@ /obj/structure/flora/ausbushes/lavendergrass, /turf/simulated/floor/grass/no_edge, /area/centcom/holding) -"jZo" = ( -/obj/structure/table/rack, -/obj/item/device/paint_sprayer, -/obj/random/tech_supply, -/obj/random/tech_supply, -/obj/item/hoist_kit{ - pixel_y = 7 +"jZn" = ( +/obj/machinery/atmospherics/pipe/simple/visible/purple{ + dir = 6 }, -/obj/item/ladder_mobile, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/plating, -/area/engineering/storage/lower) +/obj/machinery/meter, +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/atmos/propulsion) "jZp" = ( /obj/machinery/light{ dir = 4 @@ -70500,6 +70467,21 @@ }, /turf/unsimulated/floor/dark_monotile, /area/antag/mercenary) +"jZx" = ( +/obj/machinery/power/generator{ + anchored = 1 + }, +/obj/effect/floor_decal/industrial/outline_straight/yellow{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/outline_straight/yellow{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/horizon/engineering/atmos/turbine) "jZz" = ( /obj/structure/window/reinforced/crescent{ dir = 1 @@ -70510,17 +70492,28 @@ /obj/structure/flora/ausbushes/fullgrass, /turf/simulated/floor/grass/no_edge, /area/centcom/spawning) -"jZA" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass{ - dir = 4 +"jZB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/alarm/north, +/turf/simulated/floor/tiled/dark, +/area/horizon/maintenance/deck_3/aft/port/far) +"jZC" = ( +/obj/machinery/portable_atmospherics/canister/phoron, +/obj/machinery/door/window/northleft{ + name = "Canister Storage Access"; + req_access = list(65) }, -/turf/simulated/floor/tiled/full, -/area/horizon/hallway/deck_three/primary/starboard) -"jZD" = ( -/obj/effect/floor_decal/spline/fancy/wood, -/turf/simulated/floor/wood, -/area/horizon/library) +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/reinforced, +/area/horizon/rnd/xenoarch/atrium) +"jZH" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/alarm/west, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/starboard/nacelle) "jZI" = ( /obj/vehicle/droppod/syndie{ connected_blastdoor = "merc_droppod_5" @@ -70529,47 +70522,35 @@ icon_state = "dark_preview" }, /area/antag/mercenary) -"jZN" = ( -/obj/effect/floor_decal/corner/dark_green/full{ - dir = 8 +"jZO" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 6 }, -/obj/effect/floor_decal/industrial/loading/yellow, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/port) +/obj/effect/floor_decal/spline/plain/corner{ + dir = 4 + }, +/obj/machinery/light, +/obj/machinery/atmospherics/pipe/simple/hidden/black{ + dir = 9 + }, +/turf/simulated/floor/carpet/rubber, +/area/horizon/tcommsat/chamber) +"jZS" = ( +/obj/machinery/porta_turret, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/effect/floor_decal/industrial/warning/full, +/turf/simulated/floor/bluegrid{ + name = "cooled mainframe floor"; + temperature = 278 + }, +/area/horizon/ai/chamber) "jZT" = ( /obj/structure/table/wood, /obj/effect/floor_decal/spline/fancy/wood, /turf/simulated/floor/wood, /area/horizon/security/meeting_room) -"jZU" = ( -/obj/effect/floor_decal/corner/brown{ - dir = 5 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/operations/lobby) -"jZV" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lime{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled{ - name = "cooled floor"; - temperature = 278 - }, -/area/medical/morgue/lower) "jZZ" = ( /obj/structure/bed/stool/padded/beige, /turf/unsimulated/floor/wood, @@ -70577,24 +70558,14 @@ "kaf" = ( /turf/simulated/floor/tiled, /area/merchant_station) -"kan" = ( -/obj/structure/cable/green{ - icon_state = "1-2" +"kar" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/light/spot{ - dir = 8 - }, -/obj/structure/sign/emergency/evacuation{ - dir = 8; - pixel_x = -32 - }, -/obj/effect/floor_decal/corner/dark_green{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/hangar/intrepid) +/obj/machinery/door/firedoor, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/wing/starboard/far) "kaw" = ( /obj/structure/table/reinforced/steel, /obj/machinery/light/small, @@ -70615,38 +70586,157 @@ /obj/effect/decal/cleanable/dirt, /turf/unsimulated/floor, /area/antag/burglar) -"kaC" = ( -/obj/effect/floor_decal/corner/dark_green{ +"kaA" = ( +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/railing/mapped{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/stairwell/port/deck_3) +"kaD" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/structure/grille, +/obj/structure/window/shuttle/scc_space_ship/cardinal, +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id = "bridge blast"; + name = "Bridge Blast Doors"; + opacity = 0 + }, +/obj/machinery/door/blast/shutters{ + dir = 4; + id = "shutters_deck3_captain"; + name = "Safety Shutter" + }, +/turf/simulated/floor/plating, +/area/horizon/command/heads/captain) +"kaE" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/reagent_dispensers/fueltank, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/port) +"kaG" = ( +/obj/effect/floor_decal/corner/brown{ dir = 10 }, +/obj/machinery/button/remote/blast_door{ + id = "miningbay"; + name = "Mining Bay Entrance"; + pixel_x = 22; + pixel_y = -18; + req_access = list(48) + }, +/turf/simulated/floor/tiled, +/area/horizon/operations/mining_main/refinery) +"kaK" = ( +/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/horizon/hallway/primary/deck_2/central) +"kaP" = ( +/obj/effect/floor_decal/corner_wide/yellow{ dir = 5 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/cable/green{ + icon_state = "4-8" }, /obj/structure/cable/green{ icon_state = "1-4" }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/starboard) -"kaN" = ( -/obj/machinery/power/breakerbox/activated{ - RCon_tag = "Combustion Turbine Grid Bypass" +/area/horizon/engineering/hallway/interior) +"kaS" = ( +/obj/structure/shuttle_part/scc/scout{ + density = 0; + icon_state = "6,12" + }, +/turf/simulated/floor/plating, +/area/horizon/shuttle/canary) +"kaT" = ( +/obj/effect/floor_decal/corner/mauve/full{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/xenobiology) +"kaU" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/corner/brown{ + dir = 6 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 }, -/obj/effect/floor_decal/industrial/hatch/yellow, /obj/effect/floor_decal/industrial/warning{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/aux{ - dir = 6 +/obj/structure/cable/green{ + icon_state = "1-8" }, -/turf/simulated/floor/plating, -/area/engineering/engine_room/turbine) +/turf/simulated/floor/tiled, +/area/horizon/operations/loading) +"kaV" = ( +/obj/machinery/firealarm/south, +/obj/structure/closet/walllocker/medical/secure{ + name = "O- Blood Locker"; + pixel_x = -32 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/hatch/red, +/obj/machinery/light, +/obj/item/reagent_containers/blood/OMinus, +/obj/item/reagent_containers/blood/OMinus, +/obj/item/reagent_containers/blood/OMinus, +/obj/item/reagent_containers/blood/OMinus, +/obj/item/reagent_containers/blood/OMinus, +/obj/item/reagent_containers/blood/OMinus, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/icu) "kba" = ( /obj/item/stack/material/marble{ amount = 30 @@ -70675,42 +70765,69 @@ /obj/item/device/paint_sprayer, /turf/simulated/floor/tiled, /area/merchant_station/warehouse) -"kbc" = ( -/obj/effect/decal/cleanable/blood/oil, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/maintenance/aft) -"kbo" = ( -/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/crew_quarters/cryo/living_quarters_lift) -"kbs" = ( -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled, -/area/engineering/lobby) -"kbC" = ( -/obj/structure/railing/mapped, -/obj/structure/sign/directions/prop{ - pixel_y = 32 +"kbd" = ( +/obj/structure/cable/green{ + icon_state = "1-2" }, -/turf/simulated/open, -/area/hallway/engineering) -"kbI" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 5 +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 }, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard/deck1) -"kbJ" = ( -/obj/effect/floor_decal/industrial/warning{ +/turf/simulated/floor/tiled/dark, +/area/horizon/rnd/xenoarch/storage) +"kbf" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/machinery/alarm/west, +/obj/effect/floor_decal/industrial/outline_segment/yellow{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/maintenance/deck_2/wing/starboard/nacelle) +"kbl" = ( +/obj/effect/floor_decal/corner/dark_green/full{ dir = 1 }, -/obj/structure/reagent_dispensers/watertank, +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/bed/stool/chair/padded/black{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/horizon/hangar/intrepid) +"kbH" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/industrial/warning, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/structure/disposalpipe/segment, /turf/simulated/floor/plating, -/area/maintenance/engineering) +/area/horizon/maintenance/deck_1/operations/starboard) +"kbL" = ( +/obj/structure/table/standard, +/obj/effect/floor_decal/corner_wide/paleblue/full, +/obj/machinery/button/switch/windowtint{ + dir = 8; + id = "surgery1"; + pixel_x = -21; + pixel_y = 10; + req_access = list(66) + }, +/obj/item/storage/box/gloves, +/obj/item/storage/box/masks{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/machinery/button/switch/holosign{ + dir = 8; + id = 1; + pixel_x = -21 + }, +/obj/machinery/light, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/surgery) "kbM" = ( /obj/structure/table/reinforced/steel, /obj/machinery/button/remote/blast_door{ @@ -70725,6 +70842,12 @@ icon_state = "dark_preview" }, /area/centcom/checkpoint/fore) +"kbP" = ( +/obj/structure/ladder{ + pixel_y = 8 + }, +/turf/simulated/open, +/area/horizon/maintenance/deck_3/aft/port/far) "kbQ" = ( /obj/effect/decal/fake_object{ desc = "A panel to control the elevator."; @@ -70734,41 +70857,19 @@ }, /turf/simulated/wall/elevator, /area/centcom/legion) -"kbS" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/portable_atmospherics/canister/nitrogen/prechilled, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"kbW" = ( -/obj/machinery/ammunition_loader/grauwolf{ - weapon_id = "Grauwolf Flak Battery" - }, -/turf/simulated/floor/reinforced, -/area/horizon/grauwolf) -"kbX" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/operations/lobby) -"kbZ" = ( -/obj/machinery/recharger{ - pixel_y = 1 - }, -/obj/effect/floor_decal/corner/dark_blue/full, +"kbY" = ( /obj/structure/table/steel, -/obj/machinery/camera/network/security{ - c_tag = "Security - Second Deck Checkpoint"; - dir = 4 +/obj/item/storage/belt/utility, +/obj/item/clothing/head/welding, +/obj/item/device/flashlight/heavy, +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/floor_decal/corner/dark_blue{ + dir = 9 }, /turf/simulated/floor/tiled/dark, -/area/security/checkpoint2) +/area/horizon/storage/eva) "kcb" = ( /obj/effect/map_effect/window_spawner/full/borosilicate/reinforced/firedoor, /obj/machinery/alarm/south{ @@ -70783,140 +70884,117 @@ req_one_access = list(7,47,24,11) }, /turf/simulated/floor/tiled/dark/full, -/area/outpost/research/anomaly_harvest) +/area/horizon/rnd/xenoarch/anomaly_harvest) "kcc" = ( /obj/effect/floor_decal/corner/green{ dir = 9 }, /turf/simulated/floor/holofloor/tiled, /area/horizon/holodeck/source_emptycourt) +"kcf" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/research) "kcj" = ( /obj/effect/floor_decal/corner/grey{ dir = 5 }, /turf/unsimulated/floor, /area/centcom/control) -"kcn" = ( -/obj/structure/table/standard, -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform_deco/ledge{ - dir = 10 - }, -/obj/effect/floor_decal/spline/plain{ - dir = 10 - }, -/obj/item/device/integrated_electronics/wirer{ - pixel_x = -3; - pixel_y = 10 - }, -/obj/item/device/integrated_electronics/debugger{ - pixel_x = 5; - pixel_y = 9 - }, -/turf/simulated/floor/carpet/rubber, -/area/operations/lower/machinist) -"kcq" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/full, -/area/engineering/lobby) -"kcz" = ( -/obj/effect/floor_decal/corner_wide/lime{ +"kcm" = ( +/turf/simulated/wall/shuttle/scc_space_ship/cardinal, +/area/horizon/maintenance/deck_2/wing/port) +"kcr" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/effect/floor_decal/corner/dark_blue{ dir = 6 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/reception) -"kcD" = ( -/obj/structure/table/stone/marble, -/obj/item/storage/box/plasticbag{ - pixel_x = 5; - pixel_y = 9 - }, -/obj/item/holomenu{ - pixel_x = 9 - }, -/obj/item/holomenu, -/obj/item/stack/material/cardboard{ - amount = 10; - pixel_x = 1; - pixel_y = 2 - }, -/obj/item/stack/material/cardboard{ - amount = 10; - pixel_x = 1; - pixel_y = 2 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/item/reagent_containers/spray/cleaner{ - pixel_x = -9; - pixel_y = 14 - }, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/kitchen) -"kcE" = ( -/obj/structure/cable/green{ - icon_state = "0-4" - }, -/obj/structure/cable/green{ - icon_state = "12-0" - }, -/obj/effect/floor_decal/industrial/warning/full, -/obj/structure/railing/mapped{ +/turf/simulated/floor/tiled/dark, +/area/horizon/storage/eva) +"kcs" = ( +/obj/structure/window/shuttle/scc_space_ship, +/obj/structure/grille, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/horizon/engineering/hallway/aft) +"kct" = ( +/obj/effect/floor_decal/industrial/warning{ dir = 1 }, -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/structure/disposalpipe/up{ - dir = 4 +/obj/structure/stairs_lower{ + dir = 1; + pixel_y = 9 }, /turf/simulated/floor/plating, -/area/maintenance/hangar/port) +/area/horizon/maintenance/deck_1/wing/starboard/far) +"kcw" = ( +/obj/structure/shuttle/engine/heater{ + dir = 1 + }, +/obj/structure/railing/mapped, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/port/nacelle) +"kcB" = ( +/obj/machinery/light/small, +/obj/structure/table/steel, +/obj/item/reagent_containers/spray/cleaner, +/obj/effect/floor_decal/corner/lime{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/tiled/white{ + name = "cooled white floor"; + temperature = 278.15 + }, +/area/horizon/medical/morgue) +"kcC" = ( +/turf/simulated/wall/shuttle/scc_space_ship/cardinal, +/area/horizon/command/bridge/aibunker) "kcG" = ( /obj/structure/window/shuttle/unique/ccia{ icon_state = "3,3" }, /turf/simulated/floor/plating, /area/shuttle/transport1) -"kcJ" = ( -/obj/structure/closet/crate/coffin, -/obj/structure/closet/crate/coffin{ - pixel_y = 4 +"kcI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + icon_state = "1-2" }, -/turf/simulated/floor/tiled/dark, -/area/chapel/office) -"kcL" = ( -/obj/structure/shuttle/engine/propulsion/burst/right{ +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/hangar/starboard) +"kcM" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner/dark_green{ + dir = 10 + }, +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/simulated/floor/plating, -/area/shuttle/escape_pod/pod4) +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/light/floor, +/obj/structure/railing/mapped, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_3/central) "kcP" = ( /obj/structure/closet{ icon_door = "blue"; @@ -70947,67 +71025,10 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/unsimulated/floor, /area/antag/mercenary) -"kcQ" = ( -/obj/effect/floor_decal/corner_wide/paleblue{ - dir = 9 - }, -/obj/machinery/disposal/small/east, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/machinery/camera/network/medbay{ - c_tag = "Medical - Operating Room 1"; - dir = 4; - pixel_y = -11 - }, -/turf/simulated/floor/tiled/white, -/area/medical/ors) -"kcT" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 8 - }, -/obj/machinery/airlock_sensor{ - dir = 8; - pixel_x = 20; - pixel_y = -6 - }, -/obj/effect/map_effect/marker/airlock/docking{ - landmark_tag = "nav_horizon_dock_deck_3_starboard_3"; - master_tag = "airlock_horizon_dock_deck_3_starboard_3"; - name = "airlock_horizon_dock_deck_3_starboard_3" - }, -/obj/machinery/embedded_controller/radio/airlock/docking_port{ - dir = 8; - pixel_x = 20; - pixel_y = 6 - }, -/turf/simulated/floor/plating, -/area/horizon/hallway/deck_three/primary/starboard/docks) -"kcU" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/effect/floor_decal/corner/mauve/full{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/lab) -"kcW" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/fuel, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark/full, -/area/shuttle/intrepid/starboard_compartment) +"kcX" = ( +/obj/structure/flora/ausbushes/ppflowers, +/turf/simulated/floor/grass/no_edge, +/area/horizon/service/cafeteria) "kdb" = ( /obj/effect/floor_decal/corner/red{ dir = 9 @@ -71039,10 +71060,6 @@ }, /turf/simulated/floor/lino, /area/horizon/security/investigators_office) -"kdm" = ( -/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_two/fore) "kdn" = ( /obj/effect/floor_decal/industrial/outline/yellow, /obj/machinery/power/emitter{ @@ -71050,21 +71067,14 @@ }, /turf/unsimulated/floor, /area/centcom/legion/hangar5) -"kdo" = ( -/obj/effect/floor_decal/industrial/outline/grey, -/obj/structure/closet/crate/plastic{ - name = "folding chairs crate" +"kdq" = ( +/obj/machinery/atmospherics/unary/vent_pump/siphon/on/atmos{ + id_tag = "turbine_hot_out"; + frequency = 1443; + use_power = 0 }, -/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, -/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/intrepid) +/turf/simulated/floor/reinforced/airless, +/area/horizon/engineering/atmos/turbine) "kds" = ( /obj/machinery/atmospherics/pipe/simple/heat_exchanging{ dir = 10 @@ -71072,90 +71082,27 @@ /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 - }, -/turf/simulated/wall/shuttle/scc_space_ship/cardinal, -/area/engineering/atmos/propulsion/starboard) -"kdE" = ( -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 +"kdu" = ( +/obj/structure/railing/mapped, +/obj/structure/railing/mapped{ + dir = 8 }, /obj/structure/lattice/catwalk/indoor/grate/dark, /turf/simulated/floor/plating, -/area/maintenance/wing/starboard/deck1) -"kdK" = ( -/obj/machinery/door/firedoor/multi_tile{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ +/area/horizon/maintenance/deck_2/wing/port/near) +"kdC" = ( +/obj/structure/grille, +/obj/machinery/door/firedoor, +/obj/structure/window/shuttle/scc_space_ship/cardinal, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/rnd/xenobiology/xenoflora) +"kdF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 6 }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/airlock/multi_tile/glass{ - name = "Deck 3 Central Stairwell" - }, /turf/simulated/floor/tiled, -/area/horizon/stairwell/central) -"kdN" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, -/obj/structure/disposalpipe/sortjunction/flipped{ - dir = 8; - name = "Chemistry"; - sortType = "Chemistry" - }, -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/turf/simulated/floor/tiled/white, -/area/medical/gen_treatment) -"kdP" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/dark, -/area/chapel/office) +/area/horizon/hallway/primary/deck_3/central) "kdS" = ( /obj/structure/disposalpipe/trunk{ dir = 4 @@ -71164,74 +71111,31 @@ /obj/effect/floor_decal/corner/brown/diagonal, /turf/simulated/floor/tiled/dark, /area/horizon/holodeck_control) -"kdZ" = ( -/obj/effect/floor_decal/corner_wide/black{ - dir = 10 - }, -/obj/effect/floor_decal/industrial/warning, -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/simple/visible/green{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/engineering/atmos/propulsion) -"kef" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/wood, -/area/maintenance/wing/starboard) -"keg" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/effect/floor_decal/corner/dark_green{ - dir = 9 - }, -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/structure/cable/green{ - icon_state = "2-4" - }, -/obj/structure/disposalpipe/sortjunction/flipped{ - dir = 1; - icon_state = "pipe-j1s"; - name = "Auxiliary Custodial Closet"; - sortType = "Auxiliary Custodial Closet" - }, -/turf/simulated/floor/tiled, -/area/horizon/stairwell/central) -"keh" = ( -/obj/structure/bed/handrail{ - dir = 8 - }, -/obj/machinery/light/spot{ - dir = 8 - }, +"kdT" = ( /obj/structure/cable{ icon_state = "1-2" }, -/obj/structure/lattice/catwalk/indoor, -/obj/machinery/camera/network/canary{ - c_tag = "Canary - Aft External"; - dir = 4 +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance{ + dir = 1; + name = "Engineering Hard Storage Maintenance"; + req_one_access = list(11,24) }, -/turf/simulated/floor/reinforced, -/area/shuttle/canary) +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/storage_hard) +"kdV" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 1 + }, +/obj/structure/bed/stool/chair/office/dark{ + dir = 1 + }, +/turf/simulated/floor/carpet/rubber, +/area/horizon/engineering/reactor/indra/monitoring) "kek" = ( /obj/machinery/door/airlock/centcom{ dir = 1; @@ -71242,12 +71146,6 @@ icon_state = "dark_preview" }, /area/centcom/holding) -"kel" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/lounge) "kem" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 10 @@ -71263,15 +71161,58 @@ icon_state = "dark_preview" }, /area/centcom/control) -"keo" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 10 +"kes" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 5 }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 +/obj/machinery/power/apc/north, +/obj/structure/cable/green{ + icon_state = "0-8" + }, +/obj/structure/table/standard, +/obj/item/storage/bag/circuits/basic{ + pixel_y = 6 }, /turf/simulated/floor/tiled, -/area/hallway/primary/central_one) +/area/horizon/engineering/lobby) +"kew" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/atmos) +"key" = ( +/obj/effect/floor_decal/corner/grey/diagonal{ + dir = 8 + }, +/obj/machinery/firealarm/east, +/obj/structure/closet/secure_closet/refrigerator/cafe, +/obj/effect/floor_decal/industrial/outline/grey, +/turf/simulated/floor/tiled/white, +/area/horizon/service/cafeteria) +"keB" = ( +/obj/effect/floor_decal/industrial/warning/cee{ + dir = 8 + }, +/obj/machinery/alarm/west, +/turf/simulated/floor/tiled/full, +/area/horizon/engineering/storage_hard) +"keG" = ( +/obj/machinery/power/apc/south, +/obj/structure/cable/green, +/obj/structure/table/standard, +/obj/item/paper_scanner, +/obj/item/pen, +/obj/item/folder/white, +/obj/item/folder/blue, +/obj/effect/floor_decal/corner/beige{ + dir = 10 + }, +/obj/structure/closet/walllocker/medical/firstaid{ + pixel_y = -32 + }, +/turf/simulated/floor/tiled, +/area/horizon/crew/vacantoffice) "keI" = ( /obj/structure/cable/green{ icon_state = "2-8" @@ -71284,69 +71225,31 @@ }, /turf/simulated/floor/tiled, /area/horizon/security/hallway) -"keK" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 +"keX" = ( +/obj/effect/floor_decal/corner_wide/paleblue{ + dir = 9 }, -/turf/simulated/floor/wood, -/area/crew_quarters/lounge/secondary) -"keM" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/sortjunction/flipped{ - name = "Hydroponics"; - sortType = "Hydroponics" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/full, -/area/horizon/hallway/deck_two/fore) -"keQ" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/computer/general_air_control/large_tank_control/terminal{ - sensors = list("co2_sensor"="Tank"); - output_tag = "co2_out"; - name = "Carbon Dioxide Supply Console"; - input_tag = "co2_in" - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/atmos) -"kfb" = ( -/obj/machinery/gravity_generator/main/station, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/reinforced, -/area/engineering/gravity_gen) -"kfc" = ( -/obj/machinery/light/small/emergency{ +/obj/item/device/radio/intercom/west, +/obj/machinery/light/floor{ dir = 8 }, -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 4 +/turf/simulated/floor/tiled/white, +/area/horizon/medical/hallway/upper) +"kfh" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 }, -/obj/effect/map_effect/marker/airlock{ - frequency = 2001; - master_tag = "airlock_horizon_deck_2_starboard_aft"; - name = "airlock_horizon_deck_2_starboard_aft" - }, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard) -"kfe" = ( -/obj/effect/floor_decal/corner/brown/full, -/obj/machinery/disposal/small/east{ - pixel_x = -16 - }, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/machinery/firealarm/south, /turf/simulated/floor/tiled, -/area/operations/office_aux) +/area/horizon/maintenance/deck_2/wing/starboard/auxatmos) +"kfl" = ( +/obj/machinery/button/remote/blast_door{ + id = "shutters_deck2_grauwolf"; + name = "Safety Blast Doors Control"; + pixel_y = -28; + dir = 6 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/weapons/grauwolf) "kfn" = ( /obj/structure/flora/ausbushes/palebush, /turf/simulated/floor/holofloor/beach/sand{ @@ -71354,22 +71257,60 @@ icon_state = "beachcorner" }, /area/horizon/holodeck/source_desert) -"kfo" = ( -/obj/structure/bed/stool/chair/padded/brown{ - dir = 8 +"kfr" = ( +/obj/structure/cable{ + icon_state = "1-2" }, -/turf/simulated/floor/carpet, -/area/bridge/cciaroom) +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/main/starboard) +"kfv" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/spline/fancy/wood/corner{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/horizon/service/dining_hall) "kfw" = ( /obj/effect/floor_decal/spline/plain, /turf/unsimulated/floor, /area/centcom/specops) +"kfy" = ( +/obj/machinery/door/airlock/external, +/obj/machinery/access_button{ + pixel_x = -28 + }, +/obj/effect/map_effect/marker_helper/airlock/exterior, +/obj/effect/map_effect/marker/airlock/docking{ + landmark_tag = "nav_horizon_dock_deck_3_starboard_3"; + master_tag = "airlock_horizon_dock_deck_3_starboard_3"; + name = "airlock_horizon_dock_deck_3_starboard_3" + }, +/turf/simulated/floor/plating, +/area/horizon/hallway/primary/deck_3/port/docks) "kfA" = ( /obj/effect/floor_decal/spline/fancy/wood/corner{ dir = 8 }, /turf/simulated/floor/holofloor/lino, /area/horizon/holodeck/source_courtroom) +"kfE" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 10 + }, +/obj/structure/platform_stairs{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/lab) "kfG" = ( /obj/effect/decal/fake_object{ icon = 'icons/obj/doors/rapid_pdoor.dmi'; @@ -71380,93 +71321,11 @@ /obj/structure/table/reinforced/wood, /turf/unsimulated/floor, /area/antag/raider) -"kfO" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/corner/brown{ - dir = 9 - }, -/obj/effect/landmark/start{ - name = "Hangar Technician" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/light/floor{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/operations/office) "kfP" = ( /obj/effect/floor_decal/industrial/outline/yellow, /obj/structure/table/rack, /turf/unsimulated/floor/dark_monotile, /area/antag/actor) -"kfV" = ( -/obj/structure/table/glass, -/obj/item/clothing/accessory/sleevepatch/scc{ - pixel_x = -8; - pixel_y = 4 - }, -/obj/item/clothing/accessory/sleevepatch/scc, -/obj/item/clothing/accessory/sleevepatch/scc{ - pixel_x = 6; - pixel_y = 4 - }, -/obj/item/clothing/head/beret/scc{ - pixel_y = 15; - pixel_x = -11 - }, -/obj/item/clothing/head/beret/scc{ - pixel_y = 15; - pixel_x = -2 - }, -/obj/item/clothing/head/beret/scc{ - pixel_y = 15; - pixel_x = 7 - }, -/obj/item/clothing/accessory/armband/scc{ - pixel_y = -8; - pixel_x = -12 - }, -/obj/item/clothing/accessory/armband/scc{ - pixel_y = -8; - pixel_x = -1 - }, -/obj/item/clothing/accessory/armband/scc{ - pixel_y = -10; - pixel_x = 5 - }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/bridge/supply) -"kga" = ( -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/effect/floor_decal/corner/black{ - dir = 9 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/hangar/intrepid) -"kgc" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/structure/table/rack, -/obj/item/stack/material/deuterium/full, -/obj/item/stack/material/deuterium/full, -/turf/simulated/floor/carpet/rubber, -/area/engineering/engine_room/rust) "kgd" = ( /obj/effect/decal/fake_object{ desc = "Ding."; @@ -71484,66 +71343,58 @@ icon_state = "desert" }, /area/centcom/shared_dream) -"kgh" = ( -/obj/structure/bed/stool/chair/office/bridge/generic{ - dir = 8 +"kgi" = ( +/obj/structure/cable{ + icon_state = "4-8" }, -/turf/simulated/floor/carpet, -/area/crew_quarters/heads/chief) +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/starboard/near) "kgj" = ( /turf/unsimulated/wall/steel, /area/antag/ninja) -"kgo" = ( -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 8 +"kgm" = ( +/obj/machinery/light/small/emergency{ + dir = 1 }, -/turf/simulated/floor/reinforced/airless, -/area/engineering/engine_room/rust) -"kgz" = ( -/obj/structure/morgue{ - dir = 2 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/dark/full, -/area/operations/lower/machinist/surgicalbay) -"kgA" = ( -/obj/machinery/door/firedoor, -/obj/effect/map_effect/door_helper/unres, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/blast/shutters/open{ - dir = 2; - id = "securitycommandshutter"; - name = "Security Checkpoint External Shutter" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/map_effect/door_helper/level_access/command_foyer{ - req_one_access_by_level = list("green","yellow"=list(19,38,72),"blue"=list(19,38,72),"red"=list(19,38,72),"delta"=list(19,38,72)); - access_by_level = null - }, -/obj/machinery/door/airlock/glass_command{ - dir = 1; - id_tag = "command_foyer"; - name = "Bridge"; - req_one_access = list(19,38,72) - }, -/turf/simulated/floor/tiled/full, -/area/horizon/hallway/deck_three/primary/central) -"kgB" = ( +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/wing/port/far) +"kgs" = ( +/obj/structure/table/wood, /obj/effect/floor_decal/spline/fancy/wood{ - dir = 4 + dir = 7 }, -/obj/structure/noticeboard{ - desc = "A board for uncovering hidden conspiracies."; - name = "corkboard"; - pixel_x = 32 +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 }, +/obj/structure/window/reinforced, /turf/simulated/floor/wood, -/area/journalistoffice) +/area/horizon/command/bridge/upperdeck) +"kgy" = ( +/obj/structure/grille, +/obj/structure/railing/mapped, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/port/far) +"kgD" = ( +/obj/machinery/meter, +/obj/effect/floor_decal/corner_wide/black{ + dir = 10 + }, +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/atmospherics/pipe/simple/visible/green{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/atmos/propulsion) "kgE" = ( /obj/structure/table/stone/marble, /obj/machinery/chemical_dispenser/bar_alc/full{ @@ -71563,22 +71414,75 @@ }, /turf/unsimulated/floor/monotile, /area/antag/loner) -"kgN" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, +"kgG" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/obj/structure/disposalpipe/junction{ - dir = 8 +/obj/structure/cable/green{ + icon_state = "4-8" }, -/obj/structure/lattice/catwalk/indoor/grate, -/turf/simulated/floor, -/area/horizon/hallway/deck_three/primary/port) +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/light/small/emergency{ + dir = 1 + }, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/research) +"kgP" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/operations/starboard/far) +"kgW" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 10 + }, +/obj/machinery/ai_status_display{ + pixel_y = -32 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/light/floor, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_3/port) +"kgZ" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/obj/structure/disposaloutlet, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/disposalpipe/trunk, +/turf/simulated/floor/reinforced, +/area/horizon/rnd/xenobiology) +"khb" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/bed/stool/bar/padded/red{ + dir = 1 + }, +/turf/simulated/floor/lino, +/area/horizon/service/bar) "khd" = ( /obj/structure/bed/stool/padded{ pixel_y = 10 @@ -71591,25 +71495,13 @@ icon_state = "dark_preview" }, /area/centcom/specops) -"khe" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 5 +"khg" = ( +/obj/machinery/shower{ + pixel_y = 12 }, -/obj/machinery/status_display{ - pixel_y = 32 - }, -/obj/machinery/power/apc/north{ - is_critical = 1 - }, -/obj/structure/cable/green{ - icon_state = "0-8" - }, -/obj/machinery/camera/network/command{ - c_tag = "Bridge - Conference room"; - dir = 8 - }, -/turf/simulated/floor/wood, -/area/bridge/meeting_room) +/obj/effect/floor_decal/industrial/outline/security, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/rnd/xenobiology) "khj" = ( /obj/machinery/light{ dir = 8 @@ -71619,12 +71511,14 @@ }, /turf/unsimulated/floor, /area/centcom/holding) -"kho" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 +"khl" = ( +/obj/machinery/mineral/stacking_machine{ + id = "horizon_stacking_2"; + dir = 8 }, +/obj/effect/floor_decal/industrial/warning/full, /turf/simulated/floor/plating, -/area/maintenance/wing/starboard/deck1) +/area/horizon/operations/mining_main/refinery) "khq" = ( /obj/effect/floor_decal/spline/plain{ dir = 4 @@ -71639,18 +71533,6 @@ density = 1 }, /area/centcom/shared_dream) -"khs" = ( -/obj/structure/table/stone/marble, -/obj/item/material/kitchen/rollingpin{ - pixel_x = 6; - pixel_y = 10 - }, -/obj/item/material/knife{ - pixel_x = -9 - }, -/obj/item/storage/box/produce, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/kitchen) "khv" = ( /obj/effect/floor_decal/corner/dark_blue{ dir = 9 @@ -71661,144 +71543,255 @@ }, /turf/simulated/floor/tiled, /area/horizon/security/holding_cell_b) -"khx" = ( -/obj/effect/decal/cleanable/dirt, -/obj/random/junk, -/obj/effect/floor_decal/industrial/warning/cee{ +"khw" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_2/starboard) +"khy" = ( +/obj/effect/floor_decal/corner/dark_green/full{ + dir = 1 + }, +/obj/machinery/door/window/northright, +/obj/structure/sign/drop{ + desc = "A warning sign which reads 'DANGER: FALLING HAZARD' and 'THIS EQUIPMENT STARTS AND STOPS AUTOMATICALLY'."; + name = "\improper DANGER: FALLING HAZARD sign"; + pixel_x = 32; + pixel_y = 16 + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/horizon/stairwell/port/deck_3) +"khB" = ( +/obj/effect/floor_decal/corner/grey/full{ dir = 8 }, -/turf/simulated/floor/tiled/dark, -/area/maintenance/wing/starboard/far) +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/power/apc/north, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/chem_heater, +/turf/simulated/floor/lino, +/area/horizon/service/bar) "khC" = ( /obj/structure/window/reinforced/holowindow, /turf/simulated/floor/holofloor/tiled, /area/horizon/holodeck/source_boxingcourt) -"khF" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, +"khD" = ( /obj/structure/cable{ - icon_state = "1-2" + icon_state = "4-8" }, -/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 - }, -/turf/simulated/floor/tiled, -/area/operations/office) -"khO" = ( /obj/machinery/door/airlock/maintenance{ dir = 4; - req_access = list(12); - welded = 1 - }, -/obj/item/tape/engineering{ - icon_state = "engineering_door" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 + req_access = list(12) }, /obj/machinery/door/firedoor, /turf/simulated/floor/plating, -/area/maintenance/engineering/auxillary) -"khP" = ( -/obj/machinery/alarm/east, -/turf/simulated/floor, -/area/horizon/maintenance/deck_three/aft/starboard) -"kia" = ( -/obj/structure/bed/stool/chair/padded/black{ +/area/horizon/engineering/hallway/fore) +"khH" = ( +/obj/machinery/recharger/wallcharger{ + pixel_x = 4; + pixel_y = 20 + }, +/obj/machinery/recharger/wallcharger{ + pixel_x = 4; + pixel_y = 30 + }, +/obj/structure/bed/stool/chair/office/dark{ + dir = 4 + }, +/obj/effect/floor_decal/corner_wide/purple/full{ + dir = 1 + }, +/obj/effect/floor_decal/corner_wide/purple/diagonal, +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/test_range) +"khL" = ( +/obj/machinery/door/airlock{ + dir = 1; + name = "Washroom" + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/horizon/crew/washroom/deck_3) +"khM" = ( +/obj/machinery/light/small/emergency, +/obj/effect/floor_decal/industrial/warning{ dir = 8 }, -/obj/machinery/button/remote/airlock{ - desc = "A remote control-switch for the office door."; - id = "chapdoor"; - name = "Office Door Control"; - pixel_x = 6; - pixel_y = 28; - req_access = list(22) +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/main/starboard) +"khN" = ( +/obj/structure/disposalpipe/up, +/obj/machinery/atmospherics/pipe/zpipe/up/supply, +/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers, +/obj/structure/railing/mapped, +/obj/structure/railing/mapped{ + dir = 8 }, -/obj/machinery/button/switch/windowtint{ - id = "chapel"; - pixel_x = -6; - pixel_y = 28 +/obj/structure/railing/mapped{ + dir = 4 }, -/turf/simulated/floor/carpet, -/area/chapel/office) +/obj/effect/floor_decal/industrial/warning/cee, +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/structure/cable{ + icon_state = "12-0" + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/aft) +"khR" = ( +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/structure/platform/ledge{ + dir = 1 + }, +/obj/structure/platform/ledge{ + dir = 8 + }, +/obj/structure/platform_deco/ledge{ + dir = 10 + }, +/obj/structure/platform_deco/ledge{ + dir = 6 + }, +/obj/structure/railing/mapped, +/obj/structure/platform/ledge{ + dir = 4 + }, +/turf/simulated/open, +/area/horizon/hallway/primary/deck_3/central) +"khW" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/port/near) +"khZ" = ( +/obj/structure/window/reinforced{ + dir = 4; + maxhealth = 140 + }, +/obj/machinery/power/apc/low/north, +/obj/effect/floor_decal/corner/dark_green/full{ + dir = 1 + }, +/obj/structure/table/standard, +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/obj/structure/bedsheetbin{ + pixel_y = 7 + }, +/turf/simulated/floor/tiled, +/area/horizon/crew/fitness/changing) "kid" = ( /obj/structure/lattice, /obj/machinery/atmospherics/valve/open, /turf/space/dynamic, /area/horizon/exterior) -"kig" = ( -/obj/structure/table/wood, -/obj/item/modular_computer/laptop/preset/security/hos{ - pixel_y = 9 +"kie" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 10 + }, +/turf/simulated/floor/wood, +/area/horizon/rnd/hallway/secondary) +"kio" = ( +/obj/structure/bed/stool/chair/office/dark{ + dir = 4 + }, +/obj/effect/landmark/start{ + name = "Operations Manager" }, /turf/simulated/floor/carpet, -/area/horizon/security/head_of_security) -"kii" = ( -/obj/machinery/camera/network/engineering{ - c_tag = "Engineering - C-Goliath Drive Room 1" +/area/horizon/command/heads/om) +"kip" = ( +/obj/structure/closet/emcloset, +/obj/effect/floor_decal/corner/white/diagonal, +/obj/effect/floor_decal/spline/plain{ + dir = 4 }, -/obj/effect/floor_decal/corner_wide/yellow{ - dir = 5 +/obj/effect/floor_decal/industrial/outline/emergency_closet, +/turf/simulated/floor/tiled/dark, +/area/horizon/hallway/primary/deck_3/central) +"kiA" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/simulated/floor/tiled, -/area/engineering/bluespace_drive) -"kik" = ( -/obj/structure/cable/green{ - icon_state = "1-2" +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance{ + dir = 4; + name = "Deck 3 Medical Maintenance"; + req_access = list(5) }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/corner_wide/green{ +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 4; + icon_state = "shutter0"; + id = "LCKDshutters"; + name = "Medical Lockdown Shutters"; + opacity = 0 + }, +/turf/simulated/floor, +/area/horizon/maintenance/deck_3/aft/holodeck) +"kiE" = ( +/obj/effect/floor_decal/industrial/warning{ dir = 6 }, +/obj/machinery/atmospherics/unary/heater{ + dir = 8 + }, /obj/structure/railing/mapped{ dir = 4 }, -/turf/simulated/floor/tiled/white, -/area/hallway/medical/upper) -"kim" = ( -/obj/effect/floor_decal/corner/green/diagonal, -/obj/structure/undies_wardrobe{ - pixel_y = 1 - }, -/turf/simulated/floor/tiled/white, -/area/horizon/crew_quarters/fitness/changing) -"kis" = ( -/obj/structure/lattice/catwalk/indoor, -/obj/effect/floor_decal/industrial/outline/red, -/obj/item/hullbeacon/green, -/obj/structure/bed/handrail{ - dir = 8 - }, /turf/simulated/floor/plating, -/area/shuttle/intrepid/starboard_compartment) -"kiw" = ( -/obj/structure/lattice/catwalk, -/obj/structure/ladder/up{ - pixel_y = 10 +/area/horizon/rnd/xenoarch/atrium) +"kiG" = ( +/obj/structure/cable/orange{ + icon_state = "4-8" }, -/turf/space/dynamic, -/area/template_noop) -"kiD" = ( -/obj/structure/railing/mapped, -/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/camera/network/reactor{ + c_tag = "Engineering - INDRA SMES Room 2" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/reactor/indra/mainchamber) +"kiI" = ( /obj/structure/cable{ icon_state = "4-8" }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /turf/simulated/floor/plating, -/area/maintenance/aft) +/area/horizon/maintenance/deck_2/wing/port/far) "kiL" = ( /obj/effect/floor_decal/corner/red/full{ dir = 4 @@ -71817,74 +71810,16 @@ icon_state = "desert" }, /area/centcom/shared_dream) -"kiR" = ( -/obj/structure/cable/green{ - icon_state = "4-8" +"kiT" = ( +/obj/structure/shuttle_part/scc_space_ship{ + icon_state = "d3-4-f" }, -/obj/effect/floor_decal/corner/mauve{ - dir = 5 - }, -/obj/structure/sign/science{ - pixel_y = 32 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/structure/disposalpipe/junction{ - dir = 8; - icon_state = "pipe-j2" - }, -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/turf/simulated/floor/tiled, -/area/rnd/hallway) -"kiU" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/white, -/area/hallway/medical/upper) -"kiV" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/spline/plain/blue{ - dir = 8 - }, -/obj/effect/floor_decal/spline/plain/red{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/horizon/hydroponics/lower) -"kjf" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/port) -"kjk" = ( -/obj/effect/floor_decal/industrial/warning/cee{ - dir = 1 - }, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/structure/grille, -/obj/structure/railing/mapped{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark/full/airless, -/area/bridge/controlroom) +/turf/simulated/wall, +/area/horizon/maintenance/deck_2/wing/port) +"kjc" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/yellow, +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/atmos) "kjl" = ( /obj/structure/flora/ausbushes/sparsegrass, /obj/effect/floor_decal/spline/fancy/wood{ @@ -71894,12 +71829,6 @@ /obj/structure/flora/ausbushes/ywflowers, /turf/simulated/floor/holofloor/grass, /area/horizon/holodeck/source_picnicarea) -"kjn" = ( -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/engine_room/rust) "kjr" = ( /obj/effect/floor_decal/corner/dark_blue{ dir = 9 @@ -71939,111 +71868,45 @@ }, /turf/simulated/floor/lino, /area/horizon/security/investigators_office) -"kjv" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 +"kju" = ( +/obj/machinery/door/airlock{ + dir = 4; + name = "Restroom" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/effect/floor_decal/corner/brown{ - dir = 5 - }, -/obj/machinery/status_display/supply_display{ - pixel_y = 32 - }, -/turf/simulated/floor/tiled, -/area/hangar/operations) -"kjx" = ( -/obj/machinery/atmospherics/pipe/simple/visible/cyan{ - dir = 10 - }, -/obj/structure/railing/mapped{ +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/turf/simulated/floor/plating, -/area/engineering/engine_room) +/obj/machinery/door/firedoor{ + dir = 4 + }, +/turf/simulated/floor/tiled/full, +/area/horizon/command/bridge/supply) "kjy" = ( /obj/effect/floor_decal/corner/grey, /turf/unsimulated/floor, /area/antag/mercenary) -"kjB" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/effect/floor_decal/industrial/warning{ +"kjz" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 1 }, /turf/simulated/floor/tiled/dark/full, -/area/engineering/bluespace_drive) -"kjF" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/shutters/open{ - dir = 8; - id = "shutters_deck3_cafedesk"; - name = "Cafe Desk Shutter" - }, -/obj/structure/table/stone/marble, -/obj/random/pottedplant_small{ - pixel_x = -8 - }, -/obj/machinery/power/outlet{ - pixel_y = 4; - pixel_x = 10 - }, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/cafeteria) -"kjH" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 +/area/horizon/engineering/reactor/supermatter/mainchamber) +"kjC" = ( +/obj/machinery/optable, +/obj/machinery/light{ + dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/rnd/xenoarch_storage) -"kjJ" = ( -/obj/effect/floor_decal/corner_wide/green{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/light, -/turf/simulated/floor/tiled/white, -/area/hallway/medical) -"kjN" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 9 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/lounge/secondary) +/area/horizon/rnd/xenobiology/dissection) "kjU" = ( /obj/effect/decal/cleanable/dirt, /mob/living/heavy_vehicle/premade/light/legion, /turf/unsimulated/floor/plating, /area/centcom/legion/hangar5) -"kjY" = ( -/obj/structure/closet, -/obj/random/loot, -/obj/random/junk, -/turf/simulated/floor, -/area/maintenance/security_port) "kjZ" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 5 @@ -72051,32 +71914,14 @@ /obj/machinery/light/small/floor, /turf/unsimulated/floor/wood, /area/antag/actor) -"kka" = ( -/obj/machinery/light, -/obj/effect/floor_decal/industrial/hatch/red, -/obj/machinery/atmospherics/binary/pump/high_power{ - name = "Propellant Bleed Pump" - }, -/turf/simulated/floor/tiled/dark, -/area/engineering/atmos/propulsion/starboard) -"kki" = ( -/obj/structure/bed/handrail{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ +"kkg" = ( +/obj/machinery/portable_atmospherics/canister/air, +/obj/machinery/atmospherics/portables_connector{ dir = 1 }, -/obj/effect/map_effect/marker/airlock/shuttle{ - cycle_to_external_air = 1; - master_tag = "airlock_shuttle_intrepid"; - name = "airlock_shuttle_intrepid"; - req_one_access = null; - shuttle_tag = "Intrepid" - }, -/obj/effect/map_effect/marker_helper/airlock/out, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/shuttle/intrepid/main_compartment) +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark, +/area/horizon/maintenance/deck_2/wing/starboard/auxatmos) "kko" = ( /obj/effect/floor_decal/corner/grey{ dir = 10 @@ -72093,21 +71938,36 @@ }, /turf/unsimulated/floor/marble, /area/antag/wizard) -"kkx" = ( -/obj/machinery/alarm/east, +"kkt" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 9 + }, +/obj/machinery/alarm/west, +/turf/simulated/floor/tiled, +/area/horizon/hangar/auxiliary) +"kkD" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, /obj/structure/disposalpipe/segment, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/horizon/maintenance/deck_two/fore/port) -"kkz" = ( -/obj/machinery/light{ +/obj/effect/floor_decal/corner/dark_green{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 4 }, -/obj/effect/floor_decal/spline/plain{ - dir = 5 - }, -/turf/simulated/floor/carpet/rubber, -/area/engineering/engine_monitoring) +/turf/simulated/floor/tiled, +/area/horizon/stairwell/starboard/deck_2) +"kkG" = ( +/obj/machinery/light, +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/atmos/propulsion/starboard) "kkI" = ( /obj/machinery/hologram/holopad/long_range, /turf/simulated/floor/shuttle/dark_red, @@ -72144,34 +72004,19 @@ }, /turf/space/transit/north, /area/template_noop) -"kkS" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/corner/brown/diagonal, -/turf/simulated/floor/tiled/dark, -/area/outpost/mining_main/eva) -"kkT" = ( -/obj/structure/cable/orange{ - icon_state = "0-2" - }, -/obj/structure/cable/orange, -/obj/machinery/power/emitter{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 6 - }, -/turf/simulated/floor/plating, -/area/engineering/bluespace_drive) -"kkY" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +"kkV" = ( +/obj/structure/disposalpipe/segment, /obj/structure/cable/green{ - icon_state = "4-8" + icon_state = "1-2" }, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenoarch_storage) +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/corner_wide/green/full{ + dir = 1 + }, +/obj/effect/floor_decal/sign/w, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/hallway) "kkZ" = ( /obj/effect/floor_decal/corner/white/diagonal, /obj/effect/floor_decal/spline/plain{ @@ -72193,12 +72038,6 @@ }, /turf/unsimulated/floor/plating, /area/centcom/legion) -"kli" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) "klj" = ( /obj/effect/decal/fake_object{ desc = "The flag of the Trinary Perfection."; @@ -72216,6 +72055,10 @@ /obj/random/pottedplant, /turf/simulated/floor/marble, /area/horizon/holodeck/source_trinary) +"kll" = ( +/obj/effect/spider/stickyweb, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/operations/starboard) "kln" = ( /obj/effect/floor_decal/corner/paleblue/diagonal{ dir = 8 @@ -72233,89 +72076,90 @@ icon_state = "white" }, /area/tdome/tdomeobserve) -"klq" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 5 - }, -/obj/machinery/door/firedoor, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/full, -/area/hallway/primary/central_two) -"klt" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/structure/platform, -/turf/simulated/floor/reinforced, -/area/bridge/controlroom) -"kly" = ( -/obj/structure/bed/stool/chair/office/light{ - dir = 8 - }, -/obj/effect/landmark/start{ - name = "Lab Assistant" - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 5 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ +"klu" = ( +/obj/effect/floor_decal/corner/dark_blue/full{ dir = 4 }, +/obj/structure/table/steel, +/obj/item/storage/box/gloves, +/obj/item/storage/box/gloves{ + pixel_y = 11 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/storage/eva) +"klA" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 6 + }, +/obj/effect/floor_decal/corner/mauve{ + dir = 6 + }, +/obj/machinery/hologram/holopad, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/conference) +"klD" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/effect/decal/cleanable/blood/oil, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/wing/starboard) +"klK" = ( +/obj/structure/bed/stool/chair/padded/brown{ + dir = 8 + }, +/obj/effect/floor_decal/spline/fancy/wood/cee{ + dir = 4 + }, +/obj/structure/window/reinforced, /turf/simulated/floor/wood, -/area/rnd/conference) +/area/horizon/command/bridge/upperdeck) "klL" = ( /obj/effect/floor_decal/corner/red{ dir = 10 }, /turf/simulated/floor/holofloor/tiled, /area/template_noop) -"klM" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/railing/mapped, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor, -/area/maintenance/engineering_ladder) -"klQ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 +"klO" = ( +/obj/structure/flora/ausbushes/fullgrass, +/obj/machinery/light/small{ + dir = 8 }, +/turf/unsimulated/floor/grass, +/area/antag/actor) +"klT" = ( /obj/structure/cable/green{ - icon_state = "4-8" + icon_state = "2-4" }, -/obj/effect/floor_decal/corner/grey{ - dir = 6 - }, -/turf/simulated/floor/lino, -/area/horizon/bar) -"klR" = ( -/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/brown/full{ +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 1 }, -/turf/simulated/floor/tiled, -/area/operations/storage) +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/effect/floor_decal/spline/fancy/wood, +/obj/structure/bed/stool/bar/padded/red, +/turf/simulated/floor/wood, +/area/horizon/service/bar) "klV" = ( /obj/machinery/power/emitter{ dir = 8 @@ -72325,6 +72169,49 @@ icon_state = "dark_preview" }, /area/centcom/specops) +"klW" = ( +/obj/effect/floor_decal/industrial/outline/service, +/obj/machinery/vending/hydronutrients/hydroponics, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/service/hydroponics) +"klY" = ( +/obj/structure/closet/crate, +/obj/random/loot, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/light/small/emergency{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/port/far) +"kme" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/full, +/area/horizon/stairwell/starboard/deck_1) +"kmh" = ( +/obj/effect/floor_decal/corner_wide/blue, +/obj/effect/floor_decal/corner_wide/yellow{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/effect/floor_decal/spline/plain{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/horizon/engineering/atmos/storage) +"kmi" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 5 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/horizon/operations/lobby) "kmj" = ( /obj/effect/floor_decal/corner/dark_blue{ dir = 10 @@ -72350,6 +72237,37 @@ /obj/random/weapon_and_ammo, /turf/simulated/floor/tiled/dark/full, /area/shuttle/skipjack) +"kmm" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/engineer_maintenance/pipe{ + dir = 8 + }, +/obj/structure/engineer_maintenance/electric{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/horizon/repoffice/representative_one) +"kmo" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/horizon/operations/warehouse) +"kmr" = ( +/obj/machinery/light/small/emergency, +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/service/starboard) "kms" = ( /obj/effect/floor_decal/industrial/warning{ dir = 6 @@ -72360,38 +72278,48 @@ }, /turf/simulated/floor/tiled/dark/full, /area/turbolift/scc_ship/robotics_lift) -"kmB" = ( -/obj/effect/floor_decal/spline/plain{ +"kmu" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/wood, +/area/horizon/medical/psych) +"kmv" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/corner/pink/diagonal, +/obj/random/dirt_75, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark, +/area/horizon/maintenance/deck_2/wing/starboard/nacelle) +"kmw" = ( +/obj/effect/floor_decal/corner/dark_blue{ dir = 10 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/black{ - dir = 10 +/obj/machinery/alarm/south, +/turf/simulated/floor/tiled, +/area/horizon/rnd/eva) +"kmC" = ( +/obj/machinery/door/airlock/highsecurity{ + name = "AI Core Foyer"; + req_access = list(16) }, /obj/structure/cable/green{ - icon_state = "4-8" + icon_state = "1-2" }, -/turf/simulated/floor/carpet/rubber, -/area/tcommsat/entrance) -"kmD" = ( -/obj/structure/window/shuttle/scc_space_ship/cardinal, -/obj/structure/grille, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/dark/full, -/area/crew_quarters/heads/hor) -"kmG" = ( -/obj/machinery/atmospherics/unary/vent_pump{ - icon_state = "map_vent_out"; - use_power = 1; - dir = 1 +/obj/machinery/door/blast/regular/open{ + id = "AICore"; + name = "AI Core Blast Door"; + dir = 4 }, -/turf/simulated/floor/bluegrid/server, -/area/server) +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/dark, +/area/horizon/ai/upload) "kmL" = ( /obj/structure/cable/green{ icon_state = "1-2" @@ -72400,14 +72328,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/full, /area/horizon/security/hallway) -"kmO" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/structure/closet/chefcloset, -/obj/item/device/quikpay, -/obj/effect/floor_decal/industrial/outline/grey, -/obj/effect/floor_decal/spline/plain/corner, -/turf/simulated/floor/tiled/white, -/area/horizon/kitchen) "kmP" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -72422,30 +72342,6 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /turf/simulated/floor/tiled/full, /area/horizon/security/hallway) -"kmQ" = ( -/obj/machinery/door/airlock/hatch{ - dir = 1; - name = "Port Maneuvering Propulsion"; - req_one_access = list(11,24) - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/maintenance/wing/port/far) -"kmS" = ( -/obj/structure/disposalpipe/junction{ - dir = 1 - }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/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/hangar/intrepid/interstitial) "kmU" = ( /obj/effect/mist, /turf/simulated/floor/exoplanet/water/shallow{ @@ -72454,64 +72350,79 @@ icon_state = "beach" }, /area/horizon/holodeck/source_moghes) -"kmV" = ( +"knd" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 10 + }, +/obj/machinery/camera/network/second_deck{ + c_tag = "Second Deck - Living Quarters Lift"; + dir = 1 + }, +/obj/effect/landmark/latejoin, +/turf/simulated/floor/tiled, +/area/horizon/crew/resdeck/living_quarters_lift) +"knh" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 4 - }, -/obj/effect/floor_decal/corner/dark_blue, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/platform_deco{ - dir = 8 - }, /turf/simulated/floor/tiled, -/area/bridge) -"kmW" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/cable/green{ - icon_state = "2-4" - }, -/turf/simulated/floor/tiled/full, -/area/hallway/primary/central_two) -"kna" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/structure/tank_wall/carbon_dioxide{ - icon_state = "co2-4" - }, -/turf/simulated/floor/airless, -/area/engineering/atmos) +/area/horizon/service/custodial/auxiliary) "knk" = ( /obj/structure/table/standard, /obj/item/stack/packageWrap, /obj/item/device/hand_labeler, /turf/simulated/floor/tiled, /area/merchant_station/warehouse) -"knl" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/floor_decal/corner/dark_green/full{ +"knm" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/spline/fancy/wood{ dir = 1 }, -/obj/structure/cable{ - icon_state = "2-8" +/turf/simulated/floor/wood, +/area/horizon/crew/lounge) +"kno" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 9 }, -/turf/simulated/floor/tiled, -/area/hallway/primary/aft) +/obj/machinery/button/remote/blast_door{ + dir = 8; + id = "xenobio_a"; + name = "Cell Containment Blast Doors"; + pixel_x = -21; + req_access = list(47) + }, +/obj/structure/sink{ + dir = 8; + pixel_x = -12 + }, +/obj/effect/floor_decal/industrial/outline_corner/security{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/xenobiology) +"knu" = ( +/obj/structure/bed/stool/chair/shuttle{ + dir = 4 + }, +/turf/simulated/floor/shuttle/dark_blue, +/area/horizon/shuttle/escape_pod/pod1) +"knA" = ( +/obj/machinery/alarm/south, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/spiderling_remains, +/turf/simulated/floor/plating, +/area/horizon/maintenance/substation/wing_starboard) +"knC" = ( +/obj/structure/table/wood, +/obj/item/device/flashlight/lamp, +/turf/simulated/floor/carpet, +/area/horizon/medical/psych) "knL" = ( /obj/effect/floor_decal/corner/blue/diagonal, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -72525,84 +72436,55 @@ }, /turf/simulated/floor/tiled/white, /area/horizon/security/autopsy_laboratory) -"knR" = ( -/turf/simulated/wall/shuttle/scc_space_ship/cardinal, -/area/horizon/stairwell/bridge) -"knW" = ( -/obj/machinery/atmospherics/unary/outlet_injector{ - frequency = 1443; - id = "turbine_hot_in"; - name = "fuel injector"; - tag = "turbine_hot_in" +"knV" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 9 }, -/turf/simulated/floor/reinforced/airless, -/area/engineering/engine_room/turbine) -"koc" = ( -/obj/effect/floor_decal/spline/plain{ +/obj/machinery/mineral/stacking_unit_console{ + id = "horizon_stacking_2"; + pixel_x = -32 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled, +/area/horizon/operations/mining_main/refinery) +"knX" = ( +/obj/machinery/camera/network/command{ + c_tag = "Bridge - Pilot Room"; dir = 1 }, -/obj/structure/railing/mapped{ - dir = 8 +/obj/effect/floor_decal/corner/dark_blue{ + dir = 10 }, -/obj/machinery/computer/ship/navigation, -/turf/simulated/floor/tiled/dark, -/area/hallway/primary/central_one) -"koi" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 +/obj/machinery/requests_console/south{ + department = "Deck 1 - Pilots' Room"; + name = "Pilots' Room Requests Console" }, -/obj/structure/cable/green{ - icon_state = "4-8" +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 }, -/obj/machinery/camera/network/research{ - c_tag = "Research - Isolation A"; - dir = 1 +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 }, -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ +/obj/structure/bed/stool/chair/office/dark{ dir = 4 }, -/obj/machinery/alarm/south{ - alarm_id = 1503; - breach_detection = 0; - name = "Isolation C"; - rcon_setting = 3; - report_danger_level = 0; - req_one_access = list(7,47,24,11) +/turf/simulated/floor/tiled/dark, +/area/horizon/hangar/control) +"kof" = ( +/obj/structure/table/standard, +/obj/item/device/camera_film, +/obj/item/device/camera, +/obj/effect/floor_decal/corner/beige{ + dir = 10 }, -/turf/simulated/floor/tiled/white, -/area/rnd/isolation_c) -"kok" = ( -/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/white, -/area/hallway/medical/upper) -"kol" = ( -/obj/structure/table/stone/marble, -/obj/machinery/door/firedoor{ - req_one_access = list(24,11,67,73) - }, -/obj/machinery/door/blast/shutters{ - id = "intrepid_buffet"; - name = "Buffet Desk Shutter" - }, -/turf/simulated/floor/tiled/dark/full, -/area/shuttle/intrepid/buffet) -"kop" = ( -/obj/effect/floor_decal/corner/white/diagonal, -/obj/effect/floor_decal/industrial/outline/grey, -/obj/machinery/air_sensor{ - frequency = 1441; - id_tag = "air_sensor" - }, -/obj/effect/decal/fake_object/light_source/invisible, -/obj/machinery/atmospherics/pipe/manifold/visible{ +/turf/simulated/floor/tiled, +/area/horizon/crew/vacantoffice) +"koq" = ( +/obj/structure/platform_stairs/full/east_west_cap{ dir = 8 }, -/turf/simulated/floor/reinforced/airmix, -/area/engineering/atmos/air) +/turf/simulated/floor, +/area/horizon/maintenance/deck_2/wing/starboard/far) "kor" = ( /obj/effect/floor_decal/corner/paleblue/diagonal{ dir = 8 @@ -72616,13 +72498,8 @@ /turf/simulated/floor/tiled/dark/full, /area/shuttle/skipjack) "koz" = ( -/obj/machinery/door/firedoor, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/machinery/door/airlock/maintenance_hatch{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard/deck1) +/turf/simulated/wall/r_wall, +/area/horizon/medical/smoking) "koB" = ( /obj/structure/closet/secure_closet/brig{ id = "cell_isolation" @@ -72637,35 +72514,12 @@ /obj/effect/floor_decal/industrial/outline/security, /turf/simulated/floor/tiled, /area/horizon/security/brig) -"koF" = ( -/obj/machinery/power/breakerbox, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/cobweb, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard/far) -"koH" = ( -/obj/machinery/atmospherics/pipe/simple/visible/purple{ - dir = 4 +"koE" = ( +/obj/structure/bed/stool/chair/padded/brown{ + dir = 8 }, -/obj/effect/floor_decal/corner_wide/black{ - dir = 5 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/machinery/alarm/north, -/turf/simulated/floor/tiled/dark, -/area/engineering/atmos/propulsion/starboard) -"koI" = ( -/obj/random/pottedplant, -/obj/effect/floor_decal/spline/fancy/wood/full, -/obj/structure/railing/mapped, -/obj/structure/railing/mapped{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/horizon/hallway/deck_three/primary/central) +/turf/simulated/floor/carpet, +/area/horizon/command/bridge/cciaroom) "koK" = ( /obj/structure/table/standard, /obj/item/storage/firstaid/toxin{ @@ -72686,75 +72540,113 @@ icon_state = "dark_preview" }, /area/centcom/holding) +"koL" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/structure/tank_wall/air{ + icon_state = "air15" + }, +/obj/machinery/atmospherics/pipe/simple/visible/blue, +/turf/simulated/floor/plating, +/area/horizon/engineering/atmos/air) +"koM" = ( +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/reinforced/airless, +/area/horizon/engineering/reactor/indra/mainchamber) +"koO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 6 + }, +/obj/structure/bed/stool/bar/padded/red, +/obj/machinery/alarm/east, +/turf/simulated/floor/wood, +/area/horizon/service/bar) "koP" = ( /turf/unsimulated/mineral/asteroid, /area/antag/raider) -"koR" = ( -/obj/effect/floor_decal/industrial/outline/medical, -/obj/structure/table/standard, -/obj/structure/bedsheetbin{ - pixel_y = 5 +"koS" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 10 }, -/obj/machinery/firealarm/east, -/turf/simulated/floor/tiled/full, -/area/medical/washroom) -"koV" = ( -/obj/structure/bed/handrail{ - dir = 4 - }, -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/white, -/area/shuttle/intrepid/buffet) -"koW" = ( -/obj/structure/bed/stool/chair/office/bridge, -/turf/simulated/floor/tiled/dark, -/area/bridge/controlroom) -"kpg" = ( -/obj/effect/floor_decal/corner_wide/blue{ +/obj/machinery/camera/network/second_deck{ + c_tag = "Second Deck - Hallway 3"; dir = 1 }, -/obj/effect/floor_decal/spline/plain/corner{ - dir = 4 +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 }, -/obj/machinery/atmospherics/pipe/simple/hidden/universal{ - dir = 4 - }, -/obj/machinery/meter, /turf/simulated/floor/tiled, -/area/engineering/atmos/storage) -"kph" = ( -/obj/structure/window/reinforced, -/obj/machinery/gibber, -/obj/effect/floor_decal/industrial/warning, -/obj/machinery/light{ +/area/horizon/hallway/primary/deck_2/central) +"koT" = ( +/obj/machinery/chem_master{ + dir = 8 + }, +/obj/effect/floor_decal/spline/plain/cee{ dir = 1 }, -/turf/simulated/floor/tiled/freezer{ - name = "cooled tiles"; - temperature = 253.15 +/turf/simulated/floor/carpet/rubber, +/area/horizon/rnd/chemistry) +"koY" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/port/nacelle) +"kpd" = ( +/obj/effect/floor_decal/corner/black{ + dir = 9 }, -/area/horizon/kitchen/freezer) -"kpm" = ( /obj/structure/railing/mapped{ dir = 8 }, +/obj/effect/floor_decal/industrial/loading/yellow{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, /obj/effect/floor_decal/industrial/warning{ - dir = 6 + dir = 8 }, -/obj/structure/railing/mapped, -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/structure/trash_pile, -/turf/simulated/floor/plating, -/area/maintenance/wing/port/deck1) -"kpw" = ( -/obj/effect/floor_decal/corner_wide/yellow/full{ - dir = 4 +/turf/simulated/floor/tiled/dark, +/area/horizon/hangar/intrepid) +"kpl" = ( +/obj/machinery/light/floor{ + dir = 1 }, +/obj/machinery/firealarm/north, /turf/simulated/floor/tiled, -/area/engineering/rust_office) +/area/horizon/hallway/primary/deck_2/central) +"kpv" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/structure/window/borosilicate/reinforced{ + dir = 4 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/reinforced, +/area/horizon/rnd/test_range) "kpx" = ( /obj/effect/floor_decal/corner/dark_blue{ dir = 6 @@ -72764,28 +72656,57 @@ }, /turf/simulated/floor/tiled, /area/horizon/security/hallway) -"kpG" = ( -/obj/effect/floor_decal/industrial/warning/corner{ +"kpA" = ( +/obj/effect/floor_decal/corner/lime/full{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/simulated/floor/tiled, +/area/horizon/rnd/xenobiology/xenoflora) +"kpB" = ( +/obj/effect/floor_decal/corner_wide/purple{ + dir = 8 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/effect/floor_decal/corner_wide/purple{ + dir = 5 }, +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/xenoarch/atrium) +"kpH" = ( +/obj/effect/floor_decal/corner/mauve/diagonal, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ - icon_state = "4-8" + icon_state = "1-2" }, -/obj/structure/cable/green{ - icon_state = "2-4" +/obj/machinery/light/floor{ + dir = 8 }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/horizon/maintenance/deck_two/fore/starboard) +/obj/machinery/firealarm/west, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/lab) +"kpJ" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/structure/tank_wall/carbon_dioxide{ + icon_state = "co2-10" + }, +/turf/simulated/floor/airless, +/area/horizon/engineering/atmos) +"kpN" = ( +/turf/simulated/wall/r_wall, +/area/horizon/maintenance/deck_2/wing/starboard/far) +"kpS" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/horizon/operations/lobby) "kpT" = ( /obj/structure/table/stone/marble, /obj/item/flame/candle, @@ -72797,6 +72718,19 @@ }, /turf/simulated/floor/marble/dark, /area/horizon/holodeck/source_tribunal) +"kpW" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 9 + }, +/obj/machinery/meter, +/turf/simulated/floor/plating, +/area/horizon/engineering/atmos/air) +"kpY" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/hangar/intrepid) "kqa" = ( /obj/structure/bed/stool/chair{ dir = 8 @@ -72816,12 +72750,42 @@ /obj/effect/floor_decal/industrial/warning/full, /turf/simulated/floor/reinforced, /area/shuttle/hapt) -"kqk" = ( -/obj/effect/floor_decal/corner_wide/yellow{ - dir = 5 +"kql" = ( +/obj/machinery/power/apc/low/north, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/port/far) +"kqm" = ( +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/corner/brown{ + dir = 10 }, /turf/simulated/floor/tiled, -/area/engineering/bluespace_drive) +/area/horizon/operations/mail_room) +"kqn" = ( +/obj/machinery/atmospherics/pipe/simple/visible/universal{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/horizon/maintenance/deck_2/wing/starboard/auxatmos) "kqo" = ( /obj/effect/floor_decal/corner/beige{ dir = 9 @@ -72834,75 +72798,68 @@ }, /turf/simulated/floor/tiled/white, /area/horizon/security/forensic_laboratory) -"kqq" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +"kqr" = ( +/obj/machinery/firealarm/north, +/obj/machinery/newscaster/west, +/obj/machinery/light{ + dir = 8 }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/machinery/door/airlock/maintenance_hatch{ - dir = 4; - req_one_access = list(12) +/obj/effect/floor_decal/corner/dark_blue/full{ + dir = 8 }, -/obj/machinery/door/firedoor, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/simulated/floor, -/area/maintenance/security_port) +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/structure/closet, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/turf/simulated/floor/tiled/dark, +/area/horizon/storage/eva) "kqs" = ( /obj/effect/map_effect/window_spawner/full/reinforced/indestructible, /turf/unsimulated/floor/dark_monotile, /area/antag/actor) -"kqv" = ( -/obj/effect/map_effect/window_spawner/full/shuttle/scc{ - spawn_firedoor = 1; - spawn_grille = 1 +"kqI" = ( +/obj/structure/cable{ + icon_state = "2-8" }, -/obj/machinery/door/blast/shutters/open{ - id = "intrepid_bay_windows"; - name = "Intrepid Shutter" +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 }, -/turf/simulated/floor/plating, -/area/shuttle/intrepid/flight_deck) -"kqw" = ( -/obj/effect/landmark/entry_point/fore{ - name = "fore, port ballast" +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 }, -/turf/simulated/wall/shuttle/scc_space_ship/cardinal, -/area/maintenance/wing/port/far) -"kqz" = ( -/obj/effect/floor_decal/spline/fancy/wood/corner, -/obj/structure/disposalpipe/segment{ +/turf/simulated/floor/tiled, +/area/horizon/maintenance/deck_2/wing/starboard/auxatmos) +"kqK" = ( +/obj/machinery/door/blast/regular/open{ + id = "iso_a"; + name = "Safety Blast Door" + }, +/obj/effect/map_effect/window_spawner/full/borosilicate/reinforced/firedoor, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/rnd/xenoarch/isolation_c) +"kqP" = ( +/obj/machinery/power/apc/super/east, +/obj/structure/cable/green, +/obj/effect/floor_decal/corner/dark_blue/full{ dir = 4 }, -/obj/effect/floor_decal/spline/fancy/wood{ +/obj/machinery/camera/network/command{ + c_tag = "Bridge - Crewman Lockeroom"; dir = 1 }, -/turf/simulated/floor/wood, -/area/horizon/crew_quarters/lounge/bar) -"kqF" = ( -/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/firedoor, -/obj/machinery/door/airlock/atmos{ - dir = 1; - name = "Atmospherics Maintenance"; - req_access = list(24) - }, -/obj/machinery/atmospherics/pipe/simple/hidden/yellow, -/obj/effect/map_effect/door_helper/unres, -/obj/effect/floor_decal/industrial/hatch_door/engineering{ +/obj/machinery/firealarm/south, +/obj/structure/closet/emcloset, +/obj/effect/floor_decal/industrial/outline/emergency_closet, +/turf/simulated/floor/tiled, +/area/horizon/command/bridge/supply) +"kqR" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 1 }, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/atmos) -"kqO" = ( -/obj/random/junk, -/turf/simulated/floor/plating, -/area/maintenance/operations) +/turf/simulated/floor/tiled/dark, +/area/horizon/service/bar) "kqS" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 9 @@ -72912,131 +72869,72 @@ }, /turf/simulated/floor/tiled, /area/horizon/security/brig) -"kqT" = ( -/obj/structure/cable/green{ - icon_state = "1-8" +"kqW" = ( +/turf/simulated/floor/tiled/ramp/bottom{ + dir = 4 }, -/obj/effect/floor_decal/corner/dark_green{ - dir = 9 +/area/horizon/hangar/auxiliary) +"krc" = ( +/obj/structure/railing/mapped{ + dir = 8 }, -/turf/simulated/floor/tiled, -/area/hangar/intrepid) -"krj" = ( -/obj/effect/floor_decal/corner/yellow/diagonal, +/obj/structure/railing/mapped{ + dir = 1 + }, +/turf/simulated/open, +/area/horizon/maintenance/deck_2/wing/port) +"krd" = ( +/obj/effect/floor_decal/spline/plain, +/obj/effect/floor_decal/spline/plain{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/black{ + dir = 4 + }, +/turf/simulated/floor/carpet/rubber, +/area/horizon/tcommsat/chamber) +"krq" = ( +/obj/effect/floor_decal/industrial/outline/yellow, /obj/machinery/light/small{ dir = 1 }, +/obj/structure/table/standard, /turf/simulated/floor/tiled, -/area/hallway/engineering/rust) -"krm" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 +/area/horizon/operations/warehouse) +"krr" = ( +/obj/effect/map_effect/window_spawner/full/borosilicate/reinforced, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/reactor/indra/mainchamber) +"krt" = ( +/obj/structure/cable/green{ + icon_state = "1-2" }, -/obj/structure/tank_wall/nitrogen{ - icon_state = "n7" +/obj/machinery/door/airlock/engineering{ + dir = 1; + name = "Deck 2 Civilian Substation"; + req_one_access = list(11,24) + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/full, +/area/horizon/maintenance/substation/civ_d2) +"krE" = ( +/obj/structure/sign/fire{ + desc = "A caution sign which reads 'PORT PROPULSION'."; + name = "\improper PORT PROPULSION sign"; + pixel_y = 32 }, /obj/machinery/atmospherics/pipe/simple/visible/green{ - dir = 4 + dir = 6 + }, +/obj/machinery/alarm/west, +/obj/machinery/camera/network/engineering{ + c_tag = "Engineering - Atmospherics Tanks 3" }, /turf/simulated/floor/plating, -/area/engineering/atmos/air) -"krn" = ( -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/structure/railing/mapped{ - dir = 8 - }, -/turf/simulated/open, -/area/horizon/hydroponics) -"kru" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/hangar/intrepid) -"krv" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 5 - }, -/obj/structure/table/reinforced/steel, -/obj/machinery/photocopier/faxmachine{ - anchored = 0; - department = "SCCV Horizon Bridge"; - pixel_y = 4 - }, -/turf/simulated/floor/tiled, -/area/bridge/controlroom) -"krw" = ( -/obj/machinery/light_switch{ - dir = 1; - pixel_y = 24; - pixel_x = 9 - }, -/obj/structure/cable/green{ - icon_state = "4-8"; - d1 = 4; - d2 = 8 - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 5 - }, -/obj/effect/floor_decal/spline/fancy/wood/corner{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/structure/coatrack{ - pixel_y = 23; - pixel_x = -6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/horizon/security/head_of_security) -"krx" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/effect/floor_decal/corner/dark_blue/diagonal, -/obj/effect/floor_decal/spline/plain/black{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/intrepid/junction_compartment) -"krG" = ( -/obj/structure/shuttle_part/scc/scout{ - density = 0; - icon_state = "2,2"; - outside_part = 0 - }, -/obj/effect/floor_decal/industrial/warning/cee, -/obj/structure/ship_weapon_dummy, -/obj/machinery/ship_weapon/francisca/compact{ - pixel_x = -40; - pixel_y = -64; - weapon_id = "Francisca Rotary Gun" - }, -/turf/simulated/floor/reinforced, -/area/shuttle/canary) +/area/horizon/engineering/atmos/air) +"krH" = ( +/turf/simulated/wall, +/area/horizon/operations/mining_main/refinery) "krI" = ( /obj/structure/sign/directions/com{ dir = 1; @@ -73044,48 +72942,33 @@ }, /turf/unsimulated/wall/darkshuttlewall, /area/centcom/control) -"krJ" = ( -/obj/structure/window/shuttle/scc_space_ship, -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/shutters/open{ - dir = 8; - id = "bar_viewing_shutters"; - name = "Bar Viewing Shutters" +"krK" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 }, -/obj/effect/landmark/entry_point/starboard{ - name = "starboard, bar lounge" +/obj/machinery/atmospherics/pipe/simple/visible/purple{ + dir = 4 }, /turf/simulated/floor/plating, -/area/horizon/bar) +/area/horizon/engineering/bluespace_drive) "krL" = ( /obj/structure/shuttle_part/mercenary/small{ icon_state = "7,10" }, /turf/unsimulated/floor/plating, /area/shuttle/syndicate_elite) -"krN" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/machinery/light/small/emergency{ - dir = 8 - }, -/turf/simulated/floor, -/area/maintenance/security_port) "krP" = ( -/obj/machinery/door/airlock/maintenance{ - dir = 4; - name = "Commissary Maintenance"; - req_one_access = list(26,29,31,48,67,35,25,28,37) +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 }, -/obj/machinery/door/firedoor{ - req_one_access = list(24,11,67,73); - dir = 4 +/obj/structure/disposalpipe/segment{ + icon_state = "pipe-c" }, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/commissary) +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/surgery) "krQ" = ( /obj/structure/lattice/catwalk, /obj/item/hullbeacon/red, @@ -73100,33 +72983,34 @@ /obj/effect/floor_decal/industrial/hatch/red, /turf/simulated/floor/tiled/dark/full, /area/horizon/security/armoury) -"krS" = ( -/obj/effect/floor_decal/corner_wide/purple/diagonal, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 +"krT" = ( +/obj/machinery/atmospherics/pipe/manifold4w/visible/black, +/obj/machinery/meter, +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/atmos/propulsion/starboard) +"krX" = ( +/obj/effect/floor_decal/spline/fancy, +/obj/machinery/computer/ship/helm{ + dir = 1; + req_access = list(19) }, -/turf/simulated/floor/tiled/white, -/area/rnd/test_range) +/turf/simulated/floor/carpet/rubber, +/area/horizon/command/bridge/controlroom) "krY" = ( /obj/machinery/cryopod/robot, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/unsimulated/floor, /area/centcom/spawning) -"ksb" = ( -/obj/structure/platform/ledge, -/obj/structure/platform{ +"ksh" = ( +/obj/machinery/atmospherics/pipe/simple/visible/purple, +/obj/effect/floor_decal/corner/dark_blue{ dir = 8 }, -/obj/structure/closet/crate, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/platform_deco/ledge{ - dir = 9 +/obj/effect/floor_decal/corner/yellow{ + dir = 1 }, -/obj/random/loot, -/obj/structure/engineer_maintenance/pipe/wall, -/turf/simulated/floor/tiled/dark/full, -/area/operations/lower/machinist) +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/atmos/turbine) "ksl" = ( /obj/structure/flora/log_bench, /turf/simulated/floor/holofloor/snow, @@ -73145,51 +73029,88 @@ }, /turf/simulated/floor/tiled, /area/horizon/security/holding_cell_a) -"ksp" = ( -/obj/structure/cable/orange{ - icon_state = "0-2" +"kss" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 7 }, -/obj/machinery/power/emitter{ - anchored = 1; - dir = 1; - id = "ReactorEmitter"; - state = 2 +/turf/simulated/floor/wood, +/area/horizon/service/chapel/main) +"kst" = ( +/obj/structure/table/standard, +/obj/item/storage/box/fancy/vials{ + pixel_x = -10; + pixel_y = 10 }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/effect/floor_decal/industrial/warning/cee, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/engine_room) -"ksx" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 +/obj/item/reagent_containers/dropper/electronic_pipette{ + pixel_x = -8 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 +/obj/item/reagent_containers/glass/beaker/large, +/obj/item/device/hand_labeler{ + pixel_y = -20 }, -/obj/effect/floor_decal/corner/dark_blue, -/turf/simulated/floor/tiled, -/area/bridge/upperdeck) -"ksG" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" +/obj/machinery/requests_console/west{ + department = "Pharmacy"; + departmentType = 2; + name = "Pharmacy Requests Console" + }, +/obj/effect/floor_decal/corner_wide/orange{ + dir = 9 }, /turf/simulated/floor/tiled/white, -/area/rnd/xenobiology/foyer) +/area/horizon/medical/pharmacy) +"ksv" = ( +/obj/structure/table/standard, +/obj/effect/floor_decal/corner/mauve/full{ + dir = 8 + }, +/obj/item/tape_roll{ + pixel_y = 10 + }, +/obj/item/device/paicard, +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/lab) +"ksA" = ( +/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/horizon/hangar/control) "ksH" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 10 }, /turf/simulated/floor/tiled/dark, -/area/outpost/research/anomaly_storage) -"ksK" = ( -/obj/structure/railing/mapped{ - dir = 8 +/area/horizon/rnd/xenoarch/anomaly_storage) +"ksI" = ( +/obj/structure/cable/green{ + icon_state = "4-8" }, -/obj/structure/railing/mapped, -/turf/simulated/open, -/area/maintenance/wing/starboard) +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 7 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/obj/machinery/disposal/small/north, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/machinery/keycard_auth{ + pixel_x = 1; + pixel_y = -26 + }, +/turf/simulated/floor/wood, +/area/horizon/command/heads/xo) "ksL" = ( /obj/effect/floor_decal/corner/white/diagonal, /obj/effect/floor_decal/spline/plain{ @@ -73197,43 +73118,54 @@ }, /turf/simulated/floor/holofloor/tiled, /area/horizon/holodeck/source_emptycourt) -"ksN" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 5 +"ksO" = ( +/obj/structure/cable{ + icon_state = "1-8" }, -/turf/simulated/wall/shuttle/scc, -/area/shuttle/intrepid/engineering) -"ksQ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" +/obj/effect/floor_decal/corner/yellow/diagonal, +/turf/simulated/floor/tiled, +/area/horizon/stairwell/engineering/deck_2) +"ksP" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/effect/floor_decal/corner/dark_green{ + dir = 6 }, /turf/simulated/floor/tiled, -/area/engineering/locker_room) -"ksR" = ( +/area/horizon/hallway/primary/deck_3/port) +"ksU" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/main/starboard) +"ksV" = ( +/obj/structure/cable{ + 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/brown{ - dir = 5 - }, -/obj/effect/floor_decal/industrial/warning{ +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance_hatch{ dir = 4 }, -/turf/simulated/floor/tiled, -/area/hangar/operations) -"ksS" = ( -/obj/machinery/light/small/emergency, -/obj/effect/floor_decal/industrial/warning{ - dir = 9 +/obj/structure/disposalpipe/segment{ + dir = 4 }, /turf/simulated/floor/plating, -/area/horizon/maintenance/deck_two/fore/port) +/area/horizon/maintenance/deck_1/wing/starboard) "ksZ" = ( /obj/effect/floor_decal/industrial/warning{ dir = 1 @@ -73242,6 +73174,20 @@ /obj/structure/window/reinforced/crescent, /turf/unsimulated/floor/plating, /area/centcom/bar) +"ktb" = ( +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/obj/structure/table/steel, +/obj/machinery/cell_charger, +/obj/item/device/multitool, +/obj/effect/floor_decal/corner/dark_blue/full{ + dir = 8 + }, +/obj/machinery/alarm/north, +/obj/machinery/power/apc/low/west, +/turf/simulated/floor/tiled/dark, +/area/horizon/storage/eva) "ktc" = ( /obj/item/reagent_containers/food/drinks/cans/cola, /obj/item/reagent_containers/food/drinks/cans/cola, @@ -73252,27 +73198,39 @@ icon_state = "white" }, /area/tdome/tdomeobserve) -"kti" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - icon_state = "1-2" +"ktd" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 }, -/obj/structure/disposalpipe/segment, -/obj/structure/lattice/catwalk/indoor/grate, -/turf/simulated/floor/plating, -/area/hallway/primary/central_two) -"kto" = ( -/obj/machinery/light{ - dir = 8 +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 }, -/obj/item/device/radio/intercom/west, -/obj/machinery/teleport/pad, -/obj/effect/floor_decal/spline/plain/cee{ +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/full, +/area/horizon/hallway/primary/deck_2/central) +"ktl" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 13 + }, +/obj/machinery/alarm/south, +/obj/machinery/light/small, +/obj/effect/floor_decal/corner/green/full{ + dir = 4 + }, +/obj/structure/mirror{ + pixel_x = 27 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/operations/break_room) +"ktq" = ( +/obj/effect/floor_decal/spline/plain/corner{ dir = 1 }, -/turf/simulated/floor/carpet/rubber, -/area/teleporter) +/turf/simulated/wall, +/area/horizon/service/bar) "ktr" = ( /obj/machinery/light/small{ dir = 1 @@ -73281,67 +73239,24 @@ dir = 4 }, /area/shuttle/skipjack) -"ktx" = ( -/obj/structure/cable/orange{ - icon_state = "1-2" +"kts" = ( +/obj/machinery/atmospherics/unary/outlet_injector{ + frequency = 1441; + id = "n_in"; + name = "nitrogen injector"; + use_power = 1 }, -/obj/effect/floor_decal/industrial/warning/corner{ +/turf/simulated/floor/reinforced/nitrogen, +/area/horizon/engineering/atmos/air) +"ktJ" = ( +/obj/machinery/recharge_station, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/effect/floor_decal/corner/green/diagonal, +/obj/machinery/light/small{ dir = 8 }, -/turf/simulated/floor/plating, -/area/engineering/bluespace_drive) -"ktz" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/table/wood, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 8 - }, -/obj/machinery/newscaster/west, -/obj/random/pottedplant_small{ - pixel_x = -7; - pixel_y = 3 - }, -/turf/simulated/floor/wood, -/area/lawoffice/consular_two) -"ktA" = ( -/obj/structure/table/wood, -/obj/random/pottedplant_small{ - pixel_x = -4; - pixel_y = 6 - }, -/turf/simulated/floor/carpet, -/area/hallway/primary/central_two) -"ktK" = ( -/obj/effect/floor_decal/corner/black{ - dir = 5 - }, -/turf/simulated/floor/tiled/full, -/area/hallway/primary/central_one) -"ktM" = ( -/obj/machinery/atm{ - dir = 1; - pixel_y = 28 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/structure/engineer_maintenance/electric{ - dir = 1 - }, -/obj/structure/engineer_maintenance/pipe{ - dir = 8 - }, -/turf/simulated/floor/tiled/full, -/area/horizon/commissary) +/turf/simulated/floor/tiled/white, +/area/horizon/crew/washroom/deck_2) "ktR" = ( /obj/machinery/light{ dir = 4 @@ -73358,29 +73273,9 @@ icon_state = "wood" }, /area/centcom/legion) -"ktY" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 8 - }, -/obj/effect/floor_decal/spline/plain/corner{ - dir = 1 - }, -/obj/effect/floor_decal/spline/plain{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/black, -/turf/simulated/floor/carpet/rubber, -/area/tcommsat/chamber) -"ktZ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 6 - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/machinery/light/small/emergency{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard/deck1) +"ktX" = ( +/turf/simulated/wall/r_wall, +/area/horizon/rnd/xenoarch/atrium) "kua" = ( /obj/structure/sink{ dir = 8; @@ -73392,9 +73287,17 @@ icon_state = "white" }, /area/centcom/holding) -"kuh" = ( -/turf/simulated/floor/tiled/dark, -/area/hallway/primary/aft) +"kuc" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/reinforced, +/area/horizon/rnd/xenoarch/isolation_c) +"kul" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/hangar/port) "kum" = ( /obj/structure/flora/pottedplant{ icon_state = "plant-22" @@ -73404,43 +73307,30 @@ }, /turf/unsimulated/floor, /area/centcom/holding) -"kuq" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/corner/dark_blue/diagonal, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 +"kun" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/bridge/supply) -"kus" = ( -/obj/structure/table/wood, -/obj/machinery/recharger, -/obj/item/paper_scanner{ - pixel_x = -10 - }, -/obj/item/pen/black, -/obj/item/pen/blue{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/machinery/light{ +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 8 }, -/turf/simulated/floor/carpet, -/area/lawoffice/representative) -"kut" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 9 +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner_wide/black/full{ + dir = 6 + }, +/obj/effect/floor_decal/industrial/warning/cee{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/visible/green{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 8 }, -/obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled/dark, -/area/security/checkpoint2) +/area/horizon/engineering/atmos/propulsion/starboard) "kuu" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/table/steel, @@ -73485,141 +73375,83 @@ /obj/structure/lattice/catwalk/indoor/grate/dark, /turf/simulated/floor/plating, /area/shuttle/skipjack) -"kuC" = ( -/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 2; - icon_state = "shutter0"; - id = "LCKDshutters"; - name = "Medical Lockdown Shutters"; - opacity = 0 - }, -/turf/simulated/floor/tiled/dark/full, -/area/hallway/medical/upper) -"kuE" = ( -/obj/effect/floor_decal/corner/grey{ - dir = 9 - }, -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/obj/structure/sink/kitchen{ - dir = 4; - pixel_x = -19 - }, -/obj/machinery/firealarm/west, -/turf/simulated/floor/lino, -/area/horizon/bar) -"kuF" = ( -/obj/structure/closet, -/obj/random/loot, -/turf/simulated/floor/plating, -/area/maintenance/wing/port/far) -"kuH" = ( -/obj/structure/closet/crate, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/random/loot, -/obj/random/contraband, -/turf/simulated/floor/plating, -/area/maintenance/hangar/port) -"kuM" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/machinery/light/spot, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"kuQ" = ( -/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/machinery/door/airlock/multi_tile/glass{ - dir = 2; - name = "Hangar" - }, -/obj/machinery/door/firedoor/multi_tile{ - dir = 1 - }, -/obj/machinery/door/blast/regular/open{ - id = "hangarlockdown"; - name = "Hangar Lockdown" - }, -/turf/simulated/floor/tiled, -/area/hangar/intrepid) -"kuR" = ( -/obj/machinery/door/airlock/glass_service{ - dir = 4; - name = "Kitchen"; - req_access = list(28) - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, +"kuL" = ( +/turf/simulated/wall, +/area/horizon/crew/vacantoffice) +"kuT" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, /obj/structure/cable/green{ icon_state = "4-8" }, -/obj/machinery/door/firedoor, /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/simulated/floor/tiled/full, -/area/horizon/kitchen) +/obj/item/device/radio/intercom/north, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/surgery) "kuW" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 1 }, /turf/simulated/floor/holofloor/wood, /area/horizon/holodeck/source_chapel) -"kvc" = ( -/obj/effect/floor_decal/corner_wide/orange{ - dir = 10 +"kvb" = ( +/obj/machinery/door/firedoor{ + req_one_access = list(24,11,67,73); + dir = 4 }, -/turf/simulated/floor/tiled/white, -/area/medical/gen_treatment) -"kve" = ( -/obj/effect/floor_decal/corner/mauve{ - dir = 10 +/obj/structure/table/stone/marble, +/obj/machinery/door/blast/shutters{ + id = "intrepid_buffet"; + name = "Buffet Desk Shutter"; + dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, +/obj/machinery/power/outlet, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/shuttle/intrepid/buffet) +"kvi" = ( +/obj/effect/floor_decal/sign/w, /obj/structure/cable/green{ icon_state = "1-2" }, -/turf/simulated/floor/tiled, -/area/rnd/hallway/secondary) -"kvf" = ( -/obj/effect/floor_decal/corner/mauve{ - dir = 9 +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled, -/area/rnd/hallway/secondary) -"kvl" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 8 }, +/obj/machinery/access_button{ + command = "cycle_exterior"; + frequency = 1379; + master_tag = "processing_airlock_control"; + name = "Exterior access button"; + pixel_x = 25; + pixel_y = 25; + req_access = list(5) + }, /turf/simulated/floor/tiled/white, -/area/storage/eva) +/area/horizon/medical/hallway/upper) +"kvj" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/machinery/power/apc/south, +/obj/structure/cable/green, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/service/port) "kvn" = ( /obj/effect/floor_decal/corner/brown/diagonal, /turf/simulated/floor/tiled/dark, @@ -73638,19 +73470,6 @@ icon_state = "white" }, /area/centcom/holding) -"kvq" = ( -/obj/structure/cable/green{ - icon_state = "0-8" - }, -/obj/effect/map_effect/window_spawner/full/reinforced/grille/firedoor, -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/custodial/disposals) "kvr" = ( /obj/effect/floor_decal/corner/red{ dir = 6 @@ -73668,40 +73487,39 @@ /obj/structure/bed/stool/chair/shuttle, /turf/simulated/floor/tiled/dark/full, /area/shuttle/skipjack) -"kvw" = ( -/obj/effect/floor_decal/corner/dark_blue{ +"kvv" = ( +/obj/effect/floor_decal/corner/dark_green{ dir = 9 }, -/obj/structure/disposalpipe/junction{ +/obj/effect/floor_decal/spline/plain/blue{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/manifold/hidden{ dir = 4 }, /turf/simulated/floor/tiled, -/area/bridge/controlroom) -"kvJ" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 +/area/horizon/service/hydroponics/lower) +"kvI" = ( +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark, +/area/horizon/maintenance/deck_3/aft/starboard) +"kvK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/corner/brown{ + dir = 9 }, -/obj/effect/floor_decal/corner_wide/green{ +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/railing/mapped{ dir = 8 }, -/turf/simulated/floor/tiled/white, -/area/medical/gen_treatment) -"kvR" = ( -/obj/machinery/door/airlock/maintenance{ - dir = 4; - req_one_access = list(11,24) +/obj/structure/disposalpipe/junction{ + dir = 1 }, -/obj/machinery/door/firedoor{ - dir = 4 - }, -/turf/simulated/floor, -/area/maintenance/engineering_ladder) +/turf/simulated/floor/tiled, +/area/horizon/operations/lobby) "kvS" = ( /obj/machinery/computer/pod{ dir = 1; @@ -73713,65 +73531,74 @@ icon_state = "white" }, /area/tdome/tdomeadmin) -"kvT" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 +"kvX" = ( +/obj/structure/table/wood, +/obj/item/modular_computer/laptop/preset/representative{ + pixel_x = -1; + pixel_y = 5 + }, +/turf/simulated/floor/carpet, +/area/horizon/repoffice/representative_two) +"kvY" = ( +/turf/simulated/floor/tiled/ramp/bottom{ + dir = 8 + }, +/area/horizon/maintenance/deck_2/wing/port/near) +"kwf" = ( +/obj/structure/table/rack/folding_table, +/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{ + pixel_y = 13 + }, +/obj/item/material/stool/chair/folding{ + pixel_y = 13 + }, +/obj/item/material/stool/chair/folding{ + pixel_y = 13 + }, +/obj/item/material/stool/chair/folding{ + pixel_y = 13 }, -/obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, -/area/maintenance/wing/starboard) -"kwa" = ( -/obj/effect/floor_decal/industrial/warning/corner, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard) +/area/horizon/maintenance/deck_2/cargo_compartment) "kwg" = ( /obj/effect/overlay/palmtree_l, /turf/simulated/floor/holofloor/beach/sand{ icon_state = "desert4" }, /area/horizon/holodeck/source_beach) -"kwi" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/effect/floor_decal/spline/plain/corner{ +"kwh" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/light/small/emergency, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/obj/machinery/vending/dinnerware{ - density = 0; - pixel_y = 24 - }, -/obj/structure/disposalpipe/segment{ +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/turf/simulated/floor/tiled/white, -/area/horizon/kitchen) -"kwl" = ( -/obj/effect/floor_decal/industrial/outline/operations, -/obj/structure/fireaxecabinet/east, -/obj/structure/closet/secure_closet/atmos_personal, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/atmos/storage) +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/port/far) +"kwj" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/full, +/area/horizon/hallway/primary/deck_3/central) "kwm" = ( /obj/effect/landmark{ name = "raiderstart" }, /turf/unsimulated/floor/monotile, /area/antag/raider) -"kwp" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/wood, -/area/horizon/crew_quarters/lounge/bar) -"kwq" = ( -/obj/structure/foamedmetal, -/obj/structure/shuttle_part/scc_space_ship{ - icon_state = "d3-6-f" - }, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard) "kwt" = ( /obj/structure/flora/tree/jungle/small{ desc = "A lush and healthy bush."; @@ -73786,6 +73613,21 @@ name = "overgrowth" }, /area/horizon/holodeck/source_moghes) +"kwv" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/glass_engineering{ + dir = 4; + name = "Engineering EVA Storage"; + req_one_access = list(11,24) + }, +/obj/machinery/door/firedoor, +/obj/effect/map_effect/door_helper/unres{ + dir = 8 + }, +/turf/simulated/floor/tiled/full, +/area/horizon/engineering/lobby) "kwx" = ( /obj/effect/floor_decal/corner_wide/paleblue/diagonal{ dir = 8 @@ -73799,6 +73641,12 @@ /obj/machinery/iv_drip, /turf/simulated/floor/tiled/dark, /area/shuttle/mercenary) +"kwy" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 5 + }, +/turf/simulated/floor/reinforced/airless, +/area/horizon/engineering/atmos/propulsion) "kwz" = ( /turf/unsimulated/floor{ dir = 1; @@ -73814,24 +73662,46 @@ }, /turf/simulated/floor/wood, /area/merchant_station) -"kwE" = ( -/obj/structure/disposalpipe/segment{ +"kwH" = ( +/obj/machinery/keycard_auth{ + dir = 4; + pixel_x = -21; + pixel_y = 1 + }, +/obj/structure/closet/secure_closet/operations_manager, +/obj/effect/floor_decal/industrial/outline/operations, +/obj/machinery/light, +/turf/simulated/floor/tiled/full, +/area/horizon/command/heads/om) +"kwI" = ( +/obj/item/modular_computer/console/preset/security{ dir = 4 }, -/obj/effect/floor_decal/industrial/warning, -/obj/machinery/camera/network/research{ - dir = 1; - c_tag = "Xenobio - Cell A"; - network = list("Xeno_Bio") +/obj/machinery/status_display{ + pixel_y = -32 }, -/turf/simulated/floor/reinforced, -/area/rnd/xenobiology) -"kwK" = ( -/obj/structure/ladder{ - pixel_y = 10 +/obj/machinery/requests_console/west{ + department = "Head of Security's Office"; + announcementConsole = 1; + departmentType = 5; + name = "Head of Security Request Console" }, -/turf/simulated/open, -/area/maintenance/bridge) +/turf/simulated/floor/carpet, +/area/horizon/command/heads/hos) +"kwJ" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 1 + }, +/obj/effect/floor_decal/spline/plain, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/black{ + dir = 4 + }, +/obj/item/device/radio/intercom/south, +/turf/simulated/floor/carpet/rubber, +/area/horizon/tcommsat/chamber) "kwM" = ( /obj/effect/decal/fake_object/light_source/invisible{ light_color = "#C46518"; @@ -73842,6 +73712,24 @@ icon_state = "desert" }, /area/centcom/shared_dream) +"kwP" = ( +/obj/structure/shuttle_part/scc/scout{ + icon_state = "7,2" + }, +/turf/simulated/floor/plating, +/area/horizon/shuttle/canary) +"kwS" = ( +/obj/structure/closet/secure_closet/scientist, +/obj/item/storage/box/masks, +/obj/item/storage/box/gloves, +/obj/item/clothing/glasses/safety/goggles/science, +/obj/item/clothing/glasses/safety/goggles/science, +/obj/effect/floor_decal/corner/mauve{ + dir = 10 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/chemistry) "kwT" = ( /obj/effect/floor_decal/corner/white/diagonal, /obj/machinery/light{ @@ -73857,6 +73745,35 @@ }, /turf/simulated/floor/holofloor/tiled, /area/horizon/holodeck/source_emptycourt) +"kxd" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/carpet/rubber, +/area/horizon/tcommsat/entrance) +"kxe" = ( +/obj/effect/floor_decal/corner_wide/purple{ + dir = 8 + }, +/obj/effect/floor_decal/corner_wide/purple{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/xenoarch/atrium) "kxg" = ( /obj/effect/floor_decal/corner/yellow{ dir = 8 @@ -73866,24 +73783,16 @@ }, /turf/simulated/floor/marble/dark, /area/horizon/holodeck/source_trinary) -"kxr" = ( -/obj/effect/floor_decal/corner_wide/yellow/diagonal, -/obj/structure/table/steel, -/obj/structure/noticeboard{ - pixel_y = -32 - }, -/obj/structure/disposalpipe/segment{ +"kxm" = ( +/obj/effect/floor_decal/industrial/warning{ dir = 4 }, -/obj/machinery/recharger{ - pixel_y = 3 +/obj/structure/closet, +/obj/machinery/light/small/emergency{ + dir = 8 }, -/obj/machinery/camera/network/engineering{ - c_tag = "Engineering - Meeting Room"; - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/engineering/break_room) +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/cargo_compartment) "kxu" = ( /obj/structure/window/reinforced/holowindow{ dir = 4 @@ -73918,22 +73827,56 @@ }, /turf/unsimulated/floor, /area/centcom/legion/hangar5) +"kxx" = ( +/obj/item/device/radio/intercom/expedition/north, +/obj/machinery/computer/ship/engines/terminal{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/shuttle/quark/cockpit) "kxJ" = ( /obj/structure/sink/kitchen{ pixel_y = 27 }, /turf/unsimulated/floor, /area/centcom/bar) -"kxL" = ( +"kxM" = ( /obj/effect/floor_decal/corner/dark_green{ - dir = 5 + dir = 10 }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/effect/floor_decal/industrial/loading/yellow{ - dir = 1 +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/structure/table/standard, +/obj/item/paper_bin{ + pixel_x = 4; + pixel_y = 2 + }, +/obj/item/pen{ + pixel_x = 4; + pixel_y = 2 }, /turf/simulated/floor/tiled, -/area/horizon/stairwell/central) +/area/horizon/crew/chargebay) +"kxU" = ( +/obj/structure/table/reinforced/wood, +/obj/item/folder/blue{ + pixel_x = -3 + }, +/obj/item/folder/red, +/obj/item/folder/yellow{ + pixel_x = 3 + }, +/obj/machinery/button/remote/blast_door{ + dir = 9; + id = "shutters_deck3_xo"; + name = "Window Shutter Control"; + pixel_x = 5; + pixel_y = 10; + icon_rotation = 90 + }, +/turf/simulated/floor/carpet, +/area/horizon/command/heads/xo) "kxV" = ( /obj/effect/decal/cleanable/generic, /obj/effect/decal/fake_object{ @@ -73943,6 +73886,12 @@ }, /turf/unsimulated/floor/plating, /area/centcom/legion/hangar5) +"kxX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/horizon/command/bridge/upperdeck) "kyb" = ( /obj/effect/floor_decal/spline/plain/corner, /turf/simulated/floor/exoplanet/grass/grove, @@ -73959,47 +73908,59 @@ icon_state = "dark_preview" }, /area/centcom/holding) -"kyf" = ( -/obj/structure/plasticflaps/airtight, -/obj/machinery/door/airlock/freezer{ - dir = 1; - name = "Freezer"; - req_one_access = list(35,28) +"kyj" = ( +/obj/structure/railing/mapped, +/obj/effect/floor_decal/corner/black{ + dir = 10 }, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/full, -/area/horizon/kitchen/freezer) -"kyq" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/research{ - dir = 4; - name = "Suit Storage"; - req_access = list(65) - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenoarch_storage) -"kyx" = ( -/obj/structure/platform_stairs, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/light{ +/obj/effect/floor_decal/industrial/outline/grey, +/obj/structure/survey_probe/ground, +/turf/simulated/floor/plating, +/area/horizon/hangar/auxiliary) +"kyl" = ( +/obj/effect/floor_decal/industrial/warning{ dir = 4 }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/reinforced, +/area/horizon/rnd/xenobiology) +"kym" = ( +/obj/machinery/atmospherics/binary/pump/fuel{ + max_pressure_setting = 5000; + name = "Phoron Pump"; + req_one_access = list(26,29,31,48,67,24,47,73) + }, +/obj/effect/floor_decal/corner/black/full, +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/obj/machinery/light/spot{ + dir = 8 + }, /turf/simulated/floor/tiled, -/area/operations/lower/machinist) +/area/horizon/hangar/intrepid) +"kyt" = ( +/obj/structure/closet/crate, +/obj/random/loot, +/obj/item/storage/bag/inflatable, +/turf/simulated/floor/tiled, +/area/horizon/maintenance/deck_2/wing/starboard/auxatmos) +"kyz" = ( +/obj/machinery/door/airlock/service{ + dir = 1; + name = "Journalist's Office"; + req_access = list(70) + }, +/obj/effect/map_effect/door_helper/unres, +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/full, +/area/horizon/crew/journalistoffice) "kyD" = ( /obj/structure/window/reinforced/crescent{ dir = 4 @@ -74008,6 +73969,16 @@ /obj/effect/floor_decal/sign/a, /turf/unsimulated/floor, /area/antag/mercenary) +"kyE" = ( +/obj/effect/floor_decal/corner/dark_blue/full{ + dir = 8 + }, +/obj/machinery/recharger/wallcharger{ + pixel_x = 5; + pixel_y = 28 + }, +/turf/simulated/floor/tiled, +/area/horizon/command/bridge/supply) "kyH" = ( /obj/effect/floor_decal/spline/fancy/wood, /obj/machinery/light{ @@ -74017,16 +73988,48 @@ icon_state = "wood" }, /area/centcom/control) -"kyJ" = ( -/obj/machinery/camera/network/third_deck{ - c_tag = "Third Deck - Investigator Entrance"; - dir = 1 +"kyM" = ( +/obj/effect/map_effect/marker/airlock/shuttle{ + cycle_to_external_air = 1; + master_tag = "airlock_shuttle_intrepid"; + name = "airlock_shuttle_intrepid"; + req_one_access = null; + shuttle_tag = "Intrepid" }, -/obj/effect/floor_decal/corner/dark_green{ +/obj/machinery/atmospherics/pipe/manifold4w/hidden, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/shuttle/intrepid/main_compartment) +"kyN" = ( +/obj/effect/floor_decal/corner/dark_blue{ dir = 10 }, +/obj/structure/platform{ + dir = 4 + }, +/obj/structure/platform, +/obj/structure/platform_deco{ + dir = 5; + pixel_y = -1 + }, +/obj/machinery/camera/network/command{ + c_tag = "Bridge - Atrium Center"; + dir = 4 + }, +/obj/machinery/disposal/small/south{ + pixel_y = 3 + }, +/obj/structure/disposalpipe/trunk, /turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/port) +/area/horizon/command/bridge/upperdeck) +"kyP" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 6 + }, +/obj/structure/platform{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/horizon/command/bridge/upperdeck) "kyV" = ( /obj/structure/lattice/catwalk, /obj/structure/sign/drop{ @@ -74064,28 +74067,12 @@ }, /turf/simulated/floor/marble, /area/horizon/holodeck/source_trinary) -"kzi" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 +"kzh" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 }, -/obj/structure/tank_wall/oxygen{ - icon_state = "o2-2" - }, -/turf/simulated/floor/plating, -/area/engineering/atmos/air) -"kzm" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/structure/platform, -/obj/structure/engineer_maintenance/electric{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge/controlroom) +/turf/simulated/floor/tiled, +/area/horizon/operations/machinist) "kzo" = ( /obj/structure/closet/secure_closet/guncabinet{ name = "Heavy Asset Protection"; @@ -74119,67 +74106,70 @@ }, /turf/simulated/floor/shuttle/black, /area/shuttle/hapt) -"kzs" = ( -/turf/simulated/floor/tiled/full, -/area/hallway/primary/aft) -"kzv" = ( -/obj/structure/bed/stool/chair/office/dark, -/obj/effect/landmark/start{ - name = "Janitor" +"kzt" = ( +/obj/machinery/porta_turret/cannon, +/obj/effect/floor_decal/industrial/warning/full, +/turf/simulated/floor/bluegrid{ + name = "cooled mainframe floor"; + temperature = 278 }, -/obj/machinery/newscaster/west, -/obj/effect/floor_decal/corner/purple/full{ - dir = 8 - }, -/obj/machinery/alarm/north, -/turf/simulated/floor/tiled, -/area/horizon/custodial) -"kzx" = ( -/obj/machinery/light{ +/area/horizon/ai/chamber) +"kzu" = ( +/obj/machinery/atmospherics/binary/pump{ dir = 4 }, -/obj/effect/floor_decal/industrial/loading/yellow, -/obj/effect/floor_decal/spline/plain{ - dir = 6 +/obj/machinery/camera/network/engineering{ + c_tag = "Engineering - Atmospherics Control 2"; + dir = 1 }, -/obj/effect/landmark/latejoincyborg, -/turf/simulated/floor/carpet/rubber, -/area/assembly/chargebay) -"kzD" = ( -/obj/machinery/alarm/east, -/obj/structure/closet/secure_closet/package_courier, -/turf/simulated/floor/tiled, -/area/operations/storage) -"kzG" = ( -/obj/structure/lattice/catwalk/indoor/grate/damaged{ - color = "#4c535b" +/obj/effect/floor_decal/corner/yellow, +/obj/effect/floor_decal/corner/dark_blue{ + dir = 8 }, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel, -/obj/machinery/atmospherics/pipe/simple/hidden/aux, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"kzL" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/atmos) +"kzB" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/visible/cyan{ - dir = 10 - }, -/obj/effect/floor_decal/corner/yellow{ - dir = 9 + dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/turf/simulated/floor/tiled/dark, -/area/engineering/engine_waste) -"kzP" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 5 +/obj/structure/cable/green{ + icon_state = "4-8" }, -/obj/machinery/light/small/emergency, -/turf/simulated/floor/plating, -/area/maintenance/wing/port/far) +/turf/simulated/floor/tiled, +/area/horizon/crew/fitness/changing) +"kzH" = ( +/obj/structure/table/steel, +/obj/effect/floor_decal/corner/purple/full{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/horizon/maintenance/deck_2/wing/port) +"kzK" = ( +/obj/machinery/door/airlock/glass_research{ + name = "Research and Development"; + req_access = list(7); + dir = 1 + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/effect/map_effect/door_helper/unres{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/blast/shutters/open{ + id = "RnDShutters" + }, +/turf/simulated/floor/tiled, +/area/horizon/rnd/lab) "kzQ" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 4 @@ -74190,27 +74180,68 @@ /obj/structure/flora/ausbushes/ppflowers, /turf/simulated/floor/holofloor/grass, /area/horizon/holodeck/source_battlemonsters) -"kzV" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden{ +"kzR" = ( +/obj/structure/table/standard, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 9 + }, +/turf/simulated/floor/wood, +/area/horizon/command/heads/xo) +"kzU" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/highsecurity{ + dir = 4; + icon_state = "door_locked"; + id_tag = "airlocks_deck2_ammostorage"; + locked = 1; + name = "Secure Ammunition Storage"; + req_one_access = list(75) + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/blast/regular{ + dir = 2; + id = "shutters_deck1_ammostorage"; + name = "Secure Ammunition Storage Blast Door" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/obj/machinery/airlock_sensor{ - dir = 8; - pixel_x = 20; - pixel_y = -6 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 }, -/obj/effect/map_effect/marker/airlock/docking{ - landmark_tag = "nav_horizon_dock_deck_3_port_4"; - master_tag = "airlock_horizon_dock_deck_3_port_4"; - name = "airlock_horizon_dock_deck_3_port_4" +/obj/structure/cable/green{ + icon_state = "4-8" }, -/obj/machinery/embedded_controller/radio/airlock/docking_port{ - dir = 8; - pixel_x = 20; - pixel_y = 6 +/turf/simulated/floor/tiled/full, +/area/horizon/operations/secure_ammunition_storage) +"kzZ" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 }, /turf/simulated/floor/plating, -/area/horizon/hallway/deck_three/primary/port/docks) +/area/horizon/maintenance/deck_1/operations/starboard/far) +"kAa" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/effect/floor_decal/corner/paleblue{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/turf/simulated/floor/tiled, +/area/horizon/command/bridge/cciaroom/lounge) "kAb" = ( /obj/machinery/door/blast/regular{ density = 0; @@ -74230,6 +74261,10 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/security/office) +"kAc" = ( +/obj/effect/map_effect/window_spawner/full/reinforced/grille/firedoor, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/hangar/intrepid) "kAd" = ( /obj/structure/window/reinforced/crescent{ dir = 4 @@ -74247,34 +74282,35 @@ icon_state = "white" }, /area/tdome/tdomeadmin) -"kAg" = ( -/obj/random/loot, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/structure/closet, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard) -"kAh" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 5 - }, -/obj/structure/platform, -/turf/simulated/floor/wood, -/area/horizon/crew_quarters/lounge/bar) "kAi" = ( /turf/simulated/floor/holofloor/beach/sand{ icon_state = "desert4" }, /area/horizon/holodeck/source_beach) -"kAo" = ( -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/manifold/visible/green, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/engine_room/turbine) +"kAj" = ( +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/atmos/propulsion) +"kAt" = ( +/obj/item/stock_parts/subspace/transmitter, +/obj/item/stock_parts/subspace/transmitter, +/obj/machinery/light, +/obj/effect/floor_decal/spline/plain, +/obj/item/stock_parts/subspace/analyzer, +/obj/item/stock_parts/subspace/analyzer, +/obj/item/stock_parts/subspace/analyzer, +/obj/item/stock_parts/subspace/transmitter, +/obj/structure/table/standard, +/turf/simulated/floor/carpet/rubber, +/area/horizon/tcommsat/entrance) +"kAy" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/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/horizon/maintenance/deck_2/wing/port/far) "kAC" = ( /obj/structure/disposalpipe/segment, /obj/effect/floor_decal/corner/dark_blue{ @@ -74294,43 +74330,28 @@ }, /turf/unsimulated/floor, /area/centcom/spawning) -"kAG" = ( -/obj/machinery/portable_atmospherics/canister/carbon_dioxide, -/obj/machinery/door/window/northleft{ - name = "Canister Storage Access"; - req_access = list(65) - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/reinforced, -/area/rnd/xenoarch_atrium) -"kAN" = ( -/obj/effect/floor_decal/corner_wide/paleblue{ - dir = 9 - }, -/obj/structure/table/glass{ - table_reinf = "glass" - }, -/obj/item/device/flashlight/lamp, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/heads/cmo) -"kAR" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/maintenance{ - req_one_access = list(12,26,29,31,48,67) - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; +"kAI" = ( +/obj/structure/cable{ icon_state = "1-2" }, -/turf/simulated/floor/tiled/full, -/area/maintenance/wing/cargo_compartment) +/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/horizon/rnd/xenoarch/atrium) +"kAV" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/black{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/reactor/supermatter/waste) +"kAW" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 6 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/break_room) "kBb" = ( /turf/simulated/floor/holofloor/grass{ dir = 4; @@ -74339,6 +74360,45 @@ name = "overgrowth" }, /area/horizon/holodeck/source_moghes) +"kBe" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/camera/network/medbay{ + c_tag = "Medical - Staff Smoking Lounge"; + dir = 1 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/medical/smoking) +"kBh" = ( +/obj/structure/table/wood, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/random/pottedplant_small{ + pixel_x = 4; + pixel_y = 4 + }, +/turf/simulated/floor/wood, +/area/horizon/hallway/primary/deck_2/central) "kBk" = ( /turf/simulated/wall/r_wall, /area/horizon/security/equipment) @@ -74369,10 +74429,14 @@ }, /turf/simulated/floor/tiled, /area/horizon/security/investigations_hallway) -"kBo" = ( -/obj/structure/platform, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard/far) +"kBp" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/closet/crate, +/obj/item/stack/material/graphite/full, +/turf/simulated/floor/carpet/rubber, +/area/horizon/engineering/reactor/indra/mainchamber) "kBs" = ( /obj/machinery/light{ dir = 4 @@ -74383,6 +74447,11 @@ }, /turf/unsimulated/floor, /area/antag/mercenary) +"kBv" = ( +/obj/random/junk, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/starboard) "kBw" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/flora/pottedplant{ @@ -74403,48 +74472,25 @@ 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) -"kBE" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/horizon/longbow) -"kBF" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/structure/sign/emergency/evacuation{ - dir = 4; - pixel_y = -32 - }, -/obj/effect/floor_decal/corner/dark_green/full{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hangar/intrepid) -"kBL" = ( -/obj/effect/floor_decal/corner/white/diagonal, -/obj/structure/bed/stool/chair/office/light{ +"kBx" = ( +/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/hallway/primary/deck_2/central) +"kBK" = ( +/obj/effect/floor_decal/spline/plain{ dir = 8 }, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 1 +/obj/effect/floor_decal/spline/fancy{ + dir = 4 }, -/turf/simulated/floor/tiled, -/area/medical/paramedic) +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/effect/floor_decal/corner_wide/white{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/hallway/primary/deck_2/central) "kBN" = ( /obj/effect/landmark/start{ name = "Head of Security" @@ -74458,58 +74504,43 @@ /obj/structure/bed/stool/chair/office/bridge/generic, /turf/simulated/floor/wood, /area/horizon/security/meeting_room) -"kBV" = ( -/obj/machinery/embedded_controller/radio/simple_docking_controller/escape_pod_berth{ - dir = 4; - frequency = 1380; - id_tag = "escape_pod_4_berth"; - pixel_x = -25; - tag_door = "escape_pod_4_berth_hatch" +"kBO" = ( +/obj/structure/cable/orange{ + icon_state = "1-2" }, -/turf/simulated/floor/tiled, -/area/hangar/operations) +/obj/effect/floor_decal/industrial/warning/corner, +/turf/simulated/floor/plating, +/area/horizon/engineering/bluespace_drive) +"kBT" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/storage/eva) "kBW" = ( /obj/machinery/deployable/barrier, /obj/machinery/light, /turf/unsimulated/floor/rubber_carpet, /area/centcom/control) -"kBX" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 +"kCe" = ( +/obj/effect/decal/cleanable/cobweb2, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/portable_atmospherics/canister/air/airlock, +/obj/machinery/atmospherics/portables_connector{ + dir = 8 }, -/turf/simulated/floor/tiled/white, -/area/medical/gen_treatment) -"kCf" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/airlock/hatch{ +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/maintenance/deck_3/aft/port/far) +"kCi" = ( +/obj/machinery/atmospherics/valve/digital{ dir = 4; - lights = 0; - locked = 1; - name = "Maintenance Hatch" + name = "Thermal Relief Valve" }, -/obj/machinery/door/firedoor{ - dir = 4 - }, -/turf/simulated/floor/tiled/full, -/area/medical/ward/isolation) -"kCj" = ( -/obj/structure/shuttle_part/scc/mining{ - icon_state = "8,8"; - outside_part = 0; - pixel_x = 32 - }, -/turf/simulated/wall/shuttle/unique/scc/mining{ - icon_state = "7,8" - }, -/area/shuttle/mining) +/obj/effect/floor_decal/industrial/outline/red, +/turf/simulated/floor/plating, +/area/horizon/engineering/reactor/supermatter/mainchamber) "kCn" = ( /obj/machinery/door/airlock{ id_tag = "odin_valkyrie_stall2"; @@ -74517,37 +74548,53 @@ }, /turf/unsimulated/floor, /area/centcom/bar) -"kCw" = ( -/obj/structure/window/shuttle/scc_space_ship, -/obj/structure/grille, -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 2; - icon_state = "shutter0"; - id = "LCKDshutters"; - name = "MedBay Lockdown Shutters"; - opacity = 0 +"kCp" = ( +/obj/structure/table/wood, +/obj/machinery/photocopier/faxmachine{ + department = "Head of Security's Office"; + pixel_y = 3 }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/medical/smoking) -"kCA" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable{ - icon_state = "1-2" +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 }, -/obj/machinery/atmospherics/pipe/simple/hidden/aux, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel, -/obj/structure/platform_stairs/south_north_solo, -/turf/simulated/floor/plating, -/area/maintenance/engineering) +/obj/item/device/radio/intercom/west, +/turf/simulated/floor/carpet, +/area/horizon/command/heads/hos) +"kCt" = ( +/obj/effect/landmark/entry_point/starboard{ + name = "starboard, cargo bay" + }, +/turf/simulated/wall/shuttle/scc, +/area/horizon/shuttle/intrepid/buffet) +"kCu" = ( +/obj/effect/floor_decal/corner_wide/paleblue{ + dir = 9 + }, +/obj/machinery/power/apc/west, +/obj/structure/table/standard, +/obj/item/storage/box/sharps, +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/surgery) "kCC" = ( /turf/simulated/wall/shuttle/unique/tcfl{ icon_state = "1,1" }, /area/shuttle/legion) +"kCD" = ( +/obj/structure/cable/green{ + 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 = 6 + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled, +/area/horizon/hangar/intrepid) "kCE" = ( /obj/effect/floor_decal/corner_wide/blue{ dir = 4 @@ -74557,56 +74604,111 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/holodeck/source_pool) -"kCJ" = ( -/obj/item/modular_computer/console/preset/engineering/ce{ - dir = 1 +"kCF" = ( +/obj/effect/map_effect/window_spawner/full/reinforced/polarized/grille/firedoor{ + id = "consularA" }, -/obj/machinery/light, -/turf/simulated/floor/carpet, -/area/crew_quarters/heads/chief) +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id = "bridge blast"; + name = "Bridge Blast Doors"; + opacity = 0 + }, +/turf/simulated/floor, +/area/horizon/repoffice/consular_one) +"kCM" = ( +/obj/structure/table/standard, +/obj/item/reagent_containers/glass/beaker/large, +/obj/item/device/hand_labeler{ + pixel_y = 10 + }, +/obj/effect/floor_decal/corner_wide/orange{ + dir = 9 + }, +/obj/machinery/power/apc/low/west, +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/pharmacy) +"kCO" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/port) +"kCP" = ( +/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/horizon/shuttle/quark/cargo_hold) "kCV" = ( /obj/effect/floor_decal/corner/yellow{ dir = 10 }, /turf/simulated/floor/marble/dark, /area/horizon/holodeck/source_trinary) -"kCZ" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/corner/brown{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/operations/office) -"kDc" = ( -/obj/effect/map_effect/window_spawner/full/borosilicate/reinforced, -/obj/machinery/door/blast/regular/open{ - dir = 4; - id = "r_ust_core_blast"; - name = "INDRA Reactor Blast Doors" - }, +"kCY" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black, +/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, /turf/simulated/floor/tiled/dark/full, -/area/engineering/engine_room/rust) -"kDe" = ( +/area/horizon/engineering/atmos) +"kDb" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/obj/structure/disposalpipe/trunk, +/obj/machinery/disposal/small/south, +/turf/simulated/floor/wood, +/area/horizon/service/library) +"kDh" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 10 + }, +/turf/simulated/floor/plating, +/area/horizon/engineering/atmos/air) +"kDi" = ( /obj/effect/floor_decal/corner/dark_blue{ dir = 10 }, -/obj/structure/platform{ +/turf/simulated/floor/tiled/dark, +/area/horizon/storage/eva) +"kDj" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ dir = 1 }, -/obj/machinery/atm{ - pixel_y = -10 - }, -/obj/effect/floor_decal/industrial/outline/service, -/turf/simulated/floor/tiled, -/area/bridge) -"kDf" = ( -/obj/effect/decal/cleanable/liquid_fuel, -/turf/simulated/floor/carpet/rubber, -/area/maintenance/engineering/auxillary) +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/atmos/propulsion) "kDk" = ( /obj/effect/floor_decal/snowdrift/large, /turf/simulated/floor/exoplanet/snow, /area/centcom/shared_dream) +"kDq" = ( +/obj/machinery/light, +/turf/simulated/floor/bluegrid{ + name = "cooled mainframe floor"; + temperature = 278 + }, +/area/horizon/ai/chamber) "kDs" = ( /obj/effect/decal/fake_object{ icon = 'icons/obj/doors/rapid_pdoor.dmi'; @@ -74622,30 +74724,6 @@ }, /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" - }, -/turf/simulated/floor/plating, -/area/shuttle/canary) -"kDy" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/structure/bed/stool/chair/padded/beige, -/turf/simulated/floor/wood, -/area/bridge/minibar) "kDA" = ( /obj/machinery/atmospherics/pipe/simple/heat_exchanging{ dir = 6 @@ -74653,43 +74731,18 @@ /obj/structure/lattice, /turf/space/dynamic, /area/horizon/exterior) -"kDD" = ( -/obj/machinery/light/floor{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology) -"kDF" = ( -/obj/machinery/atmospherics/omni/filter{ - name = "oxygen filter"; - tag_east = 3; - tag_north = 1; - tag_south = 2 - }, -/obj/effect/floor_decal/corner/yellow, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/engineering/atmos) -"kDG" = ( -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/obj/structure/disposalpipe/segment{ - icon_state = "pipe-c" +"kDC" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 + dir = 6 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 + dir = 4 }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/bridge) +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/reactor/supermatter/mainchamber) "kDI" = ( /obj/structure/table/rack, /obj/item/clothing/glasses/eyepatch, @@ -74699,20 +74752,19 @@ /obj/item/clothing/glasses/regular/hipster, /turf/unsimulated/floor/blue_circuit, /area/antag/wizard) -"kDJ" = ( -/obj/structure/trash_pile, -/turf/simulated/floor/plating, -/area/maintenance/wing/port/far) -"kDK" = ( -/obj/structure/platform_stairs/full/east_west_cap, -/obj/structure/platform/cutout{ - dir = 8 +"kDM" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 5 }, -/obj/structure/platform{ +/obj/machinery/light{ dir = 1 }, +/obj/structure/coatrack{ + pixel_x = 8; + pixel_y = 10 + }, /turf/simulated/floor/wood, -/area/rnd/hallway/secondary) +/area/horizon/command/heads/captain) "kDR" = ( /obj/machinery/door/airlock/external{ dir = 4; @@ -74728,12 +74780,6 @@ }, /turf/simulated/floor/shuttle/black, /area/shuttle/specops) -"kDS" = ( -/obj/structure/cable/green{ - icon_state = "2-4" - }, -/turf/simulated/floor/carpet, -/area/crew_quarters/captain) "kDT" = ( /obj/effect/floor_decal/corner_wide/paleblue{ dir = 10 @@ -74747,50 +74793,23 @@ /obj/item/gun/projectile/shotgun/pump/unloaded, /turf/simulated/floor/tiled/dark/full, /area/horizon/security/armoury) -"kDU" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/substation/engineering/lower) "kDV" = ( /obj/structure/table/wood, /turf/simulated/floor/holofloor/beach/sand, /area/horizon/holodeck/source_picnicarea) -"kDW" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 +"kDX" = ( +/obj/structure/flora/pottedplant{ + icon_state = "plant-33" }, /obj/effect/floor_decal/spline/fancy/wood{ - dir = 1 + dir = 6 }, +/obj/machinery/alarm/east, /turf/simulated/floor/wood, -/area/chapel/main) -"kDY" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/machinery/button/remote/airlock{ - dir = 1; - id = "r-ust_electrical_maintenance"; - name = "Door Bolt Control"; - pixel_x = -28; - pixel_y = 32; - req_one_access = list(11,24); - specialfunctions = 4 - }, -/obj/structure/cable/yellow, -/obj/machinery/power/sensor{ - name = "Powernet Sensor - INDRA Reactor Output"; - name_tag = "INDRA Reactor Output" - }, -/turf/simulated/floor/tiled/dark, -/area/engineering/smes/rust) +/area/horizon/rnd/hallway/secondary) +"kEc" = ( +/turf/simulated/wall/shuttle/scc_space_ship/cardinal, +/area/horizon/service/custodial/disposals/deck_1) "kEd" = ( /obj/structure/railing/mapped{ dir = 8 @@ -74805,46 +74824,31 @@ icon_state = "wood" }, /area/centcom/evac) -"kEk" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/window/westleft{ - name = "Xenoarchaeology Platform Access"; - req_access = list(65) - }, -/obj/structure/railing/mapped, -/obj/structure/platform_stairs/full{ - dir = 8 - }, -/obj/structure/platform{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenoarch_atrium) -"kEm" = ( +"kEo" = ( /obj/structure/cable/green{ icon_state = "4-8" }, -/obj/effect/floor_decal/corner/dark_green{ - dir = 10 - }, -/obj/structure/disposalpipe/segment{ +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 +/obj/machinery/door/airlock/maintenance{ + dir = 4; + req_access = list(5) }, -/obj/machinery/light/floor, -/obj/structure/railing/mapped, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/central) +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 4; + icon_state = "shutter0"; + id = "LCKDshutters"; + name = "Medical Lockdown Shutters"; + opacity = 0 + }, +/turf/simulated/floor/tiled/full, +/area/horizon/medical/hallway) "kEp" = ( /turf/simulated/wall/shuttle/unique/tcfl{ icon_state = "3,1" @@ -74857,65 +74861,68 @@ /obj/structure/bed/stool/chair, /turf/unsimulated/floor, /area/centcom/holding) -"kEt" = ( -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/hangar/intrepid) -"kEw" = ( -/obj/effect/floor_decal/industrial/outline/firefighting_closet, -/obj/structure/closet/firecloset, -/turf/simulated/floor/tiled/dark/full, -/area/hallway/engineering) -"kEJ" = ( -/obj/effect/floor_decal/industrial/warning{ +"kEv" = ( +/obj/machinery/light/small{ dir = 8 }, -/turf/simulated/floor/plating, -/area/hangar/intrepid) -"kEQ" = ( -/obj/effect/floor_decal/corner/dark_blue/full{ - dir = 1 +/obj/effect/floor_decal/industrial/warning{ + dir = 9 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ +/turf/simulated/floor/reinforced, +/area/horizon/rnd/xenobiology) +"kEB" = ( +/obj/effect/floor_decal/corner_wide/purple{ + dir = 9 + }, +/obj/effect/floor_decal/corner_wide/purple{ dir = 4 }, +/obj/machinery/atmospherics/pipe/simple/visible/yellow, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/xenoarch/atrium) +"kED" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/turf/simulated/floor/tiled, -/area/bridge) +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/weapons/grauwolf) "kER" = ( /obj/effect/map_effect/window_spawner/full/reinforced/indestructible, /turf/unsimulated/floor/plating, /area/tdome/tdomeobserve) -"kEW" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/corner/dark_green{ - dir = 6 +"kEZ" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 }, -/turf/simulated/floor/tiled, -/area/hangar/intrepid) -"kEX" = ( -/obj/machinery/atmospherics/unary/outlet_injector{ - frequency = 1441; - id = "n2o_in"; - name = "nitrous oxide injector"; - use_power = 1 +/obj/structure/tank_wall/oxygen{ + icon_state = "o2-2" }, -/turf/simulated/floor/reinforced/n20, -/area/engineering/atmos/air) +/turf/simulated/floor/plating, +/area/horizon/engineering/atmos/air) +"kFa" = ( +/obj/machinery/power/apc/north, +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/obj/structure/tranqcabinet{ + pixel_x = -32 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 9 + }, +/obj/structure/table/standard, +/obj/machinery/recharger{ + pixel_y = 10; + pixel_x = -8 + }, +/turf/simulated/floor/wood, +/area/horizon/command/heads/rd) "kFb" = ( /obj/machinery/door/airlock/hatch{ dir = 4; @@ -74924,53 +74931,78 @@ }, /turf/simulated/floor/tiled, /area/merchant_station) -"kFd" = ( -/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/effect/floor_decal/corner/dark_green{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/engineering/lobby) -"kFh" = ( -/turf/simulated/wall, -/area/assembly/chargebay) -"kFk" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/corner/dark_blue/full{ +"kFf" = ( +/obj/machinery/camera/network/service{ + c_tag = "Service - Deck 2 - Bar Backroom"; dir = 8 }, +/obj/structure/closet/secure_closet/cabinet/beer/horizon, /turf/simulated/floor/tiled/dark, -/area/security/checkpoint2) -"kFn" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 10 +/area/horizon/service/bar/backroom) +"kFm" = ( +/obj/effect/floor_decal/industrial/outline/service, +/obj/machinery/seed_storage/garden/hydroponics, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/service/hydroponics) +"kFp" = ( +/obj/structure/flora/pottedplant{ + icon_state = "plant-33" + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/machinery/light_switch{ + dir = 4; + pixel_x = 22 + }, +/obj/effect/floor_decal/spline/fancy/wood/cee{ + dir = 1 + }, +/obj/structure/extinguisher_cabinet/north, +/turf/simulated/floor/wood, +/area/horizon/service/chapel/main) +"kFq" = ( +/obj/structure/bed/stool/chair/padded/brown{ + dir = 4 + }, +/obj/effect/floor_decal/spline/fancy/wood/cee{ + dir = 8 }, /turf/simulated/floor/wood, -/area/rnd/hallway/secondary) -"kFw" = ( -/obj/structure/table/reinforced, -/obj/machinery/ringer_button{ - id = "cargo_ringer"; - pixel_x = 6; - pixel_y = 5 +/area/horizon/hallway/primary/deck_1/central) +"kFs" = ( +/obj/effect/floor_decal/industrial/hatch/red, +/obj/machinery/door/window/westright{ + name = "Mass Driver Internal Access"; + req_access = list(22) }, +/obj/machinery/door/window/eastleft{ + name = "Mass Driver External Access"; + req_access = list(22) + }, +/obj/structure/plasticflaps/airtight, +/obj/machinery/door/blast/regular{ + id = "massdriver" + }, +/turf/simulated/floor/reinforced, +/area/horizon/service/chapel/office) +"kFt" = ( +/obj/effect/floor_decal/corner/dark_blue/diagonal, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/shuttle/intrepid/flight_deck) +"kFv" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/door/firedoor, -/obj/machinery/door/window/desk/southright{ - name = "Operations Desk Interior Access"; - req_access = list(50) - }, -/obj/machinery/door/blast/shutters{ - dir = 2; - id = "cargo_desk" - }, -/turf/simulated/floor/tiled/dark/full, -/area/operations/office_aux) +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/full, +/area/horizon/maintenance/deck_3/aft/starboard/far) "kFB" = ( /obj/structure/table/stone/marble, /obj/item/flame/candle, @@ -74979,28 +75011,26 @@ }, /turf/simulated/floor/holofloor/lino, /area/horizon/holodeck/source_meetinghall) -"kFC" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/lounge) "kFD" = ( /obj/effect/floor_decal/corner/red/diagonal, /turf/simulated/floor/tiled/dark, /area/shuttle/mercenary) +"kFE" = ( +/obj/machinery/door/airlock/glass_service{ + dir = 1; + name = "Hydroponics"; + req_access = list(35) + }, +/obj/machinery/door/firedoor, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/full, +/area/horizon/service/hydroponics) "kFK" = ( /obj/machinery/light/small{ dir = 8 }, /turf/simulated/floor/tiled/dark, /area/supply/dock) -"kFL" = ( -/obj/structure/bed/stool/chair/office/dark{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenoarch_atrium) "kFQ" = ( /obj/structure/table/rack, /obj/item/clothing/suit/storage/vest/legion{ @@ -75023,38 +75053,77 @@ }, /turf/unsimulated/floor, /area/centcom/legion/hangar5) -"kFX" = ( -/obj/structure/shuttle/engine/heater{ - dir = 1 +"kFV" = ( +/obj/structure/cable{ + icon_state = "1-4" }, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel, -/obj/effect/floor_decal/industrial/warning{ - dir = 9 +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/light/small/emergency{ + dir = 8 }, /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, -/area/hangar/intrepid) -"kGm" = ( -/obj/machinery/camera/network/engineering{ - c_tag = "Engineering - Hallway 2"; - dir = 1 +/area/horizon/maintenance/deck_2/aft) +"kGg" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/research{ + dir = 4; + name = "Suit Storage"; + req_access = list(65) }, -/obj/effect/floor_decal/corner/dark_green{ - dir = 10 +/turf/simulated/floor/tiled/dark, +/area/horizon/rnd/xenoarch/storage) +"kGh" = ( +/obj/effect/floor_decal/corner/black{ + dir = 6 }, -/turf/simulated/floor/tiled, -/area/engineering/lobby) -"kGn" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/light{ - dir = 1 +/turf/simulated/floor/tiled/dark, +/area/horizon/hangar/intrepid) +"kGi" = ( +/obj/structure/bed/stool/chair/shuttle{ + dir = 4 }, -/obj/structure/closet/secure_closet/hydroponics, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/hydroponics/lower) +/turf/simulated/floor/shuttle/dark_blue, +/area/horizon/shuttle/escape_pod/pod2) +"kGj" = ( +/obj/structure/window/shuttle/unique/scc/scout, +/obj/structure/window/shuttle/unique/scc/scout/over, +/obj/structure/window/shuttle/unique/scc/scout{ + density = 0; + icon_state = "3,1"; + pixel_x = -32 + }, +/obj/structure/window/shuttle/unique/scc/scout{ + density = 0; + icon_state = "5,1"; + pixel_x = 32 + }, +/obj/structure/shuttle_part/scc/scout{ + density = 0; + icon_state = "3,0"; + pixel_x = -32; + pixel_y = -32 + }, +/obj/structure/shuttle_part/scc/scout{ + density = 0; + icon_state = "5,0"; + pixel_x = 32; + pixel_y = -32 + }, +/obj/structure/window/shuttle/unique/scc/scout/over{ + density = 0; + icon_state = "5,1"; + pixel_x = 32 + }, +/obj/structure/window/shuttle/unique/scc/scout/over{ + density = 0; + icon_state = "3,1"; + pixel_x = -32 + }, +/obj/effect/landmark/entry_point/fore{ + name = "fore, cockpit" + }, +/turf/simulated/floor/plating, +/area/horizon/shuttle/canary) "kGp" = ( /obj/item/clothing/suit/armor/carrier/ballistic, /obj/item/clothing/shoes/sneakers, @@ -75089,30 +75158,34 @@ /obj/structure/lattice/catwalk/indoor/grate/dark, /turf/unsimulated/floor/plating, /area/centcom/holding) -"kGt" = ( -/turf/simulated/open, -/area/operations/office_aux) -"kGu" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 +"kGr" = ( +/turf/simulated/wall/shuttle/unique/scc/mining{ + icon_state = "7,3" }, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard) -"kGy" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/maintenance{ - dir = 4; - name = "Public Garden Maintenance"; - req_one_access = list(12, 35) - }, -/turf/simulated/floor/tiled/full, -/area/horizon/hydroponics/garden) -"kGA" = ( -/obj/machinery/computer/security/engineering/terminal{ +/area/horizon/shuttle/mining) +"kGw" = ( +/obj/effect/floor_decal/industrial/outline_door/medical/dark_green, +/obj/effect/floor_decal/industrial/outline_segment/medical/dark_green{ dir = 4 }, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/bluespace_drive/monitoring) +/obj/effect/floor_decal/spline/plain/blue{ + dir = 1 + }, +/obj/effect/floor_decal/corner/dark_green{ + dir = 10 + }, +/obj/machinery/atmospherics/valve/open{ + dir = 8; + name = "Tray Cutoff Valve" + }, +/obj/effect/floor_decal/industrial/hatch_tiny/service, +/turf/simulated/floor/tiled, +/area/horizon/service/hydroponics/lower) +"kGI" = ( +/obj/effect/floor_decal/industrial/outline/grey, +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/simulated/floor/plating, +/area/horizon/hangar/intrepid) "kGJ" = ( /obj/effect/floor_decal/corner/dark_blue{ dir = 5 @@ -75126,69 +75199,70 @@ /obj/structure/platform, /turf/simulated/floor/tiled/dark, /area/horizon/security/meeting_room) -"kGM" = ( -/obj/structure/table/standard, -/obj/item/folder/yellow, -/obj/effect/floor_decal/corner/brown{ - dir = 6 - }, -/obj/item/paper_bin{ - pixel_y = 5 - }, -/obj/item/pen/black, -/obj/item/device/price_scanner, -/turf/simulated/floor/tiled, -/area/operations/office) -"kGS" = ( -/obj/effect/floor_decal/corner/green/diagonal, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, +"kGR" = ( /obj/structure/cable/green{ - icon_state = "4-8" + icon_state = "1-4" }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/firealarm/south, -/turf/simulated/floor/tiled/white, -/area/horizon/crew_quarters/washroom/central) -"kHe" = ( -/obj/effect/floor_decal/corner/dark_blue{ +/obj/effect/floor_decal/corner/dark_blue/full, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 5 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/ai/upload_foyer) +"kGY" = ( +/obj/effect/floor_decal/corner/purple{ + dir = 10 + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/purple{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/service/custodial/disposals/deck_1) +"kHd" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 6 + }, +/obj/effect/floor_decal/corner/dark_green{ + dir = 6 + }, /turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/starboard) -"kHg" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenoarch_storage) -"kHo" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/structure/tank_wall/nitrogen{ - icon_state = "n9" - }, -/turf/simulated/floor/plating, -/area/engineering/atmos/air) -"kHp" = ( -/obj/machinery/atmospherics/pipe/manifold/visible{ +/area/horizon/hangar/auxiliary) +"kHq" = ( +/obj/effect/floor_decal/spline/fancy/wood{ dir = 1 }, -/obj/machinery/light/floor{ - dir = 1 +/obj/effect/floor_decal/spline/fancy/wood, +/obj/machinery/button/remote/airlock{ + dir = 1; + pixel_x = -5; + name = "Office Door"; + id = "hra_room"; + pixel_y = 39; + specialfunctions = 4 }, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology/xenoflora) +/obj/machinery/button/remote/blast_door{ + dir = 10; + pixel_x = -5; + pixel_y = 28; + id = "hra_room_bd" + }, +/obj/machinery/button/switch/windowtint{ + dir = 1; + id = "hra"; + pixel_x = 7; + pixel_y = 38 + }, +/obj/machinery/light_switch{ + dir = 1; + pixel_y = 26; + pixel_x = 7 + }, +/turf/simulated/floor/wood, +/area/horizon/command/bridge/cciaroom) "kHr" = ( /obj/effect/decal/fake_object{ desc = "A rudimentary, poorly utilized railing mechanism. Stepping over it is easy."; @@ -75210,24 +75284,14 @@ name = "coast" }, /area/horizon/holodeck/source_konyang) -"kHy" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/effect/floor_decal/corner/black{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"kHC" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/corner/mauve/diagonal, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/white, -/area/rnd/lab) -"kHJ" = ( -/obj/structure/bed/stool/chair/office/dark, -/turf/simulated/floor/carpet/rubber, -/area/rnd/lab) +"kHs" = ( +/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/maintenance/deck_2/wing/port) +"kHv" = ( +/obj/effect/floor_decal/corner/black, +/turf/simulated/floor/tiled/dark, +/area/horizon/hangar/auxiliary) "kHL" = ( /obj/effect/decal/fake_object{ dir = 4; @@ -75263,18 +75327,6 @@ name = "shallow water" }, /area/horizon/holodeck/source_konyang) -"kHN" = ( -/obj/effect/floor_decal/corner_wide/yellow/diagonal, -/obj/structure/table/steel, -/obj/item/storage/box/fancy/crayons/chalkbox{ - pixel_y = 5 - }, -/obj/item/storage/box/fancy/crayons/chalkbox, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/engineering/break_room) "kHO" = ( /obj/structure/table/stone/marble, /obj/machinery/chemical_dispenser/coffee/full{ @@ -75285,63 +75337,57 @@ /obj/effect/decal/cleanable/dirt, /turf/unsimulated/floor/wood, /area/antag/burglar) -"kHT" = ( +"kHV" = ( /obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/cable/green{ icon_state = "4-8" }, -/obj/effect/floor_decal/corner_wide/yellow{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/engineering/bluespace_drive) -"kHY" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/spline/fancy/wood{ +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/obj/structure/bed/stool/bar/padded/red{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/horizon/bar) -"kIf" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/cable/green{ - icon_state = "1-4" - }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 + dir = 4 }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 +/obj/structure/disposalpipe/sortjunction/untagged/flipped{ + dir = 4 }, /obj/structure/lattice/catwalk/indoor/grate, /turf/simulated/floor/plating, -/area/hangar/intrepid/interstitial) -"kIj" = ( -/obj/machinery/light{ +/area/horizon/engineering/hallway/interior) +"kIg" = ( +/obj/effect/floor_decal/spline/fancy/wood{ dir = 1 }, -/obj/structure/bed/stool/chair/sofa/corner/convex/brown{ - dir = 4 +/obj/machinery/keycard_auth{ + dir = 1; + pixel_y = 30 }, -/turf/simulated/floor/carpet/art, -/area/crew_quarters/lounge) -"kIn" = ( -/obj/machinery/light{ - dir = 8 +/obj/structure/bed/stool/chair/padded/purple, +/turf/simulated/floor/wood, +/area/horizon/command/heads/rd) +"kIk" = ( +/obj/effect/floor_decal/industrial/hatch_door/red{ + dir = 1 }, -/obj/effect/floor_decal/spline/plain{ - dir = 9 +/obj/machinery/door/airlock/external, +/obj/effect/map_effect/marker/airlock/shuttle{ + cycle_to_external_air = 1; + master_tag = "airlock_shuttle_intrepid"; + name = "airlock_shuttle_intrepid"; + req_one_access = null; + shuttle_tag = "Intrepid" }, -/turf/simulated/floor/carpet/rubber, -/area/engineering/engine_monitoring) +/obj/effect/map_effect/marker_helper/airlock/interior, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/shuttle/intrepid/main_compartment) +"kIo" = ( +/obj/effect/map_effect/window_spawner/full/reinforced/polarized/firedoor{ + id = "library" + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/service/bar/backroom) "kIt" = ( /obj/structure/lattice, /obj/machinery/atmospherics/pipe/simple/visible/red{ @@ -75360,6 +75406,11 @@ /obj/effect/floor_decal/industrial/hatch/yellow, /turf/unsimulated/floor, /area/centcom/spawning) +"kIv" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/atmospherics/pipe/simple/visible/universal, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/hangar/starboard) "kIE" = ( /obj/effect/floor_decal/spline/plain, /obj/structure/railing/mapped{ @@ -75369,24 +75420,6 @@ dir = 8 }, /area/horizon/holodeck/source_tribunal) -"kII" = ( -/obj/effect/floor_decal/corner/brown{ - dir = 10 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/operations/office) "kIO" = ( /obj/machinery/light{ dir = 8 @@ -75399,6 +75432,13 @@ icon_state = "dark_preview" }, /area/centcom/holding) +"kIR" = ( +/obj/machinery/light/small/emergency{ + dir = 4 + }, +/obj/random/dirt_75, +/turf/simulated/floor, +/area/horizon/maintenance/deck_2/wing/starboard/far) "kIT" = ( /obj/structure/grille, /obj/machinery/door/firedoor, @@ -75413,86 +75453,94 @@ /obj/structure/window/shuttle/scc_space_ship/cardinal, /turf/simulated/floor/plating, /area/horizon/security/autopsy_laboratory) -"kIU" = ( -/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/lattice/catwalk/indoor/grate/dark, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/maintenance{ - dir = 4; - req_one_access = list(5,10,12) - }, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard) "kIV" = ( /obj/machinery/light{ dir = 8 }, /turf/simulated/floor/shuttle/black, /area/shuttle/specops) +"kIW" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/corner/dark_blue{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_3/port) +"kJa" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/open, +/area/horizon/maintenance/deck_2/wing/port) "kJd" = ( /obj/effect/floor_decal/spline/plain, /turf/simulated/floor/exoplanet/grass, /area/centcom/shared_dream) -"kJh" = ( -/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/commissary) +"kJf" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/fuel, +/turf/simulated/wall/shuttle/scc, +/area/horizon/shuttle/intrepid/engineering) +"kJm" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/machinery/camera/network/supply{ + c_tag = "Operations - Warehouse Starboard Fore Storage Room"; + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/horizon/operations/warehouse) "kJo" = ( /obj/machinery/computer/security{ dir = 8 }, /turf/simulated/floor/shuttle/black, /area/shuttle/hapt) -"kJp" = ( -/obj/effect/floor_decal/industrial/loading/yellow{ - dir = 4 +"kJq" = ( +/obj/machinery/door/airlock/command{ + dir = 1; + name = "Captain's Office"; + req_access = list(20); + id_tag = "capoffice" }, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenoarch_atrium) -"kJv" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/door/airlock{ +/obj/machinery/door/blast/regular{ + density = 0; dir = 4; - name = "Showers" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 + icon_state = "pdoor0"; + id = "bridge blast"; + name = "Bridge Blast Doors"; + opacity = 0 }, +/obj/structure/disposalpipe/segment, /obj/machinery/door/firedoor, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/full, -/area/horizon/crew_quarters/fitness/showers) -"kJw" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/white, -/area/medical/gen_treatment) -"kJy" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 4 - }, -/obj/effect/floor_decal/spline/fancy{ - dir = 8 +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled, +/area/horizon/command/heads/captain) +"kJr" = ( +/turf/simulated/wall, +/area/horizon/maintenance/deck_1/main/starboard) +"kJz" = ( +/obj/effect/floor_decal/corner/black{ + dir = 9 }, /obj/structure/railing/mapped{ - dir = 4 + dir = 8 }, -/obj/effect/floor_decal/corner_wide/white{ - dir = 6 +/obj/effect/floor_decal/industrial/loading/yellow, +/obj/structure/cable{ + icon_state = "1-2" }, -/turf/simulated/floor/tiled/dark/full, -/area/hallway/primary/central_one) +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/hangar/intrepid) "kJC" = ( /obj/structure/railing/mapped, /obj/effect/mist, @@ -75502,30 +75550,19 @@ icon_state = "beach" }, /area/horizon/holodeck/source_moghes) -"kJF" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command{ +"kJD" = ( +/obj/machinery/door/airlock/glass_command{ dir = 1; - name = "Chief Engineer's Office"; - req_access = list(56) + name = "Captain's Office"; + req_access = list(20) }, -/turf/simulated/floor/tiled, -/area/engineering/lobby) -"kJG" = ( -/obj/machinery/light/small/emergency{ - dir = 4 +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + icon_state = "1-2" }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"kJH" = ( -/obj/effect/floor_decal/corner/brown{ - dir = 9 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/intrepid/starboard_compartment) +/turf/simulated/floor/wood, +/area/horizon/command/heads/captain) "kJK" = ( /obj/structure/table/steel, /obj/effect/decal/fake_object{ @@ -75536,60 +75573,46 @@ }, /turf/unsimulated/floor, /area/centcom/specops) -"kJL" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ +"kJO" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/light/small/emergency{ dir = 4 }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology) -"kJM" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/carpet/rubber, -/area/rnd/lab) +/obj/machinery/portable_atmospherics/canister/helium, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/reactor/indra/mainchamber) "kJP" = ( /obj/effect/floor_decal/industrial/arrow/red{ dir = 8 }, /obj/effect/floor_decal/industrial/outline/red, /turf/simulated/floor/reinforced/airless, -/area/template_noop) -"kKb" = ( -/obj/structure/cable/green{ - icon_state = "4-8" +/area/horizon/exterior) +"kJT" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 5 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 +/obj/structure/closet/walllocker/firecloset{ + pixel_y = 32 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/corner/brown/full{ - dir = 1 - }, -/obj/machinery/alarm/north, +/obj/effect/floor_decal/industrial/outline/firefighting_closet, /turf/simulated/floor/tiled, -/area/hangar/operations) +/area/horizon/hallway/primary/deck_3/port) "kKc" = ( -/obj/effect/floor_decal/industrial/loading/yellow{ - dir = 1 +/turf/simulated/wall, +/area/horizon/engineering/break_room) +"kKd" = ( +/obj/effect/floor_decal/corner_wide/orange{ + dir = 10 }, -/obj/structure/plasticflaps/airtight, -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/shutters{ - dir = 2; - id = "mining_shuttle_trunk"; - name = "Mining Shuttle Exterior" +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + icon_state = "1-2" }, -/turf/simulated/floor/tiled/dark, -/area/hangar/operations) +/turf/simulated/floor/tiled/white, +/area/horizon/medical/gen_treatment) "kKe" = ( /obj/structure/table/stone/marble, /obj/random/gift{ @@ -75601,112 +75624,159 @@ }, /turf/unsimulated/floor/marble, /area/antag/wizard) -"kKm" = ( -/obj/structure/shuttle_part/scc_space_ship{ - icon_state = "d3-1" - }, -/turf/space/dynamic, -/area/template_noop) -"kKq" = ( -/obj/machinery/door/airlock/mining{ - dir = 1; - name = "Machinist Workshop"; - req_access = list(29) - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/firedoor, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled, -/area/operations/lower/machinist) -"kKz" = ( -/obj/machinery/atmospherics/unary/outlet_injector{ - dir = 1; - frequency = 1441; - id = "air_in"; - use_power = 1 - }, -/turf/simulated/floor/reinforced/airmix, -/area/engineering/atmos/air) -"kKA" = ( -/obj/effect/floor_decal/corner/dark_green/full{ - dir = 4 - }, -/obj/structure/bed/stool/chair{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/engineering/lobby) -"kKL" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/port) -"kKP" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 6 - }, -/obj/random/dirt_75, -/turf/simulated/floor/tiled, -/area/maintenance/wing/port/far) -"kKT" = ( -/obj/machinery/atmospherics/pipe/simple/visible/black, -/turf/simulated/wall/shuttle/scc_space_ship/cardinal, -/area/engineering/atmos/propulsion) -"kKU" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/operations/lower/machinist) -"kKV" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 5 - }, -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/port) -"kLa" = ( -/obj/structure/bed/stool/chair/padded/brown{ - dir = 8 - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 5 - }, -/turf/simulated/floor/wood, -/area/horizon/hallway/deck_three/primary/central) -"kLb" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, +"kKh" = ( /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{ - dir = 5 +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/maintenance_hatch{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/starboard/near) +"kKl" = ( +/obj/machinery/camera/network/reactor{ + c_tag = "Engineering - INDRA Room 4"; + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner_wide/yellow{ + dir = 10 }, -/obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled, -/area/security/checkpoint) +/area/horizon/engineering/reactor/indra/mainchamber) +"kKm" = ( +/obj/structure/shuttle_part/scc_space_ship{ + icon_state = "d3-1" + }, +/turf/space/dynamic, +/area/template_noop) +"kKn" = ( +/obj/machinery/alarm/south, +/obj/effect/floor_decal/industrial/outline/operations, +/obj/structure/table/standard, +/obj/item/device/suit_cooling_unit, +/obj/item/device/suit_cooling_unit, +/obj/item/device/suit_cooling_unit, +/obj/item/device/suit_cooling_unit, +/obj/item/storage/bag/inflatable, +/obj/item/storage/bag/inflatable, +/obj/item/storage/bag/inflatable, +/obj/item/storage/bag/inflatable, +/obj/item/device/hand_labeler, +/obj/item/crowbar/hydraulic_rescue_tool, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/atmos/storage) +"kKu" = ( +/obj/item/modular_computer/console/preset/security{ + dir = 1 + }, +/obj/effect/floor_decal/corner/dark_blue/full{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/security/checkpoint2) +"kKK" = ( +/obj/structure/bed/stool/chair, +/obj/effect/floor_decal/spline/fancy/wood/cee{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/wood, +/area/horizon/command/bridge/upperdeck) +"kKO" = ( +/obj/effect/floor_decal/corner/brown/diagonal, +/turf/simulated/floor/tiled, +/area/horizon/operations/loading) +"kKY" = ( +/obj/machinery/hologram/holopad, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/carpet, +/area/horizon/command/heads/captain) "kLc" = ( /obj/structure/cable/green{ icon_state = "1-2" }, /turf/simulated/floor/tiled, /area/horizon/security/brig) -"kLo" = ( -/obj/structure/platform, +"kLd" = ( +/obj/effect/map_effect/window_spawner/full/reinforced/grille/firedoor, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id = "bridge blast"; + name = "Bridge Blast Doors"; + opacity = 0 + }, +/obj/structure/cable/green{ + icon_state = "0-8" + }, +/turf/simulated/floor, +/area/horizon/command/bridge/bridge_crew) +"kLk" = ( +/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/structure/cable/green{ + icon_state = "2-4" + }, +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor/plating, +/area/horizon/hangar/intrepid) +"kLl" = ( +/obj/effect/floor_decal/spline/plain/corner/black{ + dir = 4 + }, +/obj/effect/floor_decal/corner/dark_green, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/machinery/firealarm/east, /turf/simulated/floor/tiled, -/area/rnd/xenoarch_atrium) -"kLu" = ( -/obj/effect/floor_decal/industrial/outline/medical, +/area/horizon/crew/fitness/gym) +"kLq" = ( +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/wing/starboard/far) +"kLs" = ( +/obj/machinery/disposal/small/north, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/machinery/newscaster/south, +/obj/effect/floor_decal/corner/beige{ + dir = 10 + }, /turf/simulated/floor/tiled, -/area/operations/storage) +/area/horizon/crew/vacantoffice) "kLx" = ( /obj/structure/flora/ausbushes/fullgrass, /obj/effect/floor_decal/spline/plain{ @@ -75714,89 +75784,46 @@ }, /turf/simulated/floor/exoplanet/grass/grove, /area/centcom/shared_dream) +"kLy" = ( +/obj/effect/floor_decal/spline/fancy/wood, +/obj/structure/table/wood, +/obj/structure/railing/mapped, +/obj/random/pottedplant_small{ + pixel_x = -3; + pixel_y = 8 + }, +/obj/machinery/power/outlet{ + pixel_y = 9 + }, +/turf/simulated/floor/wood, +/area/horizon/service/cafeteria) "kLz" = ( /turf/simulated/wall/shuttle/unique/mercenary/small{ icon_state = "6,2" }, /area/shuttle/syndicate_elite) -"kLC" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/light/small/emergency, -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/maintenance/hangar/starboard) -"kLG" = ( -/obj/effect/floor_decal/industrial/warning{ +"kLJ" = ( +/obj/effect/floor_decal/corner/red/diagonal, +/obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/industrial/warning/corner{ +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/spline/plain/corner{ dir = 8 }, -/obj/machinery/alarm/east, -/turf/simulated/floor/reinforced, -/area/engineering/gravity_gen) -"kLN" = ( -/obj/structure/bed/psych, -/obj/machinery/light_switch{ - pixel_x = -13; - pixel_y = 20 - }, -/obj/random/plushie, -/turf/simulated/floor/wood, -/area/medical/psych) -"kLO" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 9 - }, -/obj/effect/floor_decal/industrial/warning/corner, +/turf/simulated/floor/lino, +/area/horizon/service/cafeteria) +"kMa" = ( /obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/horizon/maintenance/deck_two/fore/starboard) -"kLR" = ( -/obj/effect/floor_decal/corner/lime{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/medical/morgue/lower) -"kLY" = ( -/obj/structure/trash_pile, -/obj/effect/floor_decal/industrial/warning{ - dir = 9 - }, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"kMd" = ( -/obj/structure/cable{ icon_state = "4-8" }, -/obj/structure/disposalpipe/segment{ +/obj/structure/lattice/catwalk/indoor, +/obj/structure/railing/mapped{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/full, -/area/hallway/engineering/rust) -"kMj" = ( -/obj/structure/closet/secure_closet/medical3, -/obj/effect/floor_decal/corner_wide/green/full, -/obj/machinery/light, -/turf/simulated/floor/tiled/white, -/area/medical/equipment) +/obj/structure/railing/mapped, +/turf/simulated/floor/plating, +/area/horizon/engineering/bluespace_drive) "kMk" = ( /obj/structure/bed/stool/chair/office/dark{ dir = 1 @@ -75806,46 +75833,28 @@ }, /turf/simulated/floor/tiled, /area/horizon/security/warden) -"kMm" = ( -/obj/structure/platform/ledge{ - dir = 4 - }, -/obj/structure/platform/ledge{ - dir = 8 - }, -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/structure/railing/mapped{ - dir = 8 - }, -/turf/simulated/open, -/area/operations/office) -"kMq" = ( -/obj/effect/floor_decal/industrial/warning/cee{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/visible/universal{ - dir = 4 - }, -/obj/structure/lattice/catwalk/indoor/grate, -/turf/simulated/floor/plating, -/area/horizon/hallway/deck_three/primary/port/docks) -"kMs" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 +"kMr" = ( +/obj/structure/cable/green{ + icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/obj/structure/cable/green{ - icon_state = "4-8" +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 }, -/turf/simulated/floor/tiled/dark, -/area/horizon/bar) +/turf/simulated/floor/wood, +/area/horizon/service/cafeteria) +"kMu" = ( +/obj/machinery/portable_atmospherics/canister/air/airlock, +/obj/machinery/atmospherics/portables_connector{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/auxatmos) "kMw" = ( /obj/structure/janitorialcart/full{ dir = 8 @@ -75871,23 +75880,19 @@ }, /turf/simulated/floor/tiled/dark, /area/shuttle/mercenary) -"kMC" = ( -/obj/machinery/door/airlock/external{ +"kMF" = ( +/obj/effect/floor_decal/corner/lime/diagonal, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/machinery/access_button{ - dir = 8; - pixel_x = -12; - pixel_y = -28 +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 }, -/obj/effect/map_effect/marker/airlock{ - frequency = 1003; - master_tag = "airlock_horizon_deck_1_aft_propulsion_2"; - name = "airlock_horizon_deck_1_aft_propulsion_2" +/obj/structure/cable/green{ + icon_state = "4-8" }, -/obj/effect/map_effect/marker_helper/airlock/exterior, -/turf/simulated/floor/plating, -/area/engineering/atmos/propulsion) +/turf/simulated/floor/tiled/white, +/area/horizon/shuttle/intrepid/medical) "kMK" = ( /obj/machinery/atmospherics/pipe/simple/visible/purple{ dir = 4 @@ -75897,6 +75902,36 @@ /obj/machinery/atmospherics/pipe/simple/visible/fuel, /turf/space/dynamic, /area/horizon/exterior) +"kML" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 9 + }, +/obj/structure/table/wood, +/obj/machinery/chemical_dispenser/coffee/full{ + pixel_y = 10 + }, +/obj/item/reagent_containers/food/drinks/drinkingglass/newglass/coffeecup{ + pixel_x = -6; + pixel_y = -4 + }, +/obj/item/reagent_containers/food/drinks/drinkingglass/newglass/coffeecup{ + pixel_x = 2; + pixel_y = -4 + }, +/obj/item/reagent_containers/food/drinks/drinkingglass/newglass/coffeecup{ + pixel_x = 10; + pixel_y = -4 + }, +/turf/simulated/floor/wood, +/area/horizon/repoffice/representative_one) +"kMM" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark, +/area/horizon/maintenance/deck_2/wing/starboard/nacelle) "kMP" = ( /obj/effect/floor_decal/industrial/warning{ dir = 6 @@ -75919,75 +75954,51 @@ /obj/structure/dispenser/oxygen, /turf/unsimulated/floor/plating, /area/centcom/specops) -"kMR" = ( -/obj/structure/disposalpipe/up, -/obj/effect/floor_decal/industrial/warning/cee{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard/deck1) -"kMV" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/turf/simulated/floor/tiled, -/area/hangar/auxiliary) -"kNa" = ( -/obj/item/material/stool/chair/folding{ - pixel_y = 4 - }, -/obj/item/material/stool/chair/folding{ - pixel_y = 10 - }, -/obj/item/material/stool/chair/folding{ - pixel_y = 16 - }, -/turf/simulated/floor/plating, -/area/engineering/rust_office) -"kNb" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/maintenance{ - dir = 4 - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/maintenance/wing/port/far) -"kNd" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/horizon/bar) +"kMQ" = ( +/turf/simulated/wall/shuttle/scc_space_ship/cardinal, +/area/horizon/engineering/hallway/aft) "kNn" = ( /obj/structure/holostool{ dir = 1 }, /turf/simulated/floor/wood/maple, /area/horizon/holodeck/source_cafe) -"kNt" = ( -/obj/effect/floor_decal/corner/brown{ - dir = 9 +"kNo" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 6 }, -/obj/machinery/mineral/stacking_unit_console{ - id = "horizon_stacking_2"; - pixel_x = -32 +/obj/machinery/light/floor{ + dir = 4 }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/refinery) -"kNx" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/floor_decal/corner/dark_green{ - dir = 5 +/obj/structure/platform_deco{ + icon_state = "ledge_deco" }, /turf/simulated/floor/tiled, -/area/hangar/intrepid) +/area/horizon/command/bridge/upperdeck) +"kNp" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled, +/area/horizon/service/custodial) +"kNz" = ( +/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/horizon/hangar/auxiliary) +"kNA" = ( +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/machinery/disposal/small/west, +/obj/effect/floor_decal/corner/red/diagonal, +/obj/effect/floor_decal/spline/plain{ + dir = 4 + }, +/turf/simulated/floor/lino, +/area/horizon/service/cafeteria) "kND" = ( /obj/effect/floor_decal/corner/teal{ dir = 5 @@ -75997,43 +76008,36 @@ }, /turf/unsimulated/floor/dark, /area/antag/actor) -"kNE" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/table/wood, -/obj/machinery/photocopier/faxmachine{ - anchored = 0; - department = "Representative's Office B"; - pixel_y = 4 - }, -/turf/simulated/floor/carpet, -/area/lawoffice/representative_two) -"kNN" = ( +"kNI" = ( /obj/effect/floor_decal/industrial/warning{ - dir = 9 + dir = 1 }, -/obj/structure/railing/mapped{ - dir = 8 +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/reinforced, -/area/shuttle/mining) -"kOk" = ( -/obj/effect/floor_decal/corner_wide/yellow{ - dir = 6 +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/port/near) +"kNL" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 }, -/obj/structure/cable/orange{ - icon_state = "4-8" +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/effect/floor_decal/corner/dark_green{ + dir = 4 }, /turf/simulated/floor/tiled, -/area/engineering/engine_room/rust) -"kOp" = ( -/obj/structure/shuttle_part/scc/scout{ - icon_state = "7,10" +/area/horizon/hallway/primary/deck_3/central) +"kOh" = ( +/obj/machinery/light/small/emergency{ + dir = 4 }, +/obj/machinery/recharge_station, /turf/simulated/floor/plating, -/area/shuttle/canary) +/area/horizon/engineering/drone_fabrication) "kOq" = ( /obj/effect/floor_decal/spline/plain, /obj/machinery/light{ @@ -76041,50 +76045,23 @@ }, /turf/unsimulated/floor/monotile, /area/antag/mercenary) -"kOs" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 +"kOr" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 8 }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/bed/stool/bar/padded/red, -/turf/simulated/floor/tiled/dark, -/area/horizon/maintenance/deck_three/aft/starboard) -"kOA" = ( -/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, -/obj/machinery/door/blast/shutters{ - dir = 4; - id = "shutters_deck2_auxcustwindow"; - name = "Window Shutter" +/obj/effect/map_effect/marker/airlock{ + frequency = 1002; + master_tag = "airlock_horizon_deck_3_fore_starboard_1"; + name = "airlock_horizon_deck_3_fore_starboard_1" }, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/custodial/auxiliary) -"kOC" = ( -/obj/machinery/door/airlock/multi_tile/glass{ - dir = 2; - name = "Public Garden" - }, -/obj/machinery/door/firedoor/multi_tile{ - dir = 1 - }, -/turf/simulated/floor/tiled/full, -/area/horizon/hydroponics/garden) +/turf/simulated/floor, +/area/horizon/maintenance/deck_3/bridge) +"kOu" = ( +/turf/simulated/wall, +/area/horizon/maintenance/deck_2/wing/port/nacelle) "kOH" = ( /turf/unsimulated/floor, /area/centcom/specops) -"kOJ" = ( -/obj/machinery/camera/network/supply{ - c_tag = "Operations - Lower Warehouse 1"; - dir = 8 - }, -/obj/effect/floor_decal/corner/brown{ - dir = 6 - }, -/obj/structure/closet/walllocker/medical/firstaid{ - pixel_x = 32 - }, -/turf/simulated/floor/tiled, -/area/operations/storage) "kOM" = ( /obj/structure/bed/stool/padded, /obj/effect/floor_decal/corner_wide/dark_green{ @@ -76092,78 +76069,150 @@ }, /turf/simulated/floor/tiled/dark, /area/shuttle/skipjack) -"kON" = ( -/obj/structure/disposalpipe/segment{ +"kOO" = ( +/obj/effect/floor_decal/corner_wide/purple{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/effect/floor_decal/corner/dark_green{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_two/fore) -"kOP" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 6 +/obj/effect/floor_decal/corner_wide/purple{ + dir = 9 }, /obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/alarm/north{ - dir = 4; - pixel_y = 0; - pixel_x = 10 - }, -/turf/simulated/floor/tiled, -/area/bridge/controlroom) -"kOR" = ( -/obj/effect/floor_decal/industrial/hatch_door/yellow{ - dir = 8 - }, -/obj/machinery/door/firedoor{ - req_one_access = list(24,11,67,73) - }, -/obj/machinery/door/airlock/hatch{ - name = "Starboard Nacelle" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden, -/turf/simulated/floor/tiled/dark/full, -/area/shuttle/intrepid/engineering) +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/xenoarch/atrium) "kOX" = ( /obj/structure/bed/stool/chair/office/bridge, /turf/unsimulated/floor/rubber_carpet, /area/centcom/control) +"kOZ" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/alarm/north, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/operations/starboard) +"kPf" = ( +/obj/machinery/door/firedoor, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/door/airlock/atmos{ + dir = 1; + name = "Atmospherics Turbine"; + req_access = list(24) + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plating, +/area/horizon/engineering/atmos/turbine) +"kPg" = ( +/obj/structure/platform, +/obj/structure/table/standard, +/obj/item/device/flashlight/lamp{ + pixel_y = -7 + }, +/obj/item/stock_parts/matter_bin, +/obj/item/stock_parts/matter_bin, +/obj/item/stock_parts/manipulator, +/obj/item/stock_parts/manipulator, +/turf/simulated/floor/tiled/dark, +/area/horizon/rnd/lab) +"kPh" = ( +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 7 + }, +/obj/structure/engineer_maintenance/electric, +/obj/structure/engineer_maintenance/pipe{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/horizon/command/heads/xo) +"kPk" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/structure/disposalpipe/sortjunction/flipped{ + name = "Deck 3 Cafe"; + sortType = "Deck 3 Cafe" + }, +/obj/effect/floor_decal/corner/red/diagonal, +/obj/effect/floor_decal/spline/plain/corner{ + dir = 4 + }, +/turf/simulated/floor/lino, +/area/horizon/service/cafeteria) +"kPl" = ( +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/structure/disposalpipe/segment{ + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/effect/floor_decal/corner/dark_blue{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/horizon/command/bridge/upperdeck) +"kPt" = ( +/obj/structure/table/rack, +/obj/random/loot, +/obj/random/loot, +/obj/random/loot, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/aft) +"kPv" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/structure/cable, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/random/dirt_75, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/starboard/nacelle) "kPy" = ( /obj/effect/shuttle_landmark/horizon/exterior/deck_2/starboard_aft, /turf/template_noop, /area/template_noop) -"kPE" = ( -/obj/machinery/alarm/north, -/obj/effect/floor_decal/corner/dark_green{ - dir = 5 +"kPz" = ( +/obj/structure/bed, +/turf/simulated/floor/reinforced, +/area/horizon/rnd/xenoarch/isolation_c) +"kPH" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 }, -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/central) +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/main/port) +"kPL" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/structure/railing/mapped{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark/full/airless, +/area/horizon/command/bridge/controlroom) +"kPQ" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_mining{ + dir = 1; + name = "Mining"; + req_one_access = list(31,48,67) + }, +/obj/effect/map_effect/door_helper/unres{ + dir = 1 + }, +/turf/simulated/floor/tiled/full, +/area/horizon/operations/mining_main/refinery) "kPR" = ( /obj/effect/floor_decal/industrial/warning{ dir = 6 @@ -76174,41 +76223,6 @@ /obj/machinery/light/small, /turf/unsimulated/floor, /area/centcom/legion) -"kPW" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/aux{ - dir = 5 - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/button/remote/blast_door{ - id = "shutters_bunker"; - name = "Command Bunker Blast Door"; - pixel_x = 37; - pixel_y = -17; - req_access = list(19) - }, -/obj/machinery/button/remote/airlock{ - id = "airlocks_bunker"; - name = "Command Bunker Bolts"; - pixel_x = 26; - pixel_y = -17; - req_access = list(19); - specialfunctions = 4; - desiredstate = 1 - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark/full, -/area/bridge/aibunker) "kPX" = ( /turf/simulated/floor/exoplanet/water/shallow{ dir = 1; @@ -76216,74 +76230,109 @@ icon_state = "beach" }, /area/horizon/holodeck/source_moghes) -"kQb" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/machinery/disposal/small/east, -/obj/structure/disposalpipe/trunk, -/turf/simulated/floor/wood, -/area/crew_quarters/heads/chief) -"kQg" = ( +"kPY" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, /obj/structure/cable/green{ icon_state = "4-8" }, -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/structure/disposalpipe/sortjunction/flipped{ - dir = 8; - name = "Psychiatry"; - sortType = "Psychiatry" - }, -/turf/simulated/floor/tiled/white, -/area/hallway/medical) -"kQi" = ( -/obj/effect/floor_decal/corner/dark_green{ +/obj/machinery/light, +/obj/effect/floor_decal/spline/fancy/wood{ dir = 6 }, -/obj/machinery/vending/snack, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled, -/area/security/checkpoint2) -"kQw" = ( -/obj/effect/floor_decal/corner_wide/yellow{ - dir = 10 +/turf/simulated/floor/wood, +/area/horizon/repoffice/consular_two) +"kQa" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" }, -/obj/machinery/light, /turf/simulated/floor/tiled, -/area/hallway/engineering) +/area/horizon/command/bridge/upperdeck) +"kQe" = ( +/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/atmos/storage) +"kQf" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/effect/floor_decal/corner/dark_green/full{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/horizon/hangar/intrepid) +"kQp" = ( +/obj/effect/floor_decal/corner/paleblue/diagonal, +/mob/living/simple_animal/cat/crusher, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/white, +/area/horizon/command/heads/cmo) "kQx" = ( /obj/random/pottedplant, /turf/unsimulated/floor{ icon_state = "wood" }, /area/centcom/legion/hangar5) +"kQA" = ( +/obj/effect/floor_decal/corner_wide/yellow{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/blue{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/horizon/engineering/hallway/aft) "kQB" = ( /obj/structure/sign/staff_only{ pixel_y = -2 }, /turf/unsimulated/wall/darkshuttlewall, /area/centcom/control) -"kQC" = ( -/obj/machinery/mineral/processing_unit{ - id = "horizon_processing_1"; - dir = 8 +"kQD" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 2; + icon_state = "shutter0"; + id = "hop_office_desk"; + name = "XO Office Privacy Shutters"; + opacity = 0 }, -/obj/effect/floor_decal/industrial/warning/full, -/turf/simulated/floor/plating, -/area/outpost/mining_main/refinery) -"kQI" = ( -/obj/machinery/light/small/emergency{ - dir = 8 +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id = "bridge blast"; + name = "Bridge Blast Doors"; + opacity = 0 }, -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/plating, -/area/maintenance/engineering) +/obj/structure/table/reinforced/steel, +/obj/machinery/ringer_button{ + id = "xo_ringer"; + pixel_x = 12; + pixel_y = 3 + }, +/obj/machinery/door/window/desk/southright{ + name = "Executive Officer's Desk"; + req_access = list(57) + }, +/turf/simulated/floor/tiled, +/area/horizon/command/heads/xo) "kQJ" = ( /obj/structure/dueling_table/no_collide{ icon_state = "bottom_leftt" @@ -76293,14 +76342,15 @@ }, /turf/simulated/floor/holofloor/wood, /area/horizon/holodeck/source_battlemonsters) -"kQK" = ( -/obj/structure/railing/mapped, -/obj/structure/cable{ - icon_state = "4-8" +"kQM" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 5 }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/maintenance/aft) +/obj/structure/bed/stool/chair/padded/brown{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/horizon/hangar/intrepid) "kQP" = ( /obj/effect/floor_decal/corner/dark_blue/full, /obj/structure/disposalpipe/segment, @@ -76321,14 +76371,6 @@ /obj/machinery/light, /turf/simulated/floor/tiled/dark, /area/shuttle/merchant) -"kQR" = ( -/obj/machinery/atmospherics/pipe/simple/visible/red{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/engineering/atmos/propulsion) "kQU" = ( /obj/structure/table/stone/marble, /obj/structure/window/reinforced, @@ -76356,50 +76398,27 @@ icon_state = "dark_preview" }, /area/centcom/control) -"kQZ" = ( -/obj/structure/disposalpipe/junction, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/captain) -"kRe" = ( +"kRb" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/window/westright, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/window/eastleft, +/turf/simulated/floor/reinforced, +/area/horizon/rnd/test_range) +"kRf" = ( /obj/effect/floor_decal/spline/fancy/wood{ - dir = 10 + dir = 4 }, -/obj/machinery/button/remote/airlock{ - name = "Emergency Escape Bolts"; - specialfunctions = 4; - id = "cap_escape"; - pixel_x = -21; - dir = 8; - pixel_y = -5 +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 }, -/obj/machinery/button/remote/blast_door{ - desc = "A remote control-switch for engine core."; - id = "cap_escape_blast"; - name = "Emergency Exit Blast Door"; - pixel_x = -21; - req_access = list(20); - dir = 8; - pixel_y = 8 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/camera/network/service{ + c_tag = "Service - Chaplain Office"; + dir = 8 }, /turf/simulated/floor/wood, -/area/crew_quarters/captain) -"kRg" = ( -/obj/random/dirt_75, -/turf/simulated/floor/tiled/dark, -/area/maintenance/security_port) -"kRk" = ( -/obj/structure/flora/ausbushes/sparsegrass, -/obj/structure/flora/ausbushes/ywflowers, -/turf/simulated/floor/grass/no_edge, -/area/horizon/hallway/deck_two/fore) -"kRm" = ( -/obj/machinery/power/smes/batteryrack/makeshift, -/obj/effect/floor_decal/industrial/warning/full, -/turf/simulated/floor/plating, -/area/maintenance/wing/port/far) +/area/horizon/service/chapel/office) "kRn" = ( /obj/effect/floor_decal/corner/black{ dir = 6 @@ -76409,38 +76428,70 @@ }, /turf/simulated/floor/tiled/dark, /area/shuttle/hapt) +"kRo" = ( +/obj/structure/bed/stool/chair/shuttle{ + dir = 8 + }, +/turf/simulated/floor/shuttle/dark_blue, +/area/horizon/shuttle/escape_pod/pod4) "kRs" = ( /obj/effect/floor_decal/corner/dark_blue{ dir = 10 }, /turf/simulated/floor/tiled, /area/horizon/security/hallway) +"kRt" = ( +/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/machinery/atmospherics/pipe/simple/hidden/aux{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/green{ + dir = 8 + }, +/obj/structure/lattice/catwalk/indoor/grate, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/plating, +/area/horizon/stairwell/engineering/deck_1) "kRu" = ( /obj/structure/bed/stool/chair/office/dark{ dir = 4 }, /turf/unsimulated/floor/monotile, /area/antag/mercenary) -"kRv" = ( -/obj/effect/floor_decal/spline/fancy/wood, -/obj/structure/bed/stool/bar/padded/red{ +"kRN" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/structure/disposalpipe/segment{ + icon_state = "pipe-c" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 1 }, -/turf/simulated/floor/wood, -/area/horizon/library) -"kRx" = ( -/turf/simulated/floor/tiled/white, -/area/storage/eva) -"kRB" = ( -/obj/machinery/door/airlock/external, -/obj/effect/map_effect/marker_helper/airlock/interior, -/obj/effect/map_effect/marker/airlock/docking{ - landmark_tag = "nav_horizon_dock_deck_3_starboard_3"; - master_tag = "airlock_horizon_dock_deck_3_starboard_3"; - name = "airlock_horizon_dock_deck_3_starboard_3" +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 }, /turf/simulated/floor/plating, -/area/horizon/hallway/deck_three/primary/starboard/docks) +/area/horizon/maintenance/deck_1/main/starboard) "kRQ" = ( /obj/effect/floor_decal/industrial/warning{ dir = 5 @@ -76448,29 +76499,19 @@ /obj/effect/shuttle_landmark/lift/robotics_second_deck, /turf/simulated/floor/tiled/dark/full, /area/turbolift/scc_ship/robotics_lift) -"kRU" = ( -/obj/effect/floor_decal/corner/brown{ - dir = 5 +"kRT" = ( +/obj/effect/landmark/start{ + name = "Passenger" }, -/obj/machinery/light{ - dir = 1 +/obj/structure/bed/stool/chair/padded/brown{ + dir = 4 }, -/turf/simulated/floor/tiled, -/area/operations/lobby) +/turf/simulated/floor/carpet/art, +/area/horizon/crew/lounge) "kRV" = ( /obj/structure/holostool, /turf/simulated/floor/holofloor/lino, /area/horizon/holodeck/source_theatre) -"kSa" = ( -/obj/structure/disposalpipe/segment{ - icon_state = "pipe-c" - }, -/obj/effect/floor_decal/corner_wide/green{ - dir = 5 - }, -/obj/machinery/firealarm/north, -/turf/simulated/floor/tiled/white, -/area/hallway/medical/upper) "kSb" = ( /obj/structure/lattice, /obj/machinery/atmospherics/pipe/simple/visible/red{ @@ -76484,17 +76525,17 @@ }, /turf/unsimulated/floor, /area/centcom/control) -"kSe" = ( -/obj/effect/floor_decal/corner/brown{ - dir = 9 - }, -/obj/machinery/requests_console/west{ - department = "Mining"; - departmentType = 2; - name = "Mining Requests Console" - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/refinery) +"kSf" = ( +/obj/effect/floor_decal/industrial/outline/red, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/port/near) +"kSg" = ( +/obj/effect/floor_decal/industrial/outline/emergency_closet, +/obj/structure/closet/emcloset, +/turf/simulated/floor/tiled/full, +/area/horizon/hallway/primary/deck_2/fore) "kSk" = ( /obj/effect/decal/cleanable/cobweb, /obj/effect/decal/cleanable/dirt, @@ -76506,92 +76547,93 @@ }, /turf/unsimulated/floor, /area/centcom/legion/hangar5) -"kSq" = ( -/obj/effect/floor_decal/corner/black{ - dir = 9 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/hangar/intrepid) -"kSw" = ( +"kSm" = ( /obj/structure/cable/green{ icon_state = "4-8" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 }, /obj/effect/floor_decal/corner/brown{ - dir = 10 + dir = 5 + }, +/obj/machinery/light/spot{ + dir = 1 }, /turf/simulated/floor/tiled, -/area/operations/office) -"kSx" = ( -/obj/machinery/door/firedoor, -/obj/effect/floor_decal/industrial/hatch/yellow, +/area/horizon/hangar/operations) +"kSp" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/industrial/outline/red, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 + icon_state = "0-2" }, +/obj/machinery/power/apc/east, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/starboard/near) +"kSG" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 + dir = 9 }, -/turf/simulated/floor/tiled/full, -/area/hallway/engineering/rust) -"kSH" = ( -/obj/structure/tank_wall/hydrogen{ - icon_state = "h16" +/turf/simulated/floor/wood, +/area/horizon/crew/lounge) +"kSI" = ( +/obj/structure/grille, +/obj/structure/window/shuttle/scc_space_ship, +/obj/machinery/door/blast/shutters/open{ + dir = 2; + id = "bar_viewing_shutters"; + name = "Bar Viewing Shutters" }, -/obj/effect/floor_decal/industrial/warning, -/obj/machinery/atmospherics/pipe/simple/visible/red, -/turf/simulated/floor/airless, -/area/engineering/atmos) -"kSJ" = ( -/obj/effect/floor_decal/corner/mauve{ - dir = 10 - }, -/obj/machinery/light/floor, -/turf/simulated/floor/tiled, -/area/rnd/hallway) -"kSK" = ( -/obj/effect/floor_decal/industrial/warning{ +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/horizon/service/bar) +"kSL" = ( +/obj/effect/floor_decal/spline/plain/corner{ dir = 8 }, -/obj/machinery/light/small/emergency{ +/turf/simulated/wall, +/area/horizon/maintenance/substation/security) +"kSN" = ( +/obj/structure/cable/green{ + icon_state = "11-4" + }, +/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers{ dir = 4 }, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard) +/obj/machinery/atmospherics/pipe/zpipe/down/supply{ + dir = 4 + }, +/obj/structure/lattice/catwalk, +/turf/simulated/open, +/area/horizon/maintenance/deck_2/service/port) "kSV" = ( /turf/simulated/floor/exoplanet/water/shallow{ icon_state = "pool" }, /area/horizon/holodeck/source_pool) -"kSY" = ( -/obj/effect/floor_decal/corner/mauve{ - dir = 5 +"kSX" = ( +/obj/effect/floor_decal/corner/dark_green/full{ + dir = 8 }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology/hazardous) -"kTd" = ( -/obj/effect/floor_decal/industrial/warning{ +/obj/machinery/media/jukebox/audioconsole/wall{ + pixel_y = 32 + }, +/obj/effect/floor_decal/spline/plain/corner/green, +/obj/machinery/atmospherics/pipe/simple/hidden{ dir = 6 }, /turf/simulated/floor/tiled, -/area/maintenance/wing/starboard/far) +/area/horizon/service/hydroponics/lower) "kTf" = ( /obj/effect/floor_decal/spline/plain{ dir = 4 @@ -76599,13 +76641,6 @@ /obj/structure/flora/ausbushes/sunnybush, /turf/simulated/floor/exoplanet/grass, /area/centcom/shared_dream) -"kTh" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/item/device/radio/intercom/expedition/west, -/obj/structure/table/stone/marble, -/obj/machinery/light/small, -/turf/simulated/floor/tiled/white, -/area/shuttle/intrepid/buffet) "kTi" = ( /obj/effect/floor_decal/corner/paleblue{ dir = 4 @@ -76623,26 +76658,14 @@ /obj/effect/floor_decal/corner/paleblue, /turf/unsimulated/floor, /area/centcom/holding) -"kTq" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 8 +"kTr" = ( +/obj/effect/floor_decal/corner/brown/full, +/obj/machinery/camera/network/intrepid{ + dir = 1; + c_tag = "Intrepid - Starboard Compartment" }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8"; - d1 = 4; - d2 = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/horizon/library) +/turf/simulated/floor/tiled/dark, +/area/horizon/shuttle/intrepid/starboard_compartment) "kTu" = ( /obj/structure/bed/stool/chair/office/bridge/generic{ desc = "Looks suspiciously comfortable."; @@ -76651,16 +76674,13 @@ }, /turf/simulated/floor/carpet, /area/shuttle/skipjack) -"kTy" = ( -/obj/effect/floor_decal/spline/plain/black{ - dir = 8 +"kTA" = ( +/obj/structure/railing/mapped, +/obj/structure/platform/ledge{ + dir = 1 }, -/obj/effect/floor_decal/corner/dark_green, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/horizon/crew_quarters/fitness/gym) +/turf/simulated/open, +/area/horizon/hallway/primary/deck_3/central) "kTB" = ( /obj/structure/window/reinforced/crescent, /obj/structure/window/reinforced/crescent{ @@ -76669,74 +76689,58 @@ /obj/effect/decal/cleanable/dirt, /turf/unsimulated/floor/monotile, /area/antag/raider) -"kTC" = ( +"kTD" = ( /obj/structure/cable/green{ - icon_state = "0-2" + icon_state = "1-4" }, /obj/structure/cable/green{ - icon_state = "12-0" + icon_state = "4-8" }, -/obj/effect/floor_decal/industrial/warning/full, -/obj/effect/decal/cleanable/cobweb2, -/obj/structure/railing/mapped, -/obj/structure/railing/mapped{ - dir = 8 +/obj/structure/table/wood, +/obj/item/stamp{ + name = "consular stamp" }, -/obj/structure/disposalpipe/up, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard/deck1) -"kTJ" = ( +/obj/item/stamp/denied{ + pixel_x = -9 + }, +/obj/machinery/recharger{ + pixel_y = 10 + }, +/turf/simulated/floor/carpet, +/area/horizon/repoffice/consular_two) +"kTK" = ( /obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard/deck1) -"kTL" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/reinforced, -/area/engineering/gravity_gen) -"kTU" = ( -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/structure/table/standard, -/obj/item/storage/box/gloves{ - pixel_x = -5 - }, -/obj/item/storage/box/masks{ - pixel_x = -5 - }, -/obj/item/reagent_containers/spray/cleaner{ - pixel_x = 5 - }, -/turf/simulated/floor/tiled/white, -/area/operations/lower/machinist/surgicalbay) -"kTW" = ( -/obj/structure/closet/crate/bin{ - name = "subject clothing" - }, -/obj/item/clothing/shoes/sneakers, -/obj/item/clothing/shoes/sneakers, -/obj/item/clothing/under/medical_gown/white, -/obj/item/clothing/under/medical_gown/white, -/obj/structure/cable/green{ - icon_state = "0-8" - }, -/obj/effect/floor_decal/industrial/warning{ +/obj/machinery/hologram/holopad, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 5 }, -/obj/machinery/power/apc/low/south, -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 9 +/obj/structure/cable/green{ + icon_state = "1-8" }, /turf/simulated/floor/tiled/white, -/area/rnd/isolation_c) +/area/horizon/medical/pharmacy) +"kTY" = ( +/obj/machinery/atmospherics/omni/filter{ + name = "phoron filter"; + tag_east = 2; + tag_north = 6; + tag_west = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/atmos) +"kTZ" = ( +/obj/machinery/power/smes/buildable/substation{ + RCon_tag = "Substation - Medical" + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/substation/medical) "kUc" = ( /obj/structure/bed/stool/chair/folding{ dir = 1 @@ -76752,69 +76756,64 @@ icon_state = "dark_preview" }, /area/centcom/ferry) -"kUl" = ( -/obj/item/trap/animal, -/obj/structure/table/rack, -/obj/item/trap/animal, -/obj/item/trap/animal, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/dark/full, -/area/rnd/xenobiology/foyer) -"kUm" = ( -/obj/machinery/firealarm/east, -/obj/machinery/alarm/north, -/obj/effect/floor_decal/industrial/warning/full, -/obj/machinery/porta_turret, -/obj/machinery/button/remote/blast_door{ +"kUn" = ( +/obj/machinery/door/airlock/maintenance{ dir = 1; - id = "shutters_deck1_ammostorage"; - name = "Blast Door Control"; - pixel_x = -7; - pixel_y = 21; - req_one_access = list(75) - }, -/obj/machinery/button/remote/airlock/screamer{ - channel = "Command"; - dir = 1; - id = "airlocks_deck2_ammostorage"; - message = "The secure ammunition storage door bolts have been toggled."; - name = "Door Bolt Control"; - pixel_x = 7; - pixel_y = 21; - req_one_access = list(75); - specialfunctions = 4 - }, -/turf/simulated/floor/reinforced, -/area/horizon/secure_ammunition_storage) -"kUq" = ( -/obj/machinery/door/airlock/glass_engineering{ - dir = 4; - name = "Engineering EVA Storage"; - req_one_access = list(11,24) + name = "Examination Room Maintenance"; + req_access = list(5) }, /obj/machinery/door/firedoor, +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 2; + icon_state = "shutter0"; + id = "LCKDshutters"; + name = "Medical Lockdown Shutters"; + opacity = 0 + }, /turf/simulated/floor/tiled/full, -/area/engineering/storage_eva) -"kUw" = ( -/obj/machinery/chemical_dispenser/coffeemaster/full{ - pixel_x = -18; - pixel_y = 16 +/area/horizon/medical/exam) +"kUt" = ( +/obj/machinery/hologram/holopad, +/obj/machinery/button/remote/airlock{ + dir = 1; + id = "HoSdoor"; + name = "Office Door"; + pixel_x = 37; + pixel_y = 32 }, -/obj/machinery/vending/dinnerware/bar{ - pixel_y = 16; - pixel_x = 4 +/obj/machinery/button/switch/windowtint{ + dir = 5; + id = "HoS Windows"; + pixel_x = 26; + pixel_y = 32; + req_access = list(58) }, -/obj/structure/table/stone/marble, -/turf/simulated/floor/tiled/dark, -/area/horizon/bar) -"kUx" = ( -/obj/effect/floor_decal/corner_wide/green{ +/obj/machinery/button/remote/blast_door{ + dir = 1; + id = "armory"; + name = "Armory Shutters"; + pixel_x = 26; + pixel_y = 42; + req_access = list(58) + }, +/obj/machinery/button/remote/blast_door{ + dir = 1; + id = "Security Lockdown"; + name = "Security Lockdown"; + pixel_x = 37; + pixel_y = 42; + req_access = list(58) + }, +/turf/simulated/floor/carpet, +/area/horizon/command/heads/hos) +"kUA" = ( +/obj/effect/floor_decal/corner/yellow{ dir = 10 }, -/obj/machinery/iv_drip, -/obj/effect/floor_decal/industrial/outline/red, -/turf/simulated/floor/tiled/white, -/area/hallway/medical) +/obj/machinery/light, +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/reactor/supermatter/waste) "kUB" = ( /obj/structure/table/stone/marble, /obj/item/reagent_containers/food/snacks/salad/tossedsalad{ @@ -76849,38 +76848,21 @@ }, /turf/simulated/floor/exoplanet/barren, /area/centcom/shared_dream) -"kUF" = ( -/obj/structure/trash_pile, -/obj/random/dirt_75, -/turf/simulated/floor, -/area/maintenance/wing/port/far) -"kUI" = ( -/obj/machinery/chem_master, -/obj/effect/floor_decal/spline/plain/cee{ - dir = 8 +"kUH" = ( +/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/medical/exam) +"kUK" = ( +/obj/structure/grille, +/obj/machinery/door/firedoor, +/obj/structure/window/shuttle/scc_space_ship, +/obj/machinery/door/blast/shutters/open{ + dir = 8; + id = "bar_viewing_shutters"; + name = "Bar Viewing Shutters" }, -/turf/simulated/floor/carpet/rubber, -/area/rnd/xenobiology/xenoflora) -"kUQ" = ( -/obj/item/flag/scc/l{ - pixel_y = 4 - }, -/obj/item/flag/scc{ - pixel_y = 10 - }, -/obj/item/flag/scc{ - pixel_y = 15 - }, -/obj/structure/table/glass, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 9 - }, -/obj/machinery/power/apc/west, -/obj/structure/cable/green{ - icon_state = "0-4" - }, -/turf/simulated/floor/tiled, -/area/bridge/supply) +/turf/simulated/floor/plating, +/area/horizon/service/bar) "kUS" = ( /obj/effect/floor_decal/industrial/warning/corner{ dir = 8 @@ -76888,29 +76870,6 @@ /obj/effect/decal/cleanable/dirt, /turf/unsimulated/floor, /area/antag/raider) -"kUV" = ( -/obj/machinery/door/airlock/external, -/obj/effect/map_effect/marker/airlock{ - frequency = 2005; - master_tag = "airlock_horizon_deck_2_aft_sm"; - name = "airlock_horizon_deck_2_aft_sm" - }, -/obj/effect/map_effect/marker_helper/airlock/exterior, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"kUX" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/lattice/catwalk/indoor/grate, -/turf/simulated/floor/plating, -/area/hallway/primary/central_two) "kVd" = ( /turf/simulated/floor/holofloor/wood, /area/horizon/holodeck/source_chapel) @@ -76918,51 +76877,34 @@ /obj/structure/lattice/catwalk, /turf/space/dynamic, /area/template_noop) -"kVi" = ( +"kVo" = ( /obj/structure/cable/green{ icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/lattice/catwalk/indoor, -/obj/structure/railing/mapped{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/engineering/bluespace_drive) -"kVk" = ( -/obj/structure/table/wood, -/obj/item/modular_computer/laptop/preset/representative{ - pixel_x = -1; - pixel_y = 5 - }, -/turf/simulated/floor/carpet, -/area/lawoffice/consular_two) -"kVn" = ( -/obj/structure/cable{ - icon_state = "4-8" +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/corner/dark_green{ + dir = 9 }, +/turf/simulated/floor/tiled, +/area/horizon/hangar/intrepid) +"kVp" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/aux{ - dir = 8 +/obj/structure/disposalpipe/junction{ + dir = 4; + icon_state = "pipe-j2" }, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 4 - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, +/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) +/area/horizon/operations/lobby) +"kVr" = ( +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/wing/starboard/far) "kVs" = ( /obj/structure/bed/stool/padded/brown{ dir = 8 @@ -76975,36 +76917,20 @@ }, /turf/unsimulated/floor/wood, /area/antag/raider) -"kVu" = ( -/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 +"kVx" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/atmospherics/pipe/manifold/visible/yellow, +/obj/machinery/camera/network/research{ + c_tag = "Research - Xenoarchaeology 1"; + dir = 1 }, -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 4 - }, -/obj/structure/lattice/catwalk/indoor, /turf/simulated/floor/plating, -/area/shuttle/mining) -"kVv" = ( +/area/horizon/rnd/xenoarch/atrium) +"kVz" = ( /obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenoarch_atrium) -"kVA" = ( -/obj/effect/floor_decal/corner/brown, +/obj/effect/large_stock_marker, /turf/simulated/floor/tiled, -/area/operations/office) -"kVB" = ( -/obj/machinery/door/airlock/maintenance{ - dir = 4; - name = "Research and Development Maintenance"; - req_access = list(7) - }, -/turf/simulated/floor/plating, -/area/rnd/chemistry) +/area/horizon/operations/warehouse) "kVC" = ( /obj/structure/table/reinforced/wood, /obj/machinery/door/blast/odin{ @@ -77019,6 +76945,16 @@ }, /turf/unsimulated/floor, /area/centcom/bar) +"kVF" = ( +/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/horizon/shuttle/quark/cockpit) "kVG" = ( /obj/structure/bed/padded, /obj/item/bedsheet/brown, @@ -77038,16 +76974,6 @@ }, /turf/simulated/floor/bluegrid, /area/horizon/holodeck/source_trinary) -"kVN" = ( -/obj/effect/floor_decal/corner/yellow{ - dir = 6 - }, -/obj/structure/table/standard, -/obj/random/tool{ - pixel_y = 5 - }, -/turf/simulated/floor/tiled, -/area/engineering/rust_office) "kVQ" = ( /obj/structure/window/reinforced/crescent{ dir = 8 @@ -77056,8 +76982,26 @@ /obj/effect/floor_decal/sign/b, /turf/unsimulated/floor, /area/centcom/holding) -"kVT" = ( -/obj/structure/cable{ +"kVS" = ( +/obj/structure/table/rack{ + dir = 8 + }, +/obj/item/tank/jetpack/carbondioxide, +/obj/item/tank/jetpack/carbondioxide, +/obj/effect/floor_decal/corner/dark_blue{ + dir = 10 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/item/tank/jetpack/carbondioxide, +/obj/item/tank/jetpack/carbondioxide, +/obj/item/clothing/shoes/magboots, +/obj/item/clothing/shoes/magboots, +/obj/item/clothing/shoes/magboots, +/obj/item/clothing/shoes/magboots, +/turf/simulated/floor/tiled/dark, +/area/horizon/storage/eva) +"kVY" = ( +/obj/structure/cable/green{ icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -77066,46 +77010,68 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/machinery/door/firedoor{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/hatch_door/red, -/obj/machinery/door/airlock/maintenance_hatch{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/maintenance/wing/port/far) -"kWc" = ( -/turf/simulated/floor/tiled/dark, -/area/maintenance/wing/port/far) -"kWd" = ( -/obj/structure/cable/green{ - icon_state = "2-4" - }, -/obj/effect/floor_decal/corner/dark_blue{ +/obj/effect/floor_decal/corner/dark_green{ dir = 5 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 +/obj/effect/floor_decal/industrial/warning{ + dir = 8 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/recharger/wallcharger{ - pixel_x = 5; - pixel_y = 28 +/obj/effect/floor_decal/industrial/loading/yellow{ + dir = 8 }, /turf/simulated/floor/tiled, -/area/bridge/bridge_crew) -"kWh" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 6 +/area/horizon/security/checkpoint) +"kWb" = ( +/obj/structure/closet/crate, +/obj/effect/floor_decal/industrial/warning, +/obj/random/contraband, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/port) +"kWg" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/machinery/door/airlock/external, +/obj/effect/map_effect/marker/airlock{ + frequency = 2005; + master_tag = "airlock_horizon_deck_2_aft_sm"; + name = "airlock_horizon_deck_2_aft_sm" }, -/obj/machinery/light{ +/obj/effect/map_effect/marker_helper/airlock/interior, +/turf/simulated/floor/plating, +/area/horizon/engineering/reactor/supermatter/airlock) +"kWh" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 10 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_two/fore) +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/light_switch{ + pixel_y = -19; + pixel_x = -6 + }, +/obj/item/device/radio/intercom/south{ + pixel_x = 14 + }, +/turf/simulated/floor/wood, +/area/horizon/command/heads/captain) +"kWk" = ( +/obj/effect/map_effect/window_spawner/full/reinforced/grille/firedoor, +/turf/simulated/floor/plating, +/area/horizon/engineering/bluespace_drive/monitoring) "kWm" = ( /obj/effect/floor_decal/corner/white/diagonal, /obj/effect/floor_decal/spline/plain{ @@ -77118,30 +77084,63 @@ }, /turf/simulated/floor/holofloor/tiled, /area/template_noop) -"kWp" = ( -/obj/effect/floor_decal/corner/dark_blue/full{ +"kWu" = ( +/obj/machinery/alarm/north, +/obj/effect/floor_decal/corner/dark_green/full{ dir = 8 }, -/turf/simulated/floor/tiled/dark, -/area/storage/eva) -"kWx" = ( -/obj/structure/cable/green{ - icon_state = "1-2" +/obj/machinery/button/remote/airlock/screamer{ + channel = "Command"; + dir = 1; + id = "airlocks_deck2_ammostorage"; + message = "The secure ammunition storage door bolts have been toggled."; + name = "Door Bolt Control"; + pixel_x = -40; + pixel_y = -8; + req_one_access = list(75); + specialfunctions = 4; + desiredstate = 1 + }, +/obj/machinery/button/remote/blast_door{ + dir = 1; + id = "shutters_deck1_ammostorage"; + name = "Blast Door Control"; + pixel_x = -40; + pixel_y = 2; + req_one_access = list(75) }, /obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/medical/morgue/lower) -"kWB" = ( -/obj/effect/floor_decal/industrial/warning{ dir = 4 }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 +/obj/machinery/turretid{ + dir = 4; + name = "\improper Secure Ammunition Storage Turret Control Console"; + pixel_x = -26; + req_access = null; + req_one_access = list(11,19,20,24,31,41) }, /turf/simulated/floor/tiled, -/area/hangar/operations) +/area/horizon/operations/lobby) +"kWv" = ( +/obj/machinery/firealarm/north, +/obj/structure/bed/handrail, +/obj/machinery/atmospherics/binary/pump/supply{ + dir = 8; + name = "Canister to Air Distribution" + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/shuttle/intrepid/port_storage) +"kWA" = ( +/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/horizon/hangar/auxiliary) "kWC" = ( /obj/structure/railing/mapped, /obj/effect/floor_decal/corner/grey{ @@ -77167,29 +77166,49 @@ }, /turf/simulated/floor/tiled/dark, /area/shuttle/legion) -"kWI" = ( +"kWF" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + dir = 4; + req_one_access = list(12) + }, /obj/structure/cable/green{ - icon_state = "1-2" + icon_state = "4-8" }, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/corner/dark_green/full{ +/turf/simulated/floor, +/area/horizon/crew/fitness/changing) +"kWJ" = ( +/obj/machinery/camera/network/medbay{ + c_tag = "Medical - Morgue Port"; + dir = 1 + }, +/obj/machinery/light/small, +/obj/structure/table/steel, +/obj/item/storage/box/bodybags, +/obj/effect/floor_decal/corner/lime/full{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/starboard) -"kWQ" = ( -/obj/effect/floor_decal/corner_wide/purple{ - dir = 10 +/obj/item/storage/box/gloves{ + pixel_y = 11 }, -/obj/effect/floor_decal/corner_wide/purple{ - dir = 4 +/turf/simulated/floor/tiled/white{ + name = "cooled white floor"; + temperature = 278.15 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/white, -/area/rnd/xenoarch_atrium) +/area/horizon/medical/morgue) +"kWK" = ( +/obj/machinery/light/small/emergency{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/port/far) +"kWN" = ( +/obj/effect/landmark/entry_point/starboard{ + name = "starboard, ballast fore" + }, +/turf/simulated/wall/shuttle/scc_space_ship/cardinal, +/area/horizon/maintenance/deck_2/wing/port/nacelle) "kWS" = ( /obj/structure/bed/stool/padded/brown{ dir = 1 @@ -77200,92 +77219,63 @@ icon_state = "wood" }, /area/centcom/legion/hangar5) -"kXc" = ( -/obj/structure/cable/green{ - icon_state = "4-8" +"kWU" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 5 }, -/obj/effect/floor_decal/corner/dark_blue/full{ +/obj/effect/floor_decal/industrial/warning{ dir = 1 }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, /turf/simulated/floor/tiled/dark, -/area/turret_protected/ai_upload) -"kXg" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/aux{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/window/shuttle/scc_space_ship/cardinal, -/turf/simulated/floor/plating, -/area/engineering/engine_room/turbine) +/area/horizon/engineering/atmos/propulsion/starboard) "kXh" = ( /obj/structure/lattice/catwalk, /obj/item/hullbeacon/red, /turf/space/dynamic, /area/horizon/exterior) -"kXj" = ( -/obj/machinery/power/terminal, +"kXk" = ( +/obj/machinery/botany/editor, +/obj/effect/floor_decal/corner/mauve/full, +/obj/machinery/light, +/turf/simulated/floor/tiled/dark, +/area/horizon/rnd/xenobiology/xenoflora) +"kXm" = ( /obj/structure/cable{ - icon_state = "0-8" + icon_state = "4-8" }, -/obj/machinery/camera/network/engineering{ - c_tag = "Engineering - Deck 2 - Medical Substation" +/obj/structure/disposalpipe/segment{ + dir = 4 }, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/full, +/area/horizon/engineering/hallway/interior) +"kXx" = ( +/obj/structure/tank_wall{ + icon_state = "m-14" + }, +/obj/effect/floor_decal/industrial/warning, /turf/simulated/floor/plating, -/area/maintenance/substation/medical) -"kXr" = ( -/obj/machinery/atmospherics/binary/pump{ - dir = 8; - name = "Oxygen to Mix" +/area/horizon/engineering/atmos) +"kXL" = ( +/obj/machinery/shipsensors/weak/scc_shuttle{ + pixel_y = -15 }, -/turf/simulated/floor/plating, -/area/engineering/atmos/air) -"kXv" = ( -/obj/machinery/atmospherics/pipe/simple/visible/black{ +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 10 }, -/turf/simulated/wall/shuttle/scc_space_ship/cardinal, -/area/engineering/atmos/propulsion) -"kXw" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/structure/trash_pile, -/turf/simulated/floor/plating, -/area/maintenance/engineering) -"kXD" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/structure/table/rack, -/obj/structure/cable{ - icon_state = "1-4" - }, -/turf/simulated/floor, -/area/maintenance/engineering_ladder) -"kXE" = ( -/obj/machinery/power/emitter, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/storage_hard) -"kXF" = ( -/obj/structure/table/glass{ - table_reinf = "glass" - }, -/obj/item/device/flashlight/lamp, -/obj/effect/floor_decal/corner_wide/paleblue/full{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/hallway/medical/upper) +/turf/simulated/floor/reinforced, +/area/horizon/shuttle/quark/cockpit) "kXM" = ( /obj/effect/floor_decal/industrial/warning{ dir = 1 @@ -77295,16 +77285,30 @@ }, /turf/unsimulated/floor/plating, /area/centcom/specops) -"kXX" = ( -/obj/machinery/door/firedoor, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/machinery/door/airlock/atmos{ - dir = 1; - name = "Atmospherics Turbine"; - req_access = list(24) +"kXP" = ( +/obj/machinery/door/airlock/external, +/obj/effect/map_effect/marker/airlock{ + frequency = 1003; + master_tag = "airlock_horizon_deck_1_starboard_1"; + name = "airlock_horizon_deck_1_starboard_1" + }, +/obj/effect/map_effect/marker_helper/airlock/exterior, +/obj/machinery/access_button{ + pixel_x = -28 }, /turf/simulated/floor/plating, -/area/engineering/engine_room/turbine) +/area/horizon/maintenance/deck_1/wing/starboard/far) +"kYg" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/obj/structure/table/wood, +/obj/machinery/newscaster/east, +/obj/random/pottedplant_small{ + pixel_x = 9 + }, +/turf/simulated/floor/wood, +/area/horizon/repoffice/consular_one) "kYh" = ( /turf/simulated/floor/beach/sand{ dir = 4; @@ -77316,62 +77320,119 @@ /obj/effect/decal/cleanable/dirt, /turf/unsimulated/floor/plating, /area/centcom/legion) -"kYs" = ( -/obj/machinery/door/firedoor, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/full, -/area/horizon/hallway/deck_two/fore) -"kYu" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" +"kYm" = ( +/obj/structure/table/wood, +/obj/machinery/chemical_dispenser/coffeemaster/full{ + dir = 0; + pixel_y = 12 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 +/obj/item/reagent_containers/food/drinks/drinkingglass/newglass/coffeecup/rainbow{ + pixel_x = 11; + pixel_y = -2 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 +/obj/item/reagent_containers/food/drinks/drinkingglass/newglass/coffeecup/sol{ + pixel_x = 6; + pixel_y = -2 }, -/obj/effect/floor_decal/corner/black{ +/obj/item/reagent_containers/food/drinks/drinkingglass/newglass/coffeecup/black{ + pixel_x = 1; + pixel_y = -2 + }, +/obj/item/reagent_containers/food/drinks/drinkingglass/newglass/coffeecup/zeng{ + pixel_x = -4; + pixel_y = -2 + }, +/obj/item/reagent_containers/food/drinks/drinkingglass/newglass/coffeecup/nt{ + pixel_x = -9; + pixel_y = -2 + }, +/obj/effect/floor_decal/spline/fancy/wood/cee{ dir = 1 }, -/obj/effect/floor_decal/corner/black, -/turf/simulated/floor/tiled, -/area/operations/lower/machinist) -"kYv" = ( -/obj/structure/closet/radiation, -/obj/machinery/firealarm/north, -/obj/machinery/alarm/east, -/turf/simulated/floor/tiled/dark, -/area/engineering/gravity_gen) -"kYE" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/engineering/storage/tech) -"kYM" = ( -/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/effect/map_effect/window_spawner/full/reinforced/firedoor, -/turf/simulated/floor/tiled/dark/full, -/area/hallway/engineering/rust) -"kYO" = ( -/turf/simulated/floor/tiled/ramp/bottom{ +/turf/simulated/floor/wood, +/area/horizon/command/heads/rd) +"kYo" = ( +/obj/machinery/atmospherics/pipe/simple/visible/green{ dir = 4 }, -/area/hangar/auxiliary) -"kYU" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 10 +/turf/simulated/floor/plating, +/area/horizon/engineering/reactor/supermatter/mainchamber) +"kYp" = ( +/turf/simulated/wall/shuttle/scc_space_ship/cardinal, +/area/horizon/tcommsat/chamber) +"kYq" = ( +/obj/structure/cable/green, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/effect/map_effect/window_spawner/full/reinforced/polarized/grille/firedoor{ + id = "bridgeconf" }, /turf/simulated/floor, -/area/maintenance/wing/port/far) +/area/horizon/command/bridge/meeting_room) +"kYw" = ( +/obj/machinery/light/small/emergency{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/canister/empty, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/auxatmos) +"kYD" = ( +/obj/item/storage/bag/inflatable{ + pixel_y = 9 + }, +/obj/structure/table/rack/folding_table, +/obj/random/tech_supply, +/obj/machinery/light/small/emergency{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/cargo_compartment) +"kYG" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/wood, +/area/horizon/command/heads/xo) +"kYP" = ( +/obj/structure/table/standard, +/obj/item/paper_scanner{ + pixel_x = -7 + }, +/obj/item/paper_bin, +/obj/item/pen/black, +/obj/effect/floor_decal/corner/mauve/full{ + dir = 4 + }, +/obj/machinery/firealarm/east, +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/telesci) +"kYZ" = ( +/obj/structure/table/steel, +/obj/item/storage/box/lights/mixed, +/obj/item/storage/box/lights/mixed, +/obj/item/storage/toolbox/mechanical, +/obj/machinery/ringer/south{ + department = "Custodial"; + id = "ringers_custodial"; + name = "\improper Custodial Ringer Terminal"; + req_access = list(26) + }, +/obj/effect/floor_decal/corner/purple/full, +/obj/item/stack/packageWrap, +/obj/item/device/destTagger, +/turf/simulated/floor/tiled, +/area/horizon/service/custodial) "kZa" = ( /obj/structure/table/rack, /obj/item/storage/backpack/messenger/syndie, @@ -77393,29 +77454,37 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/unsimulated/floor, /area/antag/mercenary) -"kZe" = ( -/obj/structure/table/reinforced/glass, -/obj/effect/floor_decal/spline/fancy/wood, -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/turf/simulated/floor/wood, -/area/rnd/conference) -"kZg" = ( -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/effect/floor_decal/corner/dark_green{ - dir = 9 - }, +"kZb" = ( /turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"kZh" = ( -/obj/effect/floor_decal/industrial/warning/corner{ +/area/horizon/operations/warehouse) +"kZc" = ( +/obj/structure/railing/mapped{ dir = 1 }, -/turf/simulated/floor/tiled/white, -/area/medical/gen_treatment) +/obj/structure/grille/broken, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/port/far) +"kZj" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 4 + }, +/obj/effect/floor_decal/spline/plain{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_pump{ + external_pressure_bound = 0; + external_pressure_bound_default = 0; + icon_state = "map_vent_in"; + initialize_directions = 1; + internal_pressure_bound = 4000; + internal_pressure_bound_default = 4000; + pressure_checks = 2; + pressure_checks_default = 2; + pump_direction = 0; + use_power = 1 + }, +/turf/simulated/floor/carpet/rubber, +/area/horizon/tcommsat/chamber) "kZl" = ( /obj/effect/floor_decal/corner/yellow{ dir = 4 @@ -77423,42 +77492,99 @@ /obj/effect/floor_decal/corner/red, /turf/simulated/floor/marble/dark, /area/horizon/holodeck/source_trinary) -"kZm" = ( -/obj/structure/bed/stool/chair/office/light{ +"kZp" = ( +/obj/effect/floor_decal/corner_wide/blue{ dir = 1 }, -/turf/simulated/floor/plating, -/area/maintenance/engineering/auxillary) -"kZx" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/maintenance_hatch{ - dir = 4; - req_one_access = list(12) +/obj/effect/floor_decal/spline/plain/corner{ + dir = 4 }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/horizon/engineering/atmos/storage) +"kZr" = ( +/obj/structure/disposalpipe/sortjunction{ + dir = 4; + name = "Deck 3 Cafe"; + sortType = "Deck 3 Cafe" + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor, +/area/horizon/maintenance/deck_3/security/port) +"kZv" = ( /obj/structure/cable{ icon_state = "4-8" }, -/turf/simulated/floor, -/area/maintenance/engineering_ladder) +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/port/near) +"kZF" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/effect/floor_decal/corner/dark_green{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/horizon/hangar/auxiliary) +"kZJ" = ( +/obj/structure/table/glass{ + table_reinf = "glass" + }, +/obj/effect/floor_decal/corner_wide/paleblue{ + dir = 10 + }, +/obj/machinery/requests_console/south{ + announcementConsole = 1; + department = "Chief Medical Officer's Desk"; + departmentType = 5; + name = "Chief Medical Officer RC" + }, +/obj/machinery/light_switch{ + pixel_x = -14; + pixel_y = -19 + }, +/obj/machinery/button/switch/windowtint{ + id = "cmooffice"; + pixel_x = -7; + pixel_y = -19; + req_access = list(40) + }, +/obj/item/folder/white, +/obj/item/stamp/cmo, +/obj/random/pottedplant_small{ + pixel_x = 8; + pixel_y = 12 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/command/heads/cmo) "kZO" = ( /obj/effect/floor_decal/industrial/warning{ dir = 1 }, /turf/unsimulated/floor/plating, /area/centcom/ferry) -"kZP" = ( -/obj/structure/shuttle_part/scc/mining, -/turf/simulated/floor/plating, -/area/shuttle/mining) -"kZS" = ( -/obj/machinery/power/apc/west, -/obj/structure/cable/green, -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/floor_decal/corner/yellow/full, -/turf/simulated/floor/tiled, -/area/engineering/storage_eva) "kZW" = ( /obj/effect/decal/fake_object{ density = 1; @@ -77475,6 +77601,16 @@ name = "dirt" }, /area/horizon/holodeck/source_moghes) +"kZY" = ( +/obj/machinery/power/generator{ + anchored = 1; + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/turf/simulated/floor/plating, +/area/horizon/engineering/reactor/supermatter/mainchamber) "kZZ" = ( /obj/machinery/light/small{ dir = 4 @@ -77484,6 +77620,19 @@ /obj/structure/lattice/catwalk/indoor/grate/dark, /turf/simulated/floor/plating, /area/shuttle/skipjack) +"lad" = ( +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/visible/universal{ + dir = 8 + }, +/obj/structure/platform{ + dir = 4 + }, +/turf/simulated/floor, +/area/horizon/maintenance/deck_2/wing/starboard/far) "lae" = ( /obj/effect/floor_decal/corner/paleblue, /obj/effect/floor_decal/corner/paleblue{ @@ -77506,31 +77655,57 @@ icon_state = "white" }, /area/tdome/tdomeadmin) -"lap" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 9 - }, -/obj/effect/floor_decal/spline/fancy/wood/corner{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, +"lam" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/green{ icon_state = "1-2" }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/effect/floor_decal/corner/dark_green{ + dir = 9 + }, /turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/starboard) -"laB" = ( -/obj/structure/railing/mapped, -/turf/simulated/floor/reinforced/airless, -/area/bridge/controlroom) +/area/horizon/hallway/primary/deck_3/port) +"lar" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/aft) "laF" = ( /obj/structure/shuttle_part/tcfl{ icon_state = "3,6" }, /turf/unsimulated/floor/plating, /area/shuttle/legion) +"laG" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/power/apc/low/east, +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/obj/machinery/power/sensor{ + name = "Powernet Sensor - Deck 1, 2, and 3 Medical Subgrid"; + name_tag = "Deck 1, 2, and 3 Medical Subgrid" + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/substation/medical) "laH" = ( /obj/effect/floor_decal/corner/paleblue{ dir = 8 @@ -77550,30 +77725,12 @@ }, /turf/unsimulated/floor, /area/centcom/spawning) -"laK" = ( -/obj/effect/floor_decal/industrial/outline/grey, -/obj/machinery/portable_atmospherics/canister/air, -/turf/simulated/floor/plating, -/area/hangar/intrepid) -"laM" = ( -/obj/structure/disposalpipe/segment{ - icon_state = "pipe-c" +"laO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 9 }, -/obj/structure/bed/stool/chair/sofa/left/brown{ - dir = 8 - }, -/obj/effect/landmark/start{ - name = "Passenger" - }, -/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) +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/atmos/propulsion) "laQ" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/machinery/door/blast/odin/open{ @@ -77588,6 +77745,33 @@ }, /turf/unsimulated/floor, /area/tdome/tdome1) +"laU" = ( +/obj/effect/floor_decal/corner_wide/green/full, +/obj/structure/table/wood, +/obj/item/paper_bin{ + pixel_y = 4 + }, +/obj/item/pen{ + pixel_y = 4 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/exam) +"laV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/port/far) "laW" = ( /obj/structure/shuttle_part/ert{ icon_state = "9,1"; @@ -77595,29 +77779,18 @@ }, /turf/unsimulated/floor/plating, /area/centcom/specops) -"laX" = ( -/obj/structure/window/shuttle/unique/scc/scout{ - icon_state = "3,5" +"lbl" = ( +/obj/effect/floor_decal/corner/dark_green/diagonal, +/obj/machinery/light{ + dir = 8 }, -/obj/structure/window/shuttle/unique/scc/scout/over{ - icon_state = "3,5" +/obj/machinery/status_display{ + pixel_x = -32 }, -/turf/simulated/floor/plating, -/area/shuttle/canary) -"lbj" = ( -/obj/effect/floor_decal/spline/plain/lime{ - dir = 9 - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/tiled/dark, -/area/horizon/commissary) +/obj/effect/floor_decal/industrial/loading/yellow, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled, +/area/horizon/stairwell/starboard/deck_1) "lbm" = ( /turf/unsimulated/wall/fakeairlock{ icon = 'icons/obj/doors/Doorext.dmi'; @@ -77625,26 +77798,11 @@ name = "Service Airlock" }, /area/centcom/ferry) -"lbo" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 +"lbp" = ( +/obj/structure/cable/green{ + icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 5 - }, -/turf/simulated/floor/tiled/dark/full, -/area/shuttle/intrepid/starboard_compartment) -"lbr" = ( -/obj/effect/floor_decal/corner_wide/purple{ - dir = 10 - }, -/obj/effect/floor_decal/corner_wide/purple{ dir = 4 }, /obj/structure/disposalpipe/segment{ @@ -77653,14 +77811,11 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 +/obj/effect/floor_decal/corner/brown/full{ + dir = 8 }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenoarch_atrium) +/turf/simulated/floor/tiled, +/area/horizon/operations/mining_main/refinery) "lbs" = ( /obj/structure/cable/green{ icon_state = "1-2" @@ -77677,19 +77832,21 @@ /obj/structure/lattice/catwalk/indoor/grate, /turf/simulated/floor/plating, /area/horizon/security/hallway) -"lbt" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 +"lbv" = ( +/obj/machinery/artifact_analyser, +/obj/effect/floor_decal/spline/plain{ + dir = 6 }, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/smes/rust) -"lbx" = ( -/obj/machinery/power/apc/east, -/obj/structure/cable, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/maintenance/wing/port) +/turf/simulated/floor/bluegrid, +/area/horizon/rnd/xenoarch/isolation_b) +"lbC" = ( +/obj/machinery/portable_atmospherics/canister/air/airlock, +/obj/machinery/atmospherics/portables_connector{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor, +/area/horizon/hallway/primary/deck_3/starboard/docks) "lbD" = ( /obj/effect/map_effect/window_spawner/full/reinforced/firedoor, /turf/simulated/floor/tiled/dark/full, @@ -77707,81 +77864,62 @@ /obj/machinery/meter, /turf/simulated/floor/tiled/dark, /area/shuttle/mercenary) -"lbU" = ( -/obj/structure/toilet{ - pixel_y = 16 - }, -/obj/machinery/light/small{ +"lbH" = ( +/obj/effect/floor_decal/corner/green/diagonal, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/obj/structure/bed/handrail{ - dir = 4 - }, -/obj/machinery/button/remote/airlock{ - dir = 1; - id = "main_unit_2"; - name = "Door Bolt Control"; - pixel_y = 34; - specialfunctions = 4 - }, -/turf/simulated/floor/tiled/white, -/area/horizon/crew_quarters/fitness/changing) -"lbW" = ( -/obj/effect/floor_decal/spline/plain, -/obj/effect/floor_decal/spline/plain{ - dir = 1 - }, -/turf/simulated/floor/carpet/rubber, -/area/tcommsat/chamber) -"lbX" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/engineering/storage/lower) -"lca" = ( -/turf/simulated/floor/bluegrid{ - name = "cooled mainframe floor"; - temperature = 278 - }, -/area/turret_protected/ai) -"lcc" = ( -/obj/effect/floor_decal/plaque{ - desc = "A plaque commemorating the SCCV Horizon's launch by the unbreakable chainlink, the SCC. The one thing holding the Orion Spur together. According to some, anyways."; - name = "\improper SCCV Horizon plaque" - }, -/obj/effect/floor_decal/spline/fancy/wood/full, -/turf/simulated/floor/wood, -/area/horizon/crew_quarters/lounge/bar) -"lcd" = ( -/obj/machinery/door/firedoor, /obj/structure/cable/green{ icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/effect/floor_decal/corner_wide/green{ - dir = 10 - }, -/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/firealarm/south, /turf/simulated/floor/tiled/white, -/area/hallway/medical) -"lcj" = ( -/obj/machinery/light{ - dir = 1 +/area/horizon/crew/washroom/deck_2) +"lcf" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/surgery) +"lcg" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock{ + dir = 4; + name = "Washroom" + }, +/turf/simulated/floor/tiled/full, +/area/horizon/operations/break_room) +"lch" = ( +/obj/machinery/button/switch/windowtint{ + dir = 9; + id = "rep"; + pixel_x = 27; + pixel_y = 10; + req_access = list(38) + }, +/obj/machinery/requests_console/north{ + announcementConsole = 1; + department = "Representative's Office Bravo"; + departmentType = 5; + name = "Representative's Office requests console"; + pixel_y = 5; + dir = 8; + pixel_x = -48 }, /turf/simulated/floor/carpet, -/area/hallway/primary/central_two) +/area/horizon/repoffice/representative_two) "lck" = ( /obj/effect/floor_decal/industrial/warning{ dir = 4 @@ -77801,83 +77939,175 @@ icon_state = "dark_preview" }, /area/centcom/control) -"lcq" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/vending/snack, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/lobby) -"lcv" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +"lco" = ( +/obj/effect/floor_decal/corner/white{ + dir = 5 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" }, +/obj/effect/floor_decal/corner/mauve{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 + dir = 6 }, +/obj/machinery/disposal/small/south, +/obj/structure/disposalpipe/trunk, +/turf/simulated/floor/tiled/dark, +/area/horizon/rnd/xenobiology/xenoflora) +"lcp" = ( /obj/structure/cable/green{ icon_state = "4-8" }, -/turf/simulated/floor/tiled/full, -/area/horizon/hydroponics/garden) -"lcz" = ( -/obj/machinery/atmospherics/unary/outlet_injector{ - frequency = 1441; - id = "o2_in"; - name = "oxygen injector"; - use_power = 1 - }, -/turf/simulated/floor/reinforced/oxygen, -/area/engineering/atmos/air) -"lcC" = ( -/obj/machinery/vending/frontiervend, -/obj/effect/floor_decal/industrial/hatch/grey, -/turf/simulated/floor/tiled/full, -/area/horizon/hallway/deck_three/primary/starboard) -"lcF" = ( -/turf/simulated/wall, -/area/horizon/crew_quarters/fitness/showers) -"lcG" = ( -/obj/structure/bed/stool/chair/sofa/pew/right{ - dir = 8 - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 10 - }, -/turf/simulated/floor/wood, -/area/chapel/main) -"lcN" = ( -/obj/effect/floor_decal/corner/mauve{ - dir = 5 - }, /obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/structure/cable/green{ - icon_state = "2-4" - }, -/turf/simulated/floor/tiled, -/area/rnd/hallway/secondary) -"lcV" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/table/steel, -/turf/simulated/floor/tiled/dark, -/area/maintenance/wing/port) -"ldd" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/effect/map_effect/marker_helper/mapmanip/submap/edge{ dir = 4 }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor, +/area/horizon/maintenance/deck_3/security/port) +"lcr" = ( +/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/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/corner/brown{ + dir = 5 + }, /turf/simulated/floor/tiled, -/area/operations/storage) +/area/horizon/operations/loading) +"lcs" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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/horizon/engineering/hallway/interior) +"lcw" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 10 + }, +/obj/effect/floor_decal/spline/plain/blue{ + dir = 1 + }, +/obj/item/device/radio/intercom/south, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/horizon/service/hydroponics/lower) +"lcx" = ( +/obj/structure/shuttle_part/scc/scout{ + icon_state = "7,4" + }, +/turf/simulated/floor/plating, +/area/horizon/shuttle/canary) +"lcE" = ( +/obj/machinery/button/remote/blast_door{ + dir = 4; + id = "portpropulsionexterior"; + name = "Exterior Blast Door"; + pixel_x = 22; + pixel_y = -3 + }, +/obj/machinery/button/remote/blast_door{ + dir = 4; + id = "portpropulsioninterior"; + name = "Interior Blast Door"; + pixel_x = 22; + pixel_y = 8 + }, +/obj/machinery/button/remote/airlock{ + dir = 4; + id = "port_combustion"; + name = "Door Bolt Control"; + pixel_x = 28; + pixel_y = 7; + req_access = list(10); + specialfunctions = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/visible/black{ + dir = 1 + }, +/obj/effect/floor_decal/corner_wide/black{ + dir = 6 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/meter, +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/atmos/propulsion/starboard) +"lcJ" = ( +/obj/effect/floor_decal/corner/dark_blue/full{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/horizon/stairwell/bridge) +"lcO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/main/port) +"lcU" = ( +/obj/machinery/power/apc/low/east, +/obj/structure/cable/green{ + icon_state = "0-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/table/standard, +/obj/item/device/hand_labeler, +/obj/item/device/destTagger, +/obj/effect/floor_decal/corner/brown{ + dir = 6 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/horizon/operations/mail_room) +"lcY" = ( +/obj/structure/railing/mapped{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/horizon/crew/lounge) "ldf" = ( /obj/structure/disposalpipe/segment{ dir = 4; @@ -77888,67 +78118,166 @@ }, /turf/simulated/floor/tiled, /area/horizon/security/lobby) -"ldg" = ( +"ldi" = ( /obj/structure/cable/green{ - icon_state = "2-4" + icon_state = "4-8" }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" +/obj/effect/floor_decal/corner/dark_green{ + dir = 10 }, -/turf/simulated/floor/plating, -/area/horizon/maintenance/deck_two/fore/port) -"ldo" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 +/obj/structure/railing/mapped, +/obj/machinery/light/floor, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_3/central) +"ldj" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 6 }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 +/obj/item/device/radio/intercom/east, +/obj/machinery/light/floor{ + dir = 4 }, /turf/simulated/floor/tiled, -/area/hangar/auxiliary) +/area/horizon/hallway/primary/deck_2/central) +"ldm" = ( +/obj/structure/platform_deco/ledge, +/turf/simulated/open, +/area/horizon/operations/office) "ldt" = ( /turf/unsimulated/wall/darkshuttlewall, /area/tdome/tdome1) -"ldy" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/lounge/secondary) -"ldH" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/chemistry) -"ldI" = ( -/obj/machinery/light/small/emergency{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"ldN" = ( -/obj/effect/floor_decal/corner/dark_green/diagonal, +"ldu" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/weapons/grauwolf) +"ldx" = ( +/obj/machinery/atmospherics/pipe/tank/air/scc_shuttle{ + dir = 4 + }, +/obj/effect/floor_decal/corner/dark_blue/full{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/shuttle/canary) +"ldz" = ( +/obj/machinery/atmospherics/unary/heater{ + dir = 1 + }, +/obj/effect/floor_decal/corner/yellow, +/obj/effect/floor_decal/corner/dark_blue{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/atmos) +"ldA" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 4 + }, +/obj/machinery/airlock_sensor{ + dir = 8; + pixel_x = 20; + pixel_y = -6 + }, +/obj/effect/map_effect/marker/airlock/docking{ + landmark_tag = "nav_horizon_dock_deck_3_port_4"; + master_tag = "airlock_horizon_dock_deck_3_port_4"; + name = "airlock_horizon_dock_deck_3_port_4" + }, +/obj/machinery/embedded_controller/radio/airlock/docking_port{ + dir = 8; + pixel_x = 20; + pixel_y = 6 + }, +/turf/simulated/floor/plating, +/area/horizon/hallway/primary/deck_3/starboard/docks) +"ldB" = ( +/obj/machinery/door/airlock{ + dir = 1; + id_tag = "cryo_toilet_1"; + name = "Toilet 1" + }, +/obj/machinery/door/firedoor{ + dir = 4 + }, /turf/simulated/floor/tiled, -/area/horizon/crew_quarters/fitness/gym) -"ldW" = ( -/turf/simulated/wall, -/area/engineering/storage/lower) +/area/horizon/crew/washroom/deck_3) +"ldC" = ( +/obj/machinery/door/airlock/external{ + dir = 4 + }, +/obj/effect/map_effect/marker/airlock{ + frequency = 1004; + master_tag = "airlock_horizon_deck_1_fore_1"; + name = "airlock_horizon_deck_1_fore_1" + }, +/obj/effect/map_effect/marker_helper/airlock/exterior, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/hangar/starboard) +"ldE" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/atmos) +"ldJ" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/effect/floor_decal/corner/mauve/full, +/obj/machinery/button/remote/airlock{ + id = "xeno_entrance_int_a"; + name = "Xenobiology External Access Bolts"; + pixel_y = 3; + req_access = list(55); + specialfunctions = 4; + dir = 8; + pixel_x = -22; + desiredstate = 1 + }, +/obj/machinery/camera/network/research{ + c_tag = "Research - Xenobiology Entrance"; + dir = 1; + network = list("Research","Xeno_Bio") + }, +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/xenobiology) +"ldL" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/horizon/hangar/auxiliary) +"ldO" = ( +/obj/structure/tank_wall/hydrogen{ + density = 0; + icon_state = "h5"; + opacity = 0 + }, +/obj/machinery/atmospherics/unary/vent_pump/siphon/on/atmos{ + dir = 1; + id_tag = "H2_out_starboardthruster" + }, +/turf/simulated/floor/reinforced/hydrogen, +/area/horizon/engineering/atmos) +"ldT" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner/dark_green{ + dir = 10 + }, +/obj/machinery/alarm/south, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_3/port) "ldY" = ( /obj/structure/railing/mapped{ dir = 4 @@ -77959,9 +78288,44 @@ name = "staircase" }, /area/centcom/spawning) -"led" = ( -/turf/simulated/wall/r_wall, -/area/maintenance/aft) +"ldZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 10 + }, +/turf/simulated/floor, +/area/horizon/maintenance/deck_2/wing/starboard/far) +"lei" = ( +/obj/effect/floor_decal/corner/teal/diagonal, +/obj/item/material/kitchen/utensil/knife{ + pixel_x = -5; + pixel_y = -9 + }, +/obj/item/material/kitchen/rollingpin{ + pixel_x = -1; + pixel_y = -10 + }, +/obj/effect/decal/fake_object{ + desc = "A chalkboard with the menu of the cafe written on it."; + dir = 8; + icon = 'icons/obj/coffeemenu.dmi'; + icon_state = "right"; + name = "coffee menu chalkboard"; + pixel_x = 32 + }, +/obj/structure/table/stone/marble, +/obj/item/pen/black{ + pixel_x = 7; + pixel_y = 6 + }, +/obj/item/reagent_containers/cooking_container/board/bowl{ + pixel_y = -13 + }, +/obj/effect/floor_decal/spline/plain{ + dir = 4 + }, +/turf/simulated/floor/lino, +/area/horizon/service/cafeteria) "lem" = ( /obj/effect/decal/fake_object{ density = 1; @@ -77972,22 +78336,13 @@ }, /turf/unsimulated/floor, /area/centcom/holding) -"lep" = ( -/obj/effect/floor_decal/corner_wide/orange{ - dir = 6 +"leo" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 9 }, -/obj/structure/sink{ - dir = 4; - pixel_x = 12 - }, -/obj/machinery/shower{ - dir = 8; - pixel_x = 1; - pixel_y = 1 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/white, -/area/medical/pharmacy) +/obj/machinery/alarm/west, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_2/fore) "ler" = ( /obj/machinery/door/blast/regular/open{ dir = 8 @@ -78014,42 +78369,15 @@ /obj/effect/step_trigger/thrower/shuttle/west, /turf/unsimulated/mineral/asteroid, /area/template_noop) -"leB" = ( -/obj/structure/table/steel, -/obj/item/paper_bin{ - pixel_x = -6; - pixel_y = 6 +"ley" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 }, -/obj/item/paper_bin{ - pixel_x = 6; - pixel_y = -6 - }, -/obj/item/paper_bin, -/obj/item/device/hand_labeler, -/obj/item/key/janicart, -/obj/effect/floor_decal/corner/purple{ - dir = 9 - }, -/obj/machinery/alarm/west, -/turf/simulated/floor/tiled, -/area/horizon/custodial) -"leC" = ( /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/machinery/door/firedoor, -/obj/machinery/door/airlock/maintenance{ - dir = 4; - req_one_access = list(5,10,12) - }, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard) +/turf/simulated/floor/tiled/dark, +/area/horizon/weapons/longbow) "leF" = ( /obj/machinery/door/airlock/external{ dir = 4; @@ -78095,68 +78423,13 @@ }, /turf/simulated/floor/tiled, /area/horizon/security/brig) -"leK" = ( -/obj/machinery/camera/network/command{ - c_tag = "Bridge - Captain" +"leN" = ( +/obj/structure/ladder{ + pixel_y = 10 }, -/obj/effect/floor_decal/corner/dark_blue/full{ - dir = 8 - }, -/obj/effect/floor_decal/corner/yellow/diagonal, -/obj/structure/platform, -/obj/structure/bed/stool/chair/office/bridge{ - name = "Captain Chair" - }, -/turf/simulated/floor/tiled/dark, -/area/bridge/controlroom) -"leL" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/door/airlock/maintenance{ - dir = 4; - req_one_access = list(12,63) - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/regular/open{ - id = "hangarlockdown"; - name = "Hangar Lockdown" - }, -/turf/simulated/floor/plating, -/area/hangar/auxiliary) -"leR" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden{ - dir = 4 - }, -/obj/machinery/door/airlock/external, -/obj/effect/map_effect/marker/airlock/docking{ - landmark_tag = "nav_horizon_dock_deck_3_port_2"; - master_tag = "airlock_horizon_dock_deck_3_port_2"; - name = "airlock_horizon_dock_deck_3_port_2" - }, -/obj/effect/map_effect/marker_helper/airlock/interior, -/obj/machinery/access_button{ - pixel_x = 28 - }, -/turf/simulated/floor/plating, -/area/horizon/hallway/deck_three/primary/port/docks) -"leS" = ( -/obj/machinery/button/remote/airlock{ - dir = 8; - id = "deck2_medicaltoilet"; - name = "Door Bolt Control"; - pixel_x = -24; - pixel_y = 1; - specialfunctions = 4 - }, -/turf/simulated/floor/tiled/freezer, -/area/medical/washroom) +/obj/structure/lattice, +/turf/simulated/open, +/area/horizon/maintenance/deck_2/service/starboard) "leX" = ( /obj/structure/table/rack, /obj/item/storage/box/firingpins{ @@ -78189,208 +78462,231 @@ }, /turf/simulated/floor/tiled, /area/horizon/security/warden) -"lfk" = ( -/obj/machinery/holosign/surgery{ - id = 2 - }, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, +"lfa" = ( /obj/structure/disposalpipe/segment, -/obj/machinery/door/airlock/medical{ - dir = 1; - name = "Operating Theatre 2"; - req_access = list(45) - }, -/obj/effect/map_effect/door_helper/unres{ - dir = 1 - }, -/turf/simulated/floor/tiled/full, -/area/medical/ors) -"lfo" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 4 }, -/obj/machinery/atmospherics/pipe/manifold/hidden, -/obj/machinery/light, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/starboard/docks) -"lfp" = ( -/obj/machinery/camera/network/third_deck{ - c_tag = "Third Deck - Cafe"; - dir = 8 - }, -/obj/item/device/radio/intercom/east, -/obj/effect/floor_decal/corner/teal/diagonal, -/obj/item/reagent_containers/food/drinks/shaker{ - pixel_x = 5 - }, -/obj/item/storage/toolbox/lunchbox/idris{ - pixel_x = -2; - pixel_y = -8 - }, -/obj/structure/table/stone/marble, -/obj/effect/floor_decal/spline/plain{ - dir = 4 - }, -/turf/simulated/floor/lino, -/area/horizon/cafeteria) -"lfu" = ( -/obj/structure/bed/stool/chair/office/dark, -/obj/effect/floor_decal/corner/mauve/diagonal, /obj/structure/cable/green{ icon_state = "2-8" }, -/turf/simulated/floor/tiled/white, -/area/rnd/lab) -"lfw" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor, +/area/horizon/maintenance/deck_3/aft/port) +"lff" = ( +/obj/structure/bed/stool/chair/padded/brown, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/obj/machinery/power/apc/west, /obj/structure/cable/green{ - icon_state = "1-2" + icon_state = "0-4" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/maintenance{ - dir = 1; - name = "Deck 1 Medical Maintenance"; - req_access = list(5) +/turf/simulated/floor/wood, +/area/horizon/repoffice/consular_two) +"lfm" = ( +/obj/machinery/light/spot{ + dir = 4 }, -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 2; - icon_state = "shutter0"; - id = "LCKDshutters"; - name = "Medical Lockdown Shutters"; - opacity = 0 +/obj/machinery/button/remote/blast_door{ + desc = "A remote control-switch for the engine control room blast doors."; + dir = 4; + id = "EngineEmitterPortWest"; + name = "Supermatter Reactor Room Blast Doors"; + pixel_x = 24; + req_one_access = list(11,24) }, -/turf/simulated/floor/tiled/full, -/area/medical/emergency_storage) +/turf/simulated/floor/plating, +/area/horizon/engineering/reactor/supermatter/mainchamber) +"lft" = ( +/obj/effect/floor_decal/spline/plain, +/obj/effect/floor_decal/spline/fancy{ + dir = 1 + }, +/obj/structure/railing/mapped, +/obj/effect/floor_decal/corner_wide/white{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/hallway/primary/deck_2/central) "lfy" = ( /obj/structure/dispenser/oxygen, /turf/unsimulated/floor/marble, /area/antag/wizard) -"lfC" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 8 - }, -/obj/effect/floor_decal/spline/fancy{ - dir = 4 - }, -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/effect/floor_decal/corner_wide/white{ +"lfE" = ( +/obj/effect/floor_decal/corner/dark_green{ dir = 9 }, -/turf/simulated/floor/tiled/dark/full, -/area/hallway/primary/central_one) +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/alarm/west, +/turf/simulated/floor/tiled, +/area/horizon/hangar/intrepid) +"lfG" = ( +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/simple/visible/purple, +/obj/effect/floor_decal/corner/yellow{ + dir = 1 + }, +/obj/effect/floor_decal/corner/dark_blue{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/atmos) +"lfK" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/tiled/full, +/area/horizon/engineering/hallway/aft) +"lfM" = ( +/obj/machinery/atmospherics/pipe/tank/air, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled, +/area/horizon/maintenance/deck_2/wing/starboard/auxatmos) "lfO" = ( /obj/effect/floor_decal/spline/plain{ dir = 4 }, /turf/unsimulated/floor/rubber_carpet, /area/centcom/specops) -"lfU" = ( -/obj/structure/lattice/catwalk/indoor/grate/damaged{ - color = "#4c535b" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, +"lfP" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/turf/simulated/floor/plating, -/area/maintenance/wing/port/far) +/obj/machinery/conveyor{ + id = "cargo_1" + }, +/turf/simulated/floor/tiled, +/area/horizon/hangar/operations) +"lfT" = ( +/obj/item/storage/backpack/satchel/leather/withwallet, +/obj/structure/table/stone/marble, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/unsimulated/floor/marble, +/area/antag/wizard) "lfW" = ( /obj/effect/floor_decal/industrial/warning/full, /obj/item/hullbeacon/red, /turf/simulated/floor/reinforced/airless, /area/horizon/exterior) -"lga" = ( -/obj/machinery/light, -/obj/effect/floor_decal/spline/plain, -/obj/structure/sign/radiation{ - pixel_y = -32 +"lgc" = ( +/obj/effect/floor_decal/corner/paleblue/diagonal, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/machinery/air_sensor{ + frequency = 1441; + id_tag = "o2_sensor" }, -/turf/simulated/floor/carpet/rubber, -/area/engineering/engine_monitoring/rust) -"lgf" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/effect/floor_decal/corner/dark_blue/diagonal, +/obj/effect/decal/fake_object/light_source/invisible, +/turf/simulated/floor/reinforced/oxygen, +/area/horizon/engineering/atmos/air) +"lgd" = ( +/obj/effect/decal/cleanable/dirt, /obj/structure/table/steel, -/obj/item/device/flashlight/lamp, -/obj/item/device/hand_labeler, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/security/checkpoint) +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/starboard) +"lge" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging, +/turf/simulated/floor/reinforced/airless, +/area/horizon/engineering/atmos/propulsion) "lgl" = ( /obj/effect/floor_decal/corner/lime/full{ dir = 1 }, /turf/simulated/floor/tiled/white, /area/shuttle/hapt) -"lgs" = ( -/obj/structure/table/standard, -/obj/machinery/reagentgrinder{ - pixel_y = 11 +"lgp" = ( +/obj/structure/table/wood, +/obj/item/paper_bin{ + pixel_x = -6 }, -/obj/item/stack/material/phoron{ - amount = 15 +/obj/item/pen/green{ + pixel_y = -3; + pixel_x = 3 }, -/obj/machinery/light{ - dir = 8 +/obj/item/pen/red{ + pixel_x = 5 }, -/obj/effect/floor_decal/corner/mauve/diagonal, -/turf/simulated/floor/tiled/white, -/area/rnd/chemistry) -"lgt" = ( -/obj/effect/floor_decal/corner/yellow{ - dir = 6 +/obj/item/pen/blue{ + pixel_x = 8; + pixel_y = 3 }, -/obj/machinery/light{ +/turf/simulated/floor/carpet, +/area/horizon/repoffice/consular_two) +"lgw" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/window/eastleft{ + dir = 8; + name = "Bar Access"; + req_access = list(25) + }, +/obj/machinery/door/blast/shutters{ + dir = 8; + id = "bar_shutter"; + name = "Bar Shutter" + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/service/bar) +"lgy" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/turf/simulated/floor/tiled/dark, -/area/engineering/aft_airlock) -"lgv" = ( -/obj/structure/table/rack/retail_shelf, -/obj/machinery/camera/network/service{ - c_tag = "Second Deck - Commissary Starboard"; - dir = 1 - }, -/turf/simulated/floor/tiled/full, -/area/horizon/commissary) -"lgH" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 1 - }, -/obj/effect/floor_decal/spline/fancy/wood/corner{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 + dir = 4 }, -/turf/simulated/floor/wood, -/area/operations/qm) -"lgN" = ( -/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/door/blast/shutters/open{ + dir = 2; + id = "warehouse2"; + name = "Warehouse Shutter" + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/full, +/area/horizon/operations/warehouse) +"lgA" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/decal/cleanable/dirt, +/obj/structure/lattice/catwalk/indoor/grate/dark, /turf/simulated/floor/plating, -/area/shuttle/intrepid/port_compartment) +/area/horizon/maintenance/deck_1/wing/starboard) +"lgD" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/reinforced/airless, +/area/horizon/engineering/reactor/indra/mainchamber) +"lgM" = ( +/obj/effect/floor_decal/corner/grey/diagonal, +/obj/structure/disposalpipe/sortjunction/flipped{ + name = "Kitchen"; + sortType = "Kitchen" + }, +/turf/simulated/floor/tiled/white, +/area/horizon/service/kitchen) "lgP" = ( /obj/effect/floor_decal/corner/paleblue{ dir = 6 @@ -78417,15 +78713,19 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/security/armoury) -"lgU" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 1 +"lgR" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/structure/cable/green{ + icon_state = "1-2" }, -/obj/machinery/camera/network/service{ - c_tag = "Service - Deck 2 - Bar Back Counter" +/obj/machinery/door/airlock/engineering{ + dir = 1; + name = "Deck 1 Civilian Substation"; + req_one_access = list(11,24) }, -/turf/simulated/floor/wood, -/area/horizon/bar) +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/full, +/area/horizon/maintenance/substation/hangar) "lgX" = ( /obj/structure/bed/stool/chair/shuttle{ dir = 4 @@ -78436,12 +78736,48 @@ }, /turf/simulated/floor/tiled/dark, /area/shuttle/syndicate_elite) +"lgZ" = ( +/obj/effect/floor_decal/corner_wide/purple{ + dir = 4 + }, +/obj/effect/floor_decal/corner_wide/purple{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/xenoarch/atrium) "lha" = ( /obj/effect/floor_decal/corner/grey/full{ dir = 1 }, /turf/unsimulated/floor, /area/antag/mercenary) +"lhd" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 6 + }, +/obj/machinery/disposal/small/west, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/horizon/operations/lobby) +"lhf" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/horizon/operations/break_room) +"lhg" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/reactor/indra/mainchamber) "lhi" = ( /obj/machinery/light/small{ dir = 4; @@ -78456,6 +78792,21 @@ /obj/structure/girder, /turf/unsimulated/floor/plating, /area/antag/raider) +"lhn" = ( +/obj/structure/lattice/catwalk/indoor, +/obj/machinery/atmospherics/pipe/zpipe/down/supply{ + dir = 8 + }, +/turf/simulated/open, +/area/horizon/engineering/atmos/storage) +"lhx" = ( +/obj/structure/bed/handrail{ + buckle_dir = 4; + dir = 4; + pixel_x = -5 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/surgery) "lhA" = ( /obj/effect/floor_decal/spline/plain{ dir = 1 @@ -78465,55 +78816,49 @@ }, /turf/unsimulated/floor, /area/antag/mercenary) -"lhC" = ( -/obj/machinery/alarm/east, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ +"lhM" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ dir = 1 }, -/obj/machinery/firealarm/south, -/turf/simulated/floor/tiled/dark, -/area/engineering/smes) -"lhE" = ( -/obj/structure/cable/green{ - icon_state = "1-8" +/obj/effect/map_effect/marker/airlock/docking{ + landmark_tag = "nav_horizon_dock_deck_3_starboard_3"; + master_tag = "airlock_horizon_dock_deck_3_starboard_3"; + name = "airlock_horizon_dock_deck_3_starboard_3" }, -/obj/machinery/atmospherics/binary/pump/fuel{ - dir = 1; - name = "Fuel Tank to Thrusters" +/turf/simulated/floor/plating, +/area/horizon/hallway/primary/deck_3/port/docks) +"lhP" = ( +/obj/structure/cable{ + icon_state = "1-2" }, -/obj/effect/floor_decal/industrial/outline/operations, -/turf/simulated/floor/tiled/dark, -/area/shuttle/mining) -"lhQ" = ( -/obj/effect/floor_decal/corner/green/diagonal, -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/closet/emcloset, -/obj/item/storage/toolbox/emergency, -/obj/item/crowbar/red, -/obj/effect/floor_decal/industrial/outline/emergency_closet, -/turf/simulated/floor/tiled/white, -/area/horizon/crew_quarters/fitness/changing) -"lhS" = ( -/obj/effect/floor_decal/industrial/hatch/red, -/obj/structure/cable/orange{ - icon_state = "1-8" - }, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/bluespace_drive) -"lhV" = ( -/obj/structure/flora/ausbushes/ppflowers, -/obj/structure/flora/ausbushes/brflowers, -/obj/structure/railing/mapped, -/turf/simulated/floor/grass/no_edge, -/area/rnd/hallway/secondary) -"lhX" = ( -/obj/structure/railing/mapped{ +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/maintenance/substation/wing_starboard) +"lhU" = ( +/obj/effect/floor_decal/spline/fancy/wood/cee{ dir = 8 }, +/obj/random/pottedplant, /turf/simulated/floor/wood, -/area/crew_quarters/lounge) +/area/horizon/command/heads/captain) +"lhZ" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/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/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/wing/starboard) "lia" = ( /obj/machinery/door/window/northleft{ health = 2000; @@ -78528,48 +78873,32 @@ }, /turf/unsimulated/floor, /area/centcom/spawning) -"lig" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/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/hallway/engineering/rust) -"lik" = ( -/obj/item/reagent_containers/blood/OMinus, -/obj/item/reagent_containers/blood/sbs, -/obj/item/reagent_containers/blood/OMinus, -/obj/item/reagent_containers/blood/OMinus, -/obj/structure/closet/walllocker/medical/secure{ - name = "O- Blood Locker"; - pixel_y = 32 - }, -/turf/simulated/floor/tiled/freezer{ - name = "cold storage tiles"; - temperature = 278 - }, -/area/medical/surgery) -"lix" = ( -/obj/effect/floor_decal/corner_wide/lime{ +"lid" = ( +/obj/effect/floor_decal/corner/brown{ dir = 9 }, -/obj/structure/engineer_maintenance/electric{ +/obj/structure/weightlifter, +/turf/simulated/floor/tiled, +/area/horizon/operations/break_room) +"lin" = ( +/obj/effect/floor_decal/industrial/warning{ dir = 8 }, -/obj/structure/bed/stool/chair{ +/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/horizon/rnd/xenoarch/atrium) +"lir" = ( +/obj/effect/floor_decal/corner_wide/lime{ dir = 4 }, /turf/simulated/floor/tiled/white, -/area/medical/reception) +/area/horizon/medical/reception) "liy" = ( /obj/effect/floor_decal/corner/dark_blue{ dir = 5 @@ -78586,33 +78915,33 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/security/interrogation/monitoring) -"liB" = ( -/obj/machinery/atmospherics/omni/filter{ - name = "phoron filter"; - tag_east = 2; - tag_north = 6; - tag_west = 1 +"liL" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 }, -/turf/simulated/floor/tiled/dark, -/area/engineering/atmos) -"liG" = ( -/obj/structure/cable/green{ - icon_state = "4-8" +/obj/structure/tank_wall/nitrogen{ + icon_state = "n10" }, -/obj/effect/floor_decal/corner/dark_green{ - dir = 10 +/turf/simulated/floor/plating, +/area/horizon/engineering/atmos/air) +"liO" = ( +/obj/structure/table/standard, +/obj/effect/floor_decal/corner_wide/green{ + dir = 5 }, -/obj/structure/railing/mapped, -/obj/machinery/light/floor, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/central) -"liP" = ( -/obj/structure/sign/securearea{ - pixel_y = 32 +/obj/machinery/light{ + dir = 1 }, -/obj/structure/lattice/catwalk, -/turf/space/dynamic, -/area/template_noop) +/obj/item/storage/firstaid/regular{ + pixel_x = -4; + pixel_y = 8 + }, +/obj/item/storage/firstaid/regular{ + pixel_x = -4; + pixel_y = 3 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/main_storage) "liQ" = ( /obj/machinery/door/airlock/hatch{ dir = 1; @@ -78629,11 +78958,6 @@ }, /turf/simulated/floor/shuttle/black, /area/shuttle/distress) -"liR" = ( -/obj/random/junk, -/obj/random/dirt_75, -/turf/simulated/floor/tiled/dark, -/area/maintenance/wing/port/far) "liS" = ( /obj/machinery/door/airlock/external{ dir = 4; @@ -78661,39 +78985,25 @@ }, /turf/simulated/floor/tiled/dark, /area/shuttle/mercenary) -"liW" = ( -/obj/structure/closet/walllocker/emerglocker/north, -/obj/effect/floor_decal/industrial/outline/emergency_closet, -/obj/effect/floor_decal/spline/plain{ - dir = 1 +"liT" = ( +/obj/structure/coatrack, +/obj/effect/floor_decal/corner/mauve/full{ + dir = 8 }, -/obj/effect/floor_decal/spline/plain, -/turf/simulated/floor/carpet/rubber, -/area/tcommsat/chamber) -"lja" = ( -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment{ +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/xenological) +"liY" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 +/obj/machinery/atmospherics/pipe/simple/visible/supply{ + dir = 5 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/door/airlock{ - dir = 4; - name = "Emergency Supplies Closet"; - req_one_access = list(26,29,31,48,67,70) - }, -/obj/effect/map_effect/door_helper/unres{ - dir = 4 - }, -/turf/simulated/floor/tiled/full, -/area/storage/primary) +/turf/simulated/floor/plating, +/area/horizon/engineering/atmos/air) "ljd" = ( /obj/effect/floor_decal/corner/red{ dir = 10 @@ -78724,36 +79034,24 @@ }, /turf/unsimulated/floor, /area/centcom/bar) -"lji" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 9 - }, -/obj/structure/platform_stairs/full/east_west_cap/half{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/engineering) "ljk" = ( /obj/effect/floor_decal/carpet{ dir = 1 }, /turf/simulated/floor/holofloor/carpet, /area/horizon/holodeck/source_courtroom) -"ljr" = ( -/obj/structure/cable/green{ - icon_state = "4-8" +"ljn" = ( +/obj/effect/floor_decal/spline/fancy/wood/cee{ + dir = 1 }, -/obj/machinery/door/airlock/engineering{ - name = "C-Goliath Drive Control Room"; - req_one_access = list(11,24); +/obj/structure/bed/stool/chair/sofa/right/red{ + dir = 8 + }, +/obj/structure/railing/mapped{ dir = 4 }, -/turf/simulated/floor/plating, -/area/engineering/bluespace_drive/monitoring) -"ljs" = ( -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenoarch_atrium) +/turf/simulated/floor/wood, +/area/horizon/service/cafeteria) "ljt" = ( /obj/effect/floor_decal/corner/brown{ dir = 5 @@ -78816,27 +79114,22 @@ /obj/effect/floor_decal/corner/blue, /turf/simulated/floor/plating, /area/horizon/security/meeting_room) -"ljD" = ( -/obj/machinery/door/airlock/service{ - dir = 4; - name = "Auxiliary Custodial Closet"; - req_access = list(26) - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, +"ljA" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/obj/structure/cable/green{ - icon_state = "4-8" +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/simulated/floor/carpet/rubber, +/area/horizon/maintenance/deck_1/workshop) +"ljE" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/full, -/area/horizon/custodial/auxiliary) +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/atmos/propulsion/starboard) "ljJ" = ( /obj/structure/bed/stool/chair, /obj/item/handcuffs/ziptie, @@ -78845,18 +79138,18 @@ icon_state = "wood" }, /area/centcom/legion) -"ljL" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 10 - }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, +"ljK" = ( /obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_two) +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor, +/area/horizon/maintenance/deck_3/aft/port) +"ljV" = ( +/obj/structure/lattice, +/obj/structure/platform/ledge, +/turf/simulated/open, +/area/horizon/operations/office) "ljW" = ( /obj/effect/floor_decal/spline/plain{ dir = 1 @@ -78868,100 +79161,190 @@ /obj/structure/flora/ausbushes/brflowers, /turf/simulated/floor/exoplanet/grass/grove, /area/centcom/shared_dream) -"lkk" = ( -/obj/effect/floor_decal/spline/fancy/wood{ +"lka" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/computer/security/engineering/terminal{ dir = 4 }, +/obj/machinery/atmospherics/pipe/simple/hidden/red{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/outline/operations, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/atmos/propulsion/starboard) +"lkb" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ - icon_state = "1-4" + icon_state = "2-8" }, /turf/simulated/floor/wood, -/area/horizon/library) +/area/horizon/repoffice/representative_one) "lkm" = ( /obj/effect/floor_decal/industrial/warning, /obj/structure/sign/emergency/exit/ladder, /turf/simulated/floor/reinforced/airless, /area/horizon/exterior) -"lkt" = ( -/obj/effect/floor_decal/corner/mauve/diagonal, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology) -"lkx" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, +"lkp" = ( +/obj/structure/cable/green, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 + dir = 9 }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/effect/floor_decal/corner/lime{ + dir = 10 }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/machinery/alarm/north, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard/deck1) -"lkB" = ( -/obj/machinery/door/blast/regular/open{ - dir = 4; - id = "r_ust_core_blast"; - name = "INDRA Reactor Blast Doors" +/obj/machinery/power/apc/low/south, +/turf/simulated/floor/tiled, +/area/horizon/medical/emergency_storage) +"lkz" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 5 }, -/obj/effect/map_effect/window_spawner/full/borosilicate/reinforced, -/obj/machinery/atmospherics/pipe/simple/visible, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/engine_room/rust) -"lkG" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/structure/closet, -/obj/machinery/light/small/emergency{ +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_3/starboard) +"lkD" = ( +/obj/effect/floor_decal/spline/fancy/wood/cee, +/obj/structure/flora/ausbushes/ywflowers, +/turf/simulated/floor/grass/no_edge, +/area/horizon/hallway/primary/deck_3/starboard) +"lkJ" = ( +/obj/structure/disposalpipe/trunk{ dir = 8 }, -/turf/simulated/floor/plating, -/area/maintenance/wing/cargo_compartment) -"lkK" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/railing/mapped, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/central) -"lkO" = ( -/obj/machinery/light, -/turf/simulated/floor/tiled/dark, -/area/horizon/bar/backroom) -"lkP" = ( -/obj/effect/floor_decal/corner/yellow{ +/obj/machinery/disposal/small/west, +/obj/machinery/firealarm/east, +/obj/effect/floor_decal/spline/fancy/wood{ dir = 6 }, +/turf/simulated/floor/wood, +/area/horizon/service/bar) +"lkL" = ( +/obj/effect/floor_decal/corner/beige/full{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/loading/yellow{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/medical/icu) +"lkR" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/obj/effect/floor_decal/corner/yellow{ + dir = 9 + }, /turf/simulated/floor/tiled, -/area/engineering/lobby) -"llk" = ( -/obj/machinery/atmospherics/binary/pump/on{ +/area/horizon/engineering/storage_eva) +"lkX" = ( +/obj/structure/foamedmetal, +/obj/structure/shuttle_part/scc_space_ship{ + icon_state = "d3-4-f" + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/port) +"lla" = ( +/obj/machinery/power/apc/east, +/obj/structure/cable/green{ + icon_state = "0-8" + }, +/obj/effect/floor_decal/corner/dark_green/full{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_2/fore) +"lld" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/aft_airlock) +"llf" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/camera/network/research{ + c_tag = "Research - Isolation A"; + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 4 + }, +/obj/machinery/alarm/south{ + alarm_id = 1503; + breach_detection = 0; + name = "Isolation C"; + rcon_setting = 3; + report_danger_level = 0; + req_one_access = list(7,47,24,11) + }, +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/xenoarch/isolation_c) +"llo" = ( +/obj/machinery/door/airlock/glass{ + dir = 1; + name = "Hangar" + }, +/obj/machinery/door/blast/regular/open{ dir = 8; - name = "Air to Distribution" + id = "hangarlockdown"; + name = "Hangar Lockdown" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/full, +/area/horizon/hangar/intrepid) +"llp" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 6 + }, +/obj/effect/floor_decal/industrial/loading/yellow{ + dir = 8 }, /obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/plating, -/area/engineering/atmos/air) +/obj/structure/closet/crate, +/turf/simulated/floor/tiled, +/area/horizon/operations/mining_main/refinery) "llq" = ( /obj/effect/floor_decal/corner/lime{ dir = 10 }, /turf/unsimulated/floor, /area/antag/jockey) +"llu" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/starboard) "llx" = ( /obj/structure/bed/stool/chair/office/bridge/pilot{ dir = 1 }, /turf/simulated/floor/shuttle/black, /area/centcom/specops) +"lly" = ( +/obj/effect/floor_decal/corner_wide/yellow{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/shields) "llD" = ( /obj/effect/floor_decal/industrial/warning/cee{ dir = 1 @@ -78969,14 +79352,53 @@ /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{ +"llG" = ( +/obj/machinery/atmospherics/pipe/simple/visible/purple{ dir = 9 }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/atmos/turbine) +"llK" = ( +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/engineering/storage/lower) +"llL" = ( +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/effect/floor_decal/corner/dark_green{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, /turf/simulated/floor/tiled, -/area/hangar/auxiliary) +/area/horizon/hallway/primary/deck_3/central) "llQ" = ( /obj/item/modular_computer/console/preset/security{ dir = 8 @@ -78985,90 +79407,97 @@ icon_state = "dark_preview" }, /area/centcom/holding) -"llT" = ( -/obj/effect/floor_decal/corner_wide/yellow{ - dir = 5 +"llU" = ( +/obj/effect/floor_decal/industrial/outline/red, +/obj/item/crowbar/red, +/obj/item/weldingtool/emergency{ + pixel_y = 6 }, -/turf/simulated/floor/tiled, -/area/hallway/engineering/rust) -"llY" = ( -/obj/effect/floor_decal/industrial/outline/research, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ +/obj/item/clothing/glasses/welding/emergency{ + pixel_y = -6 + }, +/obj/item/paper/fluff/bunker, +/obj/structure/sign/emergency/evacuation/ladder{ + pixel_x = -32; + pixel_y = 32 + }, +/turf/simulated/floor, +/area/horizon/command/bridge/aibunker) +"llW" = ( +/obj/machinery/light/small{ 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 +/obj/structure/extinguisher_cabinet/east, +/obj/effect/floor_decal/corner/dark_blue{ + dir = 6 }, /turf/simulated/floor/tiled/dark, -/area/shuttle/quark/cargo_hold) -"llZ" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 8 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ +/area/horizon/weapons/grauwolf) +"lmh" = ( +/turf/simulated/floor/tiled/dark, +/area/horizon/maintenance/deck_2/wing/port/near) +"lml" = ( +/obj/effect/floor_decal/spline/plain{ dir = 10 }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"lmf" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 5 - }, -/obj/structure/bed/stool/chair/padded/brown{ +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/black{ + dir = 10 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/carpet/rubber, +/area/horizon/tcommsat/entrance) +"lmo" = ( +/obj/machinery/atmospherics/unary/cryo_cell, /turf/simulated/floor/tiled, -/area/hangar/intrepid) -"lmg" = ( -/obj/structure/bed/stool/chair/padded/red{ - dir = 8 - }, -/turf/simulated/floor/carpet/red, -/area/horizon/crew_quarters/lounge/bar) -"lmk" = ( -/obj/machinery/conveyor_switch/oneway{ - desc = "A conveyor control switch. It appears to only go in one direction. Controls the components conveyor belt."; - id = "Robocompo"; - pixel_x = 19; - pixel_y = 27 - }, -/turf/simulated/floor/tiled/dark/full, -/area/operations/lower/machinist) -"lmp" = ( -/obj/structure/bed/stool/chair/sofa/orange, -/turf/simulated/floor/carpet/red, -/area/horizon/bar) +/area/horizon/medical/gen_treatment) "lms" = ( /turf/simulated/floor, /area/tdome/tdome2) -"lmv" = ( +"lmy" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance_hatch{ + dir = 4 + }, +/obj/effect/decal/cleanable/cobweb2{ + icon_state = "cobweb1" + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/port) +"lmB" = ( +/obj/machinery/door/firedoor, /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{ +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/door/airlock/maintenance{ + dir = 4; + req_one_access = list(5,12) + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor, +/area/horizon/maintenance/deck_3/aft/port) +"lmE" = ( +/obj/effect/floor_decal/corner/mauve/full{ dir = 4 }, +/obj/structure/platform{ + dir = 1 + }, /turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/central) +/area/horizon/rnd/hallway) "lmG" = ( /obj/structure/table/rack, /obj/item/storage/secure/briefcase, @@ -79088,37 +79517,86 @@ /obj/item/storage/backpack/duffel/syndie, /turf/unsimulated/floor, /area/antag/ninja) -"lmM" = ( -/obj/structure/cable{ - icon_state = "1-2" +"lmI" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/black{ + dir = 4 }, +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/atmos) +"lmL" = ( /obj/structure/cable/green{ icon_state = "4-8" }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/full, -/area/hallway/engineering/rust) -"lmQ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small/emergency{ +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 1 }, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard) -"lmV" = ( -/turf/simulated/floor/lino/diamond, -/area/horizon/library) -"lmY" = ( -/obj/structure/shuttle_part/scc_space_ship{ - icon_state = "d3-5-f" +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 }, -/obj/effect/landmark/entry_point/aft{ - name = "aft, starboard maintenance" +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_3/central) +"lmW" = ( +/obj/machinery/light{ + dir = 8 }, -/turf/simulated/wall/shuttle/scc_space_ship/cardinal, -/area/maintenance/wing/starboard) +/obj/structure/table/wood, +/obj/machinery/photocopier/faxmachine{ + anchored = 0; + department = "Representative's Office B"; + pixel_y = 4 + }, +/turf/simulated/floor/carpet, +/area/horizon/repoffice/representative_two) +"lmX" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 1 + }, +/obj/effect/floor_decal/corner/dark_blue{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/atmos) +"lmZ" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/door/airlock/external{ + dir = 1; + frequency = 1380; + icon_state = "door_locked"; + id_tag = "mining_shuttle_dock_doors"; + req_access = list(13) + }, +/obj/structure/plasticflaps/airtight, +/obj/effect/shuttle_landmark/mining/hangar{ + dir = 1 + }, +/turf/simulated/floor/tiled/full, +/area/horizon/hangar/operations) +"lnb" = ( +/obj/machinery/hologram/holopad, +/turf/simulated/floor/wood, +/area/horizon/command/heads/chief) +"lnd" = ( +/obj/structure/bed/stool/chair/office/light{ + dir = 4 + }, +/obj/effect/landmark/start{ + name = "Scientist" + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 10 + }, +/turf/simulated/floor/wood, +/area/horizon/rnd/conference) "lne" = ( /obj/machinery/door/blast/odin/open{ _wifi_id = "merc_droppod_3"; @@ -79132,89 +79610,55 @@ /obj/effect/floor_decal/industrial/hatch/red, /turf/simulated/floor/reinforced/airless, /area/horizon/exterior) -"lnh" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/airlock/maintenance{ - dir = 1; - req_one_access = list(12, 25) - }, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/horizon/stairwell/central) +"lnj" = ( +/turf/simulated/floor/bluegrid, +/area/horizon/tcommsat/chamber) "lnl" = ( /obj/effect/floor_decal/corner/beige{ dir = 9 }, /turf/simulated/floor/tiled/dark, /area/shuttle/merchant) -"lnt" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 9 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/machinery/camera/network/first_deck{ - c_tag = "First Deck - Hangar Access"; - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hangar/intrepid/interstitial) -"lnu" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology) -"lnA" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 6 - }, -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/railing/mapped, -/obj/structure/platform{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/bridge) -"lnF" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, +"lno" = ( /obj/structure/cable/green{ icon_state = "1-2" }, -/obj/structure/lattice/catwalk/indoor/grate, -/turf/simulated/floor/plating, -/area/hangar/auxiliary) -"lnG" = ( +/obj/effect/landmark{ + name = "borerstart" + }, /obj/effect/floor_decal/industrial/warning{ dir = 8 }, -/obj/structure/tank_wall/air{ - icon_state = "air4" +/turf/simulated/floor/tiled/full, +/area/horizon/engineering/storage_hard) +"lny" = ( +/obj/structure/cable{ + icon_state = "4-8" }, -/obj/machinery/atmospherics/pipe/simple/visible{ +/obj/effect/floor_decal/corner/dark_green{ dir = 4 }, -/turf/simulated/floor/plating, -/area/engineering/atmos/air) -"lnJ" = ( -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard/far) +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/simulated/floor/tiled, +/area/horizon/hangar/auxiliary) +"lnz" = ( +/obj/effect/floor_decal/corner_wide/yellow{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/horizon/engineering/bluespace_drive) +"lnD" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 9 + }, +/obj/structure/platform, +/obj/effect/floor_decal/corner/dark_blue, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/vending/snack, +/turf/simulated/floor/tiled, +/area/horizon/command/bridge/upperdeck) "lnL" = ( /obj/machinery/portable_atmospherics/canister/oxygen, /obj/item/tank/air, @@ -79227,25 +79671,23 @@ }, /turf/simulated/floor/reinforced, /area/shuttle/mercenary) -"lnQ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 10 +"lnO" = ( +/obj/structure/railing/mapped{ + dir = 8 }, -/obj/machinery/door/airlock/external, -/obj/effect/map_effect/marker/airlock{ - frequency = 1003; - master_tag = "airlock_horizon_deck_1_starboard_1"; - name = "airlock_horizon_deck_1_starboard_1" +/obj/effect/floor_decal/corner/black{ + dir = 9 }, -/obj/effect/map_effect/marker_helper/airlock/interior, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard/deck1) -"lnW" = ( -/obj/item/modular_computer/console/preset/research{ - dir = 4 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/dark, +/area/horizon/hangar/auxiliary) +"lnU" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/effect/floor_decal/corner_wide/green{ + dir = 1 }, -/turf/simulated/floor/carpet/purple, -/area/crew_quarters/heads/hor) +/turf/simulated/floor/tiled/white, +/area/horizon/medical/gen_treatment) "lod" = ( /obj/effect/floor_decal/industrial/outline/yellow, /obj/structure/ladder/up{ @@ -79253,14 +79695,6 @@ }, /turf/simulated/floor/reinforced/airless, /area/horizon/exterior) -"lof" = ( -/obj/effect/floor_decal/corner/grey/full, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/machinery/disposal/small/north, -/turf/simulated/floor/lino, -/area/horizon/bar) "loh" = ( /turf/simulated/floor/holofloor/grass{ dir = 4; @@ -79274,95 +79708,77 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/tiled/dark, /area/horizon/holodeck_control/beta) -"los" = ( -/obj/machinery/atmospherics/pipe/manifold/visible{ - dir = 1 - }, +"lok" = ( /obj/structure/cable/green{ - icon_state = "1-4" + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/corner/red{ + dir = 6 + }, +/obj/machinery/access_button{ + command = "cycle_interior"; + frequency = 1379; + master_tag = "processing_airlock_control"; + name = "Interior access button"; + pixel_x = 25; + pixel_y = 25; + req_access = list(5) + }, +/obj/machinery/camera/network/medbay{ + c_tag = "Medical - Isolation Ward Airlock"; + dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/engineering/atmos) +/area/horizon/medical/ward/isolation) +"lop" = ( +/obj/effect/floor_decal/corner_wide/yellow{ + dir = 10 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/turf/simulated/floor/tiled, +/area/horizon/engineering/reactor/indra/mainchamber) "loH" = ( /mob/living/heavy_vehicle/premade/combatripley, /turf/unsimulated/floor{ icon_state = "wood" }, /area/centcom/legion) -"loM" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 5 - }, -/obj/machinery/alarm/north, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/port/docks) -"loV" = ( -/obj/machinery/vending/snack, -/obj/effect/floor_decal/industrial/hatch/grey, -/turf/simulated/floor/tiled/full, -/area/horizon/hallway/deck_three/primary/starboard) -"loW" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/corner/dark_blue/diagonal, -/turf/simulated/floor/tiled/dark, -/area/security/checkpoint) -"loY" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_engineering{ - dir = 1; - name = "Engineering Hallway"; - req_access = list(10) - }, -/obj/effect/map_effect/door_helper/unres{ - dir = 1 - }, -/turf/simulated/floor/tiled/full, -/area/hallway/engineering/rust) -"loZ" = ( -/obj/effect/floor_decal/spline/fancy/wood{ +"loP" = ( +/obj/item/device/radio/intercom/south, +/obj/effect/floor_decal/corner/dark_green{ dir = 10 }, -/obj/structure/bed/stool/chair/padded/brown{ +/obj/machinery/camera/network/first_deck{ + c_tag = "First Deck - Central Stairwell"; dir = 1 }, -/obj/structure/railing/mapped, -/turf/simulated/floor/wood, -/area/horizon/cafeteria) -"lpb" = ( -/obj/structure/closet/secure_closet/medical3, -/obj/effect/floor_decal/corner_wide/green{ - dir = 9 +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 }, -/turf/simulated/floor/tiled/white, -/area/medical/equipment) +/turf/simulated/floor/tiled, +/area/horizon/stairwell/starboard/deck_1) +"loS" = ( +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/item/material/shard, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/port/far) "lpe" = ( /obj/machinery/computer/shuttle_control/multi/raider, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/tiled/dark/full, /area/shuttle/skipjack) -"lpg" = ( -/obj/effect/floor_decal/corner_wide/yellow/diagonal, -/obj/machinery/recharge_station, -/obj/machinery/light, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/engineering/break_room) -"lpj" = ( -/obj/machinery/door/airlock/maintenance{ - dir = 4; - req_one_access = list(5,12) - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor, -/area/horizon/maintenance/deck_three/aft/starboard) "lpm" = ( /obj/structure/sign/double/map/left{ desc = "A framed picture of a station."; @@ -79381,13 +79797,39 @@ /obj/effect/decal/cleanable/dirt, /turf/unsimulated/floor/wood, /area/antag/burglar) -"lpp" = ( -/obj/structure/closet/walllocker/medical/firstaid{ - pixel_x = 32 +"lpo" = ( +/turf/simulated/floor/shuttle/dark_blue, +/area/horizon/shuttle/escape_pod/pod2) +"lpq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 5 }, -/obj/effect/floor_decal/industrial/outline/medical, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenoarch_atrium) +/turf/simulated/wall/shuttle/scc, +/area/horizon/shuttle/intrepid/engineering) +"lpr" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/firedoor/multi_tile, +/obj/machinery/door/airlock/multi_tile/glass{ + name = "Deck 2 Starboard Docks" + }, +/obj/machinery/door/blast/shutters/open{ + dir = 2; + id = "seconddeckdockint"; + name = "Security Checkpoint Internal Shutter" + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/security/checkpoint2) +"lps" = ( +/obj/effect/floor_decal/industrial/outline/grey, +/obj/structure/closet/secure_closet/freezer/chicken_and_fish, +/obj/machinery/light, +/turf/simulated/floor/tiled/freezer{ + name = "cooled tiles"; + temperature = 253.15 + }, +/area/horizon/service/kitchen/freezer) "lpu" = ( /obj/structure/table/reinforced, /obj/item/clothing/head/bandana/hydro{ @@ -79404,6 +79846,16 @@ /obj/effect/floor_decal/industrial/outline/grey, /turf/simulated/floor/tiled, /area/horizon/security/brig) +"lpw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/random/dirt_75, +/obj/random/dirt_75, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/starboard/nacelle) "lpy" = ( /obj/machinery/camera/network/prison{ c_tag = "Security - Cell A"; @@ -79430,56 +79882,59 @@ }, /turf/simulated/floor/tiled, /area/horizon/security/brig) -"lpz" = ( -/obj/effect/floor_decal/corner_wide/lime{ +"lpI" = ( +/obj/effect/floor_decal/corner/dark_green{ dir = 5 }, -/turf/simulated/floor/tiled/white, -/area/medical/reception) -"lpE" = ( -/obj/structure/table/steel, -/obj/item/storage/bag/inflatable, -/obj/item/storage/bag/inflatable, -/obj/item/storage/bag/inflatable, -/obj/effect/floor_decal/corner/dark_blue/full{ +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/effect/floor_decal/spline/plain/corner/purple{ + dir = 4 + }, +/obj/effect/floor_decal/spline/plain/red, +/obj/effect/floor_decal/spline/plain/corner{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/horizon/service/hydroponics) +"lpJ" = ( +/obj/structure/table/standard, /obj/machinery/light, -/turf/simulated/floor/tiled/dark, -/area/storage/eva) -"lpF" = ( -/obj/structure/bookcase/libraryspawn/nonfiction, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/library) -"lpP" = ( -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 2; - icon_state = "shutter0"; - id = "LCKDshutters"; - name = "MedBay Lockdown Shutters"; - opacity = 0 +/obj/effect/floor_decal/corner_wide/green{ + dir = 10 }, -/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, -/obj/structure/sign/greencross/small, -/turf/simulated/floor/tiled/dark/full, -/area/medical/reception) -"lpU" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/portable_atmospherics/powered/pump/filled, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/lobby) -"lpV" = ( -/obj/machinery/atmospherics/binary/pump{ - dir = 4; - name = "Nitrous Oxide to Mix" +/obj/item/bodybag/cryobag{ + pixel_x = 13; + pixel_y = 10 }, -/turf/simulated/floor/plating, -/area/engineering/atmos/air) -"lpW" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/engine_room/rust) +/obj/item/bodybag/cryobag{ + pixel_x = 13; + pixel_y = 8 + }, +/obj/item/bodybag/cryobag{ + pixel_x = 13; + pixel_y = 5 + }, +/obj/item/bodybag/cryobag{ + pixel_x = 13; + pixel_y = 2 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/main_storage) +"lpY" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 9 + }, +/turf/simulated/wall/shuttle/scc_space_ship/cardinal, +/area/horizon/engineering/atmos/propulsion) "lqb" = ( /obj/structure/flora/stump/log, /obj/effect/floor_decal/spline/plain{ @@ -79490,32 +79945,49 @@ }, /turf/simulated/floor/exoplanet/grass, /area/centcom/shared_dream) -"lqf" = ( -/turf/simulated/floor/reinforced, -/area/rnd/xenobiology/hazardous) -"lqh" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/light{ +"lqc" = ( +/obj/effect/floor_decal/corner/purple{ + dir = 5 + }, +/obj/machinery/button/remote/blast_door{ + id = "shutters_deck2_auxcustdesk"; + name = "Auxiliary Custodial Closet Desk Shutter"; + pixel_x = -25; + pixel_y = 25; + req_access = list(26) + }, +/obj/machinery/button/remote/blast_door{ + id = "shutters_deck2_auxcustwindow"; + name = "Auxiliary Custodial Closet Window Shutter"; + pixel_x = -36; + pixel_y = 25; + req_access = list(26) + }, +/obj/structure/bed/stool/chair/office/dark{ dir = 1 }, -/obj/machinery/computer/general_air_control/large_tank_control/terminal{ - sensors = list("h_sensor"="Tank"); - output_tag = "h_out"; - name = "Hydrogen Supply Console"; - input_tag = "h_in" +/turf/simulated/floor/tiled, +/area/horizon/service/custodial/auxiliary) +"lqd" = ( +/obj/machinery/power/smes/batteryrack{ + input_attempt = 1; + input_level = 50000; + output_attempt = 1; + output_level = 45000 }, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/atmos) -"lqk" = ( -/obj/machinery/atmospherics/pipe/simple/visible/green{ +/obj/structure/cable/yellow, +/turf/simulated/floor/carpet/rubber, +/area/horizon/maintenance/deck_1/workshop) +"lqg" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/floor_decal/corner/dark_blue/full, +/obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 }, -/obj/machinery/camera/network/reactor{ - c_tag = "Engineering - Supermatter Reactor External Airlock Access"; - dir = 1 - }, -/turf/simulated/floor/plating, -/area/engineering/engine_room) +/turf/simulated/floor/tiled/dark, +/area/horizon/ai/upload_foyer) "lqo" = ( /obj/effect/floor_decal/spline/plain{ dir = 4 @@ -79523,21 +79995,28 @@ /obj/effect/floor_decal/industrial/warning, /turf/unsimulated/floor, /area/antag/mercenary) -"lqr" = ( -/obj/effect/floor_decal/corner_wide/purple{ - dir = 9 - }, -/obj/effect/floor_decal/corner_wide/purple/diagonal, +"lqp" = ( /obj/structure/cable/green{ - icon_state = "0-2" + icon_state = "2-4" }, -/obj/machinery/power/apc/west, -/obj/structure/engineer_maintenance/electric{ - dir = 8 +/obj/effect/floor_decal/corner_wide/yellow{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "2-8" }, -/obj/structure/engineer_maintenance/pipe, /turf/simulated/floor/tiled/white, -/area/rnd/test_range) +/area/horizon/medical/hallway) +"lqu" = ( +/obj/structure/bookcase/libraryspawn/nonfiction, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/service/library) "lqx" = ( /obj/effect/floor_decal/corner/blue{ dir = 5 @@ -79554,21 +80033,23 @@ }, /turf/simulated/floor/tiled/white, /area/horizon/security/autopsy_laboratory) -"lqB" = ( +"lqA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, /obj/effect/floor_decal/corner/dark_green{ - dir = 6 - }, -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/effect/floor_decal/spline/plain{ - dir = 4 + dir = 10 }, /turf/simulated/floor/tiled, -/area/horizon/hallway/deck_two/fore) -"lqC" = ( -/turf/simulated/wall/shuttle/scc_space_ship/cardinal, -/area/horizon/maintenance/deck_three/aft/starboard) +/area/horizon/security/checkpoint2) +"lqD" = ( +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/manifold/hidden, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/carpet/rubber, +/area/horizon/rnd/server) "lqF" = ( /obj/machinery/vending/wallmed1{ name = "Emergency NanoMed"; @@ -79585,138 +80066,137 @@ /obj/item/weldingtool/hugetank, /turf/unsimulated/floor/plating, /area/centcom/legion/hangar5) -"lqI" = ( -/obj/structure/railing/mapped{ - dir = 8 +"lqK" = ( +/obj/effect/floor_decal/corner_wide/paleblue{ + dir = 5 }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 9 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge/controlroom) +/obj/machinery/firealarm/north, +/obj/effect/floor_decal/sign/srg, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/hallway) "lqN" = ( /obj/machinery/appliance/cooker/oven{ stat = 0 }, /turf/unsimulated/floor, /area/centcom/bar) -"lqO" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ +"lqW" = ( +/obj/effect/floor_decal/corner_wide/green/full{ + dir = 1 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/bed/padded, +/obj/item/bedsheet/medical, +/obj/structure/curtain/open/medical, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/exam) +"lqZ" = ( +/obj/effect/floor_decal/corner/purple/full, +/obj/structure/sign/emergency/exit{ + pixel_y = -32 + }, +/obj/machinery/firealarm/west, +/obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/shuttle/intrepid/main_compartment) -"lqX" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/light, -/obj/effect/floor_decal/corner/yellow/diagonal, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/engineering) -"lrd" = ( -/obj/machinery/atmospherics/pipe/simple/visible/purple{ - dir = 10 - }, -/obj/effect/floor_decal/corner_wide/black/full{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 5 - }, -/obj/structure/engineer_maintenance/pipe/wall, -/turf/simulated/floor/tiled/dark, -/area/engineering/atmos/propulsion/starboard) -"lrf" = ( -/obj/effect/floor_decal/corner/lime{ - dir = 5 - }, -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled/white{ - name = "cooled white floor"; - temperature = 278.15 - }, -/area/medical/morgue/lower) -"lrq" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 10 - }, -/obj/machinery/camera/network/third_deck{ - c_tag = "Third Deck - Locker Room"; - dir = 1 - }, -/obj/machinery/washing_machine, -/turf/simulated/floor/tiled, -/area/horizon/crew_quarters/fitness/changing) -"lrv" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 6 - }, -/obj/structure/disposalpipe/segment{ - icon_state = "pipe-c" - }, +/area/horizon/service/custodial/disposals/deck_1) +"lra" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/structure/lattice/catwalk/indoor/grate/dark, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 10 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 + dir = 6 }, -/obj/structure/cable/green{ - icon_state = "2-8" +/turf/simulated/floor/plating, +/area/horizon/shuttle/intrepid/main_compartment) +"lrn" = ( +/obj/machinery/suit_storage_unit/standard_unit, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/light/small/emergency{ + dir = 8 }, -/obj/machinery/newscaster/security_unit/east, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/command/bridge/aibunker) +"lro" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "cargo_1" + }, +/obj/machinery/alarm/south, /turf/simulated/floor/tiled, -/area/bridge/controlroom) -"lrC" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ +/area/horizon/operations/loading) +"lrt" = ( +/obj/structure/railing/mapped{ dir = 4 }, -/obj/structure/table/reinforced/steel, -/obj/machinery/recharger, -/obj/item/melee/baton/loaded, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenoarch_atrium) -"lrF" = ( +/obj/effect/floor_decal/corner/dark_blue/diagonal, +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/outline/firefighting_closet, +/obj/structure/closet/walllocker/firecloset{ + pixel_x = -32 + }, /obj/structure/cable/green{ 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/effect/floor_decal/industrial/warning/corner{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hangar/intrepid) -"lrL" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" +/turf/simulated/floor/tiled/dark, +/area/horizon/weapons/longbow) +"lru" = ( +/obj/machinery/atmospherics/binary/passive_gate/supply{ + target_pressure = 250 }, /obj/structure/cable/green{ - icon_state = "2-4" + icon_state = "4-8" }, -/obj/machinery/door/firedoor, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/airlock/glass{ - dir = 4 +/turf/simulated/floor/tiled/dark/full, +/area/horizon/shuttle/canary) +"lrw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/hallway) +"lrx" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 6 }, /turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/port) +/area/horizon/engineering/hallway/fore) +"lry" = ( +/obj/machinery/atmospherics/pipe/simple/visible/green{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/horizon/engineering/atmos/air) +"lrB" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/alarm/north, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/operations/starboard) +"lrE" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 6 + }, +/obj/structure/bed/stool/chair/padded/brown{ + dir = 1 + }, +/obj/machinery/light, +/turf/simulated/floor/wood, +/area/horizon/repoffice/consular_one) +"lrG" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/structure/table/rack, +/obj/random/loot, +/turf/simulated/floor, +/area/horizon/maintenance/deck_3/aft/starboard) "lrP" = ( /obj/effect/floor_decal/corner/brown/diagonal, /obj/random/pottedplant, @@ -79734,87 +80214,108 @@ /obj/structure/table/reinforced/steel, /turf/unsimulated/floor, /area/centcom/control) +"lrR" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 5 + }, +/obj/structure/bed/stool/chair/padded/red{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/horizon/hallway/primary/deck_2/fore) +"lrS" = ( +/obj/effect/landmark/entry_point/fore{ + name = "fore, secondary hangar port" + }, +/turf/unsimulated/wall/fakepdoor{ + dir = 4 + }, +/area/horizon/hangar/auxiliary) +"lrX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/starboard/far) +"lrZ" = ( +/turf/simulated/wall/shuttle/scc_space_ship/cardinal, +/area/horizon/maintenance/substation/engineering/lower) "lsa" = ( /turf/unsimulated/floor/wood, /area/antag/raider) -"lsc" = ( -/obj/structure/railing/mapped{ - dir = 8 +"lsf" = ( +/obj/structure/cable/green{ + icon_state = "1-2" }, -/obj/machinery/computer/ship/engines{ +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4 }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 9 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge/aibunker) -"lsd" = ( -/obj/machinery/atmospherics/pipe/simple/visible/black{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/engineering/atmos/propulsion/starboard) -"lsg" = ( -/obj/structure/bed/stool/chair/padded/red, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/horizon/crew_quarters/lounge/bar) +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/full, +/area/horizon/hallway/primary/deck_2/central) "lsh" = ( /obj/effect/floor_decal/carpet{ dir = 8 }, /turf/simulated/floor/carpet/magenta, /area/horizon/holodeck/source_cafe) -"lsi" = ( -/obj/structure/cable{ - icon_state = "4-8" +"lsm" = ( +/obj/structure/cable/green{ + icon_state = "1-2" }, -/obj/structure/extinguisher_cabinet/north, -/obj/structure/lattice/catwalk/indoor/grate, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/corner/red{ + dir = 6 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/access_button{ + command = "cycle_exterior"; + frequency = 1379; + master_tag = "processing_airlock_control"; + name = "Exterior access button"; + pixel_x = 25; + pixel_y = -30; + req_access = list(5) + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/medical/ward/isolation) +"lsn" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/computer/general_air_control/large_tank_control/wall{ + input_tag = "n2o_in"; + name = "Nitrous Oxide Supply Monitor"; + output_tag = "n2o_out"; + pixel_x = 32; + sensors = list("n2o_sensor"="Tank") + }, +/obj/machinery/atmospherics/pipe/simple/visible/cyan, +/obj/structure/lattice/catwalk/indoor, /turf/simulated/floor/plating, -/area/hangar/auxiliary) -"lsl" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_two) -"lsq" = ( -/obj/effect/floor_decal/industrial/hatch/red, -/obj/machinery/mass_driver{ - _wifi_id = "chapel_driver"; - id = "chapel_driver" - }, -/turf/simulated/floor/reinforced, -/area/chapel/office) -"lsv" = ( -/obj/effect/floor_decal/corner/white/diagonal, -/obj/effect/floor_decal/industrial/warning, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/medical/paramedic) -"lsw" = ( -/obj/machinery/light/small/emergency{ +/area/horizon/engineering/atmos/air) +"lso" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, /obj/random/dirt_75, -/turf/simulated/floor/tiled/dark, -/area/maintenance/wing/port/far) -"lsz" = ( -/obj/structure/closet/secure_closet/captains, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/captain) +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/starboard/nacelle) "lsD" = ( /obj/effect/floor_decal/corner/lime{ dir = 9 @@ -79827,89 +80328,93 @@ icon_state = "dark_preview" }, /area/centcom/holding) -"lsF" = ( -/obj/random/pottedplant, -/obj/effect/floor_decal/corner/dark_green/full{ - dir = 8 - }, -/obj/machinery/alarm/north, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/central) -"lsK" = ( -/obj/structure/table/reinforced/wood, -/obj/item/clipboard, -/turf/simulated/floor/tiled/dark, -/area/bridge/meeting_room) -"lsL" = ( -/obj/structure/cable/orange{ - icon_state = "1-2" - }, -/obj/structure/railing/mapped{ - dir = 1 - }, +"lsG" = ( /obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/portable_atmospherics/canister/boron, /turf/simulated/floor/tiled/dark/full, -/area/engineering/engine_room) +/area/horizon/engineering/reactor/indra/mainchamber) "lsM" = ( /obj/effect/floor_decal/corner/red/diagonal, /obj/effect/floor_decal/spline/fancy, /turf/simulated/floor/tiled/white, /area/centcom/shared_dream) -"lsQ" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 6 +"lsO" = ( +/turf/simulated/wall/shuttle/unique/scc/mining{ + icon_state = "fix2" + }, +/area/horizon/shuttle/mining) +"lsU" = ( +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id = "bridge blast"; + name = "Bridge Blast Doors"; + opacity = 0 }, /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" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor/tiled/dark, -/area/engineering/smes) -"ltl" = ( -/obj/machinery/alarm/east, -/obj/effect/floor_decal/corner_wide/yellow{ - dir = 6 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark/full, -/area/storage/shields) -"ltp" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden, /obj/structure/cable/green{ icon_state = "1-2" }, -/obj/effect/floor_decal/corner_wide/green{ - dir = 9 +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" }, -/obj/machinery/firealarm/west, -/turf/simulated/floor/tiled/white, -/area/medical/gen_treatment) +/obj/machinery/door/blast/shutters/open{ + dir = 4; + id = "shutters_deck3_bridgesafety"; + name = "Safety Shutter" + }, +/obj/structure/window/shuttle/scc_space_ship, +/obj/structure/grille, +/obj/machinery/door/blast/shutters/open{ + dir = 4; + id = "conferencesafetyshutters"; + name = "Safety Shutter" + }, +/turf/simulated/floor, +/area/horizon/command/bridge/meeting_room) +"lsX" = ( +/turf/simulated/wall, +/area/horizon/maintenance/deck_1/teleporter) +"lsZ" = ( +/obj/machinery/suspension_gen, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/rnd/xenoarch/storage) +"lta" = ( +/obj/machinery/light/small/emergency{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/operations/starboard) +"ltb" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 5 + }, +/turf/simulated/floor/wood, +/area/horizon/command/heads/captain) +"ltg" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/horizon/operations/office) +"lto" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled/full, +/area/horizon/engineering/storage_hard) "ltq" = ( /obj/structure/sink{ dir = 8; @@ -79923,37 +80428,69 @@ icon_state = "white" }, /area/centcom/legion) -"ltr" = ( -/obj/structure/closet/walllocker/firecloset{ - pixel_y = 32 +"ltx" = ( +/obj/structure/table/standard, +/obj/effect/floor_decal/corner/mauve/full, +/obj/item/device/firing_pin/test_range{ + pixel_y = 4 }, -/obj/effect/floor_decal/corner/red/diagonal, -/obj/effect/floor_decal/industrial/hatch/red, -/obj/machinery/alarm/west, -/turf/simulated/floor/tiled, -/area/horizon/maintenance/deck_three/aft/starboard) -"lts" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 1 +/obj/item/device/firing_pin/test_range, +/obj/item/device/firing_pin/test_range{ + pixel_y = 8 }, -/obj/effect/floor_decal/spline/plain, -/turf/simulated/floor/carpet/rubber, -/area/tcommsat/chamber) -"ltI" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 10 +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/lab) +"ltz" = ( +/obj/structure/disposalpipe/segment{ + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "1-4" }, -/obj/structure/extinguisher_cabinet/south, -/turf/simulated/floor/tiled, -/area/engineering/lobby) -"ltM" = ( -/obj/structure/closet/crate/bin, -/obj/random/loot, /obj/effect/floor_decal/industrial/warning{ dir = 4 }, -/turf/simulated/floor/plating, -/area/maintenance/engineering) +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor, +/area/horizon/maintenance/deck_3/aft/starboard) +"ltC" = ( +/obj/machinery/atmospherics/pipe/simple/visible, +/turf/simulated/floor/reinforced/airmix, +/area/horizon/engineering/atmos/air) +"ltE" = ( +/obj/structure/ladder{ + pixel_y = 8 + }, +/turf/simulated/open, +/area/horizon/maintenance/deck_2/wing/port/near) +"ltF" = ( +/obj/structure/table/reinforced/glass, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/item/clipboard, +/turf/simulated/floor/wood, +/area/horizon/rnd/conference) +"ltG" = ( +/obj/structure/table/rack/retail_shelf, +/obj/machinery/camera/network/service{ + c_tag = "Second Deck - Commissary Starboard"; + dir = 1 + }, +/turf/simulated/floor/tiled/full, +/area/horizon/operations/commissary) "ltQ" = ( /obj/machinery/atmospherics/pipe/simple/visible{ dir = 9 @@ -79961,24 +80498,6 @@ /obj/structure/lattice/catwalk/indoor/grate/dark, /turf/unsimulated/floor/plating, /area/centcom/legion) -"ltT" = ( -/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/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/corner/dark_green/full{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_two/fore) "ltU" = ( /obj/structure/reagent_dispensers/water_cooler{ pixel_x = 4; @@ -79992,28 +80511,18 @@ }, /turf/simulated/floor/reinforced, /area/shuttle/mercenary) -"ltW" = ( -/obj/effect/floor_decal/corner/yellow{ - dir = 6 +"ltZ" = ( +/obj/structure/tank_wall{ + icon_state = "m-7" }, -/obj/machinery/atmospherics/pipe/simple/visible/black{ +/obj/effect/floor_decal/industrial/warning{ dir = 4 }, -/turf/simulated/floor/tiled/dark, -/area/engineering/engine_waste) -"ltX" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ dir = 4 }, -/obj/structure/cable/orange{ - icon_state = "4-8" - }, -/obj/structure/lattice/catwalk/indoor/grate, /turf/simulated/floor/plating, -/area/engineering/engine_room/rust) +/area/horizon/engineering/atmos) "lua" = ( /obj/effect/decal/fake_object{ color = "#545c68"; @@ -80041,16 +80550,6 @@ icon_state = "wood" }, /area/centcom/specops) -"luf" = ( -/obj/effect/floor_decal/corner/mauve{ - dir = 5 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled, -/area/rnd/hallway) "luj" = ( /obj/structure/railing/mapped{ dir = 8 @@ -80062,42 +80561,72 @@ name = "staircase" }, /area/centcom/spawning) -"lup" = ( -/obj/machinery/computer/general_air_control/large_tank_control/wall{ - input_tag = "n_in"; - name = "Nitrogen Supply Monitor"; - output_tag = "n_out"; - pixel_x = -32; - sensors = list("n_sensor"="Tank") +"lul" = ( +/obj/structure/flora/ausbushes/ywflowers, +/turf/simulated/floor/grass/no_edge, +/area/horizon/service/cafeteria) +"lum" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 5 }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/hangar/starboard) +"luu" = ( +/obj/machinery/power/apc/north, +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/obj/effect/floor_decal/corner/brown/full{ + dir = 8 + }, +/obj/machinery/camera/network/supply{ + c_tag = "Operations - Main Desk"; + dir = 4 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/table/standard, +/obj/item/stack/material/glass/full, +/obj/item/stack/material/steel/full, +/obj/item/stack/material/plastic/full, +/obj/item/stack/material/aluminium/full, +/obj/item/storage/belt/utility, /obj/machinery/light{ dir = 8 }, -/obj/machinery/atmospherics/pipe/simple/visible/supply, -/obj/structure/lattice/catwalk/indoor, -/turf/simulated/floor/plating, -/area/engineering/atmos/air) -"luy" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/corner_wide/black/full{ - dir = 6 - }, -/obj/effect/floor_decal/industrial/warning/cee{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/visible/green{ - dir = 4 - }, -/obj/structure/cable{ +/turf/simulated/floor/tiled, +/area/horizon/operations/office) +"luw" = ( +/obj/structure/cable/green{ icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 +/turf/simulated/floor/carpet/rubber, +/area/horizon/rnd/server) +"luz" = ( +/turf/simulated/floor/tiled, +/area/horizon/engineering/lobby) +"luD" = ( +/obj/structure/window/shuttle/scc_space_ship, +/obj/structure/grille, +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 8; + icon_state = "shutter0"; + id = "LCKDshutters"; + name = "MedBay Lockdown Shutters"; + opacity = 0 }, -/turf/simulated/floor/tiled/dark, -/area/engineering/atmos/propulsion/starboard) +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/horizon/medical/equipment) +"luE" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 5 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/horizon/rnd/eva) "luH" = ( /obj/structure/flora/log_bench{ dir = 1 @@ -80115,6 +80644,22 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/tiled/dark/full, /area/shuttle/skipjack) +"luK" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/structure/bed/handrail{ + dir = 1 + }, +/obj/effect/floor_decal/corner/dark_blue/diagonal, +/obj/effect/floor_decal/spline/plain/black{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/shuttle/intrepid/junction_compartment) "luL" = ( /obj/machinery/atmospherics/pipe/simple/heat_exchanging{ dir = 9 @@ -80122,6 +80667,53 @@ /obj/structure/lattice, /turf/space/dynamic, /area/horizon/exterior) +"luQ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/light/small/emergency{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor, +/area/horizon/maintenance/deck_3/bridge) +"luR" = ( +/obj/machinery/conveyor{ + dir = 8; + id = "mining_1" + }, +/turf/simulated/floor/plating, +/area/horizon/operations/mining_main/refinery) +"luU" = ( +/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/corner/dark_green{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/horizon/hangar/auxiliary) +"luV" = ( +/obj/machinery/door/airlock/service{ + dir = 4; + name = "Auxiliary Custodial Closet"; + req_access = list(26) + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/full, +/area/horizon/service/custodial/auxiliary) "luW" = ( /obj/machinery/door/airlock/glass{ dir = 4 @@ -80133,108 +80725,77 @@ icon_state = "wood" }, /area/antag/raider) -"luZ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 +"lvg" = ( +/obj/structure/coatrack{ + pixel_x = 7; + pixel_y = 2 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 +/obj/machinery/newscaster/east{ + dir = 8; + pixel_x = -11 }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/effect/floor_decal/industrial/hatch_door/yellow, -/obj/machinery/door/firedoor{ - req_one_access = list(24,11,67,73); - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/obj/item/device/radio/intercom/expedition/north, -/turf/simulated/floor/tiled/dark/full, -/area/shuttle/intrepid/starboard_compartment) -"lvc" = ( -/obj/machinery/door/window/brigdoor/southleft{ - name = "AI Core Access"; - req_access = list(16); - dir = 8 - }, -/obj/structure/cable/green{ - icon_state = "2-4" - }, -/obj/structure/engineer_maintenance/electric{ - dir = 4 +/obj/machinery/light_switch{ + pixel_y = -19 }, +/obj/structure/engineer_maintenance/electric, /obj/structure/engineer_maintenance/pipe{ - dir = 1 + dir = 8 }, -/turf/simulated/floor/bluegrid{ - name = "cooled mainframe floor"; - temperature = 278 +/turf/simulated/floor/wood, +/area/horizon/command/heads/chief) +"lvh" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/alarm/north, +/obj/random/dirt_75, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/starboard/far) +"lvo" = ( +/obj/structure/cable{ + icon_state = "2-8" }, -/area/turret_protected/ai) -"lve" = ( -/obj/machinery/telecomms/broadcaster/preset_right, -/turf/simulated/floor/bluegrid, -/area/tcommsat/chamber) -"lvk" = ( -/obj/effect/floor_decal/corner/dark_blue/full{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/security/checkpoint2) -"lvl" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ +/obj/effect/floor_decal/industrial/warning{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/platform_deco{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/bridge) -"lvn" = ( -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 4; - icon_state = "shutter0"; - id = "LCKDshutters"; - name = "MedBay Lockdown Shutters"; - opacity = 0 - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/full, -/area/medical/reception) -"lvq" = ( -/obj/structure/closet/firecloset, -/obj/effect/floor_decal/industrial/outline/firefighting_closet, -/obj/machinery/newscaster/east, -/turf/simulated/floor/tiled/dark/full, -/area/storage/eva) -"lvr" = ( -/obj/machinery/vending/zora, -/obj/effect/floor_decal/industrial/hatch/grey, -/obj/machinery/status_display{ - pixel_x = -16; - pixel_y = 32 - }, -/turf/simulated/floor/tiled/full, -/area/horizon/hallway/deck_three/primary/starboard) +/obj/random/dirt_75, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/starboard/nacelle) "lvs" = ( /obj/machinery/computer/shuttle_control/multi/legion, /turf/unsimulated/floor{ icon_state = "wood" }, /area/centcom/legion/hangar5) +"lvw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/xenobiology/foyer) +"lvy" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 6 + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/power/apc/east, +/obj/structure/cable/green{ + icon_state = "0-8" + }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/turf/simulated/floor/tiled, +/area/horizon/rnd/hallway/secondary) "lvA" = ( /obj/effect/floor_decal/carpet, /obj/item/device/flashlight/lamp/holodeck{ @@ -80245,77 +80806,42 @@ }, /turf/simulated/floor/holofloor/carpet, /area/horizon/holodeck/source_biesel) -"lvB" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 4 +"lvO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 }, -/obj/structure/coatrack{ - pixel_x = 3; - pixel_y = 24 +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + icon_state = "1-2" }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor, +/area/horizon/maintenance/deck_3/aft/port) +"lvQ" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 10 }, -/obj/structure/platform{ - dir = 8 +/obj/effect/floor_decal/industrial/warning/corner, +/turf/simulated/floor/tiled/dark, +/area/horizon/rnd/xenobiology/xenoflora) +"lvV" = ( +/obj/machinery/door/window/northright, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 }, -/turf/simulated/floor/wood, -/area/horizon/crew_quarters/lounge/bar) -"lvG" = ( -/obj/effect/floor_decal/corner/brown{ - dir = 5 +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 }, /obj/structure/disposalpipe/segment{ icon_state = "pipe-c" }, -/turf/simulated/floor/tiled, -/area/operations/lobby) -"lvK" = ( -/obj/effect/floor_decal/corner/green/diagonal{ - dir = 8 - }, -/obj/structure/table/standard, -/obj/item/deck/kotahi{ - pixel_x = -2; - pixel_y = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/ward) -"lvM" = ( -/obj/structure/bed/stool/chair/office/bridge{ - dir = 1 - }, -/turf/simulated/floor/carpet, -/area/horizon/security/head_of_security) -"lvN" = ( /obj/structure/cable/green{ - icon_state = "1-4" + icon_state = "2-4" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard) -"lvP" = ( -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/research_port) +/turf/simulated/floor/tiled, +/area/horizon/operations/office_aux) "lvW" = ( /obj/machinery/atmospherics/portables_connector{ dir = 4 @@ -80324,6 +80850,24 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled/dark/full, /area/shuttle/skipjack) +"lvZ" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/spline/plain{ + dir = 8 + }, +/turf/simulated/floor/carpet/rubber, +/area/horizon/engineering/bluespace_drive/monitoring) +"lwc" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/wood, +/area/horizon/command/heads/captain) "lwe" = ( /obj/structure/shuttle_part/ert{ icon_state = "4,4"; @@ -80331,39 +80875,49 @@ }, /turf/unsimulated/floor/plating, /area/shuttle/specops) -"lwh" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ +"lwj" = ( +/obj/effect/floor_decal/industrial/warning{ dir = 4 }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 +/obj/structure/tank_wall/nitrous_oxide{ + icon_state = "h13" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ +/obj/machinery/atmospherics/pipe/simple/visible/red{ dir = 4 }, -/obj/structure/lattice/catwalk/indoor/grate, /turf/simulated/floor/plating, -/area/engineering/lobby) -"lwk" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/port/docks) +/area/horizon/engineering/atmos/air) "lwl" = ( /obj/machinery/light/spot, /turf/unsimulated/floor, /area/centcom/legion/hangar5) +"lwm" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/reactor/supermatter/mainchamber) +"lwq" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/starboard/nacelle) +"lwr" = ( +/obj/machinery/door/airlock/maintenance{ + dir = 1; + name = "Bar Maintenance"; + req_one_access = list(12, 25) + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/full, +/area/horizon/service/bar) "lws" = ( /obj/effect/floor_decal/corner/paleblue{ dir = 1 @@ -80385,47 +80939,33 @@ /obj/structure/grille, /turf/simulated/open/airless, /area/horizon/exterior) -"lwy" = ( -/obj/structure/table/stone/marble, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/item/reagent_containers/food/condiment/sugar{ - pixel_x = 7; - pixel_y = 8 - }, -/obj/item/reagent_containers/cooking_container/board/bowl, -/obj/item/reagent_containers/glass/beaker{ - pixel_x = -6; - pixel_y = 8 - }, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/kitchen) -"lwA" = ( -/obj/structure/cable/green{ - icon_state = "2-4" - }, -/obj/effect/floor_decal/corner/grey/diagonal{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/horizon/cafeteria) -"lwE" = ( -/obj/effect/floor_decal/corner/lime/diagonal, -/obj/structure/cable/green{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ +"lwD" = ( +/obj/effect/floor_decal/corner/brown{ dir = 6 }, -/turf/simulated/floor/tiled/white, -/area/medical/washroom) +/obj/effect/floor_decal/spline/plain/black{ + dir = 6 + }, +/obj/structure/bed/stool/chair/shuttle/double{ + pixel_x = -8; + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/shuttle/intrepid/main_compartment) +"lwG" = ( +/obj/machinery/portable_atmospherics/hydroponics, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/sign/biohazard{ + pixel_x = -32 + }, +/obj/machinery/light/colored/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/portables_connector{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/service/hydroponics/lower) "lwJ" = ( /obj/machinery/door/airlock/external{ frequency = 1380; @@ -80436,73 +80976,72 @@ }, /turf/unsimulated/floor, /area/centcom/ferry) -"lwN" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 +"lwL" = ( +/turf/simulated/wall/shuttle/scc_space_ship/cardinal, +/area/horizon/repoffice/representative_two) +"lwO" = ( +/obj/structure/bed/stool/chair/office/dark{ + dir = 8 }, -/turf/simulated/floor/plating, -/area/engineering/drone_fabrication) -"lwT" = ( -/obj/structure/cable/green{ - icon_state = "4-8" +/obj/effect/landmark/start{ + name = "Atmospheric Technician" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ +/obj/effect/floor_decal/spline/plain{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/corner/brown{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/refinery) +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/break_room) "lwW" = ( /obj/structure/flora/bush/grove, /turf/simulated/floor/exoplanet/grass/grove, /area/centcom/shared_dream) -"lxb" = ( -/obj/machinery/atmospherics/valve{ - name = "Thermal Relief Valve" +"lwX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 }, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/engine_room/turbine) -"lxg" = ( -/obj/machinery/door/airlock/glass_service{ - dir = 1; - name = "Hydroponics"; - req_access = list(35) - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/full, -/area/horizon/hydroponics) -"lxs" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ +/obj/effect/floor_decal/corner/dark_green{ dir = 10 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 +/obj/structure/sign/vacuum{ + pixel_y = -32 }, -/obj/structure/cable/green{ - icon_state = "2-8" +/obj/machinery/camera/network/second_deck{ + c_tag = "Second Deck - Starboard Dock Starboard"; + dir = 1 }, -/obj/structure/lattice/catwalk/indoor, -/turf/simulated/open, -/area/operations/office) +/turf/simulated/floor/tiled, +/area/horizon/security/checkpoint2) +"lxa" = ( +/obj/machinery/light/small/emergency{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume, +/obj/effect/map_effect/marker/airlock/docking{ + landmark_tag = "nav_horizon_dock_deck_3_port_2"; + master_tag = "airlock_horizon_dock_deck_3_port_2"; + name = "airlock_horizon_dock_deck_3_port_2" + }, +/turf/simulated/floor/plating, +/area/horizon/hallway/primary/deck_3/starboard/docks) "lxw" = ( /turf/unsimulated/mineral/asteroid, /area/antag/ninja) +"lxx" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/black{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/horizon/engineering/reactor/supermatter/mainchamber) +"lxz" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 6 + }, +/obj/machinery/power/apc/east, +/obj/structure/cable/green{ + icon_state = "0-8" + }, +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/xenobiology) "lxB" = ( /obj/effect/floor_decal/spline/plain, /turf/simulated/floor/beach/sand{ @@ -80510,18 +81049,31 @@ icon_state = "beach" }, /area/centcom/shared_dream) -"lxQ" = ( -/obj/structure/cable/green{ - icon_state = "0-4" +"lxN" = ( +/obj/effect/floor_decal/spline/plain/lime{ + dir = 10 }, -/obj/machinery/power/sensor{ - name = "Powernet Sensor - Deck 1 Civilian Subgrid"; - name_tag = "Deck 1 Civilian Subgrid" +/obj/machinery/smartfridge/drying_rack, +/turf/simulated/floor/tiled/dark, +/area/horizon/service/hydroponics/garden) +"lxO" = ( +/obj/structure/disposalpipe/segment{ + icon_state = "pipe-c" }, -/obj/machinery/power/apc/low/west, -/obj/machinery/light/small, -/turf/simulated/floor/plating, -/area/maintenance/substation/hangar) +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor, +/area/horizon/maintenance/deck_3/security/port) +"lxR" = ( +/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/horizon/rnd/xenoarch/atrium) "lxU" = ( /obj/effect/floor_decal/corner/dark_blue{ dir = 9 @@ -80537,32 +81089,26 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/security/evidence_storage) -"lxW" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/structure/window/shuttle/scc_space_ship/cardinal, -/obj/structure/cable/green{ - icon_state = "0-2" +"lxV" = ( +/obj/effect/floor_decal/corner_wide/yellow/diagonal, +/obj/machinery/requests_console/south{ + department = "Engineering"; + departmentType = 1; + name = "Engineering Breakroom RC" }, -/obj/machinery/door/blast/regular/open{ - dir = 2; - id = "shutters_deck3_longbow"; - name = "Safety Blast Door" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/longbow) -"lxY" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 5 +/obj/structure/table/steel, +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/break_room) +"lya" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/effect/floor_decal/industrial/outline/research, /turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/starboard) -"lyc" = ( -/obj/structure/dispenser/oxygen, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/dark/full, -/area/storage/eva) +/area/horizon/operations/warehouse) "lyd" = ( /obj/structure/table/wood, /obj/effect/floor_decal/spline/fancy/wood{ @@ -80573,22 +81119,18 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/holodeck/source_biesel) -"lye" = ( -/obj/effect/floor_decal/industrial/warning{ +"lym" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 6 + }, +/obj/structure/platform{ dir = 8 }, -/turf/simulated/floor/plating, -/area/engineering/storage/lower) -"lyn" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ +/obj/machinery/light/floor{ dir = 4 }, -/obj/machinery/camera/network/engineering{ - c_tag = "Engineering - Deck 2 - Starboard Auxiliary Atmospherics"; - dir = 1 - }, /turf/simulated/floor/tiled, -/area/maintenance/aux_atmospherics/deck_2/starboard/wing) +/area/horizon/rnd/hallway/secondary) "lyu" = ( /obj/effect/floor_decal/corner/red{ dir = 5; @@ -80596,96 +81138,133 @@ }, /turf/simulated/floor/marble/dark, /area/horizon/holodeck/source_tribunal) -"lyx" = ( +"lyA" = ( +/obj/machinery/power/smes/buildable/substation{ + RCon_tag = "Substation - Service" + }, +/obj/structure/cable, +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/substation/civ_d2) +"lyB" = ( +/obj/effect/landmark/entry_point/starboard{ + name = "starboard, medical washroom" + }, +/turf/simulated/wall/shuttle/scc_space_ship/cardinal, +/area/horizon/medical/washroom) +"lyD" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/door/airlock/maintenance_hatch{ + dir = 4; + req_one_access = list(12,19) + }, +/turf/simulated/floor, +/area/horizon/maintenance/deck_3/aft/starboard/far) +"lyI" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/floor_decal/corner_wide/black{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/atmos/propulsion/starboard) +"lyK" = ( +/obj/machinery/door/airlock/command{ + id_tag = "rep_office_b"; + name = "Representative Office Bravo"; + req_access = list(38); + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/door/firedoor{ + req_one_access = list(24,11,67,73); + dir = 4 + }, +/turf/simulated/floor/wood, +/area/horizon/command/bridge/upperdeck) +"lyR" = ( +/obj/effect/floor_decal/corner/grey/diagonal, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/service/kitchen) +"lyS" = ( /obj/structure/cable{ icon_state = "4-8" }, -/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/lattice/catwalk/indoor/grate, /turf/simulated/floor/plating, -/area/maintenance/wing/port/far) -"lyN" = ( -/obj/machinery/firealarm/east, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 9 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/structure/bed/handrail{ - dir = 8 - }, -/obj/machinery/alarm/south{ - req_one_access = list(11, 24, 47, 65) - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/intrepid/engineering) -"lyO" = ( -/obj/structure/bed/stool/chair/sofa/corner/concave/brown{ - dir = 4 - }, -/obj/machinery/newscaster/west, -/turf/simulated/floor/wood, -/area/medical/psych) -"lyU" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/unary/vent_pump/on, +/area/horizon/engineering/hallway/interior) +"lyV" = ( /obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/effect/floor_decal/corner/brown/diagonal, -/turf/simulated/floor/tiled/dark, -/area/outpost/mining_main/eva) -"lyX" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/turf/simulated/floor/tiled/full, -/area/horizon/hallway/deck_three/primary/starboard) +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/hallway) +"lyW" = ( +/obj/machinery/portable_atmospherics/canister/air/airlock, +/obj/machinery/atmospherics/portables_connector{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/maintenance/deck_3/aft/port/far) "lza" = ( /obj/effect/floor_decal/industrial/warning{ dir = 8 }, /turf/unsimulated/floor/plating, /area/antag/mercenary) -"lzb" = ( -/obj/machinery/atmospherics/pipe/manifold/visible{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/engineering/atmos) -"lzc" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/structure/tank_wall/carbon_dioxide{ - icon_state = "co2-9" - }, -/turf/simulated/floor/airless, -/area/engineering/atmos) "lze" = ( /obj/structure/shuttle_part/scc_space_ship{ icon_state = "d3-2-f" @@ -80694,66 +81273,44 @@ dir = 8 }, /turf/simulated/floor/reinforced/airless, -/area/template_noop) -"lzh" = ( -/obj/machinery/door/airlock/multi_tile/glass{ - dir = 2; - name = "Deck 2 Stairwell" - }, -/obj/machinery/door/firedoor/multi_tile{ +/area/horizon/exterior) +"lzi" = ( +/obj/structure/bed/stool/chair/office/light{ dir = 1 }, -/turf/simulated/floor/tiled/full, -/area/operations/lobby) -"lzl" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 1 - }, -/obj/effect/floor_decal/spline/plain/corner, -/obj/effect/floor_decal/spline/plain/corner{ - dir = 8 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/carpet/rubber, -/area/tcommsat/chamber) -"lzm" = ( +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/workshop) +"lzk" = ( /obj/structure/cable/green{ - icon_state = "4-8" + icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ +/obj/effect/floor_decal/spline/plain{ dir = 9 }, -/obj/effect/floor_decal/corner/brown{ - dir = 10 +/turf/simulated/floor/lino, +/area/horizon/service/cafeteria) +"lzp" = ( +/obj/effect/floor_decal/corner/dark_green/full, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 }, -/obj/machinery/light, -/turf/simulated/floor/tiled, -/area/operations/mail_room) -"lzs" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ +/obj/machinery/light{ dir = 8 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, +/turf/simulated/floor/tiled, +/area/horizon/stairwell/starboard/deck_2) +"lzr" = ( /obj/structure/cable/green{ - icon_state = "4-8"; - d1 = 4; - d2 = 8 + icon_state = "1-2" }, -/turf/simulated/floor/wood, -/area/horizon/library) +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/floor_decal/corner/dark_green{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_3/central) "lzv" = ( /obj/effect/floor_decal/spline/plain/corner{ dir = 8 @@ -80762,35 +81319,108 @@ icon_state = "desert" }, /area/centcom/shared_dream) -"lzz" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ +"lzw" = ( +/obj/structure/closet/secure_closet/engineering_personal, +/obj/machinery/light{ dir = 4 }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 +/obj/machinery/alarm/north, +/obj/effect/floor_decal/corner/yellow/full{ + dir = 1 }, -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor, -/area/horizon/maintenance/deck_three/aft/starboard) +/obj/effect/floor_decal/industrial/outline/operations, +/turf/simulated/floor/tiled, +/area/horizon/engineering/locker_room) +"lzB" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/closet/crate, +/obj/random/loot, +/obj/random/contraband, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/maintenance/deck_2/cargo_compartment) "lzC" = ( /obj/effect/floor_decal/corner/grey{ dir = 5 }, /turf/unsimulated/floor, /area/antag/mercenary) -"lzM" = ( -/obj/effect/floor_decal/corner/dark_blue/full{ - dir = 4 +"lzH" = ( +/obj/structure/extinguisher_cabinet/north, +/obj/effect/floor_decal/corner/brown{ + dir = 5 }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ +/turf/simulated/floor/tiled, +/area/horizon/rnd/hallway) +"lzI" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/tank_wall/nitrous_oxide{ + icon_state = "n2o2" + }, +/turf/simulated/floor/plating, +/area/horizon/engineering/atmos/air) +"lzK" = ( +/obj/effect/floor_decal/spline/plain{ dir = 8 }, +/obj/effect/floor_decal/spline/plain{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_pump{ + external_pressure_bound = 0; + external_pressure_bound_default = 0; + icon_state = "map_vent_in"; + initialize_directions = 1; + internal_pressure_bound = 4000; + internal_pressure_bound_default = 4000; + pressure_checks = 2; + pressure_checks_default = 2; + pump_direction = 0; + use_power = 1 + }, +/turf/simulated/floor/carpet/rubber, +/area/horizon/tcommsat/chamber) +"lzO" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/railing/mapped, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/operations/starboard/far) +"lzP" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/alarm/south, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/rnd/telesci) +"lzQ" = ( +/obj/structure/table/standard, +/obj/item/folder/purple, +/obj/machinery/requests_console/west{ + name = "Circuitry Request Console"; + department = "Circuitry Workshop" + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/item/paper_scanner{ + pixel_y = 20 + }, +/turf/simulated/floor/carpet/rubber, +/area/horizon/rnd/lab) +"lzT" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/effect/map_effect/marker_helper/mapmanip/submap/edge{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/horizon/operations/warehouse) +"lzX" = ( +/obj/machinery/alarm/east, /turf/simulated/floor/tiled/dark, -/area/turret_protected/ai_upload) +/area/horizon/maintenance/deck_2/wing/port/nacelle) "lzY" = ( /obj/machinery/vending/snack{ name = "hacked Getmore Chocolate Corp"; @@ -80801,12 +81431,13 @@ }, /turf/unsimulated/floor/wood, /area/antag/raider) -"lzZ" = ( -/obj/structure/grille, -/obj/structure/window/shuttle/scc_space_ship, +"lAc" = ( /obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/horizon/hallway/deck_three/primary/port/docks) +/obj/machinery/door/airlock/maintenance{ + req_one_access = list(12,26,29,31,48,67) + }, +/turf/simulated/floor/tiled/full, +/area/horizon/maintenance/deck_2/cargo_compartment) "lAh" = ( /obj/effect/decal/cleanable/dirt, /obj/item/stack/rods, @@ -80817,6 +81448,22 @@ }, /turf/unsimulated/floor/plating, /area/antag/raider) +"lAi" = ( +/obj/structure/shuttle_part/scc/scout{ + icon_state = "6,8"; + opacity = 1; + outside_part = 0 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 9 + }, +/turf/simulated/floor/reinforced{ + blocks_air = 1; + density = 1; + name = "thruster mount"; + opacity = 1 + }, +/area/horizon/shuttle/canary) "lAs" = ( /obj/effect/step_trigger/thrower/shuttle/north, /obj/effect/shuttle_landmark/intrepid/transit{ @@ -80824,6 +81471,33 @@ }, /turf/space/transit/north, /area/template_noop) +"lAv" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor/plating, +/area/horizon/hallway/primary/deck_2/starboard) +"lAw" = ( +/obj/structure/table/wood, +/obj/item/device/taperecorder, +/turf/simulated/floor/carpet, +/area/horizon/crew/journalistoffice) +"lAB" = ( +/obj/structure/closet/hazmat/custodial, +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/effect/floor_decal/corner/purple{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/outline/custodial, +/turf/simulated/floor/tiled, +/area/horizon/service/custodial) "lAH" = ( /obj/effect/decal/fake_object{ dir = 4; @@ -80858,40 +81532,6 @@ name = "shallow water" }, /area/horizon/holodeck/source_konyang) -"lAI" = ( -/obj/structure/disposalpipe/segment{ - icon_state = "pipe-c" - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor, -/area/maintenance/security_port) -"lAJ" = ( -/obj/effect/floor_decal/spline/fancy/wood, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 1 - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/power/apc/north, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/wood, -/area/horizon/security/head_of_security) -"lAL" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/reinforced, -/area/rnd/xenobiology/hazardous) "lAP" = ( /obj/item/reagent_containers/food/snacks/skrellsnacks{ pixel_x = 8; @@ -80901,70 +81541,73 @@ icon_state = "desert" }, /area/centcom/shared_dream) -"lAU" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 +"lAR" = ( +/obj/structure/tank_wall/nitrous_oxide{ + density = 0; + icon_state = "h11"; + opacity = 0 }, +/obj/machinery/atmospherics/pipe/simple/visible/red{ + dir = 5 + }, +/turf/simulated/floor/reinforced/n20, +/area/horizon/engineering/atmos/air) +"lAV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/industrial/warning{ +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/corner/dark_green{ + dir = 6 + }, +/obj/machinery/button/remote/blast_door{ + dir = 4; + id = "shutters_deck2_hydroponicswindowssafety"; + name = "Viewing Shutters"; + pixel_x = 21; + pixel_y = 7 + }, +/obj/effect/floor_decal/spline/plain/green{ dir = 8 }, -/turf/simulated/floor/reinforced, -/area/engineering/gravity_gen) +/obj/machinery/disposal/small/west, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/horizon/service/hydroponics/lower) +"lAW" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/horizon/operations/mining_main/refinery) "lAX" = ( /turf/simulated/floor/tiled/dark, /area/centcom/bar) -"lBd" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/floor_decal/corner_wide/black{ - dir = 5 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 +"lBk" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/machinery/computer/general_air_control/large_tank_control/terminal{ + name = "Phoron Supply Monitor"; + output_tag = "ph_out_portthruster"; + sensors = list("ph_sensor"="Tank") }, +/obj/effect/floor_decal/industrial/outline/custodial, /turf/simulated/floor/tiled/dark, -/area/engineering/atmos/propulsion) -"lBi" = ( -/obj/machinery/air_sensor{ - frequency = 1442; - id_tag = "port_prop_sensor"; - output = 31 +/area/horizon/engineering/atmos/propulsion/starboard) +"lBt" = ( +/obj/machinery/door/blast/shutters/open{ + dir = 2; + id = "seconddeckdockext"; + name = "Security Checkpoint External Shutter" }, -/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ - dir = 10 - }, -/turf/simulated/floor/reinforced/airless, -/area/engineering/atmos/propulsion) -"lBl" = ( -/obj/structure/shuttle_part/scc/scout{ - icon_state = "7,2" - }, -/turf/simulated/floor/plating, -/area/shuttle/canary) -"lBp" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/industrial/hatch/yellow, /obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/visible/green, -/obj/structure/lattice/catwalk/indoor, -/turf/simulated/floor/plating, -/area/engineering/atmos/air) -"lBx" = ( -/obj/structure/table/steel, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small/emergency{ - dir = 1 - }, -/obj/random/loot, -/turf/simulated/floor, -/area/maintenance/security_port) +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/security/checkpoint2) "lBy" = ( /obj/item/stamp/centcomm, /obj/structure/window/reinforced/crescent{ @@ -80975,114 +81618,102 @@ icon_state = "wood" }, /area/centcom/specops) -"lBC" = ( -/obj/effect/floor_decal/industrial/hatch_door/red, -/obj/machinery/door/airlock/external{ - dir = 8 +"lBB" = ( +/obj/structure/cable/green{ + icon_state = "4-8" }, -/obj/effect/map_effect/marker_helper/airlock/exterior, -/obj/machinery/door/blast/shutters/open{ - dir = 8; - id = "intrepid_bay_outer"; - name = "Intrepid Shutter" - }, -/obj/effect/map_effect/marker/airlock{ - master_tag = "sccv_intrepid_starboard"; - name = "sccv_intrepid_starboard"; - req_one_access = null - }, -/turf/simulated/floor/tiled/dark/full, -/area/shuttle/intrepid/starboard_compartment) -"lBE" = ( -/obj/structure/closet/radiation, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/effect/floor_decal/industrial/warning{ - dir = 5 - }, -/turf/simulated/floor/tiled/full, -/area/engineering/engine_airlock) -"lBH" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/table/reinforced/steel, -/obj/item/folder/purple, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenoarch_atrium) -"lBI" = ( -/obj/machinery/light, -/turf/simulated/floor/tiled/dark, -/area/horizon/bar) -"lBK" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/door/firedoor/multi_tile, -/obj/machinery/door/airlock/multi_tile/glass{ - name = "Medical Reception" - }, -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 2; - icon_state = "shutter0"; - id = "LCKDshutters"; - name = "MedBay Lockdown Shutters"; - opacity = 0 - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/full, -/area/medical/reception) -"lBP" = ( -/obj/machinery/requests_console/east{ - department = "Journalist's Office" - }, -/obj/effect/floor_decal/spline/fancy/wood{ +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/turf/simulated/floor/wood, -/area/journalistoffice) -"lBU" = ( -/obj/effect/floor_decal/spline/fancy/wood{ +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/door/blast/shutters/open{ + dir = 8; + id = "shutters_hangardeskcpstarboard"; + name = "Security Checkpoint Shutter" + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled, +/area/horizon/security/checkpoint) +"lBF" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/light, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/corner/brown{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/horizon/operations/office) +"lBL" = ( +/obj/machinery/porta_turret, +/obj/effect/floor_decal/industrial/warning/full, +/obj/machinery/camera/network/command{ + c_tag = "AI Core - Upload"; + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/ai/upload_foyer) +"lBO" = ( +/obj/effect/floor_decal/corner/brown{ dir = 6 }, -/obj/structure/displaycase/adhomai_map, -/obj/machinery/button/remote/blast_door{ - id = "shutters_deck3_captain"; - name = "External Shutters"; - pixel_y = -18 +/obj/machinery/computer/guestpass{ + pixel_x = 32 }, -/turf/simulated/floor/wood, -/area/crew_quarters/captain) +/obj/random/pottedplant, +/turf/simulated/floor/tiled, +/area/horizon/operations/lobby) +"lBQ" = ( +/obj/structure/window/shuttle/scc_space_ship, +/obj/structure/grille, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/horizon/crew/lounge) +"lBS" = ( +/obj/effect/floor_decal/corner_wide/purple{ + dir = 10 + }, +/obj/effect/floor_decal/corner_wide/purple{ + dir = 4 + }, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/machinery/disposal/small/north, +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/xenoarch/atrium) "lBY" = ( /obj/item/modular_computer/console/preset/medical{ dir = 8 }, /turf/unsimulated/floor/rubber_carpet, /area/centcom/control) -"lBZ" = ( -/obj/structure/cable{ - icon_state = "4-8" +"lCj" = ( +/obj/structure/railing/mapped{ + dir = 4 }, -/obj/structure/cable{ - icon_state = "2-8" +/obj/effect/floor_decal/corner/black{ + dir = 6 }, -/obj/machinery/light/spot{ +/obj/effect/floor_decal/industrial/loading/yellow{ 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, -/area/operations/lobby) -"lCh" = ( -/obj/structure/table/standard, -/obj/item/device/camera_film, -/obj/item/device/camera, -/obj/effect/floor_decal/corner/beige{ - dir = 10 +/obj/effect/floor_decal/industrial/warning{ + dir = 4 }, -/turf/simulated/floor/tiled, -/area/security/vacantoffice) +/turf/simulated/floor/tiled/dark, +/area/horizon/hangar/intrepid) "lCm" = ( /obj/structure/weightlifter, /obj/structure/sign/poster/lore/tcaf2{ @@ -81093,26 +81724,69 @@ icon_state = "wood" }, /area/centcom/legion/hangar5) -"lCr" = ( -/obj/effect/floor_decal/spline/fancy/wood/corner{ +"lCn" = ( +/obj/effect/floor_decal/corner/grey/diagonal, +/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, +/turf/simulated/floor/tiled/white, +/area/horizon/service/kitchen) +"lCo" = ( +/obj/machinery/constructable_frame/machine_frame, +/obj/effect/decal/cleanable/cobweb, +/turf/simulated/floor/carpet/rubber, +/area/horizon/maintenance/deck_1/workshop) +"lCz" = ( +/obj/effect/floor_decal/corner_wide/green{ + dir = 6 + }, +/obj/machinery/vending/lavatory, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/ward) +"lCB" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/carpet, +/area/horizon/command/heads/captain) +"lCF" = ( +/obj/effect/floor_decal/spline/plain, +/turf/simulated/floor/marble/dark, +/area/horizon/command/bridge/minibar) +"lCG" = ( +/obj/effect/floor_decal/corner_wide/yellow/full{ dir = 8 }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/bridge/meeting_room) -"lCv" = ( -/turf/simulated/wall/r_wall, -/area/maintenance/research_port) -"lCw" = ( -/obj/machinery/light, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ +/obj/effect/floor_decal/industrial/warning/corner{ dir = 4 }, -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/engine_monitoring/rust) +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/button/remote/blast_door{ + dir = 6; + id = "engineering_storage"; + name = "Engineering Hard Storage"; + pixel_y = 25; + req_one_access = list(11,24) + }, +/turf/simulated/floor/tiled, +/area/horizon/engineering/hallway/interior) +"lCH" = ( +/obj/machinery/camera/network/medbay{ + c_tag = "Medical - Morgue"; + dir = 1 + }, +/obj/effect/floor_decal/corner/lime/diagonal, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/white{ + name = "cooled white floor"; + temperature = 278.15 + }, +/area/horizon/medical/morgue) "lCI" = ( /obj/effect/floor_decal/corner/green/diagonal, /obj/effect/floor_decal/spline/fancy{ @@ -81127,24 +81801,36 @@ }, /turf/simulated/floor/tiled/white, /area/centcom/shared_dream) -"lCM" = ( +"lCP" = ( +/obj/effect/landmark/entry_point/port{ + name = "port, escape pods" + }, +/turf/simulated/wall/shuttle/scc_space_ship/cardinal, +/area/horizon/hangar/auxiliary) +"lCR" = ( +/obj/machinery/door/blast/regular{ + dir = 2; + id = "EngineEmitterPortWest"; + name = "Supermatter Reactor Waste Management Blast Door" + }, +/turf/simulated/floor/tiled/full, +/area/horizon/engineering/reactor/supermatter/waste) +"lCS" = ( +/obj/effect/floor_decal/corner/green{ + dir = 9 + }, /obj/structure/cable/green{ - icon_state = "4-8" + icon_state = "1-4" }, -/turf/simulated/floor/tiled/dark, -/area/bridge/aibunker) -"lCT" = ( -/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/effect/floor_decal/corner_wide/yellow{ - dir = 10 +/turf/simulated/floor/tiled/white, +/area/horizon/crew/fitness/showers) +"lCU" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 6 }, +/obj/machinery/alarm/east, /turf/simulated/floor/tiled, -/area/hallway/engineering/rust) +/area/horizon/hangar/auxiliary) "lCW" = ( /obj/structure/cryofeed{ dir = 1 @@ -81156,54 +81842,21 @@ /obj/structure/lattice/catwalk/indoor/grate/dark, /turf/unsimulated/floor/plating, /area/centcom/holding) -"lCX" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 10 - }, -/obj/structure/cable/green, -/obj/machinery/camera/network/first_deck{ - c_tag = "First Deck - Hangar 8"; - dir = 1 - }, -/obj/machinery/power/apc/super/south, -/turf/simulated/floor/tiled/dark, -/area/hangar/intrepid) -"lDb" = ( -/obj/machinery/door/window/westleft{ - name = "Auxillary Cryogenics" - }, -/turf/simulated/floor/carpet/cyan, -/area/centcom/ferry) -"lDd" = ( -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/obj/machinery/alarm/east, -/turf/simulated/floor/plating, -/area/maintenance/substation/civilian_west) -"lDf" = ( -/obj/structure/closet/walllocker/medical/firstaid{ - pixel_y = -32 - }, -/obj/effect/floor_decal/industrial/outline/medical, -/obj/effect/floor_decal/spline/plain{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/hallway/primary/central_one) -"lDi" = ( +"lCY" = ( /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, -/obj/machinery/light/small/emergency{ - dir = 4 +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/reactor/indra/smes) +"lDb" = ( +/obj/machinery/door/window/westleft{ + name = "Auxillary Cryogenics" }, -/turf/simulated/floor/plating, -/area/maintenance/aft) +/turf/simulated/floor/carpet/cyan, +/area/centcom/ferry) "lDk" = ( /obj/structure/closet/crate/loot{ desc = "A worn container that has been through many long travels."; @@ -81214,37 +81867,88 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled, /area/merchant_station/warehouse) +"lDl" = ( +/obj/machinery/door/airlock/external{ + dir = 1; + frequency = 1380; + icon_state = "door_locked"; + id_tag = "centcom_shuttle_dock_inner"; + locked = 1; + name = "Docking Port Airlock"; + req_access = list(13) + }, +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor/plating, +/area/horizon/security/checkpoint2) +"lDo" = ( +/obj/effect/map_effect/window_spawner/full/reinforced/polarized/firedoor{ + id = "journalist" + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/crew/journalistoffice) "lDp" = ( /obj/effect/floor_decal/carpet{ dir = 4 }, /turf/simulated/floor/holofloor/carpet, /area/horizon/holodeck/source_meetinghall) -"lDq" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 4 - }, -/obj/effect/floor_decal/corner/yellow, -/turf/simulated/floor/tiled/dark, -/area/engineering/engine_room/turbine) -"lDs" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 10 - }, -/obj/machinery/camera/network/second_deck{ - c_tag = "Second Deck - Living Quarters Lift"; - dir = 1 - }, -/obj/effect/landmark/latejoin, -/turf/simulated/floor/tiled, -/area/horizon/crew_quarters/cryo/living_quarters_lift) -"lDD" = ( -/obj/structure/table/wood, +"lDr" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/effect/floor_decal/spline/fancy/wood{ - dir = 1 + dir = 7 }, /turf/simulated/floor/wood, -/area/horizon/hallway/deck_three/primary/central) +/area/horizon/service/chapel/main) +"lDu" = ( +/obj/effect/map_effect/window_spawner/full/borosilicate/reinforced, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 2; + icon_state = "pdoor0"; + id = "SupermatterPort"; + name = "Supermatter Reactor Crystal Viewing Blast Door"; + opacity = 0 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/reactor/supermatter/mainchamber) +"lDy" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/camera/network/supply{ + c_tag = "Operations - Hangar Port Fore"; + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/horizon/hangar/operations) +"lDz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/horizon/operations/lobby) +"lDI" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/hallway/upper) "lDN" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -81268,13 +81972,6 @@ }, /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; @@ -81319,30 +82016,17 @@ name = "shallow water" }, /area/horizon/holodeck/source_konyang) -"lDR" = ( -/obj/structure/bed/stool/bar/padded/red, -/turf/simulated/floor/wood, -/area/maintenance/wing/starboard) -"lDT" = ( -/obj/effect/shuttle_landmark/horizon/dock/deck_3/starboard_1{ - dir = 4 +"lDS" = ( +/obj/effect/floor_decal/corner/yellow/full{ + dir = 1 }, -/obj/machinery/door/airlock/external{ - dir = 4 +/obj/structure/sign/nosmoking_1{ + pixel_y = 32 }, -/obj/machinery/access_button{ - dir = 8; - pixel_x = -12; - pixel_y = -28 - }, -/obj/effect/map_effect/marker_helper/airlock/exterior, -/obj/effect/map_effect/marker/airlock/docking{ - landmark_tag = "nav_horizon_dock_deck_3_starboard_1"; - master_tag = "airlock_horizon_dock_deck_3_starboard_1"; - name = "airlock_horizon_dock_deck_3_starboard_1" - }, -/turf/simulated/floor/plating, -/area/horizon/hallway/deck_three/primary/starboard/docks) +/obj/machinery/vending/engivend, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/storage/tech) "lDU" = ( /obj/structure/table/wood, /obj/item/flame/candle, @@ -81357,61 +82041,31 @@ }, /turf/simulated/floor/wood/yew, /area/centcom/shared_dream) -"lDZ" = ( -/obj/structure/cable{ - icon_state = "4-8" +"lDX" = ( +/obj/structure/morgue, +/turf/simulated/floor/tiled/freezer{ + name = "cooled tiles"; + temperature = 278.15 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 +/area/horizon/medical/morgue) +"lDY" = ( +/obj/structure/grille, +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id = "bridge blast"; + name = "Bridge Blast Doors"; + opacity = 0 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 +/obj/machinery/door/firedoor, +/obj/structure/window/shuttle/scc_space_ship/cardinal, +/obj/machinery/door/blast/shutters/open{ + dir = 4; + id = "shutters_deck3_bridgesafety"; + name = "Safety Shutter" }, -/obj/structure/lattice/catwalk/indoor/grate/dark, /turf/simulated/floor/plating, -/area/maintenance/wing/port) -"lEa" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/maintenance/wing/port/far) -"lEb" = ( -/obj/effect/floor_decal/corner/purple/full, -/obj/structure/closet/hazmat/custodial, -/obj/effect/floor_decal/industrial/outline/custodial, -/obj/machinery/power/apc/west, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/item/device/radio/intercom/south, -/obj/structure/cable/green, -/turf/simulated/floor/tiled, -/area/horizon/custodial/auxiliary) -"lEc" = ( -/obj/effect/floor_decal/corner/mauve/full{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology) -"lEd" = ( -/obj/effect/floor_decal/spline/plain/blue{ - dir = 8 - }, -/obj/effect/floor_decal/spline/plain/red{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/horizon/hydroponics/lower) +/area/horizon/stairwell/bridge) "lEi" = ( /obj/effect/floor_decal/industrial/warning{ dir = 1 @@ -81428,73 +82082,36 @@ /obj/random/soap, /turf/simulated/floor/tiled/freezer, /area/horizon/security/brig) -"lEm" = ( -/obj/structure/table/standard, -/obj/item/book/manual/wiki/security_space_law{ - pixel_x = -4; - pixel_y = 17 - }, -/obj/item/stamp/denied{ - pixel_x = -7 - }, -/obj/item/paper_bin{ - pixel_x = 6; - pixel_y = 2 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled/full, -/area/bridge/cciaroom) -"lEq" = ( -/obj/structure/cable{ - icon_state = "2-4" +"lEp" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 5 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 6 }, -/obj/structure/lattice/catwalk/indoor/grate/damaged{ - color = "#4c535b" +/obj/structure/platform, +/obj/structure/engineer_maintenance/electric{ + dir = 4 }, -/obj/effect/decal/cleanable/greenglow, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard/deck1) +/turf/simulated/floor/tiled/dark, +/area/horizon/command/bridge/controlroom) "lEu" = ( /turf/unsimulated/wall/darkshuttlewall, /area/centcom/spawning) -"lEw" = ( -/obj/structure/cable/green{ - icon_state = "4-8" +"lEv" = ( +/obj/effect/landmark/entry_point/aft{ + name = "aft engines, port 3" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/tiled/dark, -/area/engineering/atmos) +/turf/space/dynamic, +/area/horizon/engineering/atmos/propulsion/starboard) "lEx" = ( /obj/structure/table/rack/holorack, /obj/effect/floor_decal/spline/fancy/wood/cee, /turf/simulated/floor/holofloor/wood, /area/horizon/holodeck/source_theatre) -"lEy" = ( -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled/dark, -/area/horizon/hallway/deck_three/primary/port) +"lEE" = ( +/turf/simulated/floor/lino/diamond, +/area/horizon/service/library) "lEF" = ( /obj/effect/floor_decal/industrial/warning{ dir = 6 @@ -81526,6 +82143,26 @@ name = "overgrowth" }, /area/horizon/holodeck/source_moghes) +"lEK" = ( +/obj/machinery/power/apc/west, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/table/reinforced/wood, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/obj/machinery/case_button/shuttle{ + pixel_x = 4; + pixel_y = 15 + }, +/obj/item/flame/lighter/zippo{ + pixel_x = -8 + }, +/obj/item/card/id/captains_spare, +/turf/simulated/floor/wood, +/area/horizon/command/heads/captain) "lEL" = ( /obj/structure/bed/stool/chair/office/bridge{ dir = 8 @@ -81540,53 +82177,39 @@ icon_state = "dark_preview" }, /area/centcom/control) -"lEN" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 +"lES" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 5 }, -/obj/structure/table/rack, -/obj/item/storage/toolbox/emergency, -/obj/item/storage/box/gloves, -/obj/item/storage/box/lights/mixed{ - pixel_x = 5; - pixel_y = -2 - }, -/obj/item/storage/box/samplebags, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenoarch_storage) -"lEQ" = ( -/obj/machinery/button/remote/blast_door{ - id = "shutters_deck1_morgue2"; - name = "Viewing Shutters"; - dir = 4; - pixel_x = 20 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lime{ - dir = 10 - }, -/turf/simulated/floor/tiled/white{ - name = "cooled white floor"; - temperature = 278.15 - }, -/area/medical/morgue/lower) -"lET" = ( -/obj/effect/floor_decal/corner_wide/blue{ - dir = 1 - }, -/obj/effect/floor_decal/corner_wide/yellow{ +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/obj/effect/floor_decal/corner_wide/yellow{ - dir = 8 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 }, -/obj/effect/floor_decal/spline/plain{ - dir = 9 +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/spline/plain/purple{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 }, /turf/simulated/floor/tiled, -/area/engineering/atmos/storage) +/area/horizon/service/hydroponics) +"lEX" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/aux, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel, +/obj/structure/platform_stairs/south_north_solo, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/main/port) "lEY" = ( /obj/effect/floor_decal/corner/brown/diagonal, /obj/machinery/camera/network/third_deck{ @@ -81595,49 +82218,56 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/holodeck_control/beta) -"lFa" = ( -/obj/machinery/hologram/holopad/long_range, -/obj/effect/overmap/visitable/ship/landable/mining_shuttle, -/turf/simulated/floor/tiled/dark, -/area/shuttle/mining) -"lFh" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_two) -"lFo" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/cable/green{ - icon_state = "2-4" - }, -/obj/structure/lattice/catwalk/indoor/grate, -/turf/simulated/floor, -/area/bridge) -"lFt" = ( -/obj/structure/cable/green{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/structure/disposalpipe/segment{ +"lEZ" = ( +/turf/simulated/wall, +/area/horizon/engineering/gravity_gen) +"lFg" = ( +/obj/machinery/door/firedoor, +/obj/effect/floor_decal/industrial/warning{ dir = 4 }, -/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/door/airlock/maintenance_hatch{ + dir = 4; + req_one_access = list(12,47) + }, /turf/simulated/floor/plating, -/area/horizon/maintenance/deck_two/fore/port) +/area/horizon/maintenance/deck_1/main/starboard) +"lFk" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/rnd/xenoarch/atrium) +"lFm" = ( +/obj/effect/floor_decal/corner/white/diagonal, +/obj/effect/floor_decal/industrial/warning, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/horizon/medical/paramedic) +"lFp" = ( +/obj/structure/bed/stool/chair/unmovable, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/carpet/rubber, +/area/horizon/rnd/xenobiology/dissection) +"lFr" = ( +/obj/structure/bed/stool/chair/shuttle{ + dir = 4 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/shuttle/dark_blue, +/area/horizon/shuttle/escape_pod/pod2) "lFw" = ( /obj/structure/lattice/catwalk, /obj/structure/railing/mapped{ @@ -81646,22 +82276,6 @@ /obj/item/hullbeacon/red, /turf/simulated/open/airless, /area/horizon/exterior) -"lFx" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/corner/dark_green{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/starboard) -"lFD" = ( -/obj/machinery/alarm/south, -/turf/simulated/floor/tiled/dark, -/area/engineering/atmos/propulsion/starboard) "lFF" = ( /obj/effect/floor_decal/corner/blue{ dir = 5 @@ -81669,94 +82283,97 @@ /obj/effect/floor_decal/corner/blue, /turf/simulated/floor/holofloor/tiled, /area/horizon/holodeck/source_lasertag) -"lFG" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 4 - }, -/obj/effect/floor_decal/corner/yellow, -/turf/simulated/floor/tiled/dark, -/area/engineering/engine_room/turbine) "lFH" = ( /obj/effect/floor_decal/corner/red{ dir = 6 }, /turf/simulated/floor/holofloor/tiled, /area/horizon/holodeck/source_lasertag) -"lFK" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 6 +"lFJ" = ( +/obj/effect/map_effect/window_spawner/full/shuttle/scc{ + spawn_firedoor = 1; + spawn_grille = 1 }, -/obj/structure/reagent_dispensers/water_cooler, -/turf/simulated/floor/carpet/rubber, -/area/engineering/engine_monitoring/rust) -"lFL" = ( -/obj/structure/flora/ausbushes/ppflowers, -/obj/structure/flora/ausbushes/brflowers, -/obj/structure/flora/ausbushes/ywflowers, -/obj/structure/railing/mapped{ +/obj/machinery/door/blast/shutters/open{ + id = "intrepid_bay_windows"; + name = "Intrepid Shutter" + }, +/turf/simulated/floor/plating, +/area/horizon/shuttle/intrepid/flight_deck) +"lFM" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow, +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ dir = 4 }, -/obj/structure/railing/mapped, -/turf/simulated/floor/grass/no_edge, -/area/rnd/hallway/secondary) -"lFP" = ( -/obj/structure/cable{ - icon_state = "1-4" +/turf/simulated/floor/plating, +/area/horizon/engineering/reactor/supermatter/mainchamber) +"lFN" = ( +/obj/structure/table/reinforced/steel, +/obj/machinery/door/window/westright{ + req_one_access = list(26,29,31,48,67,35,25,28,37) }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/effect/floor_decal/corner_wide/yellow{ - dir = 10 +/obj/machinery/door/blast/shutters{ + dir = 4; + id = "horizon_commissary_desk" }, /turf/simulated/floor/tiled/dark/full, -/area/storage/shields) +/area/horizon/operations/commissary) "lFQ" = ( /turf/unsimulated/floor/plating, /area/centcom/legion/hangar5) -"lFS" = ( -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/machinery/power/apc/super/east, -/obj/machinery/computer/security/engineering/terminal{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/red{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/outline/operations, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/atmos/propulsion/starboard) -"lGk" = ( -/obj/effect/floor_decal/corner_wide/lime{ - dir = 10 - }, -/obj/structure/bed/stool/chair{ +"lFR" = ( +/obj/effect/floor_decal/industrial/warning{ dir = 1 }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/visible/yellow, /turf/simulated/floor/tiled/white, -/area/medical/reception) -"lGl" = ( -/obj/machinery/portable_atmospherics/canister/empty/air, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ +/area/horizon/rnd/xenoarch/isolation_b) +"lFZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/maintenance/substation/wing_port) +"lGh" = ( +/obj/structure/bed/stool/chair/shuttle{ dir = 8 }, -/turf/simulated/floor/plating, -/area/maintenance/wing/port/far) -"lGz" = ( +/obj/effect/floor_decal/industrial/outline/security, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/shuttle/intrepid/flight_deck) +"lGv" = ( /obj/effect/floor_decal/corner/mauve{ dir = 10 }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 }, -/turf/simulated/floor/tiled, -/area/rnd/hallway) +/obj/machinery/firealarm/south, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/light_switch{ + pixel_x = 6; + pixel_y = -25 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/rnd/xenobiology/xenoflora) +"lGy" = ( +/obj/machinery/power/apc/west, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/obj/structure/cable/green, +/turf/simulated/floor/wood, +/area/horizon/crew/journalistoffice) "lGB" = ( /obj/effect/floor_decal/corner/paleblue{ dir = 5 @@ -81767,19 +82384,30 @@ "lGC" = ( /turf/unsimulated/floor/monotile, /area/antag/ninja) -"lGD" = ( -/obj/structure/lattice, -/obj/machinery/light{ - dir = 8 +"lGE" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 10 }, -/turf/simulated/open, -/area/operations/office) +/obj/effect/floor_decal/spline/plain/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/black{ + dir = 5 + }, +/obj/machinery/camera/motion{ + network = list("Command","Security","Tcomsat"); + c_tag = "Telecommunications - Central Compartment Starboard"; + dir = 4 + }, +/obj/machinery/light, +/turf/simulated/floor/carpet/rubber, +/area/horizon/tcommsat/chamber) "lGH" = ( /obj/machinery/atmospherics/pipe/simple/visible/yellow{ dir = 4 }, /turf/simulated/floor/reinforced, -/area/outpost/research/anomaly_harvest) +/area/horizon/rnd/xenoarch/anomaly_harvest) "lGI" = ( /obj/structure/closet{ icon_door = "blue"; @@ -81794,6 +82422,11 @@ icon_state = "wood" }, /area/centcom/legion) +"lGL" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/reagent_dispensers/cookingoil, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/port) "lGP" = ( /obj/item/stack/rods, /obj/effect/decal/fake_object{ @@ -81804,16 +82437,18 @@ }, /turf/unsimulated/floor/plating, /area/antag/raider) -"lGZ" = ( -/obj/structure/table/standard, -/obj/machinery/requests_console/west{ - department = "Xenobiology Lab"; - name = "Xenobiology Requests Console" +"lGY" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + icon_state = "1-2" }, -/obj/effect/floor_decal/corner/mauve/full, -/obj/item/glass_jar, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology/foyer) +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/corner/dark_green{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/horizon/hangar/intrepid/interstitial) "lHb" = ( /obj/effect/floor_decal/corner/dark_blue/full{ dir = 4 @@ -81826,40 +82461,6 @@ }, /turf/simulated/floor/tiled, /area/horizon/security/lobby) -"lHh" = ( -/obj/structure/railing/mapped, -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/structure/lattice, -/obj/structure/platform/ledge{ - dir = 1 - }, -/obj/structure/platform/ledge{ - dir = 8 - }, -/obj/structure/platform_deco/ledge{ - dir = 6 - }, -/turf/simulated/open, -/area/hallway/primary/central_one) -"lHt" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/structure/closet/gmcloset, -/obj/item/flame/lighter/zippo, -/obj/item/storage/box/fancy/candle_box, -/obj/item/storage/box/fancy/candle_box, -/obj/item/device/quikpay, -/obj/item/storage/box/fancy/matches, -/obj/structure/extinguisher_cabinet/west, -/obj/effect/floor_decal/industrial/outline/grey, -/turf/simulated/floor/tiled/dark, -/area/horizon/bar/backroom) -"lHv" = ( -/turf/simulated/floor/wood, -/area/bridge/meeting_room) "lHw" = ( /obj/structure/closet/secure_closet/brig{ id = "cell_isolation" @@ -81899,55 +82500,46 @@ /obj/effect/floor_decal/corner/dark_blue/diagonal, /turf/simulated/floor/tiled, /area/horizon/security/hallway) -"lHz" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ +"lHy" = ( +/obj/effect/map_effect/window_spawner/full/reinforced/grille/firedoor, +/obj/structure/cable/green{ + icon_state = "0-8" + }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/machinery/door/blast/regular/open{ + id = "AICore"; + name = "AI Core Blast Door"; dir = 4 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/simulated/floor/tiled/dark, +/area/horizon/ai/upload) +"lHA" = ( +/obj/machinery/camera/network/reactor{ + c_tag = "Engineering - INDRA Room 2" }, -/obj/item/device/radio/intercom/north, -/turf/simulated/floor/tiled/white, -/area/medical/ors) +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/reactor/indra/mainchamber) "lHC" = ( /turf/simulated/floor/holofloor/beach/sand{ icon_state = "desert2" }, /area/horizon/holodeck/source_desert) -"lHK" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/lattice/catwalk/indoor/grate, -/turf/simulated/floor, -/area/bridge) -"lHL" = ( -/obj/machinery/light{ +"lHG" = ( +/obj/effect/floor_decal/corner/dark_green/full{ dir = 1 }, -/obj/effect/floor_decal/corner/dark_blue/full{ +/obj/structure/engineer_maintenance/electric{ dir = 1 }, -/obj/machinery/camera/network/command{ - c_tag = "Bridge - Aft"; - dir = 8 - }, -/obj/machinery/papershredder{ - pixel_x = 7 - }, -/obj/structure/filingcabinet{ - pixel_x = -9 - }, /turf/simulated/floor/tiled, -/area/bridge/controlroom) -"lHO" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 10 - }, -/turf/simulated/floor/reinforced/airless, -/area/template_noop) +/area/horizon/hallway/primary/deck_2/fore) +"lHN" = ( +/obj/structure/table/wood/gamblingtable, +/obj/machinery/light/small/emergency, +/turf/simulated/floor/wood, +/area/horizon/maintenance/deck_2/wing/port) "lHP" = ( /obj/structure/grille/diagonal{ dir = 4 @@ -81955,6 +82547,15 @@ /obj/structure/lattice, /turf/space/dynamic, /area/horizon/exterior) +"lHX" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 6 + }, +/obj/structure/bed/stool/chair/padded/beige{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_2/starboard) "lHY" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -81968,29 +82569,6 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/holodeck_control/beta) -"lIa" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/corner/dark_green{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_two) -"lIb" = ( -/obj/machinery/mineral/stacking_machine{ - id = "horizon_stacking_3"; - dir = 8 - }, -/obj/effect/floor_decal/industrial/warning/full, -/turf/simulated/floor/plating, -/area/outpost/mining_main/refinery) -"lIf" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/item/hullbeacon/red, -/turf/simulated/floor/reinforced/airless, -/area/template_noop) -"lIg" = ( -/turf/simulated/wall, -/area/medical/morgue/lower) "lIh" = ( /obj/effect/floor_decal/corner/dark_blue{ dir = 10 @@ -82037,95 +82615,116 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/unsimulated/floor, /area/antag/mercenary) -"lIu" = ( -/obj/effect/floor_decal/corner/brown{ - dir = 5 +"lIk" = ( +/obj/machinery/portable_atmospherics/hydroponics, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/sign/securearea{ + pixel_x = -32 }, -/obj/machinery/camera/network/mining{ - c_tag = "Mining - Locker Room" - }, -/obj/structure/table/standard, -/obj/item/device/suit_cooling_unit, -/obj/item/storage/toolbox/mechanical, -/obj/item/storage/belt/utility, -/obj/item/stack/rods/full{ - pixel_y = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/outpost/mining_main/eva) -"lIw" = ( -/obj/structure/railing/mapped, -/obj/structure/railing/mapped{ +/obj/machinery/light/colored/blue{ dir = 8 }, -/turf/simulated/open, -/area/maintenance/wing/starboard) +/obj/machinery/atmospherics/portables_connector{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/service/hydroponics/lower) +"lIm" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/visible/supply{ + dir = 8 + }, +/obj/structure/lattice/catwalk/indoor, +/turf/simulated/floor/plating, +/area/horizon/engineering/atmos/air) +"lIp" = ( +/obj/machinery/door/airlock/command{ + dir = 4; + id_tag = "conference_room"; + name = "Conference Room"; + req_one_access = list(19,38,72) + }, +/obj/machinery/door/firedoor, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/horizon/command/bridge/meeting_room) +"lIq" = ( +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 4; + icon_state = "shutter0"; + id = "LCKDshutters"; + name = "MedBay Lockdown Shutters"; + opacity = 0 + }, +/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/medical/main_storage) +"lIx" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/obj/structure/extinguisher_cabinet/east, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/reactor/supermatter/mainchamber) "lIy" = ( /obj/effect/floor_decal/corner/dark_blue{ dir = 6 }, /turf/simulated/floor/tiled, /area/horizon/security/lobby) -"lIE" = ( -/obj/structure/cable{ - icon_state = "1-2" +"lIC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/closet/crate, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/starboard) +"lID" = ( +/obj/structure/cable/green{ + icon_state = "2-8" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/visible/supply{ +/obj/machinery/atmospherics/binary/pump/aux/on{ dir = 8 }, -/obj/structure/lattice/catwalk/indoor, -/turf/simulated/floor/plating, -/area/engineering/atmos/air) -"lII" = ( -/obj/effect/floor_decal/spline/fancy/wood/corner{ - dir = 4 +/obj/effect/floor_decal/industrial/warning{ + dir = 5 }, -/turf/simulated/floor/wood, -/area/bridge/meeting_room) -"lIM" = ( -/obj/item/bodybag/cryobag{ - pixel_y = -3 +/obj/machinery/power/sensor{ + name = "Powernet Sensor - Deck 3 Command Bunker"; + name_tag = "Deck 3 Command Bunker Grid" }, -/obj/item/bodybag/cryobag{ - pixel_x = 7; - pixel_y = -3 - }, -/obj/item/clothing/mask/surgical, -/obj/item/clothing/mask/surgical, -/obj/item/clothing/glasses/hud/health{ - pixel_x = 7; - pixel_y = 4 - }, -/obj/effect/floor_decal/corner/lime/diagonal, -/obj/item/reagent_containers/inhaler/pneumalin{ - pixel_x = 7; - pixel_y = -1 - }, -/obj/item/reagent_containers/inhaler/pneumalin{ - pixel_x = -1; - pixel_y = -1 - }, -/obj/effect/floor_decal/industrial/outline/medical, -/obj/structure/table/standard, -/obj/item/storage/firstaid/fire{ - pixel_x = 7; - pixel_y = 17 - }, -/obj/item/storage/firstaid/toxin{ - pixel_x = -8; - pixel_y = 17 +/obj/structure/cable/green{ + icon_state = "0-8" }, +/turf/simulated/floor, +/area/horizon/command/bridge/aibunker) +"lIN" = ( /obj/machinery/light/small{ - dir = 4 + dir = 8 }, -/obj/item/storage/firstaid/o2{ - pixel_x = -8; - pixel_y = 8 +/obj/effect/floor_decal/corner/purple{ + dir = 9 }, -/turf/simulated/floor/tiled/white, -/area/shuttle/intrepid/medical) +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/trash_pile, +/obj/structure/railing/mapped, +/obj/random/loot, +/turf/simulated/floor/tiled/dark, +/area/horizon/service/custodial/disposals/deck_1) "lIP" = ( /obj/item/storage/bag/inflatable{ pixel_y = 2 @@ -82139,27 +82738,6 @@ /obj/structure/table/steel, /turf/unsimulated/floor/plating, /area/centcom/specops) -"lIV" = ( -/obj/structure/table/stone/marble, -/obj/machinery/requests_console/south{ - department = "Kitchen"; - departmentType = 1; - name = "Kitchen Requests Console" - }, -/obj/structure/closet/walllocker/medical/firstaid{ - pixel_y = -32 - }, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/kitchen) -"lIW" = ( -/obj/effect/floor_decal/corner_wide/yellow/diagonal, -/obj/structure/table/steel, -/obj/item/storage/box/fancy/donut{ - pixel_y = 5 - }, -/obj/machinery/newscaster/east, -/turf/simulated/floor/tiled/dark, -/area/engineering/break_room) "lIY" = ( /obj/structure/bed, /obj/item/bedsheet/syndie, @@ -82171,21 +82749,27 @@ }, /turf/unsimulated/floor/wood, /area/antag/mercenary) -"lIZ" = ( -/obj/effect/floor_decal/industrial/outline/grey, -/obj/structure/closet/crate/plastic{ - name = "folding chairs and tables crate" +"lJa" = ( +/obj/machinery/door/firedoor, +/obj/effect/map_effect/door_helper/unres, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/blast/shutters/open{ + dir = 2; + id = "securitycommandshutter"; + name = "Security Checkpoint External Shutter" }, -/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) +/obj/machinery/door/airlock/glass_command{ + dir = 1; + id_tag = "command_foyer"; + name = "Bridge"; + req_one_access = list(19,38,72) + }, +/obj/effect/map_effect/door_helper/level_access/command_foyer{ + req_one_access_by_level = list("green","yellow"=list(19,38,72),"blue"=list(19,38,72),"red"=list(19,38,72),"delta"=list(19,38,72)); + access_by_level = null + }, +/turf/simulated/floor/tiled/full, +/area/horizon/hallway/primary/deck_3/central) "lJb" = ( /obj/machinery/door/airlock/external{ dir = 4; @@ -82198,51 +82782,77 @@ }, /turf/simulated/floor/shuttle/black, /area/shuttle/specops) -"lJc" = ( -/obj/structure/table/glass{ - table_reinf = "glass" +"lJd" = ( +/obj/machinery/light{ + dir = 8 }, -/obj/item/paper_bin, -/obj/item/pen, -/obj/effect/floor_decal/corner_wide/green{ - dir = 6 +/obj/machinery/requests_console/west{ + department = "Vacant Office" }, -/turf/simulated/floor/tiled/white, -/area/hallway/medical/upper) +/obj/effect/floor_decal/corner/beige{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/horizon/crew/vacantoffice) "lJe" = ( /obj/effect/floor_decal/industrial/outline/yellow, /obj/structure/closet/crate/drop, /turf/simulated/floor/reinforced, /area/shuttle/mercenary) -"lJf" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden{ - dir = 4 - }, -/turf/simulated/floor/bluegrid/server, -/area/server) -"lJi" = ( -/obj/machinery/atmospherics/pipe/manifold/visible{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/engineering/atmos) "lJj" = ( /obj/effect/floor_decal/corner/green{ dir = 5 }, /turf/simulated/floor/holofloor/tiled, /area/horizon/holodeck/source_emptycourt) -"lJl" = ( -/obj/machinery/atmospherics/unary/vent_pump/siphon/on/atmos{ - dir = 1; - id_tag = "Ph_out_FuelBay" +"lJm" = ( +/obj/machinery/light{ + dir = 4 }, -/turf/simulated/floor/reinforced/phoron, -/area/engineering/atmos) -"lJq" = ( -/obj/structure/stairs/south, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) +/obj/effect/floor_decal/industrial/outline/service, +/obj/machinery/seed_storage/garden/hydroponics, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/service/hydroponics/lower) +"lJn" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/aux, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/main/port) +"lJo" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/horizon/hangar/auxiliary) +"lJr" = ( +/obj/structure/platform_stairs, +/turf/simulated/floor, +/area/horizon/maintenance/deck_2/wing/starboard/far) +"lJs" = ( +/obj/structure/sign/nosmoking_1{ + pixel_y = 32 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/main/port) +"lJu" = ( +/obj/effect/floor_decal/corner/dark_blue/diagonal, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/security/checkpoint2) "lJw" = ( /turf/simulated/wall/r_wall, /area/horizon/security/evidence_storage) @@ -82251,63 +82861,30 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/unsimulated/floor/monotile, /area/antag/mercenary) -"lJy" = ( -/obj/structure/bed/stool/chair/shuttle{ - dir = 4 +"lJD" = ( +/obj/structure/bed/stool/chair/sofa/pew/left{ + dir = 8 }, -/obj/machinery/light{ - dir = 1 +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 5 }, -/turf/simulated/floor/shuttle/dark_blue, -/area/shuttle/escape_pod/pod2) +/turf/simulated/floor/wood, +/area/horizon/service/chapel/main) "lJE" = ( /obj/effect/floor_decal/industrial/warning{ dir = 5 }, /turf/unsimulated/floor/plating, /area/antag/mercenary) -"lJJ" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/effect/floor_decal/corner/mauve/full, -/obj/machinery/button/remote/airlock{ - id = "xeno_entrance_int_a"; - name = "Xenobiology External Access Bolts"; - pixel_y = 3; - req_access = list(55); - specialfunctions = 4; - dir = 8; - pixel_x = -22; - desiredstate = 1 - }, -/obj/machinery/camera/network/research{ - c_tag = "Research - Xenobiology Entrance"; - dir = 1; - network = list("Research","Xeno_Bio") - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology) -"lJK" = ( -/obj/effect/floor_decal/industrial/warning{ +"lJH" = ( +/obj/effect/floor_decal/corner/lime/full{ dir = 1 }, -/obj/structure/tank_wall/phoron{ - icon_state = "ph2" +/turf/simulated/floor/tiled/white{ + name = "cooled white floor"; + temperature = 278.15 }, -/obj/machinery/atmospherics/pipe/simple/visible/purple, -/turf/simulated/floor/airless, -/area/engineering/atmos) -"lJL" = ( -/obj/machinery/door/airlock/maintenance{ - dir = 4; - name = "Xenobotany Maintenance"; - req_access = list(52) - }, -/obj/machinery/door/firedoor{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora) +/area/horizon/medical/morgue) "lJM" = ( /obj/effect/floor_decal/corner/dark_blue{ dir = 9 @@ -82324,26 +82901,23 @@ }, /turf/simulated/floor/tiled, /area/horizon/security/hallway) -"lJU" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/table/rack, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/unsimulated/floor/linoleum, -/area/antag/actor) -"lJX" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/structure/table/steel, -/obj/item/storage/toolbox/electrical, -/obj/item/storage/toolbox/mechanical{ - pixel_y = -9 - }, -/obj/structure/railing/mapped{ +"lJP" = ( +/obj/effect/floor_decal/corner/dark_blue/diagonal, +/obj/effect/floor_decal/spline/plain/black{ dir = 8 }, +/obj/effect/floor_decal/industrial/arrow/yellow, /turf/simulated/floor/tiled/dark, -/area/horizon/grauwolf) +/area/horizon/shuttle/intrepid/junction_compartment) +"lJS" = ( +/obj/structure/bed/stool/chair/office/dark{ + dir = 4 + }, +/obj/effect/floor_decal/corner/brown{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/horizon/operations/office) "lJY" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 5 @@ -82351,6 +82925,21 @@ /obj/item/device/flashlight/lamp/stage, /turf/simulated/floor/holofloor/wood, /area/horizon/holodeck/source_theatre) +"lJZ" = ( +/obj/item/reagent_containers/glass/beaker/cryoxadone{ + pixel_x = 5; + pixel_y = 5 + }, +/obj/item/reagent_containers/glass/beaker/cryoxadone{ + pixel_x = -6; + pixel_y = 5 + }, +/obj/structure/table/steel, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/horizon/medical/gen_treatment) "lKd" = ( /obj/structure/table/rack/holorack, /obj/effect/floor_decal/spline/fancy/wood/cee{ @@ -82363,6 +82952,24 @@ icon_state = "desert" }, /area/centcom/shared_dream) +"lKk" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/reactor/indra/monitoring) +"lKl" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/corner/dark_blue/diagonal, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/hologram/holopad/long_range, +/turf/simulated/floor/tiled/dark, +/area/horizon/ai/upload_foyer) "lKm" = ( /obj/structure/cable/green{ icon_state = "1-2" @@ -82380,28 +82987,106 @@ }, /turf/simulated/floor/tiled, /area/horizon/security/investigations_hallway) -"lKr" = ( -/obj/machinery/camera/network/engineering{ - c_tag = "Engineering - C-Goliath Drive Room 4"; - dir = 4 +"lKo" = ( +/turf/simulated/wall, +/area/horizon/service/custodial) +"lKp" = ( +/obj/machinery/door/airlock/glass_research{ + dir = 1; + name = "Containment"; + req_access = list(55) }, -/obj/effect/floor_decal/corner_wide/yellow{ - dir = 9 +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor, +/turf/simulated/floor/reinforced, +/area/horizon/rnd/xenobiology/hazardous) +"lKu" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 10 }, -/turf/simulated/floor/tiled, -/area/engineering/bluespace_drive) -"lKs" = ( -/obj/effect/floor_decal/corner_wide/purple{ - dir = 6 +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 }, -/obj/effect/floor_decal/corner_wide/purple{ +/obj/machinery/light, +/obj/machinery/camera/network/command{ + c_tag = "Bridge - Captains Office Waiting Area"; + dir = 1; + network = list("Command","Capt_Office") + }, +/turf/simulated/floor/wood, +/area/horizon/command/bridge/upperdeck) +"lKv" = ( +/obj/structure/table/steel, +/obj/machinery/cell_charger, +/obj/machinery/recharger/wallcharger{ + pixel_x = -28; + pixel_y = 3 + }, +/obj/machinery/recharger/wallcharger{ + pixel_x = -28; + pixel_y = -10 + }, +/obj/machinery/light/small/emergency{ dir = 8 }, -/obj/machinery/light{ +/turf/simulated/floor/tiled/dark/full, +/area/horizon/command/bridge/aibunker) +"lKy" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 5 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_3/port/docks) +"lKD" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 10 + }, +/obj/machinery/light/small/emergency{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/hangar/starboard) +"lKE" = ( +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/machinery/alarm/east{ + req_one_access = list(24,11,55) + }, +/obj/machinery/camera/network/engineering{ + c_tag = "Engineering - Deck 2 - Engineering Substation"; + dir = 8 + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/substation/engineering) +"lKH" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/machinery/door/firedoor, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/airlock/glass{ dir = 4 }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenoarch_atrium) +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_3/central) "lKI" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/machinery/door/firedoor, @@ -82411,21 +83096,15 @@ }, /turf/simulated/floor/tiled/full, /area/horizon/security/armoury) -"lKJ" = ( -/obj/structure/table/reinforced/steel, -/obj/machinery/door/window/desk/southright{ - desc = "Research Desk"; - req_access = list(7) +"lKK" = ( +/obj/machinery/atmospherics/binary/pump/high_power{ + dir = 1; + name = "Cooling Array to Generators"; + target_pressure = 15000 }, -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/shutters{ - density = 0; - id = "science_chem_desk"; - name = "Exploratory Chemistry"; - opacity = 0 - }, -/turf/simulated/floor/tiled/dark/full, -/area/rnd/chemistry) +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/plating, +/area/horizon/engineering/reactor/supermatter/mainchamber) "lKM" = ( /obj/effect/floor_decal/corner/paleblue{ dir = 6 @@ -82435,68 +83114,18 @@ }, /turf/unsimulated/floor, /area/centcom/spawning) -"lKV" = ( -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 +"lKR" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"lKY" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/corner/dark_green{ - dir = 6 - }, -/turf/simulated/floor/tiled/full, -/area/hangar/intrepid) +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/reactor/indra/monitoring) "lKZ" = ( /obj/structure/railing/mapped, /turf/simulated/floor/holofloor/tiled/ramp{ dir = 8 }, /area/horizon/holodeck/source_trinary) -"lLd" = ( -/obj/effect/floor_decal/corner/mauve{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/rnd/hallway/secondary) -"lLo" = ( -/obj/structure/window/shuttle/scc_space_ship, -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/shutters{ - dir = 4; - id = "cmowindowshutters"; - name = "Window Shutters" - }, -/turf/simulated/floor/plating, -/area/crew_quarters/heads/cmo) -"lLp" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 10 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor, -/area/horizon/hallway/deck_three/primary/starboard/docks) "lLt" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/bed/stool/chair, @@ -82512,44 +83141,89 @@ icon_state = "1,5" }, /area/shuttle/syndicate_elite) -"lLB" = ( -/obj/structure/table/standard, -/obj/machinery/light{ - dir = 8 +"lLw" = ( +/obj/effect/floor_decal/corner/dark_green/full, +/turf/simulated/floor/tiled, +/area/horizon/service/hydroponics/garden) +"lLz" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 4 }, -/obj/item/reagent_containers/extinguisher_refill/filled, -/obj/item/reagent_containers/extinguisher_refill/filled, -/obj/item/reagent_containers/extinguisher_refill/filled, -/obj/item/reagent_containers/extinguisher_refill/filled, -/obj/item/device/hand_labeler, -/obj/effect/floor_decal/corner/yellow/full{ - dir = 8 +/obj/machinery/door/airlock/external{ + dir = 4; + frequency = 1379; + icon_state = "door_locked"; + id_tag = "starboard_combustion"; + locked = 1; + name = "Combustion Chamber"; + req_access = list(13) + }, +/obj/machinery/door/blast/regular{ + id = "interiorpropulsionstarboard" + }, +/turf/simulated/floor/reinforced, +/area/horizon/engineering/atmos/propulsion) +"lLC" = ( +/obj/effect/map_effect/window_spawner/full/reinforced/grille/firedoor, +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/obj/machinery/door/blast/regular/open{ + id = "AICore"; + name = "AI Core Blast Door"; + dir = 4 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/ai/upload) +"lLD" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/corner_wide/green{ + dir = 9 + }, +/obj/machinery/firealarm/west, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/gen_treatment) +"lLH" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/main/starboard) +"lLJ" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/structure/disposalpipe/junction, +/obj/effect/floor_decal/corner/brown{ + dir = 10 }, /turf/simulated/floor/tiled, -/area/engineering/locker_room) -"lLE" = ( -/obj/structure/bed/stool/chair/shuttle{ - dir = 8 +/area/horizon/operations/office) +"lLO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 }, -/obj/machinery/light, -/turf/simulated/floor/shuttle/dark_blue, -/area/shuttle/escape_pod/pod4) -"lLM" = ( -/obj/machinery/recharger/wallcharger{ - pixel_y = -28; - pixel_x = 5 - }, -/obj/effect/floor_decal/industrial/outline/security, -/obj/structure/closet/secure_closet/hos, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/security/head_of_security) -"lLP" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/machinery/light, -/turf/simulated/floor/reinforced, -/area/rnd/test_range) +/obj/effect/floor_decal/corner/dark_blue, +/turf/simulated/floor/tiled/dark, +/area/horizon/command/bridge/controlroom) "lLQ" = ( /obj/machinery/light/small/emergency, /obj/structure/window/reinforced/crescent{ @@ -82560,62 +83234,39 @@ /obj/machinery/vending/generic_clothing, /turf/unsimulated/floor, /area/antag/burglar) -"lLS" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 +"lLR" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/sign/emergency/evacuation{ + dir = 4; + pixel_x = 32 }, -/turf/simulated/floor/carpet/rubber, -/area/engineering/engine_room/rust) +/obj/effect/floor_decal/corner/dark_green{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/horizon/hangar/auxiliary) "lLV" = ( /obj/structure/filingcabinet, /turf/unsimulated/floor{ icon_state = "dark_preview" }, /area/centcom/control) -"lLZ" = ( -/obj/machinery/button/remote/blast_door{ - desc = "A remote control-switch for engine core."; - dir = 8; - id = "EngineVent"; - name = "Supermatter Reactor Emergency Ventilatory Control"; - pixel_x = -21; - pixel_y = 4; - req_access = list(10) - }, -/obj/effect/floor_decal/industrial/hatch/red, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/engine_room) -"lMb" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 10 - }, -/obj/machinery/camera/network/third_deck{ - c_tag = "Third Deck - Dormitories Entrance"; +"lMe" = ( +/obj/machinery/light/small/emergency{ dir = 1 }, -/obj/machinery/light/floor, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/starboard) -"lMh" = ( -/obj/structure/cable{ - icon_state = "4-8" +/obj/machinery/atmospherics/unary/vent_pump/high_volume, +/obj/effect/map_effect/marker/airlock{ + frequency = 1003; + master_tag = "airlock_horizon_deck_1_aft_port_1"; + name = "airlock_horizon_deck_1_aft_port_1" }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/hallway/engineering) +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/auxatmos) +"lMg" = ( +/obj/structure/foamedmetal, +/turf/simulated/floor/plating, +/area/horizon/service/chapel/office) "lMi" = ( /obj/effect/floor_decal/corner/dark_blue{ dir = 10 @@ -82645,147 +83296,114 @@ }, /turf/simulated/floor/tiled, /area/horizon/security/warden) +"lMo" = ( +/obj/structure/bed/stool/chair{ + dir = 4 + }, +/obj/effect/floor_decal/spline/fancy/wood/cee, +/turf/simulated/floor/wood, +/area/horizon/command/bridge/upperdeck) "lMr" = ( /turf/simulated/wall/shuttle/unique/mercenary/small{ icon_state = "6,10" }, /area/shuttle/syndicate_elite) -"lMs" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/white, -/area/hallway/medical) -"lMu" = ( -/obj/structure/railing/mapped, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/machinery/light/small/emergency{ +"lMt" = ( +/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/horizon/hangar/auxiliary) +"lMD" = ( +/obj/machinery/mech_recharger, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/railing/mapped{ + dir = 8 + }, +/mob/living/heavy_vehicle/premade/random/boring, +/turf/simulated/floor/plating, +/area/horizon/operations/machinist) +"lMG" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/reinforced, +/area/horizon/engineering/gravity_gen) +"lMN" = ( +/obj/effect/floor_decal/industrial/warning{ dir = 1 }, +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 8 + }, /turf/simulated/floor/plating, -/area/maintenance/research_port) -"lMy" = ( -/obj/structure/cable{ - icon_state = "4-8" +/area/horizon/maintenance/deck_1/wing/starboard/far) +"lMT" = ( +/obj/machinery/shieldwallgen{ + req_access = list(55); + anchored = 1; + wrenched = 1 }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/full, -/area/hallway/engineering) -"lMA" = ( -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/effect/floor_decal/corner/black{ - dir = 6 - }, -/obj/effect/floor_decal/industrial/loading/yellow, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/hangar/intrepid) -"lMF" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 +/obj/effect/floor_decal/corner/mauve/full, +/obj/machinery/camera/network/research{ + c_tag = "Xenobiology - Hazardous Specimen"; + dir = 1; + network = list("Research","Xeno_Bio") }, /obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - icon_state = "pipe-c" - }, -/obj/machinery/light_switch{ - dir = 8; - pixel_x = -24; - pixel_y = 23 + icon_state = "0-4" }, /turf/simulated/floor/tiled/white, -/area/horizon/kitchen) -"lMH" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 +/area/horizon/rnd/xenobiology/hazardous) +"lMX" = ( +/obj/structure/platform/ledge{ + dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 +/turf/simulated/open, +/area/horizon/medical/hallway/upper) +"lNb" = ( +/obj/machinery/requests_console/north{ + announcementConsole = 1; + department = "Captain's Desk"; + departmentType = 5; + name = "Captain RC"; + pixel_y = 35; + pixel_x = -32 }, -/obj/effect/floor_decal/industrial/warning{ - dir = 10 +/obj/item/modular_computer/console/preset/command/captain{ + dir = 4; + pixel_x = -18; + density = 0 }, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/bluespace_drive) -"lMI" = ( -/obj/machinery/light, -/obj/effect/floor_decal/corner_wide/yellow{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/engineering/bluespace_drive) -"lMM" = ( -/turf/simulated/floor/reinforced, -/area/horizon/grauwolf) -"lMS" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 9 - }, -/obj/structure/table/standard, -/obj/item/hand_tele, -/turf/simulated/floor/tiled/dark, -/area/teleporter) -"lMY" = ( -/obj/effect/floor_decal/industrial/warning/corner{ +/turf/simulated/floor/carpet, +/area/horizon/command/heads/captain) +"lNc" = ( +/obj/effect/floor_decal/spline/plain/black{ dir = 8 }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard) -"lNi" = ( -/obj/effect/floor_decal/corner/brown{ - dir = 10 +/obj/structure/table/steel, +/obj/effect/floor_decal/corner/dark_green, +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/obj/machinery/power/apc/north, +/obj/item/towel/random{ + pixel_x = 2; + pixel_y = 8 + }, +/obj/item/towel/random{ + pixel_x = 2; + pixel_y = 12 + }, +/obj/item/clothing/gloves/fingerless{ + pixel_y = -6 }, /turf/simulated/floor/tiled, -/area/operations/loading) -"lNj" = ( -/obj/effect/floor_decal/corner/brown{ - dir = 10 - }, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 8 - }, -/obj/structure/railing/mapped, -/turf/simulated/floor/tiled, -/area/operations/loading) -"lNl" = ( -/turf/simulated/wall/shuttle/scc_space_ship/cardinal, -/area/horizon/bar) -"lNm" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 6 - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor, -/area/horizon/maintenance/deck_three/aft/starboard) +/area/horizon/crew/fitness/gym) "lNs" = ( /obj/structure/table/rack, /obj/random/melee, @@ -82794,119 +83412,43 @@ /obj/item/airbubble/syndie, /turf/simulated/floor/plating, /area/shuttle/skipjack) -"lNv" = ( -/obj/machinery/light{ - dir = 4 +"lNt" = ( +/obj/structure/sign/nosmoking_1{ + pixel_y = 32 + }, +/obj/machinery/computer/general_air_control/large_tank_control/terminal{ + sensors = list("co2_sensor"="Tank"); + output_tag = "CO2_out_fuelbay"; + name = "Carbon Dioxide - Fuel Bay" }, -/obj/machinery/vending/hydronutrients/gardenvend, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/hydroponics/garden) -"lNx" = ( -/obj/structure/platform, -/obj/structure/closet/crate, /obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/dark, -/area/rnd/lab) -"lNB" = ( -/obj/structure/bed/stool/chair/sofa/pew/left{ +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/atmos) +"lNz" = ( +/obj/effect/floor_decal/industrial/warning/corner{ dir = 8 }, -/obj/effect/floor_decal/spline/fancy/wood{ +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/main/port) +"lNK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/corner/dark_blue{ dir = 9 }, -/turf/simulated/floor/wood, -/area/chapel/main) -"lNC" = ( -/obj/structure/table/reinforced/steel, -/obj/machinery/camera/network/service{ - c_tag = "Second Deck - Commissary Backroom"; - dir = 1 - }, -/obj/item/paper_bin{ - pixel_y = 5; - pixel_x = -3 - }, -/obj/item/pen/black{ - pixel_x = -3; - pixel_y = 6 - }, -/obj/random/lavalamp{ - pixel_x = 8; - pixel_y = 3 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/commissary) -"lNE" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/horizon/custodial) -"lNG" = ( -/obj/structure/closet/crate, -/obj/effect/floor_decal/corner/brown{ - dir = 6 - }, /obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled, -/area/operations/storage) -"lNH" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 8 - }, -/obj/effect/map_effect/marker/airlock{ - frequency = 3002; - master_tag = "airlock_horizon_deck_2_port_1"; - name = "airlock_horizon_deck_2_port_1" - }, -/turf/simulated/floor, -/area/maintenance/wing/port/far) -"lNJ" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 5 - }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 8 - }, /turf/simulated/floor/tiled/dark, -/area/storage/eva) -"lNO" = ( -/obj/structure/bed/handrail{ - dir = 4 +/area/horizon/security/checkpoint2) +"lNN" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 9 }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/plating, -/area/shuttle/intrepid/starboard_compartment) -"lNR" = ( -/obj/structure/table/wood, -/obj/item/storage/box/fancy/cigarettes, -/obj/machinery/power/outlet{ - pixel_y = 4; - pixel_x = 9 +/obj/structure/closet/walllocker/firecloset{ + pixel_x = -32 }, -/turf/simulated/floor/carpet/art, -/area/crew_quarters/lounge) -"lNZ" = ( -/obj/machinery/power/tesla_beacon, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/storage_hard) -"lOa" = ( -/obj/structure/platform/ledge, -/obj/structure/platform_deco/ledge, -/turf/simulated/open, -/area/horizon/hallway/deck_three/primary/central) +/obj/effect/floor_decal/industrial/outline/firefighting_closet, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_3/starboard) "lOb" = ( /obj/effect/landmark{ name = "Holocarp Spawn" @@ -82922,76 +83464,34 @@ /obj/structure/lattice/catwalk/indoor, /turf/unsimulated/floor, /area/centcom/checkpoint/fore) -"lOi" = ( -/obj/machinery/atmospherics/pipe/simple/visible/purple{ - dir = 6 - }, -/obj/machinery/meter, -/turf/simulated/floor/tiled/dark, -/area/engineering/atmos/propulsion/starboard) -"lOj" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ +"lOm" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/portable_atmospherics/canister/hydrogen, +/obj/machinery/light/small/emergency{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/full, -/area/hallway/primary/central_two) -"lOn" = ( -/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/dark_green{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/horizon/stairwell/central) -"lOp" = ( -/obj/structure/table/wood, -/obj/effect/floor_decal/spline/fancy/wood{ +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/reactor/indra/mainchamber) +"lOo" = ( +/obj/structure/engineer_maintenance/electric{ dir = 8 }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 4 +/obj/structure/engineer_maintenance/pipe{ + dir = 1 }, -/obj/structure/railing/mapped{ - dir = 4 +/obj/effect/floor_decal/corner_wide/green{ + dir = 5 }, -/obj/random/pottedplant_small{ - pixel_x = 4; - pixel_y = 4 +/obj/random/pottedplant, +/obj/machinery/requests_console/north{ + pixel_y = 32; + pixel_x = -1; + name = "Recovery Ward requests console"; + department = "Recovery Ward"; + departmentType = 2 }, -/turf/simulated/floor/wood, -/area/hallway/primary/central_one) -"lOr" = ( -/obj/item/flag/scc/l{ - pixel_y = 15 - }, -/obj/item/flag/scc/l{ - pixel_y = 10 - }, -/obj/item/flag/scc/l{ - pixel_y = 4 - }, -/obj/structure/table/glass, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 9 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/bridge/supply) +/turf/simulated/floor/tiled/white, +/area/horizon/medical/ward) "lOs" = ( /obj/effect/floor_decal/corner/yellow, /obj/effect/floor_decal/corner{ @@ -82999,49 +83499,20 @@ }, /turf/simulated/floor/marble/dark, /area/horizon/holodeck/source_trinary) -"lOv" = ( -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 +"lOw" = ( +/obj/structure/table/steel, +/obj/item/device/radio/intercom/north, +/obj/effect/floor_decal/corner/purple{ + dir = 5 }, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard) -"lOx" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ +/turf/simulated/floor/tiled, +/area/horizon/service/custodial) +"lOz" = ( +/obj/effect/floor_decal/spline/fancy/wood/corner{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/lattice/catwalk/indoor/grate, -/turf/simulated/floor, -/area/horizon/hallway/deck_three/primary/port) -"lOC" = ( -/obj/structure/closet/emcloset, -/obj/effect/floor_decal/industrial/outline/emergency_closet, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/alarm/north, -/turf/simulated/floor/tiled/full, -/area/bridge/upperdeck) -"lOD" = ( -/obj/structure/window/shuttle/scc_space_ship, -/obj/structure/grille, -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 4; - icon_state = "shutter0"; - id = "LCKDshutters"; - name = "MedBay Lockdown Shutters"; - opacity = 0 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/medical/smoking) +/turf/simulated/floor/wood, +/area/horizon/command/bridge/meeting_room) "lOF" = ( /obj/structure/table/rack, /obj/item/clothing/ears/circuitry, @@ -83056,165 +83527,227 @@ }, /turf/unsimulated/floor/marble, /area/antag/wizard) -"lOK" = ( -/obj/effect/floor_decal/corner/mauve/full{ - dir = 8 +"lOJ" = ( +/obj/structure/table/standard, +/obj/item/taperoll/medical{ + pixel_x = 4; + pixel_y = 4 }, -/obj/effect/floor_decal/corner/white, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology/xenoflora) -"lON" = ( -/obj/structure/platform_stairs/south_north_solo, -/obj/structure/platform{ +/obj/item/taperoll/medical{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/taperoll/medical{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/device/flashlight/pen{ + pixel_x = -4; + pixel_y = -2 + }, +/obj/item/device/flashlight/pen{ + pixel_x = -4; + pixel_y = -2 + }, +/obj/item/device/flashlight/pen{ + pixel_x = -4; + pixel_y = -2 + }, +/obj/item/device/flashlight/pen{ + pixel_x = -4; + pixel_y = -2 + }, +/obj/item/device/flashlight/pen{ + pixel_x = -4; + pixel_y = -2 + }, +/obj/item/device/flashlight/pen{ + pixel_x = -4; + pixel_y = -2 + }, +/obj/effect/floor_decal/corner_wide/green{ + dir = 5 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/equipment) +"lOM" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance{ + dir = 4; + req_one_access = list(12) + }, +/turf/simulated/floor/tiled/full, +/area/horizon/maintenance/deck_1/teleporter) +"lOR" = ( +/obj/machinery/maneuvering_engine, +/obj/effect/landmark/entry_point/aft{ + name = "aft, starboard maneuvering engines" + }, +/turf/simulated/wall/shuttle/scc_space_ship/cardinal, +/area/horizon/maintenance/deck_2/wing/port/nacelle) +"lOU" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/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/maintenance/wing/starboard) +/area/horizon/maintenance/deck_1/wing/starboard/far) +"lPd" = ( +/obj/effect/floor_decal/corner/beige{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/aux{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/command/bridge/aibunker) "lPe" = ( /obj/structure/table/wood, /turf/simulated/floor/holofloor/lino, /area/horizon/holodeck/source_theatre) -"lPv" = ( -/obj/machinery/atmospherics/binary/pump{ - name = "Reactor to Scrubbers" +"lPi" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/operations/machinist) +"lPo" = ( +/obj/structure/bed/stool/chair/office/dark{ + dir = 8 }, -/obj/effect/floor_decal/corner/yellow{ - dir = 6 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/engineering/engine_waste) -"lPD" = ( -/obj/structure/cable{ +/turf/simulated/floor/carpet/red, +/area/horizon/service/library) +"lPr" = ( +/obj/structure/cable/orange{ icon_state = "1-2" }, -/obj/effect/floor_decal/corner/dark_green{ - dir = 6 - }, -/obj/structure/disposalpipe/junction{ - dir = 1; - icon_state = "pipe-j2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/central) -"lPE" = ( -/obj/effect/floor_decal/corner/yellow{ - dir = 5 - }, -/obj/machinery/vending/engivend, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled, -/area/engineering/storage_eva) -"lPF" = ( -/obj/structure/cable/green{ - icon_state = "4-8"; - d1 = 4; - d2 = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/structure/disposalpipe/segment{ - icon_state = "pipe-c" +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 }, /turf/simulated/floor/plating, -/area/maintenance/hangar/port) -"lPG" = ( -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/bluegrid, -/area/hallway/primary/central_one) -"lPH" = ( -/obj/structure/table/standard, +/area/horizon/engineering/bluespace_drive) +"lPt" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 9 + }, /obj/structure/cable/green{ icon_state = "4-8" }, -/obj/item/paper_bin{ - pixel_x = 6; - pixel_y = 5 - }, -/obj/item/pen{ - pixel_x = 7; - pixel_y = 6 - }, -/turf/simulated/floor/tiled/white, -/area/medical/pharmacy) -"lPJ" = ( -/obj/machinery/disposal/small/north, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 1 - }, -/obj/effect/floor_decal/spline/fancy/wood, +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/atmos) +"lPu" = ( +/obj/machinery/light, +/obj/machinery/newscaster/security_unit/south, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/suit_cycler/hos/prepared, +/obj/item/device/suit_cooling_unit, +/obj/item/tank/oxygen, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/command/heads/hos) +"lPB" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/platform/cutout{ + dir = 8 + }, +/obj/structure/platform_stairs/full/east_west_cap, +/turf/simulated/floor/tiled/dark, +/area/horizon/command/bridge/controlroom) +"lPC" = ( +/obj/machinery/camera/network/service{ + c_tag = "Service - Deck 2 - Dining Hall 1"; + dir = 4 + }, +/obj/structure/platform{ + dir = 4 + }, +/obj/structure/closet/walllocker/medical/firstaid{ + pixel_x = -32 + }, +/obj/machinery/light/floor{ + dir = 8 + }, /turf/simulated/floor/wood, -/area/crew_quarters/heads/hor) -"lPL" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/effect/floor_decal/industrial/outline/grey, -/obj/effect/decal/cleanable/cobweb2, -/turf/simulated/floor/plating, -/area/maintenance/research_port) +/area/horizon/service/dining_hall) "lPN" = ( /obj/machinery/telecomms/allinone, /turf/simulated/floor/plating, /area/shuttle/skipjack) -"lPP" = ( -/obj/structure/tank_wall/hydrogen{ - density = 0; - icon_state = "h5"; - opacity = 0 +"lPO" = ( +/obj/effect/floor_decal/spline/plain/blue{ + dir = 8 }, -/obj/machinery/atmospherics/unary/vent_pump/siphon/on/atmos{ - dir = 1; - id_tag = "H2_out_starboardthruster" +/obj/effect/floor_decal/spline/plain/red{ + dir = 4 }, -/turf/simulated/floor/reinforced/hydrogen, -/area/engineering/atmos) -"lPW" = ( -/turf/simulated/wall, -/area/hangar/auxiliary) +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/horizon/service/hydroponics/lower) +"lPX" = ( +/obj/effect/floor_decal/industrial/warning/corner, +/obj/structure/sign/radiation{ + pixel_y = 32 + }, +/obj/machinery/light/spot{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/reactor/indra/mainchamber) "lPZ" = ( /obj/machinery/vending/coffee/free{ pixel_x = -1 }, /turf/unsimulated/floor, /area/centcom/control) +"lQa" = ( +/obj/machinery/door/airlock/service{ + dir = 1; + name = "Bar - Private Lounge" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/full, +/area/horizon/service/bar) +"lQc" = ( +/obj/structure/shuttle_part/scc/mining{ + icon_state = "7,1" + }, +/turf/simulated/floor/plating, +/area/horizon/shuttle/mining) +"lQd" = ( +/turf/simulated/wall, +/area/horizon/maintenance/substation/hangar) "lQf" = ( /turf/simulated/floor/carpet/art, /area/shuttle/skipjack) -"lQk" = ( -/obj/effect/floor_decal/corner/dark_green/full{ - dir = 1 +"lQp" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance{ + dir = 1; + req_access = list(73) }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/effect/floor_decal/spline/plain/red, -/obj/effect/floor_decal/spline/plain{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/horizon/hydroponics) +/turf/simulated/floor/tiled/full, +/area/horizon/hangar/control) "lQq" = ( /turf/unsimulated/mineral/asteroid, /area/antag/mercenary) @@ -83224,42 +83757,6 @@ }, /turf/simulated/floor/wood/maple, /area/horizon/holodeck/source_cafe) -"lQs" = ( -/obj/machinery/firealarm/west, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/effect/floor_decal/industrial/warning{ - dir = 10 - }, -/obj/machinery/door/window, -/turf/simulated/floor/tiled/freezer{ - name = "cooled tiles"; - temperature = 253.15 - }, -/area/horizon/kitchen/freezer) -"lQC" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/firealarm/west{ - dir = 2; - pixel_x = 0; - pixel_y = -22 - }, -/obj/machinery/disposal/small/north, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 7 - }, -/turf/simulated/floor/wood, -/area/lawoffice/consular_two) "lQF" = ( /obj/machinery/atmospherics/pipe/simple/visible/purple{ dir = 4 @@ -83273,102 +83770,99 @@ }, /turf/space/dynamic, /area/horizon/exterior) -"lQI" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ +"lQL" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/reinforced, +/area/horizon/rnd/xenobiology) +"lQM" = ( +/obj/structure/table/standard, +/obj/machinery/requests_console/west{ + department = "Xenobiology Lab"; + name = "Xenobiology Requests Console" + }, +/obj/effect/floor_decal/corner/mauve/full, +/obj/item/glass_jar, +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/xenobiology/foyer) +"lQN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/machinery/disposal/small/north, +/obj/machinery/light_switch{ + dir = 1; + pixel_x = -6; + pixel_y = -24 + }, +/obj/effect/floor_decal/corner/dark_green/diagonal, +/obj/effect/floor_decal/spline/plain, +/obj/effect/floor_decal/spline/plain/purple{ dir = 1 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/dark, -/area/teleporter) +/turf/simulated/floor/tiled, +/area/horizon/service/hydroponics) +"lQO" = ( +/obj/effect/floor_decal/industrial/outline/grey, +/obj/structure/survey_probe/ground, +/turf/simulated/floor/plating, +/area/horizon/hangar/intrepid) "lQP" = ( /obj/effect/decal/fake_object/light_source/invisible, /turf/simulated/floor, /area/tdome) -"lQQ" = ( -/obj/structure/cable/green{ - icon_state = "1-2" +"lQW" = ( +/obj/effect/floor_decal/corner/yellow, +/obj/effect/floor_decal/corner/dark_blue{ + dir = 8 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 +/obj/structure/sign/nosmoking_1{ + pixel_y = -32 }, +/obj/machinery/atmospherics/binary/pump{ + dir = 8; + name = "Connectors to Storage" + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/atmos) +"lQY" = ( /obj/structure/cable{ icon_state = "4-8" }, -/obj/effect/floor_decal/corner/dark_green{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/hangar/intrepid) -"lQV" = ( /obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 4 }, -/turf/simulated/floor/carpet/purple, -/area/crew_quarters/heads/hor) -"lRe" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 6 +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 }, -/obj/structure/cable/green{ - icon_state = "4-8" +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 }, -/turf/simulated/floor/tiled, -/area/bridge/upperdeck) -"lRh" = ( -/obj/machinery/door/firedoor, -/obj/effect/floor_decal/corner/purple{ - dir = 6 - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/effect/floor_decal/industrial/warning/corner, -/obj/machinery/atmospherics/pipe/simple/hidden/purple{ - dir = 9 +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor/plating, +/area/horizon/engineering/hallway/fore) +"lQZ" = ( +/obj/effect/floor_decal/industrial/hatch/red, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 }, /turf/simulated/floor/tiled/dark/full, -/area/horizon/custodial/disposals) -"lRk" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/corner/red{ - dir = 6 - }, -/obj/effect/floor_decal/corner/red{ - dir = 9 - }, -/obj/machinery/door/airlock/glass_medical{ - dir = 1; - frequency = 1379; - id_tag = "processing_airlock_exterior"; - locked = 1; - name = "Isolation Ward Exterior"; - req_access = list(5) - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/dark, -/area/medical/ward/isolation) -"lRo" = ( -/obj/random/pottedplant, -/obj/effect/floor_decal/corner/dark_blue/full{ - dir = 1 - }, -/obj/machinery/firealarm/west{ - dir = 4; - pixel_x = 22 - }, -/turf/simulated/floor/tiled, -/area/bridge/supply) +/area/horizon/service/custodial/disposals/deck_1) +"lRj" = ( +/turf/simulated/floor/reinforced, +/area/horizon/rnd/test_range) "lRp" = ( /obj/effect/floor_decal/industrial/warning{ dir = 1 @@ -83378,101 +83872,50 @@ }, /turf/simulated/floor/plating, /area/shuttle/mercenary) -"lRr" = ( -/obj/structure/window/shuttle/unique/scc/scout{ - icon_state = "3,2" - }, -/obj/structure/window/shuttle/unique/scc/scout/over{ - icon_state = "3,2" - }, -/obj/effect/floor_decal/industrial/outline, -/turf/simulated/floor/reinforced, -/area/shuttle/canary) +"lRy" = ( +/obj/structure/stairs_lower/stairs_upper, +/turf/simulated/wall/r_wall, +/area/horizon/rnd/xenoarch/atrium) "lRz" = ( -/obj/machinery/vending/cigarette, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/hatch/operations, -/turf/simulated/floor/tiled/full, -/area/horizon/commissary) +/turf/simulated/floor/tiled, +/area/horizon/stairwell/engineering/deck_1) "lRA" = ( /obj/structure/shuttle_part/scc_space_ship{ icon_state = "d3-1-f" }, /turf/space/dynamic, /area/template_noop) -"lRC" = ( -/obj/machinery/atmospherics/pipe/manifold4w/hidden, -/obj/effect/map_effect/marker/airlock{ - frequency = 1003; - master_tag = "airlock_horizon_deck_1_aft_port_1"; - name = "airlock_horizon_deck_1_aft_port_1" - }, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"lRE" = ( -/obj/structure/table/wood, -/obj/machinery/light, -/obj/random/pottedplant_small{ - pixel_x = 7; - pixel_y = -2 - }, -/turf/simulated/floor/carpet, -/area/chapel/office) "lRF" = ( /obj/effect/step_trigger/thrower/shuttle/southeast, /turf/space/transit/east, /area/template_noop) -"lRH" = ( -/obj/structure/cable/green{ - icon_state = "4-8" +"lRN" = ( +/obj/machinery/camera/network/research{ + c_tag = "Research - Mech Bay Camera" }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/effect/floor_decal/corner/dark_green{ dir = 5 }, +/obj/machinery/firealarm/north, +/turf/simulated/floor/tiled, +/area/horizon/stairwell/port/deck_2) +"lRR" = ( +/obj/effect/floor_decal/corner_wide/black{ + dir = 10 + }, +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, /turf/simulated/floor/tiled/dark, -/area/engineering/atmos) -"lRI" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 4 - }, -/obj/structure/sink/kitchen{ - dir = 8; - name = "sink"; - pixel_x = 19 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/button/switch/holosign{ - id = 3; - dir = 4; - pixel_x = 20; - pixel_y = 28 - }, -/turf/simulated/floor/wood, -/area/horizon/bar) -"lRO" = ( -/obj/structure/cable, -/obj/machinery/power/terminal{ - dir = 4 - }, -/obj/machinery/camera/network/engineering{ - c_tag = "Engineering - Deck 1 - Operations Substation"; - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/substation/supply) +/area/horizon/engineering/atmos/propulsion/starboard) "lRV" = ( /turf/simulated/wall, /area/horizon/security/autopsy_laboratory) @@ -83483,104 +83926,54 @@ }, /turf/unsimulated/floor/rubber_carpet, /area/centcom/control) -"lRY" = ( -/obj/effect/floor_decal/industrial/outline/grey, -/obj/structure/closet/crate/plastic{ - name = "folding tables crate" +"lSh" = ( +/obj/machinery/power/smes/buildable/substation{ + RCon_tag = "Substation - Research" + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/structure/cable/green{ + icon_state = "0-4" }, -/obj/item/material/folding_table, -/obj/item/material/folding_table, -/obj/item/material/folding_table, -/obj/item/material/folding_table, -/obj/item/material/folding_table, -/obj/item/material/folding_table, -/obj/item/material/folding_table, -/obj/item/material/folding_table, /turf/simulated/floor/plating, -/area/hangar/intrepid) -"lRZ" = ( -/obj/effect/floor_decal/corner/mauve{ +/area/horizon/maintenance/substation/research) +"lSs" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ dir = 10 }, -/obj/structure/platform_stairs{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/lab) -"lSb" = ( -/obj/structure/table/standard, -/obj/item/roller{ - pixel_x = 2; - pixel_y = 3 - }, -/obj/item/mirror{ - pixel_x = 7; - pixel_y = 4 +/turf/simulated/floor/tiled, +/area/horizon/maintenance/deck_2/wing/starboard/auxatmos) +"lSt" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 9 }, /obj/machinery/firealarm/west, -/obj/item/storage/box/bodybags, -/turf/simulated/floor/tiled/white, -/area/operations/lower/machinist/surgicalbay) -"lSc" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/effect/floor_decal/corner/brown{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/storage/tech) +"lSw" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" }, /turf/simulated/floor/tiled, -/area/hangar/operations) -"lSq" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/firedoor/multi_tile, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/airlock/multi_tile/glass{ - id_tag = "main_door"; - name = "Triage Room Main Entrance"; - req_access = list(5) - }, -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 2; - icon_state = "shutter0"; - id = "entrance_shutters"; - name = "Entrance Lockdown Shutters"; - opacity = 0 - }, -/obj/effect/map_effect/door_helper/unres{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/full, -/area/medical/gen_treatment) -"lSy" = ( -/obj/machinery/atmospherics/unary/vent_pump{ - dir = 4; - external_pressure_bound = 0; - external_pressure_bound_default = 0; - frequency = 1441; - icon_state = "map_vent_in"; - id_tag = "mixed_out"; - initialize_directions = 1; - internal_pressure_bound = 4000; - internal_pressure_bound_default = 4000; - name = "mixed gas vent"; - pressure_checks = 2; - pressure_checks_default = 2; - pump_direction = 0 - }, -/turf/simulated/floor/reinforced/airless, -/area/engineering/atmos) +/area/horizon/hallway/primary/deck_3/central) +"lSB" = ( +/obj/structure/reagent_dispensers/extinguisher, +/obj/effect/floor_decal/corner/red/diagonal, +/turf/simulated/floor/tiled, +/area/horizon/maintenance/deck_3/aft/holodeck) +"lSF" = ( +/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/horizon/hangar/auxiliary) "lSJ" = ( /obj/machinery/hologram/holopad, /obj/structure/cable/green{ @@ -83588,83 +83981,25 @@ }, /turf/simulated/floor/tiled, /area/horizon/security/office) -"lSK" = ( -/obj/structure/table/standard, -/obj/item/stack/packageWrap, -/obj/item/device/destTagger, -/obj/item/device/hand_labeler, -/obj/item/stack/wrapping_paper, -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/machinery/ringer/north{ - department = "Medbay"; - id = "medbay_ringer"; - req_access = list(5) - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/reception) -"lSO" = ( -/obj/machinery/hologram/holopad, -/turf/simulated/floor/carpet, -/area/journalistoffice) -"lSR" = ( -/obj/structure/railing/mapped, -/obj/structure/platform/ledge{ - dir = 1 - }, -/obj/structure/platform_deco/ledge{ - dir = 4 - }, -/turf/simulated/open, -/area/horizon/hallway/deck_three/primary/central) -"lSV" = ( -/obj/structure/window/shuttle/scc_space_ship, -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/shutters{ - id = "shutters_disposals"; - name = "\improper Viewing Shutter" - }, -/obj/effect/landmark/entry_point/aft{ - name = "aft, waste disposals" - }, -/turf/simulated/floor/plating, -/area/horizon/custodial/disposals) -"lSY" = ( -/obj/effect/floor_decal/industrial/warning{ +"lSU" = ( +/obj/effect/floor_decal/corner/beige{ dir = 9 }, -/turf/simulated/floor/plating, -/area/maintenance/wing/cargo_compartment) -"lSZ" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/plating, -/area/maintenance/wing/port/far) -"lTa" = ( -/obj/structure/railing/mapped{ - dir = 4 +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/maintenance/wing/port/far) -"lTb" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ +/area/horizon/command/bridge/aibunker) +"lSW" = ( +/obj/effect/floor_decal/industrial/warning{ dir = 4 }, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, -/obj/structure/platform, -/turf/simulated/floor/tiled/full, -/area/hallway/engineering) +/obj/structure/table/rack, +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/simulated/floor, +/area/horizon/maintenance/deck_3/aft/port) "lTd" = ( /obj/structure/railing/mapped{ dir = 4 @@ -83677,17 +84012,18 @@ name = "staircase" }, /area/centcom/spawning) -"lTf" = ( -/obj/effect/floor_decal/corner/brown{ - dir = 9 +"lTk" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 }, -/obj/machinery/mineral/stacking_unit_console{ - id = "horizon_stacking_1"; - pixel_x = -32 +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/xenobiology) +"lTn" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 1 }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/refinery) +/turf/simulated/floor/plating, +/area/horizon/engineering/reactor/supermatter/mainchamber) "lTo" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/machinery/door/firedoor, @@ -83707,38 +84043,30 @@ }, /turf/simulated/floor/holofloor/tiled, /area/horizon/holodeck/source_boxingcourt) -"lTv" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/machinery/pipedispenser, -/turf/simulated/floor/plating, -/area/maintenance/engineering) -"lTz" = ( -/turf/simulated/floor/shuttle/dark_blue, -/area/shuttle/escape_pod/pod1) -"lTA" = ( -/obj/structure/railing/mapped{ - dir = 1 +"lTw" = ( +/obj/structure/cable/green{ + icon_state = "4-8" }, -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/structure/table/wood, -/obj/item/reagent_containers/food/drinks/drinkingglass/newglass/coffeecup, -/obj/item/reagent_containers/food/drinks/drinkingglass/newglass/coffeecup{ - pixel_x = 7 - }, -/obj/machinery/chemical_dispenser/coffee/full{ - pixel_y = 14 - }, -/turf/simulated/floor/wood, -/area/rnd/hallway/secondary) -"lTB" = ( -/obj/structure/disposalpipe/segment{ +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/structure/disposalpipe/sortjunction/flipped{ dir = 8; - icon_state = "pipe-c" + name = "Chemistry"; + sortType = "Chemistry" }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/gen_treatment) +"lTD" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled/full, -/area/bridge/upperdeck) +/area/horizon/hallway/primary/deck_2/central) "lTG" = ( /obj/effect/decal/fake_object{ density = 1; @@ -83754,43 +84082,75 @@ name = "overgrowth" }, /area/horizon/holodeck/source_moghes) -"lTI" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/tank/air/scc_shuttle/airlock{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning/cee, -/turf/simulated/floor/tiled/dark, -/area/shuttle/mining) -"lTO" = ( -/obj/machinery/light/small/red{ - dir = 4 - }, -/turf/simulated/wall, -/area/maintenance/wing/port/far) -"lTQ" = ( -/obj/effect/floor_decal/corner_wide/green{ +"lTH" = ( +/obj/effect/floor_decal/corner/dark_green{ dir = 6 }, -/obj/machinery/vending/lavatory, -/turf/simulated/floor/tiled/white, -/area/medical/ward) +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/horizon/crew/chargebay) +"lTL" = ( +/obj/machinery/door/airlock/security{ + dir = 1; + name = "Deck 2 Starboard Docks - Security Checkpoint"; + req_access = list(63) + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/horizon/security/checkpoint2) +"lTS" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance{ + dir = 1; + name = "Deck 1 Medical Maintenance"; + req_access = list(5) + }, +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 2; + icon_state = "shutter0"; + id = "LCKDshutters"; + name = "Medical Lockdown Shutters"; + opacity = 0 + }, +/turf/simulated/floor/tiled/full, +/area/horizon/medical/morgue) +"lTT" = ( +/obj/machinery/photocopier, +/turf/simulated/floor/carpet, +/area/horizon/crew/journalistoffice) +"lTU" = ( +/obj/machinery/conveyor{ + dir = 8 + }, +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/random/dirt_75, +/turf/simulated/floor/carpet/rubber, +/area/horizon/crew/fitness/gym) +"lTV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/main/interstitial) "lTW" = ( /turf/simulated/floor/holofloor/desert{ name = "dirt" }, /area/horizon/holodeck/source_adhomai) -"lTY" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 5 - }, -/obj/structure/railing/mapped{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/rnd/xenoarch_atrium) "lUc" = ( /obj/machinery/door/airlock/hatch{ dir = 1; @@ -83802,83 +84162,52 @@ /obj/machinery/atmospherics/pipe/simple/hidden, /turf/simulated/floor/tiled/dark/full, /area/shuttle/skipjack) -"lUf" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/hangar/starboard) -"lUk" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"lUl" = ( -/obj/effect/floor_decal/industrial/warning{ +"lUe" = ( +/obj/structure/closet/excavation, +/obj/effect/floor_decal/corner/mauve{ dir = 5 }, -/obj/structure/railing/mapped{ +/obj/effect/floor_decal/industrial/outline/research, +/turf/simulated/floor/tiled/white, +/area/horizon/storage/eva/expedition) +"lUg" = ( +/obj/machinery/button/ignition{ + id = "port_prop_igni"; + pixel_y = 26; + name = "Combustion Chamber Ignition" + }, +/obj/machinery/atmospherics/pipe/simple/visible/purple{ dir = 4 }, -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/structure/grille, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark/full/airless, -/area/bridge/controlroom) -"lUo" = ( -/obj/structure/bed/stool/chair/padded/brown{ - dir = 4 - }, -/obj/effect/floor_decal/corner/dark_green/full, -/obj/machinery/firealarm/south, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/central) -"lUp" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/lattice/catwalk/indoor, -/obj/structure/railing/mapped, -/obj/structure/railing/mapped{ +/obj/effect/floor_decal/corner_wide/black/full{ dir = 8 }, -/turf/simulated/floor/plating, -/area/engineering/bluespace_drive) -"lUr" = ( -/obj/structure/engineer_maintenance/electric{ - dir = 1 - }, -/obj/structure/engineer_maintenance/pipe{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/engineering/atmos/air) -"lUu" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/corner/dark_blue{ +/obj/effect/floor_decal/industrial/warning{ dir = 9 }, /turf/simulated/floor/tiled/dark, -/area/storage/eva) +/area/horizon/engineering/atmos/propulsion/starboard) +"lUn" = ( +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/effect/floor_decal/corner/dark_green{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_3/starboard) +"lUs" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/hydroponics, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/rnd/xenobiology/xenoflora) "lUw" = ( /obj/item/wrench, /obj/item/crowbar, @@ -83894,17 +84223,35 @@ /obj/structure/table/rack, /turf/unsimulated/floor/rubber_carpet, /area/antag/jockey) -"lUy" = ( -/obj/structure/platform{ +"lUB" = ( +/obj/effect/floor_decal/corner/dark_blue/full{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 }, -/obj/effect/floor_decal/industrial/outline/research, -/obj/structure/closet/secure_closet/RD, -/obj/machinery/light{ +/turf/simulated/floor/tiled/dark, +/area/horizon/ai/upload) +"lUD" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 1 }, -/turf/simulated/floor/wood, -/area/crew_quarters/heads/hor) +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_2/starboard) +"lUF" = ( +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor, +/area/horizon/maintenance/deck_3/aft/port) "lUH" = ( /obj/machinery/atmospherics/pipe/simple/visible/purple{ dir = 6 @@ -83912,100 +84259,69 @@ /obj/machinery/atmospherics/pipe/simple/visible/fuel, /turf/space/dynamic, /area/horizon/exterior) -"lUI" = ( -/obj/effect/floor_decal/corner_wide/yellow/full, -/turf/simulated/floor/tiled, -/area/engineering/engine_room/rust) -"lUR" = ( -/obj/machinery/atmospherics/binary/circulator{ - anchored = 1; +"lVj" = ( +/obj/machinery/appliance/cooker/stove, +/obj/effect/floor_decal/industrial/outline/grey, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/service/kitchen) +"lVr" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/obj/effect/floor_decal/industrial/outline_corner/yellow{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/outline_segment/yellow{ +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/effect/floor_decal/industrial/outline_segment/yellow{ - dir = 10 - }, -/turf/simulated/floor/plating, -/area/engineering/engine_room/turbine) -"lUS" = ( -/obj/structure/cable/green{ - icon_state = "1-4" +/obj/structure/disposalpipe/segment{ + dir = 4 }, /obj/structure/cable/green{ icon_state = "4-8" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ +/obj/effect/floor_decal/industrial/hatch_door/red, +/turf/simulated/floor/tiled/dark, +/area/horizon/rnd/xenoarch/atrium) +"lVy" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/atmospherics/pipe/simple/hidden{ dir = 6 }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 1 - }, -/obj/structure/cable/green{ - icon_state = "2-4" - }, -/obj/structure/engineer_maintenance/pipe{ - dir = 8 - }, -/obj/structure/engineer_maintenance/electric{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/lawoffice/consular_two) -"lUT" = ( -/obj/effect/floor_decal/corner/brown/diagonal, -/turf/simulated/floor/tiled/dark, -/area/outpost/mining_main/eva) -"lUZ" = ( -/obj/effect/floor_decal/corner/green/diagonal, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/horizon/crew_quarters/fitness/showers) -"lVd" = ( -/obj/machinery/atmospherics/pipe/simple/visible/universal{ +/obj/structure/bed/handrail{ dir = 4 }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/maintenance/aux_atmospherics/deck_2/starboard/wing) -"lVh" = ( -/obj/effect/landmark/entry_point/starboard{ - name = "engineering, hard storage" - }, -/turf/simulated/wall/shuttle/scc_space_ship/cardinal, -/area/engineering/storage_hard) -"lVi" = ( -/obj/structure/flora/ausbushes/sunnybush, -/turf/simulated/floor/grass/no_edge, -/area/horizon/cafeteria) -"lVn" = ( -/obj/effect/floor_decal/spline/fancy/wood/cee{ - dir = 8 - }, -/obj/structure/flora/ausbushes/ppflowers, -/turf/simulated/floor/grass/no_edge, -/area/bridge) -"lVt" = ( -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 5 - }, -/obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, -/area/maintenance/wing/starboard/deck1) +/area/horizon/shuttle/intrepid/port_compartment) +"lVA" = ( +/obj/structure/railing/mapped, +/obj/structure/platform/ledge{ + dir = 1 + }, +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/structure/platform/ledge{ + dir = 8 + }, +/turf/simulated/open, +/area/horizon/operations/office) +"lVC" = ( +/obj/structure/table/standard, +/obj/item/storage/bag/circuits/basic{ + pixel_y = 5; + pixel_x = -11 + }, +/obj/structure/platform{ + dir = 1 + }, +/obj/effect/floor_decal/spline/plain, +/turf/simulated/floor/carpet/rubber, +/area/horizon/operations/machinist) "lVF" = ( /obj/machinery/door/airlock/security{ dir = 4; @@ -84027,49 +84343,34 @@ }, /turf/simulated/floor/tiled/full, /area/horizon/security/investigators_office) -"lVH" = ( -/obj/effect/floor_decal/corner/purple{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/red{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/horizon/custodial/disposals) -"lVK" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/horizon/bar) -"lVL" = ( -/obj/machinery/light/small/emergency{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/wing/port) -"lVN" = ( -/obj/structure/bed/stool/chair/padded/brown{ +"lVP" = ( +/obj/machinery/light, +/obj/item/modular_computer/console/preset/command/teleporter{ dir = 4 }, -/obj/effect/floor_decal/spline/fancy/wood/cee{ - dir = 8 +/obj/effect/floor_decal/spline/plain/cee, +/turf/simulated/floor/carpet/rubber, +/area/horizon/command/teleporter) +"lVR" = ( +/obj/effect/floor_decal/corner/dark_blue/full{ + dir = 4 }, -/turf/simulated/floor/wood, -/area/hallway/primary/aft) -"lVQ" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/external{ - dir = 4; - frequency = 1380; - icon_state = "door_locked"; - id_tag = "escape_pod_4_berth_hatch"; - locked = 1; - name = "Escape Pod"; - req_access = list(13) +/obj/structure/cable/green{ + icon_state = "0-8" }, -/turf/simulated/floor/tiled, -/area/hangar/operations) +/obj/machinery/light_switch{ + dir = 1; + pixel_x = -9; + pixel_y = -24 + }, +/obj/machinery/camera/motion{ + c_tag = "Deck 1 - Teleporter"; + dir = 1; + network = list("Command","Security") + }, +/obj/machinery/power/apc/east, +/turf/simulated/floor/tiled/dark, +/area/horizon/command/teleporter) "lVS" = ( /obj/effect/floor_decal/corner/teal{ dir = 6 @@ -84079,18 +84380,6 @@ }, /turf/unsimulated/floor/marble, /area/antag/wizard) -"lVT" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard/deck1) "lVW" = ( /obj/structure/table/reinforced/steel, /obj/machinery/recharger{ @@ -84101,97 +84390,74 @@ }, /turf/unsimulated/floor/rubber_carpet, /area/centcom/control) -"lWd" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 +"lVY" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 5 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 6 - }, -/turf/simulated/floor/tiled/dark, -/area/storage/eva) -"lWh" = ( -/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, -/obj/effect/floor_decal/industrial/warning{ - dir = 6 - }, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard) -"lWs" = ( -/obj/structure/table/stone/marble, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/item/material/kitchen/rollingpin{ - pixel_x = 6; - pixel_y = 10 - }, -/obj/item/material/knife{ - pixel_x = -9 - }, -/obj/item/storage/box/produce, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/kitchen) -"lWu" = ( -/obj/machinery/bluespace_beacon, -/obj/effect/floor_decal/corner/black{ +/obj/structure/engineer_maintenance/electric{ dir = 8 }, -/turf/simulated/floor/tiled/dark, -/area/hangar/intrepid) +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_3/central) +"lWf" = ( +/obj/structure/table/wood, +/obj/machinery/recharger, +/obj/item/paper_scanner{ + pixel_x = -10 + }, +/obj/item/pen/black, +/obj/item/pen/blue{ + pixel_x = 4; + pixel_y = 4 + }, +/turf/simulated/floor/carpet, +/area/horizon/repoffice/representative_two) +"lWm" = ( +/obj/machinery/light, +/obj/effect/floor_decal/corner_wide/green{ + dir = 10 + }, +/obj/effect/floor_decal/corner_wide/green{ + dir = 1 + }, +/obj/structure/table/wood, +/obj/item/clipboard{ + pixel_x = -5 + }, +/obj/item/paper_scanner{ + pixel_x = 6 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/exam) +"lWr" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/industrial/warning/corner, +/turf/simulated/floor/reinforced, +/area/horizon/engineering/gravity_gen) +"lWt" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/horizon/command/bridge/controlroom) "lWw" = ( /obj/machinery/telecomms/bus/preset_cent, /turf/unsimulated/floor{ icon_state = "dark_preview" }, /area/centcom/control) -"lWx" = ( -/obj/machinery/door/airlock/external, -/obj/machinery/access_button{ - pixel_x = -28 - }, -/obj/effect/map_effect/marker_helper/airlock/exterior, -/obj/effect/map_effect/marker/airlock/docking{ - landmark_tag = "nav_horizon_dock_deck_3_starboard_3"; - master_tag = "airlock_horizon_dock_deck_3_starboard_3"; - name = "airlock_horizon_dock_deck_3_starboard_3" - }, -/turf/simulated/floor/plating, -/area/horizon/hallway/deck_three/primary/starboard/docks) -"lWy" = ( -/obj/effect/floor_decal/industrial/warning/corner, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 5 - }, -/obj/structure/bed/handrail{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/intrepid/engineering) "lWz" = ( /obj/machinery/light{ dir = 8 @@ -84200,33 +84466,11 @@ /obj/effect/floor_decal/corner/grey/full, /turf/unsimulated/floor, /area/antag/mercenary) -"lWF" = ( -/obj/machinery/atmospherics/pipe/simple/visible/cyan, -/turf/simulated/wall/shuttle/scc_space_ship/cardinal, -/area/engineering/engine_room/turbine) -"lWI" = ( -/obj/structure/railing/mapped, -/obj/structure/table/standard, -/obj/item/storage/toolbox/electrical{ - pixel_y = 10 - }, -/obj/item/storage/toolbox/mechanical{ - pixel_y = -3 - }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 10 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/dark, -/area/horizon/longbow) -"lWK" = ( -/obj/structure/bed/handrail{ - buckle_dir = 8; - dir = 8; - pixel_x = 5 - }, -/turf/simulated/floor/tiled/white, -/area/medical/ors) +"lWR" = ( +/obj/effect/floor_decal/industrial/warning/corner, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/port) "lWU" = ( /obj/machinery/light/small, /obj/structure/table/rack, @@ -84237,29 +84481,64 @@ icon_state = "dark_preview" }, /area/centcom/holding) -"lXa" = ( -/obj/structure/cable, -/obj/machinery/power/terminal{ - dir = 8 +"lWW" = ( +/obj/effect/floor_decal/spline/plain, +/obj/effect/floor_decal/spline/plain{ + dir = 1 }, -/obj/machinery/camera/network/engineering{ - c_tag = "Engineering - Deck 1 - Security Substation"; - dir = 8 - }, -/obj/machinery/light/small{ +/obj/machinery/atmospherics/pipe/simple/hidden/black{ dir = 4 }, -/turf/simulated/floor/plating, -/area/maintenance/substation/security) -"lXb" = ( -/obj/effect/landmark/entry_point/port{ - name = "port, atmospherics" +/obj/effect/floor_decal/sign/d{ + pixel_x = -10; + pixel_y = 4 }, -/turf/simulated/wall/shuttle/scc_space_ship/cardinal, -/area/engineering/engine_room/turbine) -"lXj" = ( -/turf/simulated/wall/r_wall, -/area/rnd/xenobiology/dissection) +/turf/simulated/floor/carpet/rubber, +/area/horizon/tcommsat/chamber) +"lXf" = ( +/obj/effect/floor_decal/industrial/warning/full, +/obj/machinery/door/blast/regular/open{ + fail_secure = 1; + id = "xenobio_a"; + name = "Cell Containment Blast Door" + }, +/obj/machinery/door/window/holowindoor{ + dir = 8; + req_access = list(55) + }, +/obj/machinery/door/window/holowindoor{ + dir = 4; + req_access = list(55) + }, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/rnd/xenobiology) +"lXg" = ( +/obj/structure/bed/stool/chair/padded/purple{ + dir = 1 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 10 + }, +/turf/simulated/floor/wood, +/area/horizon/command/heads/rd) +"lXk" = ( +/obj/effect/floor_decal/corner/purple/full, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/tiled, +/area/horizon/maintenance/deck_2/wing/port) +"lXl" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor/plating, +/area/horizon/engineering/hallway/fore) "lXn" = ( /obj/machinery/light{ dir = 4 @@ -84273,6 +84552,9 @@ /obj/effect/floor_decal/spline/fancy/wood/corner, /turf/unsimulated/floor/wood, /area/antag/burglar) +"lXv" = ( +/turf/simulated/wall/shuttle/scc_space_ship/cardinal, +/area/horizon/maintenance/deck_2/wing/port/far) "lXE" = ( /obj/structure/lattice/catwalk/indoor, /obj/machinery/door/airlock/maintenance_hatch{ @@ -84293,17 +84575,9 @@ }, /turf/simulated/floor/holofloor/carpet/rubber, /area/horizon/holodeck/source_basketball) -"lXM" = ( -/obj/machinery/disposal/small/north, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/machinery/newscaster/south, -/obj/effect/floor_decal/corner/beige{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/security/vacantoffice) +"lXN" = ( +/turf/simulated/floor/carpet, +/area/horizon/medical/psych) "lXO" = ( /obj/machinery/mech_recharger, /obj/effect/floor_decal/corner/dark_blue{ @@ -84311,57 +84585,68 @@ }, /turf/simulated/floor/tiled/dark, /area/shuttle/legion) -"lXS" = ( +"lYp" = ( /obj/structure/cable/green{ icon_state = "4-8" }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor, -/area/maintenance/engineering_ladder) -"lXV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass{ - dir = 1; - name = "Tech Storage" - }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/full, -/area/operations/lobby) -"lXZ" = ( -/obj/effect/floor_decal/corner/dark_blue/diagonal, /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/simulated/floor/tiled/dark, -/area/security/checkpoint) -"lYh" = ( -/obj/machinery/power/terminal{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/effect/floor_decal/industrial/warning{ +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 5 +/obj/machinery/atmospherics/pipe/simple/hidden/aux{ + dir = 8 }, -/obj/structure/cable/yellow{ - icon_state = "0-4" +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 4 + }, +/obj/machinery/door/airlock/maintenance_hatch{ + dir = 4; + req_one_access = list(12) }, /turf/simulated/floor/plating, -/area/engineering/engine_room/turbine) -"lYt" = ( -/obj/effect/floor_decal/corner_wide/yellow{ - dir = 10 - }, -/obj/machinery/camera/network/engineering{ - c_tag = "Engineering - Hallway 4"; +/area/horizon/maintenance/deck_1/main/port) +"lYr" = ( +/obj/random/junk, +/obj/machinery/light/small/emergency, +/obj/effect/floor_decal/industrial/warning{ dir = 1 }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/research) +"lYu" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/platform, +/turf/simulated/floor/wood, +/area/horizon/service/dining_hall) +"lYv" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/effect/floor_decal/corner/dark_green{ + dir = 9 + }, +/obj/machinery/alarm/west, /turf/simulated/floor/tiled, -/area/hallway/engineering) +/area/horizon/hangar/intrepid) "lYy" = ( /obj/machinery/door/airlock/glass{ dir = 4; @@ -84370,25 +84655,60 @@ }, /turf/simulated/floor/lino, /area/merchant_station) -"lYA" = ( -/obj/structure/railing/mapped, -/obj/effect/floor_decal/corner_wide/yellow{ - dir = 10 +"lYB" = ( +/obj/structure/table/standard, +/obj/effect/floor_decal/corner_wide/green/full{ + dir = 4 }, -/turf/simulated/floor/tiled, -/area/engineering/break_room) -"lYF" = ( -/obj/effect/floor_decal/corner/mauve{ - dir = 5 +/obj/machinery/alarm/east, +/obj/item/storage/toolbox/mechanical{ + pixel_x = 2; + pixel_y = 12 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/structure/cable/green{ - icon_state = "1-2" +/obj/item/storage/box/freezer/organcooler{ + pixel_x = -1; + pixel_y = 3 }, /turf/simulated/floor/tiled/white, -/area/rnd/xenobiology/xenological) +/area/horizon/medical/main_storage) +"lYC" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 7 + }, +/obj/effect/floor_decal/spline/fancy/wood/corner{ + dir = 1 + }, +/obj/machinery/light_switch{ + pixel_y = -19 + }, +/turf/simulated/floor/wood, +/area/horizon/command/heads/xo) +"lYE" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/reagent_dispensers/watertank, +/obj/item/reagent_containers/glass/bucket, +/turf/simulated/floor/tiled/dark, +/area/horizon/rnd/xenobiology/xenoflora) +"lYJ" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 5 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/extinguisher_cabinet/north, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_2/starboard) "lYK" = ( /obj/item/hullbeacon/red, /obj/structure/sign/securearea{ @@ -84399,48 +84719,113 @@ }, /turf/simulated/floor/reinforced/airless, /area/horizon/exterior) -"lYT" = ( -/obj/machinery/door/blast/shutters/open{ - dir = 2; - id = "shutters_deck2_eng_frontdesk"; - name = "Engineering Front Desk Shutter" - }, -/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/lobby) -"lYV" = ( -/obj/machinery/atmospherics/pipe/simple/visible/black{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/engineering/atmos/propulsion/starboard) -"lZa" = ( -/obj/machinery/portable_atmospherics/hydroponics, -/obj/effect/floor_decal/industrial/outline/service, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/hydroponics) -"lZu" = ( -/obj/machinery/door/airlock/maintenance{ - dir = 1; - name = "Maintenance Passthrough"; - req_one_access = list(12,31,48,67) - }, -/obj/machinery/door/firedoor, +"lYL" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable{ +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; icon_state = "1-2" }, -/turf/simulated/floor/tiled/full, -/area/horizon/stairwell/central) -"lZz" = ( -/obj/effect/floor_decal/corner/green/diagonal, -/obj/structure/curtain/open, -/turf/simulated/floor/tiled/white, -/area/medical/ward/isolation) +/turf/simulated/floor/wood, +/area/horizon/service/dining_hall) +"lYW" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/horizon/command/bridge/upperdeck) +"lYY" = ( +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/atmos/propulsion/starboard) +"lZc" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 6 + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/alarm/west, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/aux{ + dir = 5 + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/auxatmos) +"lZg" = ( +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/structure/table/standard, +/obj/effect/floor_decal/corner/brown{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/power/apc/low/north, +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/obj/structure/sign/drop{ + desc = "A warning sign which reads 'DANGER: FALLING HAZARD' and 'THIS EQUIPMENT STARTS AND STOPS AUTOMATICALLY'."; + name = "\improper DANGER: FALLING HAZARD sign"; + pixel_x = -48; + pixel_y = 32 + }, +/obj/item/folder/yellow{ + pixel_x = -2; + pixel_y = 2 + }, +/obj/item/pen/black{ + pixel_x = -2; + pixel_y = 1 + }, +/turf/simulated/floor/tiled, +/area/horizon/operations/office_aux) +"lZh" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/effect/floor_decal/corner/dark_green{ + dir = 10 + }, +/obj/machinery/camera/network/second_deck{ + c_tag = "Second Deck - Medical Entrance"; + dir = 1 + }, +/obj/machinery/ringer_button{ + id = "ringers_custodialaux"; + name = "\improper Auxiliary Custodial Ringer"; + pixel_x = 8; + pixel_y = -22 + }, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_2/starboard) +"lZm" = ( +/obj/structure/bed/stool/chair/shuttle{ + dir = 8 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/shuttle/dark_blue, +/area/horizon/shuttle/escape_pod/pod4) +"lZv" = ( +/obj/machinery/power/apc/west, +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/obj/machinery/firealarm/south, +/obj/effect/floor_decal/spline/plain{ + dir = 10 + }, +/turf/simulated/floor/carpet/rubber, +/area/horizon/engineering/reactor/supermatter/monitoring) +"lZy" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 9 + }, +/turf/simulated/floor/plating, +/area/horizon/engineering/atmos/air) "lZF" = ( /obj/structure/grille, /obj/machinery/door/firedoor, @@ -84451,97 +84836,39 @@ /obj/structure/window/shuttle/scc_space_ship/cardinal, /turf/simulated/floor/plating, /area/shuttle/merchant) -"lZI" = ( -/obj/effect/map_effect/window_spawner/full/shuttle/scc{ - spawn_firedoor = 1; - spawn_grille = 1 - }, -/obj/machinery/door/blast/shutters/open{ - dir = 8; - id = "intrepid_bay_windows"; - name = "Intrepid Shutter" - }, -/turf/simulated/floor/plating, -/area/shuttle/intrepid/flight_deck) -"lZJ" = ( -/obj/structure/lattice, -/obj/structure/cable/green{ - icon_state = "11-1" - }, -/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/zpipe/down/supply{ - dir = 1 - }, -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/structure/railing/mapped{ - dir = 4 - }, -/turf/simulated/open, -/area/horizon/maintenance/deck_two/fore/port) -"lZN" = ( -/obj/effect/floor_decal/corner/mauve/full, -/turf/simulated/floor/tiled/white, -/area/storage/eva) -"lZR" = ( -/obj/effect/floor_decal/corner/brown{ - dir = 6 - }, -/obj/machinery/disposal/small/west, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/operations/lobby) -"lZS" = ( -/obj/structure/platform/ledge{ - dir = 4 - }, -/obj/machinery/seed_extractor, -/obj/effect/floor_decal/corner/lime{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora) -"lZV" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/machinery/light, -/turf/simulated/floor/tiled/full, -/area/operations/office_aux) -"lZW" = ( -/obj/machinery/camera/network/service{ - c_tag = "Service - Chapel Storage"; - dir = 4 - }, -/obj/structure/closet/crate/coffin, -/obj/structure/closet/crate/coffin{ - pixel_y = 4 +"lZY" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 9 }, +/obj/structure/table/rack, +/obj/item/ship_ammunition/grauwolf_probe, +/obj/item/ship_ammunition/grauwolf_probe, +/obj/item/ship_ammunition/grauwolf_probe, +/obj/item/ship_ammunition/grauwolf_probe, +/obj/item/ship_ammunition/grauwolf_probe, +/obj/item/ship_ammunition/grauwolf_probe, +/obj/item/ship_ammunition/grauwolf_probe, +/obj/item/ship_ammunition/grauwolf_probe, +/obj/item/ship_ammunition/grauwolf_probe, +/obj/item/ship_ammunition/grauwolf_probe, /turf/simulated/floor/tiled/dark, -/area/chapel/office) -"lZZ" = ( -/obj/structure/cable/green{ - icon_state = "4-8" +/area/horizon/weapons/grauwolf) +"maa" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 9 }, -/obj/effect/floor_decal/spline/plain{ - dir = 8 - }, -/turf/simulated/floor/carpet/rubber, -/area/engineering/bluespace_drive/monitoring) -"mab" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/button/remote/airlock{ + id = "hazardous_access"; + name = "Hazardous Containment"; + req_access = list(55); + specialfunctions = 4; + dir = 8; + pixel_x = -23; + desiredstate = 1 }, /turf/simulated/floor/tiled/white, -/area/medical/pharmacy) +/area/horizon/rnd/xenobiology/foyer) "mad" = ( /obj/structure/table/reinforced/steel, /obj/item/paper_bin{ @@ -84560,6 +84887,35 @@ /obj/effect/floor_decal/corner/black/diagonal, /turf/simulated/floor/tiled/dark, /area/shuttle/burglar) +"mag" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/machinery/button/remote/airlock{ + id = "xeno_entrance_ext"; + name = "Xenobiology External Access Bolts"; + pixel_y = 26; + req_access = list(55); + specialfunctions = 4; + dir = 10; + pixel_x = 32; + desiredstate = 1 + }, +/obj/effect/floor_decal/corner/mauve{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/xenobiology/foyer) "mai" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 4 @@ -84601,103 +84957,73 @@ }, /turf/simulated/floor/tiled, /area/horizon/security/brig) -"map" = ( -/obj/effect/floor_decal/corner/brown{ - dir = 9 - }, -/obj/machinery/alarm/west, -/turf/simulated/floor/tiled, -/area/operations/storage) -"maq" = ( -/obj/structure/shuttle_part/scc/scout{ - density = 0; - icon_state = "6,2"; - outside_part = 0 - }, -/obj/machinery/iff_beacon/horizon/shuttle, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/visible/fuel, -/turf/simulated/floor/reinforced, -/area/shuttle/canary) -"mar" = ( -/obj/effect/floor_decal/corner/mauve/diagonal, -/obj/machinery/light/floor, -/obj/machinery/disposal/small/north, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/lab) -"mas" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, -/obj/structure/disposalpipe/junction{ - dir = 8 - }, -/turf/simulated/floor/tiled/full, -/area/hallway/primary/central_one) "mav" = ( /obj/effect/floor_decal/spline/plain/corner, /obj/structure/flora/ausbushes/sunnybush, /turf/simulated/floor/exoplanet/grass, /area/centcom/shared_dream) -"maw" = ( -/obj/structure/cable/green{ - icon_state = "1-2" +"maz" = ( +/obj/effect/floor_decal/corner/dark_blue/diagonal, +/obj/random/pottedplant, +/obj/structure/railing/mapped{ + dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/full, -/area/hallway/primary/central_one) -"maA" = ( -/obj/structure/disposalpipe/sortjunction/flipped{ - dir = 8; - name = "Journalist"; - sortType = "Journalist" +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/structure/platform{ + dir = 1 + }, +/obj/machinery/alarm/north{ + pixel_y = -7; + pixel_x = -1; + dir = 2 + }, +/turf/simulated/floor/tiled, +/area/horizon/command/bridge/upperdeck) +"maF" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/obj/structure/platform_deco{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/horizon/service/dining_hall) +"maH" = ( +/obj/effect/floor_decal/corner_wide/purple{ + dir = 10 + }, +/obj/effect/floor_decal/corner_wide/purple{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 }, /obj/structure/cable/green{ icon_state = "4-8" }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, +/obj/machinery/light, /obj/structure/cable/green{ - icon_state = "2-8" + icon_state = "1-8" }, -/obj/structure/lattice/catwalk/indoor/grate, -/turf/simulated/floor, -/area/horizon/hallway/deck_three/primary/port) -"maC" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 10 +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/xenoarch/atrium) +"maJ" = ( +/obj/effect/floor_decal/corner_wide/grey/diagonal, +/obj/structure/noticeboard{ + pixel_x = 32 }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" +/obj/structure/table/standard, +/obj/item/storage/box/snack{ + desc = "A box full of snack foods. A label is attached that reads, 'Sorry about the microwaves.'"; + name = "corporate care package" }, -/turf/simulated/floor/tiled, -/area/horizon/crew_quarters/fitness/changing) -"maI" = ( -/obj/structure/bed/stool/chair/office/light{ - dir = 8 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/engineering/drone_fabrication) +/obj/effect/floor_decal/spline/plain, +/turf/simulated/floor/tiled/white, +/area/horizon/operations/break_room) "maQ" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/fake_object{ @@ -84707,10 +85033,10 @@ }, /turf/unsimulated/floor/monotile, /area/antag/raider) -"maV" = ( -/obj/effect/floor_decal/corner_wide/green/diagonal, -/turf/simulated/floor/tiled/white, -/area/medical/equipment) +"maS" = ( +/obj/machinery/alarm/south, +/turf/simulated/floor/plating, +/area/horizon/maintenance/substation/security) "maY" = ( /obj/effect/floor_decal/spline/plain, /turf/simulated/floor/beach/sand{ @@ -84723,16 +85049,17 @@ /obj/effect/decal/cleanable/dirt, /turf/unsimulated/floor/plating, /area/centcom/legion) -"mbb" = ( -/obj/effect/floor_decal/corner/white/diagonal, -/obj/machinery/light, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/machinery/firealarm/south, -/obj/structure/table/standard, +"mbc" = ( +/obj/effect/floor_decal/corner/dark_green/diagonal, +/obj/machinery/newscaster/north, /turf/simulated/floor/tiled, -/area/medical/paramedic) +/area/horizon/security/checkpoint2) +"mbg" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 5 + }, +/turf/simulated/floor/plating, +/area/horizon/engineering/reactor/supermatter/mainchamber) "mbh" = ( /turf/simulated/floor/exoplanet/water/shallow{ dir = 6; @@ -84761,26 +85088,6 @@ }, /turf/unsimulated/floor/dark_monotile, /area/antag/actor) -"mbm" = ( -/obj/structure/table/rack/folding_table, -/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{ - pixel_y = 13 - }, -/obj/item/material/stool/chair/folding{ - pixel_y = 13 - }, -/obj/item/material/stool/chair/folding{ - pixel_y = 13 - }, -/obj/item/material/stool/chair/folding{ - pixel_y = 13 - }, -/turf/simulated/floor/plating, -/area/maintenance/wing/cargo_compartment) "mbo" = ( /obj/effect/floor_decal/corner_wide/dark_green{ dir = 10 @@ -84788,12 +85095,12 @@ /obj/effect/decal/cleanable/blood/oil, /turf/simulated/floor/tiled/dark, /area/shuttle/skipjack) -"mbp" = ( -/obj/structure/bed/stool/chair/shuttle{ - dir = 4 +"mbt" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 }, -/turf/simulated/floor/shuttle/dark_blue, -/area/shuttle/escape_pod/pod2) +/turf/simulated/floor/carpet/rubber, +/area/horizon/engineering/reactor/indra/mainchamber) "mbu" = ( /obj/effect/floor_decal/corner/red{ dir = 10 @@ -84804,25 +85111,6 @@ }, /turf/unsimulated/floor, /area/centcom/evac) -"mby" = ( -/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/machinery/conveyor{ - dir = 1; - id = "QMLoad" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/operations/loading) "mbA" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/floor_decal/corner/grey{ @@ -84831,14 +85119,54 @@ /obj/machinery/vending/generic_clothing, /turf/unsimulated/floor, /area/antag/raider) -"mbI" = ( -/obj/machinery/atmospherics/pipe/simple/visible/green{ - dir = 4 +"mbC" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 8 }, -/obj/structure/closet/firecloset/full, -/obj/effect/floor_decal/industrial/outline/firefighting_closet, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/atmos/propulsion/starboard) +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/horizon/engineering/hallway/fore) +"mbD" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 6 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/camera/network/command{ + c_tag = "Bridge - Port 1"; + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/horizon/command/bridge/controlroom) +"mbF" = ( +/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/horizon/engineering/lobby) +"mbP" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/effect/floor_decal/corner/brown{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/horizon/hangar/operations) +"mbQ" = ( +/obj/effect/decal/cleanable/generic, +/turf/simulated/floor/carpet/rubber, +/area/horizon/maintenance/deck_1/workshop) "mbR" = ( /obj/effect/floor_decal/corner/dark_blue{ dir = 6 @@ -84851,96 +85179,29 @@ }, /turf/unsimulated/floor/plating, /area/shuttle/syndicate_elite) -"mbY" = ( -/obj/structure/railing/mapped, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ +"mbU" = ( +/obj/machinery/light{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/light/small/emergency{ - dir = 1 - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/maintenance/engineering_ladder) -"mbZ" = ( -/obj/structure/bed/stool/chair/shuttle/double{ - pixel_x = -8; - dir = 1 - }, -/obj/structure/bed/stool/chair/shuttle/double{ - pixel_x = 8; - dir = 1 - }, -/obj/effect/floor_decal/spline/plain/cee/black{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark/full, -/area/shuttle/intrepid/main_compartment) -"mcc" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/item/storage/toolbox/electrical{ - pixel_y = 5 - }, -/obj/item/storage/toolbox/mechanical{ - pixel_y = -2 - }, -/obj/item/device/multitool, -/obj/item/hoist_kit{ - pixel_y = 7 - }, -/obj/structure/table/rack, -/obj/item/device/binoculars/high_power{ - pixel_x = -2; - pixel_y = -1 - }, -/obj/item/device/radio, -/obj/item/device/radio, -/obj/item/device/flashlight/flare, -/obj/item/device/flashlight/flare, -/obj/machinery/recharger/wallcharger{ - pixel_x = 28; - pixel_y = 13 - }, -/obj/item/crowbar/red, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 6 - }, -/obj/machinery/camera/network/canary{ - c_tag = "Canary - Main Compartment"; - dir = 1 - }, -/obj/item/storage/bag/inflatable, -/obj/machinery/alarm/east{ - dir = 2; - pixel_x = 0; - req_one_access = list(24,11,73,74) - }, -/obj/item/device/gps/stationary/sccv_canary{ - pixel_x = 23; - pixel_y = -9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 5 - }, -/turf/simulated/floor/tiled/dark/full, -/area/shuttle/canary) -"mch" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 8 - }, +/obj/structure/reagent_dispensers/water_cooler, /turf/simulated/floor/tiled, -/area/engineering/lobby) +/area/horizon/operations/machinist/surgicalbay) +"mce" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/freezer{ + name = "cooled tiles"; + temperature = 253.15 + }, +/area/horizon/service/kitchen/freezer) "mci" = ( /obj/effect/floor_decal/industrial/warning/corner{ dir = 4 @@ -84955,56 +85216,39 @@ }, /turf/simulated/floor/plating, /area/merchant_station/warehouse) -"mck" = ( -/obj/machinery/power/smes/buildable{ - RCon_tag = "INDRA - Containment"; - charge = 2000000; - input_attempt = 1; - input_level = 150000; - input_level_max = 350000; - is_critical = 1; - output_attempt = 1; - output_level = 150000; - output_level_max = 350000 +"mco" = ( +/obj/structure/lattice, +/turf/simulated/open, +/area/horizon/medical/hallway/upper) +"mcs" = ( +/obj/machinery/atmospherics/portables_connector/fuel{ + dir = 8 }, -/obj/structure/cable/orange{ - icon_state = "0-8" +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/alarm/east{ + req_one_access = list(11, 24, 47, 65) }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/shuttle/intrepid/port_storage) +"mcA" = ( +/obj/machinery/atmospherics/pipe/simple/visible/red{ + dir = 10 + }, +/turf/simulated/floor/reinforced/n20, +/area/horizon/engineering/atmos/air) +"mcN" = ( +/obj/structure/trash_pile, +/obj/random/dirt_75, /turf/simulated/floor/plating, -/area/engineering/engine_room/rust) -"mcp" = ( -/obj/effect/floor_decal/corner/purple{ - dir = 5 +/area/horizon/maintenance/deck_2/wing/starboard/far) +"mcU" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/vending/actor, +/obj/machinery/light/small{ + dir = 8 }, -/obj/machinery/button/remote/blast_door{ - id = "shutters_deck2_auxcustdesk"; - name = "Auxiliary Custodial Closet Desk Shutter"; - pixel_x = -25; - pixel_y = 25; - req_access = list(26) - }, -/obj/machinery/button/remote/blast_door{ - id = "shutters_deck2_auxcustwindow"; - name = "Auxiliary Custodial Closet Window Shutter"; - pixel_x = -36; - pixel_y = 25; - req_access = list(26) - }, -/obj/structure/bed/stool/chair/office/dark{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/horizon/custodial/auxiliary) -"mcC" = ( -/obj/structure/shuttle_part/scc/scout{ - icon_state = "1,5" - }, -/turf/simulated/floor/plating, -/area/shuttle/canary) -"mcV" = ( -/obj/effect/floor_decal/corner/dark_blue/diagonal, -/turf/simulated/floor/tiled, -/area/bridge) +/turf/unsimulated/floor/dark_monotile, +/area/antag/actor) "mcW" = ( /obj/effect/floor_decal/corner/beige/full{ dir = 8 @@ -85022,6 +85266,13 @@ "mcZ" = ( /turf/unsimulated/floor, /area/centcom/spawning) +"mde" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled, +/area/horizon/operations/warehouse) "mdh" = ( /obj/structure/lattice/catwalk, /obj/structure/railing/mapped, @@ -85031,39 +85282,26 @@ }, /turf/simulated/open/airless, /area/horizon/exterior) +"mdl" = ( +/obj/effect/floor_decal/corner/dark_blue/diagonal, +/turf/simulated/floor/tiled, +/area/horizon/command/bridge/upperdeck) "mdn" = ( /obj/effect/floor_decal/corner/teal/full{ dir = 8 }, /turf/unsimulated/floor/marble, /area/antag/wizard) -"mdq" = ( -/obj/machinery/button/remote/blast_door{ - dir = 4; - id = "bar_shutter"; - name = "Desk Shutters"; - pixel_x = 19; - pixel_y = 34; - req_access = list(25) +"mdo" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 }, -/turf/simulated/floor/lino, -/area/horizon/bar) -"mds" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 +/obj/structure/tank_wall/air{ + icon_state = "air2" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/spline/plain/corner{ - dir = 4 - }, -/turf/simulated/floor/carpet/rubber, -/area/engineering/engine_monitoring/rust) -"mdt" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/black, -/turf/simulated/floor/tiled/dark, -/area/engineering/engine_waste) +/obj/machinery/atmospherics/pipe/simple/visible, +/turf/simulated/floor/plating, +/area/horizon/engineering/atmos/air) "mdD" = ( /obj/effect/floor_decal/spline/plain/cee{ dir = 8 @@ -85076,9 +85314,17 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/unsimulated/floor/monotile, /area/antag/raider) -"mdL" = ( -/turf/simulated/wall/shuttle/scc_space_ship/cardinal, -/area/horizon/hydroponics/lower) +"mdM" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 8 + }, +/obj/effect/map_effect/marker/airlock/docking{ + landmark_tag = "nav_horizon_dock_deck_3_starboard_2"; + master_tag = "airlock_horizon_dock_deck_3_starboard_2"; + name = "airlock_horizon_dock_deck_3_starboard_2" + }, +/turf/simulated/floor/plating, +/area/horizon/hallway/primary/deck_3/port/docks) "mdQ" = ( /obj/structure/table/stone/marble, /obj/item/reagent_containers/food/snacks/taco{ @@ -85099,54 +85345,36 @@ }, /turf/unsimulated/floor, /area/centcom/bar) -"mdW" = ( -/turf/simulated/wall/shuttle/scc_space_ship/cardinal, -/area/crew_quarters/lounge) -"mdZ" = ( -/obj/structure/cable/green{ - icon_state = "1-2" +"mdY" = ( +/obj/item/device/radio/intercom/east, +/obj/effect/floor_decal/corner_wide/green{ + dir = 6 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/machinery/atmospherics/pipe/simple/hidden/green, -/turf/simulated/floor/plating, -/area/maintenance/engineering) -"mee" = ( -/obj/machinery/firealarm/south, -/turf/simulated/floor/tiled/dark, -/area/horizon/bar/backroom) -"mei" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 +/obj/effect/landmark/start{ + name = "Pharmacist" }, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 +/obj/structure/bed/stool/chair{ + dir = 8 }, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/hallway/upper) +"mea" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/obj/machinery/door/airlock/multi_tile/glass{ - dir = 2; - name = "Deck 3 Starboard Docks" - }, -/turf/simulated/floor/tiled/full, -/area/horizon/hallway/deck_three/primary/starboard/docks) -"mek" = ( -/obj/machinery/atmospherics/pipe/simple/visible{ +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/machinery/button/remote/airlock{ - id = "xeno_bot_hazard"; - name = "Xenobotany Hazardous Specimens"; - pixel_y = 30; - req_access = list(52); - specialfunctions = 4; - dir = 1 +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 }, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology/xenoflora) +/turf/simulated/floor/wood, +/area/horizon/crew/lounge) +"meg" = ( +/obj/effect/floor_decal/industrial/outline/grey, +/obj/structure/reagent_dispensers/watertank, +/turf/simulated/floor/plating, +/area/horizon/hangar/intrepid) "mel" = ( /obj/effect/floor_decal/industrial/warning{ dir = 8 @@ -85163,61 +85391,25 @@ }, /turf/simulated/floor/holofloor/tiled, /area/horizon/holodeck/source_emptycourt) -"mew" = ( -/obj/structure/window/shuttle/unique/scc/scout, -/obj/structure/window/shuttle/unique/scc/scout/over, -/obj/structure/window/shuttle/unique/scc/scout{ - density = 0; - icon_state = "3,1"; - pixel_x = -32 +"mex" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 10 }, -/obj/structure/window/shuttle/unique/scc/scout{ - density = 0; - icon_state = "5,1"; - pixel_x = 32 - }, -/obj/structure/shuttle_part/scc/scout{ - density = 0; - icon_state = "3,0"; - pixel_x = -32; - pixel_y = -32 - }, -/obj/structure/shuttle_part/scc/scout{ - density = 0; - icon_state = "5,0"; - pixel_x = 32; - pixel_y = -32 - }, -/obj/structure/window/shuttle/unique/scc/scout/over{ - density = 0; - icon_state = "5,1"; - pixel_x = 32 - }, -/obj/structure/window/shuttle/unique/scc/scout/over{ - density = 0; - icon_state = "3,1"; - pixel_x = -32 - }, -/obj/effect/landmark/entry_point/fore{ - name = "fore, cockpit" - }, -/turf/simulated/floor/plating, -/area/shuttle/canary) -"mey" = ( -/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/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 }, /turf/simulated/floor/tiled, -/area/hangar/intrepid) +/area/horizon/engineering/reactor/indra/office) +"meD" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/hangar/starboard) "meE" = ( /obj/structure/reagent_dispensers/keg/beerkeg{ pixel_y = -6 @@ -85236,13 +85428,48 @@ }, /turf/simulated/floor/holofloor/carpet, /area/horizon/holodeck/source_courtroom) -"meL" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass{ +"meH" = ( +/obj/structure/table/standard, +/obj/effect/floor_decal/corner/brown/full{ dir = 4 }, -/turf/simulated/floor/tiled/full, -/area/horizon/hallway/deck_three/primary/port/docks) +/obj/item/device/destTagger, +/obj/item/paper_scanner, +/obj/item/device/quikpay{ + destinationact = "Operations" + }, +/obj/random/pottedplant_small{ + pixel_x = 9; + pixel_y = 16 + }, +/turf/simulated/floor/tiled, +/area/horizon/operations/office) +"meI" = ( +/obj/effect/floor_decal/corner/grey/diagonal, +/obj/effect/floor_decal/spline/plain{ + dir = 1 + }, +/obj/effect/floor_decal/spline/plain, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/service/kitchen) +"meJ" = ( +/obj/effect/floor_decal/industrial/warning/cee{ + dir = 4 + }, +/obj/machinery/atmospherics/binary/pump/on{ + dir = 4; + name = "Distro to Port Docks"; + target_pressure = 200 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor/plating, +/area/horizon/hallway/primary/deck_3/starboard/docks) "meN" = ( /obj/structure/bed/stool/padded/brown, /obj/effect/landmark{ @@ -85255,12 +85482,25 @@ icon_state = "carpet14-10" }, /area/centcom/legion/hangar5) +"meR" = ( +/obj/machinery/door/blast/regular/open{ + dir = 8; + id = "hangarlockdown"; + name = "Hangar Lockdown" + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/hangar/intrepid) "meU" = ( /obj/effect/floor_decal/spline/plain{ dir = 4 }, /turf/simulated/floor/exoplanet/barren/raskara, /area/centcom/shared_dream) +"meV" = ( +/obj/random/pottedplant, +/obj/effect/floor_decal/spline/fancy/wood/full, +/turf/simulated/floor/wood, +/area/horizon/hallway/primary/deck_3/central) "meW" = ( /obj/structure/closet/emcloset/communal, /obj/effect/floor_decal/corner/dark_blue/full{ @@ -85272,27 +85512,17 @@ }, /turf/simulated/floor/tiled, /area/horizon/security/brig) -"mfh" = ( -/obj/effect/floor_decal/spline/plain, -/obj/effect/floor_decal/spline/plain{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/black{ - dir = 4 - }, -/obj/effect/floor_decal/sign/d{ - pixel_x = -10; - pixel_y = 4 - }, -/turf/simulated/floor/carpet/rubber, -/area/tcommsat/chamber) -"mfi" = ( -/obj/structure/table/rack, -/obj/item/trap/animal/medium, -/obj/item/trap/animal/medium, -/obj/effect/floor_decal/industrial/hatch/yellow, +"mfe" = ( /turf/simulated/floor/tiled/dark/full, -/area/rnd/xenobiology/foyer) +/area/horizon/maintenance/deck_3/aft/port/far) +"mfj" = ( +/obj/effect/floor_decal/plaque{ + desc = "A plaque commemorating the SCCV Horizon's launch by the unbreakable chainlink, the SCC. The one thing holding the Orion Spur together. According to some, anyways."; + name = "\improper SCCV Horizon plaque" + }, +/obj/effect/floor_decal/spline/fancy/wood/full, +/turf/simulated/floor/wood, +/area/horizon/service/dining_hall) "mfl" = ( /obj/machinery/light{ dir = 1 @@ -85302,42 +85532,23 @@ }, /turf/unsimulated/floor, /area/centcom/control) -"mfn" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, +"mfr" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/plating, -/area/maintenance/wing/starboard/deck1) -"mfo" = ( +/area/horizon/maintenance/deck_2/aft) +"mfA" = ( /turf/simulated/wall/r_wall, -/area/rnd/xenobiology/xenological) -"mfu" = ( -/obj/machinery/artifact_scanpad, -/obj/effect/floor_decal/spline/plain{ - dir = 10 - }, -/turf/simulated/floor/bluegrid, -/area/rnd/isolation_b) -"mfv" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/structure/table/rack, -/obj/random/loot, -/turf/simulated/floor, -/area/maintenance/engineering_ladder) -"mfw" = ( +/area/horizon/command/heads/captain) +"mfD" = ( /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) +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/dark, +/area/horizon/rnd/lab) +"mfG" = ( +/turf/simulated/wall/r_wall, +/area/horizon/command/heads/rd) "mfI" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 8 @@ -85356,12 +85567,57 @@ /obj/effect/floor_decal/corner/green/full, /turf/simulated/floor/holofloor/tiled, /area/horizon/holodeck/source_thunderdomecourt) +"mfS" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/orderterminal{ + dir = 1; + pixel_x = 14; + pixel_y = 32 + }, +/obj/machinery/atm{ + dir = 1; + pixel_y = 32; + pixel_x = -6 + }, +/turf/simulated/floor/lino, +/area/horizon/service/dining_hall) "mfU" = ( /obj/structure/shuttle_part/ccia{ icon_state = "2,4" }, /turf/unsimulated/floor/plating, /area/shuttle/transport1) +"mfZ" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner/dark_blue{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/horizon/command/bridge/supply) +"mgc" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner/dark_blue{ + dir = 6 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/ai/upload_foyer) +"mgf" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/structure/window/reinforced{ + dir = 8 + }, +/mob/living/carbon/human/monkey/punpun, +/turf/simulated/floor/carpet, +/area/horizon/service/bar/backroom) "mgj" = ( /obj/machinery/light{ dir = 4 @@ -85374,64 +85630,97 @@ /obj/effect/decal/cleanable/dirt, /turf/unsimulated/floor/wood, /area/antag/burglar) -"mgm" = ( -/obj/machinery/door/airlock/external{ +"mgk" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/shuttle/intrepid/starboard_compartment) +"mgt" = ( +/obj/effect/floor_decal/corner/red/diagonal, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/machinery/air_sensor{ + frequency = 1441; + id_tag = "n2o_sensor" + }, +/obj/effect/decal/fake_object/light_source/invisible, +/turf/simulated/floor/reinforced/n20, +/area/horizon/engineering/atmos/air) +"mgy" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ 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; +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock{ + dir = 4; + name = "Locker Room" + }, +/turf/simulated/floor/tiled, +/area/horizon/crew/fitness/changing) +"mgz" = ( +/obj/structure/plasticflaps/airtight, +/obj/effect/floor_decal/industrial/hatch_door/yellow{ 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/machinery/door/firedoor, +/obj/effect/map_effect/door_helper/lock, +/obj/machinery/door/airlock/service{ + id_tag = "hydro_hazard"; + name = "Hazardous Specimens"; + req_access = list(35) + }, +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/service/hydroponics/lower) +"mgA" = ( +/obj/structure/grille, +/obj/machinery/door/firedoor, +/obj/structure/window/shuttle/scc_space_ship/cardinal, +/obj/machinery/door/blast/shutters{ + dir = 4; + id = "shutters_deck2_hydroponicswindowssafety"; + name = "Viewing Shutter" }, -/obj/effect/map_effect/marker_helper/airlock/exterior, /turf/simulated/floor/plating, -/area/shuttle/quark/cockpit) -"mgn" = ( -/obj/machinery/power/terminal{ - dir = 1 +/area/horizon/service/hydroponics) +"mgC" = ( +/obj/structure/platform, +/obj/structure/table/standard, +/obj/machinery/photocopier/faxmachine{ + department = "Research Director's Office" }, -/obj/structure/cable{ - icon_state = "0-4" +/turf/simulated/floor/wood, +/area/horizon/command/heads/rd) +"mgE" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 5 }, -/obj/machinery/camera/network/engineering{ - c_tag = "Engineering - Deck 3 - Civilian Substation"; - dir = 1 +/obj/machinery/status_display{ + pixel_y = 32 }, -/turf/simulated/floor, -/area/maintenance/substation/civilian_east) -"mgq" = ( /obj/machinery/light/floor{ dir = 1 }, -/obj/structure/platform/ledge, -/turf/simulated/floor/carpet/rubber, -/area/rnd/telesci) -"mgs" = ( -/turf/simulated/wall/r_wall, -/area/bridge/cciaroom) -"mgD" = ( -/obj/effect/floor_decal/corner/dark_blue/full{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/keycard_auth{ - dir = 8; - pixel_x = 20 - }, -/obj/structure/platform_stairs/full{ - dir = 10 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge/controlroom) +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_3/port) "mgF" = ( /turf/simulated/wall/shuttle/unique/ccia{ icon_state = "10,3" @@ -85447,196 +85736,128 @@ /obj/structure/railing/mapped, /turf/simulated/open/airless, /area/horizon/exterior) -"mgI" = ( -/obj/structure/railing/mapped, +"mgN" = ( +/obj/effect/landmark/entry_point/port{ + name = "port, compartment" + }, +/turf/simulated/wall/shuttle/unique/scc/scout{ + icon_state = "6,7" + }, +/area/horizon/shuttle/canary) +"mgO" = ( /obj/effect/floor_decal/corner/dark_blue{ dir = 10 }, -/turf/simulated/floor/tiled/dark, -/area/horizon/longbow) -"mgJ" = ( +/obj/machinery/camera/network/command{ + c_tag = "Bridge - XO Line"; + dir = 1; + network = list("Command","XO_Office") + }, /obj/structure/table/standard, -/obj/item/modular_computer/laptop/preset/engineering/ce{ - pixel_y = 3 +/obj/machinery/recharger{ + pixel_x = -8; + pixel_y = 8 }, -/obj/item/storage/slide_projector{ - pixel_y = 12 +/obj/item/device/toner, +/obj/item/device/toner, +/obj/item/paper_bin{ + pixel_x = 5; + pixel_y = 9 }, -/turf/simulated/floor/wood, -/area/crew_quarters/heads/chief) -"mgP" = ( -/obj/structure/bed/stool/bar/padded/teal{ - dir = 4 - }, -/obj/effect/floor_decal/corner/red/diagonal, -/obj/effect/floor_decal/spline/plain{ - dir = 5 - }, -/turf/simulated/floor/lino, -/area/horizon/cafeteria) -"mgR" = ( -/obj/machinery/atmospherics/pipe/simple/visible/cyan{ - dir = 9 - }, -/obj/effect/floor_decal/corner/yellow{ - dir = 9 - }, -/turf/simulated/floor/tiled/dark, -/area/engineering/engine_waste) -"mgZ" = ( -/obj/machinery/power/apc/north, -/obj/structure/cable/green{ - icon_state = "0-2" - }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 5 - }, -/turf/simulated/floor/tiled/dark, -/area/horizon/grauwolf) -"mhb" = ( -/obj/effect/floor_decal/corner/brown{ - dir = 5 +/obj/item/pen{ + pixel_y = 9; + pixel_x = 4 }, /turf/simulated/floor/tiled, -/area/operations/storage) -"mhd" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/railing/mapped{ +/area/horizon/command/bridge/upperdeck) +"mgX" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ dir = 4 }, -/obj/structure/dispenser/oxygen, -/turf/simulated/floor/tiled/full, -/area/hangar/intrepid) -"mhf" = ( -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"mhl" = ( -/obj/structure/bed/stool/chair/folding{ - dir = 8 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/atmos/propulsion/starboard) +"mhg" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 }, -/turf/simulated/floor/plating, -/area/engineering/rust_office) -"mhr" = ( -/obj/machinery/requests_console/north{ - department = "Atmospherics"; - departmentType = 4; - name = "Atmos RC" - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/closet/crate, -/obj/item/stock_parts/manipulator, -/obj/item/stock_parts/capacitor, -/obj/item/stock_parts/capacitor, -/obj/item/stock_parts/capacitor, -/obj/item/stock_parts/capacitor, -/obj/item/stock_parts/matter_bin, -/obj/item/stock_parts/matter_bin, -/obj/item/stack/cable_coil, -/obj/item/circuitboard/unary_atmos/cooler, -/obj/item/circuitboard/unary_atmos/heater, -/obj/effect/floor_decal/industrial/outline/operations, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/atmos/storage) -"mhs" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 1 + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" }, /obj/structure/lattice/catwalk/indoor/grate/dark, /turf/simulated/floor, -/area/maintenance/security_port) -"mhx" = ( -/obj/effect/floor_decal/corner_wide/purple{ - dir = 6 +/area/horizon/maintenance/deck_3/aft/port) +"mho" = ( +/obj/machinery/access_button{ + dir = 1; + pixel_x = -28; + pixel_y = 11 }, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 +/obj/machinery/door/airlock/external{ + dir = 1; + icon_state = "door_locked" }, -/obj/effect/floor_decal/corner_wide/purple/diagonal, -/turf/simulated/floor/tiled/white, -/area/rnd/test_range) +/obj/effect/map_effect/marker_helper/airlock/exterior, +/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/effect/floor_decal/industrial/hatch/grey, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/shuttle/mining) +"mhq" = ( +/obj/structure/table/rack/retail_shelf, +/turf/simulated/floor/tiled, +/area/horizon/service/hydroponics) +"mht" = ( +/obj/effect/floor_decal/industrial/warning/cee{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/horizon/hangar/intrepid) "mhy" = ( /obj/effect/floor_decal/spline/plain{ dir = 1 }, /turf/unsimulated/floor, /area/centcom/checkpoint/fore) -"mhF" = ( -/obj/effect/floor_decal/corner_wide/blue{ - dir = 5 +"mhG" = ( +/obj/machinery/door/airlock/multi_tile/glass{ + dir = 2; + name = "Deck 3 Port Stairwell" }, -/obj/structure/safe/station{ - name = "Secure Safe" +/obj/machinery/door/firedoor/multi_tile{ + dir = 2 }, -/obj/effect/floor_decal/industrial/hatch/grey, -/turf/simulated/floor/tiled/dark/full, -/area/storage/secure) -"mhL" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ +/turf/simulated/floor/tiled/full, +/area/horizon/stairwell/port/deck_3) +"mhI" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/obj/effect/map_effect/marker/airlock{ - frequency = 1003; - master_tag = "airlock_horizon_deck_1_aft_propulsion_2"; - name = "airlock_horizon_deck_1_aft_propulsion_2" - }, -/turf/simulated/floor/plating, -/area/engineering/atmos/propulsion) -"mhN" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/floor_decal/corner_wide/blue/full{ - dir = 1 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/storage/tech) -"mhO" = ( -/obj/effect/floor_decal/spline/fancy/wood/corner{ - dir = 1 - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 8 - }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 + dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/wood, -/area/horizon/crew_quarters/lounge/bar) -"mhQ" = ( -/obj/effect/floor_decal/spline/plain/corner{ - dir = 8 +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/effect/floor_decal/spline/plain/corner, -/obj/effect/floor_decal/spline/plain{ - dir = 1 +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" }, -/obj/machinery/light{ - dir = 1 +/obj/structure/cable{ + icon_state = "1-4" }, -/turf/simulated/floor/carpet/rubber, -/area/tcommsat/chamber) -"mhR" = ( -/obj/effect/floor_decal/spline/plain, -/obj/item/stock_parts/micro_laser, -/obj/item/stock_parts/manipulator, -/obj/item/stock_parts/manipulator, -/obj/item/stock_parts/manipulator, -/obj/item/stock_parts/manipulator, -/obj/item/stock_parts/capacitor, -/obj/item/stock_parts/micro_laser/high, -/obj/item/stock_parts/micro_laser/high, -/obj/item/stock_parts/micro_laser/high, -/obj/item/stock_parts/micro_laser/high, -/obj/structure/table/standard, -/turf/simulated/floor/carpet/rubber, -/area/tcommsat/entrance) +/turf/simulated/floor, +/area/horizon/maintenance/deck_3/aft/port) "mhS" = ( /obj/machinery/camera/network/crescent{ c_tag = "Crescent Arrivals - Holding Cell"; @@ -85649,6 +85870,15 @@ icon_state = "dark_preview" }, /area/centcom/holding) +"mhT" = ( +/obj/machinery/telecomms/bus/preset_four, +/turf/simulated/floor/bluegrid, +/area/horizon/tcommsat/chamber) +"mhX" = ( +/obj/effect/floor_decal/industrial/outline/operations, +/obj/machinery/suit_cycler/engineering/prepared/atmos, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/atmos/storage) "mia" = ( /obj/effect/floor_decal/corner/paleblue, /turf/unsimulated/floor, @@ -85657,60 +85887,30 @@ /obj/machinery/light, /turf/unsimulated/floor, /area/centcom/bar) -"mie" = ( -/obj/structure/cable/green{ - icon_state = "1-2" +"mij" = ( +/obj/effect/floor_decal/corner_wide/yellow{ + dir = 5 }, -/obj/machinery/door/airlock/maintenance{ - dir = 1; - req_access = list(45) +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/horizon/engineering/hallway/aft) +"min" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + dir = 1 }, /obj/machinery/door/firedoor, -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 2; - icon_state = "shutter0"; - id = "LCKDshutters"; - name = "Medical Lockdown Shutters"; - opacity = 0 - }, -/turf/simulated/floor/tiled/full, -/area/medical/ors) -"mih" = ( -/obj/machinery/atmospherics/pipe/simple/visible/purple{ - dir = 4 - }, /turf/simulated/floor/plating, -/area/engineering/bluespace_drive) -"mik" = ( -/obj/effect/floor_decal/corner/purple{ - dir = 9 - }, -/obj/machinery/camera/network/service{ - c_tag = "Custodial - Disposals Fore"; - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/red{ - dir = 8 +/area/horizon/maintenance/deck_2/wing/port) +"mir" = ( +/obj/machinery/computer/ship/helm/terminal{ + dir = 1; + req_one_access = list(65,74) }, /turf/simulated/floor/tiled/dark, -/area/horizon/custodial/disposals) -"mil" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/purple{ - dir = 9 - }, -/turf/simulated/wall/shuttle/scc_space_ship/cardinal, -/area/engineering/atmos/air) -"mis" = ( -/obj/structure/table/fancy/black, -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/platform{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/horizon/crew_quarters/lounge/bar) +/area/horizon/shuttle/quark/cockpit) "mix" = ( /obj/structure/shuttle_part/ert{ icon_state = "10,2"; @@ -85722,18 +85922,38 @@ /obj/structure/reagent_dispensers/fueltank, /turf/simulated/floor/tiled, /area/merchant_station/warehouse) +"miB" = ( +/obj/machinery/power/emitter/gyrotron/anchored{ + dir = 1; + initial_id_tag = "horizon_fusion"; + state = 2 + }, +/obj/structure/cable/orange{ + icon_state = "0-2" + }, +/obj/effect/floor_decal/industrial/hatch/red, +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/structure/railing/mapped, +/turf/simulated/floor/carpet/rubber, +/area/horizon/engineering/reactor/indra/mainchamber) +"miC" = ( +/obj/structure/bed/stool/chair, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/horizon/service/chapel/office) "miF" = ( /obj/structure/dispenser/oxygen, /turf/unsimulated/floor{ icon_state = "dark_preview" }, /area/centcom/specops) -"miG" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_two/fore) "miK" = ( /obj/effect/floor_decal/corner/dark_blue{ dir = 6 @@ -85746,35 +85966,29 @@ }, /turf/simulated/floor/tiled, /area/horizon/security/hallway) -"miM" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 8 - }, -/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, -/turf/simulated/floor/tiled/full, -/area/engineering/storage_hard) "miO" = ( /turf/simulated/wall/shuttle/unique/tcfl{ icon_state = "13,6" }, /area/shuttle/legion) -"miV" = ( -/obj/machinery/door/firedoor, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/structure/curtain/open/medical, -/obj/machinery/light_switch{ - pixel_y = -19 +"miS" = ( +/turf/simulated/wall/shuttle/scc_space_ship/cardinal, +/area/horizon/ai/chamber) +"miX" = ( +/obj/structure/table/reinforced, +/obj/item/storage/box/testpins{ + pixel_x = 1; + pixel_y = 3 + }, +/obj/effect/floor_decal/corner_wide/purple{ + dir = 9 + }, +/obj/effect/floor_decal/corner_wide/purple/diagonal, +/obj/machinery/light{ + dir = 8 }, /turf/simulated/floor/tiled/white, -/area/medical/ors) +/area/horizon/rnd/test_range) "mja" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 4 @@ -85785,6 +85999,19 @@ /obj/effect/landmark/actor_spawn, /turf/unsimulated/floor/wood, /area/antag/actor) +"mjc" = ( +/obj/structure/sign/nosmoking_1{ + pixel_y = 32 + }, +/obj/machinery/computer/general_air_control/large_tank_control/terminal{ + sensors = list("ph_sensor"="Tank"); + output_tag = "Ph_out_FuelBay"; + name = "Phoron Supply - Fuel Bay"; + max_pressure_setting = 2000 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/atmos) "mjd" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 8 @@ -85794,181 +86021,192 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled/dark, -/area/outpost/research/anomaly_storage) +/area/horizon/rnd/xenoarch/anomaly_storage) +"mjf" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/random/junk, +/obj/machinery/light/small/emergency{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/starboard/far) "mji" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 1 }, /turf/simulated/floor/tiled/dark/full, /area/horizon/security/armoury) -"mjk" = ( -/obj/structure/statue/gusoku, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/unsimulated/floor/dark_monotile, -/area/antag/actor) "mjo" = ( /obj/effect/floor_decal/spline/plain{ dir = 8 }, /turf/simulated/floor/exoplanet/snow, /area/centcom/shared_dream) -"mjv" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/shuttle/scc_space_ship, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "bridge blast"; - name = "Bridge Blast Doors"; - opacity = 0 +"mjr" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 }, -/obj/machinery/door/blast/shutters{ - dir = 4; - id = "shutters_deck3_xo"; - name = "Safety Shutter" - }, -/turf/simulated/floor/tiled/dark/full, -/area/crew_quarters/heads/hop/xo) -"mjC" = ( -/turf/simulated/floor/tiled/dark/full, -/area/hangar/intrepid) -"mjF" = ( -/obj/effect/floor_decal/corner/red/diagonal, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/spline/plain/corner{ +/obj/effect/floor_decal/spline/fancy/wood/corner{ dir = 1 }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor/lino, -/area/horizon/cafeteria) -"mjG" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/turf/simulated/floor/plating, -/area/maintenance/hangar/starboard) -"mjH" = ( -/obj/machinery/hologram/holopad, -/obj/machinery/button/remote/airlock{ - dir = 1; - id = "HoSdoor"; - name = "Office Door"; - pixel_x = 37; - pixel_y = 32 - }, -/obj/machinery/button/switch/windowtint{ - dir = 5; - id = "HoS Windows"; - pixel_x = 26; - pixel_y = 32; - req_access = list(58) - }, -/obj/machinery/button/remote/blast_door{ - dir = 1; - id = "armory"; - name = "Armory Shutters"; - pixel_x = 26; - pixel_y = 42; - req_access = list(58) - }, -/obj/machinery/button/remote/blast_door{ - dir = 1; - id = "Security Lockdown"; - name = "Security Lockdown"; - pixel_x = 37; - pixel_y = 42; - req_access = list(58) - }, -/turf/simulated/floor/carpet, -/area/horizon/security/head_of_security) -"mjO" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 9 }, -/turf/simulated/floor/tiled/dark, -/area/engineering/engine_waste) -"mjQ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/wood, +/area/horizon/command/bridge/meeting_room) +"mjA" = ( +/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/effect/map_effect/window_spawner/full/reinforced/firedoor, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/lobby) +"mjD" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ +/obj/machinery/door/airlock/maintenance_hatch{ + dir = 4; + name = "Delivery Chute Maintenance"; + req_access = list(31) + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor{ dir = 4 }, +/turf/simulated/floor/plating, +/area/horizon/operations/warehouse) +"mjJ" = ( +/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/horizon/hangar/auxiliary) +"mjM" = ( +/obj/random/junk, /obj/structure/cable/green{ - icon_state = "4-8" + icon_state = "1-2" }, -/obj/machinery/firealarm/south, -/turf/simulated/floor/tiled/dark, -/area/horizon/stairwell/bridge) +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/main/starboard) "mjS" = ( /obj/effect/floor_decal/industrial/warning{ dir = 5 }, /turf/unsimulated/floor/plating, /area/centcom/ferry) -"mjX" = ( -/obj/effect/floor_decal/corner_wide/paleblue{ - dir = 9 +"mjW" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/multi_tile/glass{ + dir = 2; + name = "Engineering Lobby" }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/structure/table/glass{ - table_reinf = "glass" - }, -/obj/item/paper_bin{ - pixel_y = 3 - }, -/obj/item/pen{ - pixel_y = 4 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/heads/cmo) +/turf/simulated/floor/tiled/full, +/area/horizon/engineering/hallway/fore) +"mjY" = ( +/obj/structure/closet/crate, +/obj/random/loot, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/aft) "mkb" = ( /obj/item/stack/rods, /turf/unsimulated/floor, /area/antag/raider) -"mke" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 6 +"mkd" = ( +/obj/structure/cable{ + icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/wood, -/area/bridge/cciaroom/lounge) -"mkf" = ( -/obj/effect/floor_decal/spline/fancy/wood/corner{ - dir = 1 +/obj/effect/floor_decal/corner/dark_green{ + dir = 5 }, -/turf/simulated/floor/wood, -/area/chapel/main) -"mkh" = ( -/turf/simulated/wall/r_wall, -/area/maintenance/wing/starboard/deck1) -"mkm" = ( -/obj/structure/disposaloutlet{ +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/horizon/hangar/intrepid/interstitial) +"mki" = ( +/obj/structure/table/wood, +/obj/machinery/light, +/obj/machinery/photocopier/faxmachine{ + anchored = 0; + department = "Consular Office A"; + pixel_y = 4; + req_one_access = list(38,19,72) + }, +/obj/machinery/ringer/north{ + dir = 8; + pixel_y = 0; + pixel_x = -10; + department = "Consular A"; + id = "consular_a_ringer"; + req_access = null; + req_one_access = list(72) + }, +/turf/simulated/floor/carpet, +/area/horizon/repoffice/consular_one) +"mkk" = ( +/obj/effect/floor_decal/corner_wide/purple{ + dir = 4 + }, +/obj/effect/floor_decal/corner_wide/purple{ + dir = 9 + }, +/obj/machinery/light{ dir = 8 }, -/obj/structure/disposalpipe/trunk{ - dir = 8 +/obj/structure/closet/walllocker/firecloset{ + pixel_x = -32 }, -/obj/effect/floor_decal/industrial/warning{ - dir = 6 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/reinforced, -/area/rnd/xenobiology) +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/xenoarch/atrium) "mko" = ( /obj/structure/railing/mapped{ dir = 8 @@ -85981,72 +86219,41 @@ }, /turf/unsimulated/floor, /area/centcom/spawning) -"mkt" = ( -/obj/effect/floor_decal/corner/yellow{ - dir = 6 +"mkp" = ( +/obj/effect/floor_decal/corner/black/full{ + dir = 1 }, -/obj/structure/table/rack, -/obj/item/stack/material/glass{ - amount = 50 +/obj/effect/floor_decal/industrial/warning{ + dir = 1 }, -/obj/item/stack/material/glass{ - amount = 50 +/turf/simulated/floor/tiled/dark, +/area/horizon/hangar/intrepid) +"mkD" = ( +/obj/structure/cable{ + icon_state = "4-8" }, -/obj/item/stack/material/glass{ - amount = 50 +/obj/structure/cable{ + icon_state = "2-4" }, -/obj/item/stack/material/glass/phoronrglass{ - amount = 20; - pixel_x = -4; - pixel_y = 4 +/obj/effect/floor_decal/corner/dark_green{ + dir = 9 }, -/obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled, -/area/engineering/storage_eva) -"mku" = ( -/obj/machinery/atmospherics/unary/freezer{ - icon_state = "freezer_1"; - power_setting = 20; - set_temperature = 80; - use_power = 1 - }, -/obj/machinery/alarm/north, -/turf/simulated/floor/carpet/rubber, -/area/server) -"mky" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/airlock/maintenance{ - dir = 4; - req_access = list(48) - }, -/obj/machinery/door/firedoor{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark/full, -/area/outpost/mining_main/eva) -"mkA" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, +/area/horizon/hangar/auxiliary) +"mkH" = ( /obj/structure/disposalpipe/segment, -/obj/machinery/button/remote/airlock{ - id = "xeno_dissection"; - name = "Dissection access"; - req_access = list(55); - specialfunctions = 4; - dir = 4; - pixel_x = 23; - pixel_y = 32; - desiredstate = 1 +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 }, -/turf/simulated/floor/carpet/rubber, -/area/rnd/xenobiology/dissection) +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/door/airlock/maintenance{ + dir = 1; + req_one_access = list(12,19) + }, +/turf/simulated/floor, +/area/horizon/maintenance/deck_3/aft/starboard/far) "mkO" = ( /obj/machinery/light/small/emergency{ dir = 4 @@ -86054,46 +86261,43 @@ /obj/effect/decal/cleanable/dirt, /turf/unsimulated/floor, /area/centcom/legion) -"mkU" = ( -/obj/machinery/shower{ - pixel_y = 12 +"mkQ" = ( +/obj/structure/cable/green{ + icon_state = "1-2" }, -/obj/effect/floor_decal/industrial/outline/security, -/turf/simulated/floor/tiled/dark/full, -/area/rnd/xenobiology) +/obj/effect/floor_decal/corner/dark_blue{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/storage/eva) "mkV" = ( /turf/simulated/floor/holofloor/wood, /area/horizon/holodeck/source_theatre) -"mlr" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/structure/window/shuttle/scc_space_ship/cardinal, -/obj/structure/cable/green{ - icon_state = "0-2" +"mln" = ( +/obj/effect/floor_decal/corner_wide/yellow/full{ + dir = 8 }, -/obj/machinery/door/blast/regular/open{ - dir = 2; - id = "shutters_deck3_longbow"; - name = "Safety Blast Door" - }, -/obj/effect/map_effect/map_helper/ruler_tiles_3{ +/obj/item/modular_computer/console/preset/engineering{ dir = 4 }, /turf/simulated/floor/tiled/dark/full, -/area/horizon/longbow) -"mlt" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/structure/window/shuttle/scc_space_ship/cardinal, -/obj/structure/cable/green, -/obj/machinery/door/blast/regular/open{ - dir = 2; - id = "shutters_deck3_longbow"; - name = "Safety Blast Door" +/area/horizon/engineering/shields) +"mlp" = ( +/obj/machinery/light{ + dir = 4 }, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/longbow) -"mlw" = ( +/obj/structure/sign/emergency/evacuation{ + dir = 4; + pixel_x = 32 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/corner/dark_green{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/horizon/hangar/intrepid) +"mlq" = ( /obj/structure/cable/green{ icon_state = "4-8" }, @@ -86103,150 +86307,137 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/aux{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/green{ - dir = 8 - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/machinery/door/airlock/maintenance{ - dir = 4; - name = "Engineering Maintenance"; - req_access = list(10) - }, -/turf/simulated/floor/plating, -/area/hallway/engineering) -"mlC" = ( -/obj/machinery/portable_atmospherics/canister/empty, -/turf/simulated/floor/plating, -/area/engineering/rust_office) -"mlG" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/structure/window/shuttle/scc_space_ship, -/obj/machinery/door/blast/shutters/open{ - dir = 8; - id = "bar_viewing_shutters"; - name = "Bar Viewing Shutters" - }, -/turf/simulated/floor/plating, -/area/horizon/bar) -"mlK" = ( -/obj/effect/floor_decal/spline/plain, -/obj/item/stock_parts/subspace/filter, -/obj/item/stock_parts/subspace/filter, -/obj/item/stock_parts/subspace/filter, -/obj/item/stock_parts/subspace/crystal, -/obj/item/stock_parts/subspace/crystal, -/obj/item/stock_parts/subspace/crystal, -/obj/structure/table/standard, -/turf/simulated/floor/carpet/rubber, -/area/tcommsat/entrance) -"mlR" = ( -/obj/structure/window/shuttle/scc_space_ship, -/obj/structure/grille, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "bridge blast"; - name = "Bridge Blast Doors"; - opacity = 0 - }, -/obj/machinery/door/firedoor, -/obj/structure/cable/green{ - icon_state = "0-4" - }, -/obj/machinery/door/blast/shutters/open{ - dir = 2; - id = "shutters_deck3_bridgesafety"; - name = "Safety Shutter" - }, -/turf/simulated/floor/plating, -/area/bridge/controlroom) -"mlS" = ( -/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, -/obj/machinery/door/blast/shutters/open{ - id = "RnDShutters" - }, -/turf/simulated/floor/tiled/dark/full, -/area/rnd/lab) -"mlU" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ +/obj/effect/floor_decal/industrial/warning{ dir = 1 }, -/obj/structure/disposalpipe/segment{ +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/port/far) +"mls" = ( +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/obj/machinery/conveyor{ + dir = 1; + id = "QMLoad" + }, +/turf/simulated/floor/tiled, +/area/horizon/hangar/operations) +"mlB" = ( +/turf/simulated/wall, +/area/horizon/hallway/primary/deck_2/central) +"mlF" = ( +/obj/machinery/atmospherics/binary/pump/high_power{ + dir = 4; + name = "Oxidizer to Burn Mix" + }, +/obj/effect/floor_decal/corner_wide/black{ + dir = 10 + }, +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/atmos/propulsion/starboard) +"mlJ" = ( +/turf/simulated/wall/r_wall, +/area/horizon/rnd/xenobiology/foyer) +"mlP" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 9 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/vending/snack, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_2/starboard) +"mlV" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 1 + }, +/obj/machinery/portable_atmospherics/canister/air/airlock, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/wing/starboard/far) +"mlZ" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, /obj/structure/cable/green{ icon_state = "4-8" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, /turf/simulated/floor/tiled, -/area/bridge/controlroom) -"mma" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, -/turf/simulated/floor/tiled/white, -/area/horizon/kitchen) -"mmg" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/aux{ - dir = 4 +/area/horizon/operations/lobby) +"mme" = ( +/obj/structure/railing/mapped{ + dir = 8 }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/machinery/light, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ +/obj/effect/floor_decal/corner_wide/green{ dir = 9 }, -/turf/simulated/floor/tiled/dark, -/area/bridge/aibunker) -"mmh" = ( -/obj/structure/closet/walllocker/emerglocker/south, -/obj/effect/floor_decal/corner/purple/full{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ +/obj/effect/floor_decal/industrial/warning{ dir = 8 }, -/turf/simulated/floor/tiled/dark, -/area/horizon/custodial/disposals) -"mmi" = ( -/obj/structure/shuttle_part/scc_space_ship{ - icon_state = "d3-6-f" +/obj/structure/table/standard, +/obj/item/storage/box/bodybags{ + pixel_y = -1 }, -/turf/simulated/wall, -/area/maintenance/wing/starboard) -"mmm" = ( -/obj/structure/railing/mapped{ - dir = 4 +/obj/item/storage/box/bodybags{ + pixel_x = 4; + pixel_y = 4 }, -/obj/effect/floor_decal/corner/black{ - dir = 6 +/turf/simulated/floor/tiled/white, +/area/horizon/medical/hallway) +"mmk" = ( +/obj/structure/cable/green{ + icon_state = "1-8" }, -/obj/machinery/portable_atmospherics/powered/pump/filled, /obj/effect/floor_decal/corner/dark_green{ - dir = 8 + dir = 9 }, -/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, +/area/horizon/hangar/intrepid) +"mml" = ( +/obj/machinery/door/blast/shutters/open{ + dir = 4; + id = "CHE2shutters"; + name = "Window Shutter" }, -/turf/simulated/floor/tiled/dark, -/area/hangar/auxiliary) +/obj/effect/map_effect/window_spawner/full/borosilicate/reinforced/firedoor, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/medical/pharmacy) +"mmq" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/wood, +/area/horizon/command/bridge/minibar) "mms" = ( /obj/machinery/camera/network/prison{ c_tag = "Security - Brig Communal Starboard" @@ -86262,79 +86453,54 @@ }, /turf/simulated/floor/tiled, /area/horizon/security/brig) -"mmy" = ( -/obj/structure/cable{ +"mmt" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/wood, +/area/horizon/command/bridge/cciaroom/lounge) +"mmw" = ( +/obj/machinery/recharge_station, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/effect/floor_decal/spline/plain{ + dir = 9 + }, +/turf/simulated/floor/carpet/rubber, +/area/horizon/crew/chargebay) +"mmB" = ( +/obj/structure/cable/green{ 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 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/machinery/button/remote/blast_door{ - id = "shutters_deck2_portstairwellsec"; - name = "Elevator Security Shutters"; - pixel_x = -5; - pixel_y = -22; - req_one_access = list(1,19) - }, -/obj/machinery/computer/shuttle_control/multi/lift/wall/robotics{ - dir = 1; - pixel_x = 7; - pixel_y = -22 - }, -/turf/simulated/floor/tiled, -/area/rnd/eva) -"mmG" = ( -/obj/effect/map_effect/window_spawner/full/reinforced/grille/firedoor, -/obj/structure/cable/green, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/custodial/disposals) -"mmH" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"mmK" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard/deck1) -"mmL" = ( -/obj/structure/cable/green{ - icon_state = "0-2" - }, -/obj/machinery/power/apc/low/north, -/obj/effect/floor_decal/corner/brown/full{ +/obj/effect/floor_decal/corner/dark_green{ dir = 1 }, /turf/simulated/floor/tiled, -/area/operations/break_room) +/area/horizon/hallway/primary/deck_3/central) +"mmD" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 5 + }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/machinery/alarm/north{ + dir = 4; + pixel_y = 0; + pixel_x = 10 + }, +/obj/structure/table/wood, +/obj/machinery/chemical_dispenser/bar_soft/full{ + dir = 8; + pixel_x = 3 + }, +/obj/item/storage/box/drinkingglasses{ + pixel_x = -13; + pixel_y = 7 + }, +/turf/simulated/floor/wood, +/area/horizon/repoffice/consular_one) "mmM" = ( /obj/effect/floor_decal/corner/blue{ dir = 5 @@ -86380,14 +86546,15 @@ icon_state = "dark_preview" }, /area/centcom/control) -"mmN" = ( -/obj/structure/platform, -/turf/simulated/floor/tiled/dark, -/area/maintenance/wing/starboard) "mmR" = ( /obj/structure/flora/ausbushes/ywflowers, /turf/simulated/floor/holofloor/grass, /area/horizon/holodeck/source_wildlife) +"mmS" = ( +/obj/machinery/vending/snack, +/obj/effect/floor_decal/industrial/outline/grey, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/service/cafeteria) "mmT" = ( /obj/effect/floor_decal/corner_wide/paleblue/full{ dir = 8 @@ -86407,6 +86574,16 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/security/armoury) +"mmU" = ( +/obj/effect/floor_decal/corner/lime{ + dir = 5 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/white{ + name = "cooled white floor"; + temperature = 278.15 + }, +/area/horizon/medical/morgue) "mmW" = ( /turf/simulated/floor/tiled/dark, /area/horizon/security/evidence_storage) @@ -86419,6 +86596,10 @@ }, /turf/unsimulated/floor, /area/centcom/legion/hangar5) +"mnb" = ( +/obj/machinery/slime_extractor, +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/xenobiology) "mnc" = ( /obj/effect/floor_decal/corner/dark_blue/full, /obj/structure/cable/green{ @@ -86438,104 +86619,79 @@ /obj/machinery/newscaster/north, /turf/simulated/floor/lino, /area/merchant_station) -"mnn" = ( -/obj/effect/floor_decal/corner_wide/yellow{ - dir = 6 +"mnl" = ( +/obj/structure/disposalpipe/junction{ + dir = 1; + icon_state = "pipe-j2" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/tiled/dark/full, -/area/storage/shields) -"mnr" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/sortjunction/flipped{ - dir = 8; - name = "Custodial Closet"; - sortType = "Custodial Closet" - }, -/turf/simulated/floor/tiled, -/area/horizon/custodial) -"mns" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/corner/yellow{ - dir = 5 - }, -/turf/simulated/floor/tiled/dark, -/area/engineering/engine_waste) +/turf/simulated/floor/tiled/white, +/area/horizon/medical/pharmacy) "mnx" = ( /obj/effect/floor_decal/corner/beige{ dir = 10 }, /turf/simulated/floor/tiled/dark, /area/shuttle/merchant) -"mnG" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ +"mnz" = ( +/obj/effect/floor_decal/corner/grey/diagonal, +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/structure/sink/kitchen{ + dir = 4; + pixel_x = -21 + }, +/obj/effect/floor_decal/spline/plain{ dir = 1 }, -/obj/item/storage/secure/safe{ - pixel_y = 33; - pixel_x = 31 +/turf/simulated/floor/tiled/white, +/area/horizon/shuttle/intrepid/buffet) +"mnH" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/item/modular_computer/console/preset/command/account{ - dir = 8; - pixel_x = 18 +/turf/simulated/floor/wood, +/area/horizon/service/dining_hall) +"mob" = ( +/obj/effect/floor_decal/corner/brown/full{ + dir = 1 }, -/turf/simulated/floor/carpet, -/area/crew_quarters/captain) -"mnL" = ( -/obj/structure/tank_wall/hydrogen{ - icon_state = "h13" +/obj/effect/floor_decal/industrial/loading/yellow{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/closet/crate, +/turf/simulated/floor/tiled, +/area/horizon/operations/mining_main/refinery) +"moc" = ( +/obj/structure/cable{ + icon_state = "4-8" }, /obj/effect/floor_decal/industrial/warning{ dir = 4 }, -/turf/simulated/floor/airless, -/area/engineering/atmos) -"mnM" = ( -/obj/structure/railing/mapped{ +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/lattice, -/turf/simulated/open, -/area/maintenance/wing/starboard) -"mnN" = ( -/obj/machinery/power/tesla_coil, -/turf/simulated/floor/plating, -/area/engineering/bluespace_drive) -"mnQ" = ( -/obj/structure/tank_wall{ - density = 0; - icon_state = "m-12"; - opacity = 0 - }, -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/turf/simulated/floor/reinforced/airless, -/area/engineering/atmos) -"mnU" = ( -/obj/structure/window/shuttle/scc_space_ship, -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/effect/landmark/entry_point/starboard{ - name = "starboard, civilian lounges" +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/full, +/area/horizon/engineering/storage_hard) +"mod" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 }, /turf/simulated/floor/plating, -/area/crew_quarters/lounge) +/area/horizon/maintenance/deck_1/hangar/starboard) +"moe" = ( +/obj/effect/floor_decal/corner/red/diagonal, +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/horizon/maintenance/deck_2/research) "mog" = ( /obj/structure/shuttle_part/ert{ icon_state = "9,1"; @@ -86543,106 +86699,79 @@ }, /turf/unsimulated/floor/plating, /area/shuttle/specops) -"moj" = ( -/obj/machinery/atmospherics/pipe/simple/heat_exchanging, -/turf/simulated/floor/reinforced/airless, -/area/engineering/atmos/propulsion) -"mol" = ( -/obj/effect/floor_decal/industrial/hatch/red, -/obj/machinery/door/window/westright{ - name = "Mass Driver Internal Access"; - req_access = list(22) +"moi" = ( +/obj/structure/cable/green{ + icon_state = "4-8" }, -/obj/machinery/door/window/eastleft{ - name = "Mass Driver External Access"; - req_access = list(22) +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance{ + dir = 4; + req_one_access = list(26,29,31,48,67,70) }, -/obj/structure/plasticflaps/airtight, -/obj/machinery/door/blast/regular{ - id = "massdriver" - }, -/turf/simulated/floor/reinforced, -/area/chapel/office) -"mon" = ( -/obj/machinery/firealarm/north, -/obj/effect/floor_decal/corner/lime/full{ +/turf/simulated/floor/tiled/full, +/area/horizon/operations/warehouse) +"mok" = ( +/obj/effect/floor_decal/corner/dark_green/full, +/obj/structure/disposalpipe/trunk{ dir = 1 }, -/obj/machinery/camera/network/medbay{ - c_tag = "Medical - Morgue Elevator" +/obj/machinery/disposal/small/east, +/turf/simulated/floor/tiled, +/area/horizon/operations/commissary) +"moo" = ( +/obj/machinery/light/small{ + dir = 1 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 +/obj/structure/closet/crate/trashcart, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/main/port) +"moz" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ +/obj/effect/floor_decal/corner/dark_green/full{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/horizon/stairwell/starboard/deck_1) +"moK" = ( +/obj/machinery/light, +/obj/effect/floor_decal/corner/dark_blue{ dir = 10 }, /turf/simulated/floor/tiled, -/area/medical/morgue/lower) -"mov" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/machinery/door/airlock/maintenance_hatch{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/operations) -"moy" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 6 - }, -/turf/simulated/floor/wood, -/area/chapel/office) -"moI" = ( +/area/horizon/command/bridge/supply) +"moN" = ( /obj/effect/floor_decal/industrial/warning{ dir = 8 }, /turf/simulated/floor/plating, -/area/hangar/auxiliary) -"moJ" = ( +/area/horizon/maintenance/deck_1/main/interstitial) +"moS" = ( +/obj/structure/table/stone/marble, +/obj/item/material/ashtray/bronze{ + pixel_x = -8; + pixel_y = 8 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/shutters{ + dir = 2; + id = "bar_shutter"; + name = "Bar Shutter" + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/service/bar) +"moW" = ( /obj/structure/railing/mapped{ dir = 8 }, -/obj/structure/bed/stool/chair/sofa/left/purple{ +/obj/structure/platform_deco/ledge, +/obj/structure/platform/ledge{ dir = 4 }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 9 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/rnd/hallway/secondary) -"moP" = ( -/obj/item/material/shard, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"moU" = ( -/obj/structure/cable{ - 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/industrial/warning{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/smes/rust) +/turf/simulated/open, +/area/horizon/hallway/primary/deck_3/central) "mpa" = ( /obj/effect/floor_decal/corner/yellow/full{ dir = 4 @@ -86650,47 +86779,17 @@ /obj/structure/railing/mapped, /turf/simulated/floor/marble, /area/horizon/holodeck/source_tribunal) +"mpf" = ( +/obj/structure/flora/ausbushes/sparsegrass, +/obj/structure/flora/ausbushes/ppflowers, +/turf/simulated/floor/grass/no_edge, +/area/horizon/hallway/primary/deck_2/fore) "mpj" = ( /obj/structure/railing/mapped, /turf/unsimulated/floor{ dir = 4 }, /area/centcom/holding) -"mpn" = ( -/obj/structure/bed/stool/chair/office/dark{ - dir = 8 - }, -/obj/effect/landmark/start{ - name = "Corporate Reporter" - }, -/turf/simulated/floor/carpet, -/area/journalistoffice) -"mpo" = ( -/obj/effect/map_effect/window_spawner/full/shuttle/scc{ - spawn_firedoor = 1; - spawn_grille = 1 - }, -/obj/machinery/door/blast/shutters/open{ - dir = 8; - id = "intrepid_bay_windows"; - name = "Intrepid Shutter" - }, -/turf/simulated/floor/plating, -/area/shuttle/intrepid/medical) -"mpr" = ( -/obj/structure/window/shuttle/scc_space_ship, -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 4; - icon_state = "shutter0"; - id = "LCKDshutters"; - name = "MedBay Lockdown Shutters"; - opacity = 0 - }, -/turf/simulated/floor/plating, -/area/medical/smoking) "mpu" = ( /obj/structure/window/reinforced/holowindow{ dir = 8 @@ -86707,10 +86806,6 @@ icon_state = "dark_preview" }, /area/centcom/specops) -"mpA" = ( -/obj/machinery/telecomms/receiver/preset_right, -/turf/simulated/floor/bluegrid, -/area/tcommsat/chamber) "mpG" = ( /obj/effect/floor_decal/carpet{ dir = 1 @@ -86731,18 +86826,16 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/unsimulated/floor, /area/antag/mercenary) -"mpI" = ( -/obj/effect/floor_decal/corner/brown/full, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" +"mpK" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 }, -/obj/structure/railing/mapped, -/obj/machinery/firealarm/west{ - pixel_x = -24 +/obj/machinery/light{ + dir = 4 }, -/turf/simulated/floor/tiled, -/area/operations/loading) +/obj/structure/bed/stool/chair/padded/beige, +/turf/simulated/floor/wood, +/area/horizon/command/bridge/minibar) "mpM" = ( /obj/effect/floor_decal/spline/plain/corner, /obj/effect/floor_decal/corner/red/diagonal, @@ -86751,90 +86844,23 @@ }, /turf/simulated/floor/tiled/white, /area/centcom/shared_dream) -"mpQ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable{ +"mpT" = ( +/obj/structure/cable/green{ 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/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 }, -/obj/effect/floor_decal/industrial/hatch_door/red{ +/obj/effect/floor_decal/corner/dark_green/full{ dir = 1 }, +/obj/machinery/light{ + dir = 4 + }, +/obj/random/dirt_75, /turf/simulated/floor/tiled, -/area/hangar/auxiliary) -"mpS" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, -/turf/simulated/floor/tiled/dark/full, -/area/hallway/engineering) -"mpV" = ( -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/simple/visible/black, -/obj/effect/floor_decal/corner/yellow{ - dir = 1 - }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 4 - }, -/obj/machinery/camera/network/engineering{ - c_tag = "Engineering - Atmospherics Control 3" - }, -/turf/simulated/floor/tiled/dark, -/area/engineering/atmos) -"mqc" = ( -/obj/structure/ship_weapon_dummy, -/obj/effect/floor_decal/industrial/hatch/red, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/longbow) -"mqj" = ( -/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, -/turf/simulated/floor/tiled/full, -/area/engineering/storage_hard) -"mql" = ( -/obj/effect/floor_decal/industrial/outline/red, -/obj/structure/table/rack, -/obj/item/ship_ammunition/grauwolf_bundle/ap, -/obj/item/ship_ammunition/grauwolf_bundle/ap, -/obj/item/ship_ammunition/grauwolf_bundle/ap, -/obj/item/ship_ammunition/grauwolf_bundle/ap, -/obj/effect/floor_decal/industrial/warning{ - dir = 10 - }, -/obj/structure/sign/fire{ - desc = "A danger sign which reads 'DANGER: EXPLOSIVE ORDINANCE' and 'THIS ROOM CONTAINS ORDINANCE THAT WILL KILL YOU INSTANTLY'."; - name = "\improper DANGER: EXPLOSIVE ORDINANCE sign"; - pixel_y = -32 - }, -/obj/structure/sign/securearea{ - desc = "A danger sign which reads 'DANGER: EXPLOSIVE ORDINANCE' and 'THIS ROOM CONTAINS ORDINANCE THAT WILL KILL YOU INSTANTLY'."; - name = "\improper DANGER: EXPLOSIVE ORDINANCE sign"; - pixel_x = -32 - }, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/secure_ammunition_storage) +/area/horizon/operations/lobby) "mqo" = ( /obj/machinery/door/airlock/glass_medical{ name = "Emergency Room" @@ -86862,26 +86888,15 @@ }, /turf/simulated/floor/holofloor/lino, /area/horizon/holodeck/source_theatre) -"mqt" = ( -/obj/structure/table/wood, -/obj/effect/floor_decal/corner_wide/green/diagonal, -/obj/item/device/flashlight/lamp, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 +"mqu" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 }, -/turf/simulated/floor/tiled/white, -/area/medical/exam) -"mqy" = ( -/obj/structure/cable/green{ - icon_state = "1-4" +/obj/structure/tank_wall/carbon_dioxide{ + icon_state = "co2-2" }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/simulated/floor/plating, -/area/maintenance/hangar/port) +/turf/simulated/floor/airless, +/area/horizon/engineering/atmos) "mqH" = ( /obj/structure/shuttle_part/ert{ icon_state = "10,3"; @@ -86889,15 +86904,6 @@ }, /turf/unsimulated/floor/plating, /area/shuttle/specops) -"mqI" = ( -/obj/machinery/atmospherics/pipe/simple/visible/black{ - dir = 9 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/engineering/atmos/propulsion/starboard) "mqJ" = ( /obj/effect/floor_decal/spline/plain/corner{ dir = 8 @@ -86908,6 +86914,26 @@ /obj/machinery/light, /turf/unsimulated/floor, /area/centcom/holding) +"mqS" = ( +/turf/simulated/floor/tiled/white, +/area/horizon/medical/main_storage) +"mqU" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_3/port) +"mqW" = ( +/obj/structure/disposaloutlet{ + dir = 8 + }, +/obj/structure/disposalpipe/trunk, +/obj/effect/floor_decal/industrial/warning/full, +/obj/structure/plasticflaps/airtight{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/operations/mail_room) "mqZ" = ( /obj/machinery/door/airlock/hatch{ dir = 1; @@ -86927,11 +86953,6 @@ /obj/effect/shuttle_landmark/legion/start, /turf/simulated/floor/tiled/dark, /area/shuttle/legion) -"mrb" = ( -/obj/effect/floor_decal/industrial/outline/grey, -/obj/machinery/portable_atmospherics/canister/oxygen, -/turf/simulated/floor/plating, -/area/hangar/intrepid) "mre" = ( /obj/structure/window/shuttle/unique/mercenary/small{ icon_state = "6,13"; @@ -86939,42 +86960,20 @@ }, /turf/unsimulated/floor/plating, /area/shuttle/syndicate_elite) -"mrh" = ( -/obj/machinery/appliance/cooker/oven, -/obj/effect/floor_decal/industrial/outline/grey, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/kitchen) -"mrm" = ( -/obj/structure/cable/green{ - icon_state = "2-4" +"mrr" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 5 }, -/obj/structure/cable/green{ - icon_state = "2-8" +/obj/machinery/firealarm/north, +/obj/structure/sign/directions/security{ + dir = 1; + pixel_y = 41 }, -/obj/effect/floor_decal/industrial/warning{ +/obj/machinery/light/floor{ dir = 1 }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard) -"mrv" = ( -/obj/structure/bed/stool/chair/office/bridge{ - dir = 4 - }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 9 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge/meeting_room) +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_3/starboard) "mrG" = ( /obj/machinery/light/small{ dir = 1; @@ -86995,27 +86994,28 @@ icon_state = "dark_preview" }, /area/centcom/holding) -"mrK" = ( -/obj/machinery/light, -/obj/effect/floor_decal/corner/brown{ - dir = 10 +"mrN" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/flora/pottedplant{ + icon_state = "plant-33" + }, +/obj/effect/floor_decal/spline/fancy/wood/full, +/obj/structure/sign/directions/dock{ + dir = 4; + pixel_x = 32; + pixel_y = -8 + }, +/turf/simulated/floor/wood, +/area/horizon/hallway/primary/deck_3/starboard) +"mrS" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black, +/obj/machinery/light{ + dir = 8 }, -/turf/simulated/floor/tiled, -/area/operations/lobby) -"mrO" = ( -/obj/random/junk, /turf/simulated/floor/plating, -/area/maintenance/wing/starboard) -"mrR" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/random/junk, -/turf/simulated/floor, -/area/horizon/maintenance/deck_three/aft/starboard) +/area/horizon/engineering/atmos/air) "mrU" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -87035,42 +87035,56 @@ /obj/structure/lattice/catwalk/indoor/grate, /turf/simulated/floor/plating, /area/horizon/security/hallway) -"mrV" = ( -/obj/structure/table/standard, -/obj/item/device/binoculars, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 10 - }, -/turf/simulated/floor/tiled/dark, -/area/horizon/grauwolf) "mrZ" = ( /obj/effect/floor_decal/corner/black{ dir = 9 }, /turf/simulated/floor/tiled/dark, /area/shuttle/hapt) +"msb" = ( +/obj/machinery/door/airlock/maintenance{ + dir = 4; + name = "Xenobotany Maintenance"; + req_access = list(52) + }, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/structure/plasticflaps/airtight{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/rnd/xenobiology/xenoflora) "msc" = ( /obj/effect/floor_decal/corner/red{ dir = 1 }, /turf/unsimulated/floor, /area/antag/mercenary) -"msd" = ( -/obj/structure/bed/stool/chair/office/bridge/pilot{ +"msi" = ( +/obj/structure/railing/mapped, +/turf/simulated/floor/tiled/dark, +/area/horizon/shuttle/intrepid/main_compartment) +"msj" = ( +/obj/structure/table/wood/gamblingtable, +/obj/item/storage/box/donkpockets{ + pixel_x = 2; + pixel_y = 5 + }, +/obj/effect/floor_decal/spline/fancy/wood, +/obj/machinery/light/small{ dir = 8 }, -/turf/simulated/floor/shuttle/dark_blue, -/area/shuttle/escape_pod/pod4) -"msn" = ( -/obj/machinery/atmospherics/pipe/simple/visible/black{ - dir = 4 +/turf/unsimulated/floor/wood, +/area/antag/actor) +"mso" = ( +/obj/structure/closet/crate, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 }, -/obj/machinery/atmospherics/binary/pump{ - name = "Phoron to Mix" - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/atmos) +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/research) "msq" = ( /obj/effect/floor_decal/corner/blue/full{ dir = 8 @@ -87081,154 +87095,62 @@ }, /turf/simulated/floor/tiled/white, /area/horizon/security/autopsy_laboratory) -"msr" = ( -/obj/structure/table/wood, -/obj/machinery/photocopier/faxmachine{ - department = "Head of Security's Office"; - pixel_y = 3 +"msw" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 5 }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/item/device/radio/intercom/west, -/turf/simulated/floor/carpet, -/area/horizon/security/head_of_security) -"mst" = ( -/obj/structure/table/rack, -/obj/effect/floor_decal/corner/lime/full{ - dir = 4 +/turf/simulated/floor/reinforced/reactor, +/area/horizon/engineering/reactor/supermatter/mainchamber) +"msD" = ( +/obj/effect/floor_decal/corner/red/diagonal, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/machinery/air_sensor{ + frequency = 1441; + id_tag = "mixed_sensor" }, +/obj/effect/decal/fake_object/light_source/invisible, +/turf/simulated/floor/reinforced/airless, +/area/horizon/engineering/atmos) +"msH" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 + dir = 6 }, -/obj/structure/platform{ +/obj/effect/floor_decal/spline/fancy/wood/corner{ dir = 8 }, -/obj/structure/railing/mapped{ - dir = 4 +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/horizon/repoffice/representative_two) +"msP" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/full, +/area/horizon/engineering/reactor/supermatter/airlock) +"msS" = ( +/obj/effect/floor_decal/corner/lime/full{ + dir = 8 }, /turf/simulated/floor/tiled/white{ name = "cooled white floor"; temperature = 278.15 }, -/area/medical/morgue/lower) -"msv" = ( -/turf/simulated/wall/shuttle/scc_space_ship/cardinal, -/area/maintenance/hangar/starboard) -"msF" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 10 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ +/area/horizon/medical/morgue) +"msX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/firedoor, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/door/airlock/maintenance_hatch{ dir = 1 }, -/obj/effect/landmark/latejoin, -/obj/machinery/firealarm/south, -/turf/simulated/floor/tiled, -/area/horizon/crew_quarters/cryo/living_quarters_lift) -"msG" = ( -/obj/effect/floor_decal/corner_wide/purple{ - dir = 9 - }, -/obj/effect/floor_decal/corner_wide/purple{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/visible/yellow, -/obj/structure/cable/green{ +/obj/structure/cable{ icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/platform_deco{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenoarch_atrium) -"msI" = ( -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/turf/simulated/wall/shuttle/scc_space_ship/cardinal, -/area/bridge/controlroom) -"msM" = ( -/obj/machinery/atmospherics/omni/mixer{ - active_power_usage = 7500; - tag_east = 2; - tag_north = 1; - tag_north_con = 0.5; - tag_south = 1; - tag_south_con = 0.5; - tag_west = 1; - tag_west_con = 0 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/dark, -/area/engineering/atmos/propulsion) -"msN" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/structure/lattice/catwalk/indoor/grate, /turf/simulated/floor/plating, -/area/engineering/lobby) -"msQ" = ( -/obj/structure/table/stone/marble, -/obj/machinery/chemical_dispenser/bar_soft/full{ - pixel_x = -1; - pixel_y = 12 - }, -/obj/item/reagent_containers/glass/bottle/syrup/chocolate{ - pixel_x = -12; - pixel_y = 1 - }, -/obj/item/reagent_containers/glass/bottle/syrup/pumpkin{ - pixel_x = 7; - pixel_y = 1 - }, -/obj/item/reagent_containers/glass/bottle/syrup/vanilla{ - pixel_x = 16; - pixel_y = 1 - }, -/obj/item/reagent_containers/glass/bottle/syrup/caramel{ - pixel_x = -3; - pixel_y = 1 - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 9 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/horizon/cafeteria) -"msT" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/structure/cable/green{ - icon_state = "2-8"; - d1 = 2; - d2 = 8 - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/maintenance/hangar/port) +/area/horizon/maintenance/deck_2/wing/starboard/far) "mte" = ( /obj/structure/railing/mapped{ dir = 1 @@ -87237,18 +87159,90 @@ dir = 4 }, /area/centcom/evac) -"mtr" = ( -/obj/machinery/camera/network/service{ - c_tag = "Service - Deck 2 - Bar Backroom"; +"mtf" = ( +/obj/effect/floor_decal/spline/plain/black{ dir = 8 }, -/obj/structure/closet/secure_closet/cabinet/beer/horizon, +/obj/effect/floor_decal/corner/dark_green, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/horizon/crew/fitness/gym) +"mti" = ( +/obj/machinery/door/airlock/command{ + dir = 1; + id_tag = "researchdoor"; + name = "Research Director's Office"; + req_access = list(30) + }, +/obj/machinery/door/firedoor, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/command/heads/rd) +"mtp" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/xenobiology) +"mtv" = ( +/obj/machinery/atmospherics/binary/pump{ + dir = 4; + name = "Filter Bypass Pump" + }, +/obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled/dark, -/area/horizon/bar/backroom) +/area/horizon/engineering/reactor/supermatter/waste) "mtw" = ( /obj/effect/decal/cleanable/cobweb, /turf/simulated/floor/exoplanet/barren/raskara, /area/centcom/shared_dream) +"mtx" = ( +/obj/machinery/alarm/west, +/obj/machinery/newscaster/south, +/obj/effect/floor_decal/corner/dark_blue/full, +/obj/structure/table/standard, +/obj/item/device/radio/off, +/obj/item/device/radio/off, +/obj/item/device/radio/off, +/obj/item/crowbar/red, +/obj/item/crowbar/red, +/obj/item/crowbar/red, +/obj/item/crowbar/red, +/obj/item/device/flashlight, +/obj/item/device/flashlight, +/obj/item/device/flashlight, +/turf/simulated/floor/tiled, +/area/horizon/command/bridge/supply) +"mty" = ( +/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/medical/equipment) +"mtC" = ( +/obj/machinery/meter{ + name = "Air Reserve" + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/aux{ + dir = 8 + }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor, +/area/horizon/command/bridge/aibunker) "mtF" = ( /turf/simulated/floor/holofloor/grass{ icon = 'icons/turf/flooring/exoplanet/moghes.dmi'; @@ -87256,26 +87250,12 @@ name = "overgrowth" }, /area/horizon/holodeck/source_moghes) -"mtP" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/port) -"mtS" = ( -/obj/machinery/stargazer, -/obj/effect/floor_decal/spline/plain/corner{ +"mtO" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ dir = 4 }, -/obj/effect/floor_decal/spline/plain/corner, -/obj/effect/floor_decal/spline/plain/corner{ - dir = 1 - }, -/obj/effect/floor_decal/spline/plain/corner{ - dir = 8 - }, -/turf/simulated/floor/carpet/rubber, -/area/hallway/primary/central_one) +/turf/simulated/floor/reinforced/airless, +/area/horizon/engineering/atmos/propulsion/starboard) "mtU" = ( /obj/structure/table/reinforced/steel, /obj/random/contraband, @@ -87293,10 +87273,6 @@ icon_state = "dark_preview" }, /area/centcom/holding) -"mtY" = ( -/obj/structure/girder, -/turf/simulated/floor/plating, -/area/maintenance/wing/port/far) "muc" = ( /obj/structure/cable/green{ icon_state = "1-2" @@ -87316,12 +87292,26 @@ /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/full, /area/horizon/security/hallway) -"mum" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 +"mud" = ( +/obj/structure/cable/green{ + icon_state = "4-8" }, /turf/simulated/floor/plating, -/area/maintenance/wing/port/far) +/area/horizon/engineering/reactor/indra/office) +"mug" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 1 + }, +/obj/machinery/light/small/emergency{ + dir = 4 + }, +/obj/effect/map_effect/marker/airlock{ + frequency = 1003; + master_tag = "airlock_horizon_deck_1_starboard_1"; + name = "airlock_horizon_deck_1_starboard_1" + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/wing/starboard/far) "muo" = ( /obj/structure/table/rack, /obj/effect/floor_decal/industrial/outline/yellow, @@ -87360,25 +87350,48 @@ /obj/item/holomenu/holodeck, /turf/simulated/wall, /area/horizon/holodeck_control) +"muw" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 10 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_2/central) "muE" = ( /turf/simulated/floor/tiled/dark, /area/horizon/holodeck/source_pool) -"muK" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 6 - }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/bridge/controlroom) "muL" = ( /obj/machinery/acting/changer, /turf/unsimulated/floor, /area/antag/ninja) +"muN" = ( +/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/horizon/hangar/auxiliary) +"muO" = ( +/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/brown/full{ + dir = 1 + }, +/obj/machinery/alarm/north, +/turf/simulated/floor/tiled, +/area/horizon/hangar/operations) "muQ" = ( /obj/effect/floor_decal/corner/brown/diagonal, /turf/simulated/floor/tiled/dark, @@ -87390,27 +87403,16 @@ }, /turf/simulated/floor/holofloor/tiled, /area/horizon/holodeck/source_boxingcourt) -"muS" = ( -/obj/effect/floor_decal/corner/dark_green/diagonal, -/obj/structure/table/reinforced, -/obj/random/horticulture_magazine, -/obj/random/horticulture_magazine{ - pixel_x = 5 +"muW" = ( +/obj/effect/floor_decal/corner/lime{ + dir = 5 }, -/obj/random/pottedplant_small{ - pixel_x = -8; - pixel_y = 10 +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled/white{ + name = "cooled white floor"; + temperature = 278.15 }, -/turf/simulated/floor/tiled, -/area/horizon/hydroponics) -"muX" = ( -/obj/machinery/door/airlock/service{ - dir = 1; - name = "Bar - Private Lounge" - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/full, -/area/horizon/bar) +/area/horizon/medical/morgue) "mvb" = ( /obj/structure/bed/stool/chair, /obj/effect/floor_decal/corner/dark_blue{ @@ -87421,64 +87423,49 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/security/interrogation/monitoring) -"mvd" = ( -/obj/effect/floor_decal/corner_wide/paleblue/full{ - dir = 8 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/engineer_maintenance/electric, -/turf/simulated/floor/tiled/white, -/area/medical/ors) -"mve" = ( -/obj/structure/disposalpipe/trunk{ +"mvi" = ( +/obj/structure/platform/ledge{ dir = 4 }, -/obj/effect/floor_decal/corner/mauve{ - dir = 6 +/obj/structure/platform_deco/ledge, +/obj/structure/railing/mapped{ + dir = 8 }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology) -"mvf" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/effect/floor_decal/corner/yellow{ - dir = 9 +/turf/simulated/open, +/area/horizon/operations/office) +"mvj" = ( +/obj/effect/map_effect/window_spawner/full/reinforced/polarized/grille/firedoor{ + id = "cap" + }, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id = "bridge blast"; + name = "Bridge Blast Doors"; + opacity = 0 }, -/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, /obj/structure/cable/green{ - icon_state = "1-2" + icon_state = "0-2" }, -/obj/structure/disposalpipe/segment, -/obj/structure/lattice/catwalk/indoor/grate, -/turf/simulated/floor/plating, -/area/horizon/hallway/deck_two/fore) -"mvq" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Xenobotany Maintenance"; - req_access = list(52) +/obj/structure/cable/green{ + icon_state = "2-4" }, -/obj/machinery/door/firedoor, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/structure/plasticflaps/airtight, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/turf/simulated/floor, +/area/horizon/command/heads/captain) +"mvs" = ( +/obj/machinery/alarm/east, +/obj/structure/closet/secure_closet/package_courier, /turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora) -"mvv" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/bridge/upperdeck) +/area/horizon/operations/warehouse) +"mvw" = ( +/obj/structure/lattice/catwalk, +/obj/structure/reagent_dispensers/fueltank, +/turf/simulated/open, +/area/horizon/service/hydroponics) "mvx" = ( /obj/structure/closet/secure_closet{ req_access = list(150) @@ -87496,22 +87483,30 @@ /obj/effect/floor_decal/industrial/outline/red, /turf/simulated/floor/tiled/dark/full, /area/shuttle/burglar) +"mvD" = ( +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/effect/floor_decal/corner/dark_blue{ + dir = 6 + }, +/obj/random/pottedplant, +/turf/simulated/floor/tiled/dark, +/area/horizon/command/bridge/controlroom) "mvF" = ( /obj/structure/lattice, /turf/template_noop, /area/template_noop) -"mvN" = ( -/obj/machinery/door/airlock/external{ - dir = 4 +"mvK" = ( +/obj/machinery/door/firedoor, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/structure/cable{ + icon_state = "1-2" }, -/obj/effect/map_effect/marker/airlock{ - frequency = 1004; - master_tag = "airlock_horizon_deck_1_fore_1"; - name = "airlock_horizon_deck_1_fore_1" - }, -/obj/effect/map_effect/marker_helper/airlock/exterior, -/turf/simulated/floor/plating, -/area/maintenance/hangar/starboard) +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/full, +/area/horizon/stairwell/engineering/deck_2) "mvP" = ( /obj/effect/floor_decal/industrial/outline/security, /obj/structure/target_stake, @@ -87531,171 +87526,168 @@ }, /turf/simulated/floor/tiled, /area/horizon/security/office) -"mwa" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 9 +"mvU" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 8 }, +/obj/structure/railing/mapped, +/turf/simulated/floor/tiled/dark, +/area/horizon/hallway/primary/deck_2/central) +"mvY" = ( +/obj/structure/bed/stool/chair/office/dark{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_pump/on, /turf/simulated/floor/tiled, -/area/hallway/primary/central_two) -"mwc" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 9 +/area/horizon/crew/vacantoffice) +"mwh" = ( +/obj/random/junk, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/starboard) +"mwi" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/effect/floor_decal/industrial/loading/yellow{ + dir = 8 }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/port/far) +"mwk" = ( /obj/structure/cable/green{ - icon_state = "1-2" + icon_state = "1-8" }, -/obj/structure/cable/green{ - icon_state = "2-8" +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/effect/floor_decal/corner/dark_blue{ + dir = 9 + }, +/obj/effect/floor_decal/corner/dark_blue{ + dir = 6 + }, +/obj/structure/railing/mapped{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/horizon/stairwell/bridge) +"mwn" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/horizon/command/bridge/bridge_crew) +"mwp" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/window/reinforced{ + name = "adjusted reinforced window" + }, +/obj/structure/table/wood, +/obj/item/device/flashlight/lamp/green{ + pixel_x = 1; + pixel_y = 3 + }, +/turf/simulated/floor/carpet, +/area/horizon/service/bar/backroom) +"mwt" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/corner/dark_green{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/horizon/hangar/intrepid) +"mwx" = ( +/obj/effect/floor_decal/corner/purple{ + dir = 6 + }, +/obj/structure/disposalpipe/segment{ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/obj/structure/disposalpipe/junction{ - dir = 1; - icon_state = "pipe-j2" +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" }, /turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/central) -"mwh" = ( -/obj/structure/bookcase/libraryspawn/fiction, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/library) -"mwl" = ( -/turf/simulated/floor/tiled/dark, -/area/chapel/office) -"mwo" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/storage/eva) -"mwu" = ( -/obj/structure/window/reinforced, -/obj/structure/table/reinforced/steel, -/obj/machinery/cell_charger, -/obj/item/storage/bag/inflatable, -/obj/item/storage/bag/inflatable, -/obj/item/device/camera, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenoarch_atrium) +/area/horizon/service/custodial) "mwy" = ( /obj/structure/shuttle_part/tcfl{ icon_state = "16,6" }, /turf/unsimulated/floor/plating, /area/shuttle/legion) -"mwD" = ( -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/machinery/atmospherics/unary/vent_pump/high_volume, -/obj/machinery/door/blast/shutters/open{ - dir = 2; - id = "intrepid_bay_outer"; - name = "Intrepid Shutter" - }, -/obj/effect/map_effect/marker/airlock/shuttle{ - cycle_to_external_air = 1; - master_tag = "airlock_shuttle_intrepid"; - name = "airlock_shuttle_intrepid"; - req_one_access = null; - shuttle_tag = "Intrepid" - }, -/obj/effect/map_effect/marker_helper/airlock/exterior, -/turf/simulated/floor/plating, -/area/shuttle/intrepid/main_compartment) -"mwO" = ( -/turf/simulated/floor/plating, -/area/hangar/operations) -"mwP" = ( -/obj/machinery/mech_recharger, -/obj/effect/floor_decal/corner/dark_blue/full{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/light_switch{ - dir = 1; - pixel_x = 7; - pixel_y = 28 - }, -/mob/living/heavy_vehicle/premade/ripley/loader, -/turf/simulated/floor/tiled/dark, -/area/horizon/longbow) -"mwR" = ( -/obj/effect/floor_decal/corner/lime/diagonal, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 +"mwC" = ( +/obj/structure/cable{ + icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/white, -/area/shuttle/intrepid/medical) -"mwS" = ( -/obj/machinery/light{ +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor/plating, +/area/horizon/hangar/auxiliary) +"mxb" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/lattice/catwalk/indoor, +/obj/machinery/atmospherics/pipe/simple/visible{ dir = 4 }, -/obj/structure/bed/stool/chair/padded/red{ - dir = 8 - }, -/obj/machinery/power/apc/north, -/obj/structure/cable/green{ - icon_state = "0-8" - }, -/turf/simulated/floor/lino/diamond, -/area/horizon/library) -"mwZ" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 10 - }, -/obj/structure/extinguisher_cabinet/south, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/port/docks) +/turf/simulated/floor/plating, +/area/horizon/engineering/atmos/air) "mxd" = ( /obj/structure/flora/ausbushes/fullgrass, /obj/structure/flora/ausbushes/ppflowers, /turf/simulated/floor/exoplanet/grass/grove, /area/centcom/shared_dream) +"mxg" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 5 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/horizon/operations/lobby) "mxk" = ( /obj/effect/floor_decal/corner/green{ dir = 9 }, /turf/simulated/floor/holofloor/tiled, /area/horizon/holodeck/source_battlemonsters) -"mxq" = ( -/obj/machinery/light, -/turf/simulated/floor/tiled/dark, -/area/engineering/atmos/propulsion/starboard) -"mxs" = ( -/obj/machinery/atmospherics/pipe/simple/visible/green, -/obj/structure/tank_wall/nitrogen{ - density = 0; - icon_state = "n11"; - opacity = 0 +"mxo" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 }, -/turf/simulated/floor/reinforced/nitrogen, -/area/engineering/atmos/air) -"mxu" = ( -/obj/machinery/door/blast/shutters/open{ - dir = 2; - id = "seconddeckdockint"; - name = "Security Checkpoint Internal Shutter" +/obj/effect/floor_decal/corner_wide/green{ + dir = 6 }, -/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/icu) +"mxt" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/closet/crate, +/obj/item/circuitboard/smes, +/obj/item/circuitboard/smes, +/obj/item/smes_coil, +/obj/item/smes_coil, +/obj/item/smes_coil/super_capacity, +/obj/item/smes_coil/super_capacity, +/obj/item/smes_coil/super_io, +/obj/item/smes_coil/super_io, /turf/simulated/floor/tiled/dark/full, -/area/security/checkpoint2) +/area/horizon/engineering/reactor/indra/mainchamber) "mxv" = ( /obj/structure/bed/stool/chair/shuttle{ dir = 8 @@ -87704,95 +87696,80 @@ /obj/machinery/light, /turf/simulated/floor/carpet, /area/shuttle/hapt) -"mxx" = ( +"mxA" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/machinery/firealarm/west, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/structure/sink{ + dir = 8; + pixel_x = -12 + }, /obj/machinery/shower{ - pixel_y = 24 + dir = 4; + pixel_y = 1 }, -/obj/structure/curtain/open/shower, -/obj/machinery/door/window/southleft{ - name = "Shower" - }, -/obj/structure/bed/handrail{ - dir = 4 - }, -/turf/simulated/floor/tiled/freezer, -/area/horizon/crew_quarters/fitness/showers) +/turf/simulated/floor/tiled/full, +/area/horizon/engineering/reactor/supermatter/airlock) "mxB" = ( /obj/machinery/light/small{ dir = 8 }, /turf/unsimulated/floor, /area/centcom/legion) -"mxC" = ( -/obj/random/junk, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/plating, -/area/maintenance/wing/port) -"mxF" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; +"mxI" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance{ + dir = 4; + req_one_access = list(5,12) + }, +/turf/simulated/floor, +/area/horizon/holodeck_control) +"mxO" = ( +/obj/structure/cable{ icon_state = "1-2" }, -/obj/effect/floor_decal/spline/plain/purple{ - dir = 8 - }, -/obj/effect/floor_decal/spline/plain{ - dir = 4 - }, -/obj/structure/engineer_maintenance/pipe{ - dir = 8 - }, -/obj/structure/engineer_maintenance/electric{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/horizon/hydroponics) +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/firedoor, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/full, +/area/horizon/hallway/primary/deck_3/central) "mxR" = ( /obj/structure/flora/ausbushes/fullgrass, /turf/simulated/floor/holofloor/grass, /area/horizon/holodeck/source_wildlife) -"mxW" = ( -/obj/machinery/door/airlock/maintenance{ - dir = 4; - name = "Fuel Bay Maintenance"; - req_one_access = list(26,29,31,48,67,24,47) - }, +"mxS" = ( +/obj/structure/window/shuttle/scc_space_ship, +/obj/structure/grille, /obj/machinery/door/firedoor, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/atmospherics/pipe/simple/hidden/aux{ - dir = 8 +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id = "bridge blast"; + name = "Bridge Blast Doors"; + opacity = 0 }, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 4 +/obj/machinery/door/blast/shutters/open{ + dir = 4; + id = "shutters_deck3_bridgesafety"; + name = "Safety Shutter" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/plasticflaps/airtight{ - dir = 8 - }, -/obj/machinery/door/blast/regular/open{ - id = "hangarlockdown"; - name = "Hangar Lockdown" - }, -/turf/simulated/floor/tiled, -/area/hangar/intrepid) -"mxX" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/machinery/portable_atmospherics/canister/air, -/turf/simulated/floor/tiled/full, -/area/hangar/intrepid) +/turf/simulated/floor/tiled/dark/full, +/area/horizon/repoffice/representative_two) +"mxY" = ( +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/port/nacelle) +"mxZ" = ( +/obj/structure/table/standard, +/obj/item/device/analyzer/plant_analyzer, +/obj/item/reagent_containers/spray/plantbgone, +/obj/item/material/minihoe, +/obj/item/material/hatchet, +/turf/simulated/floor/tiled/dark, +/area/horizon/rnd/xenobiology/xenoflora) "mya" = ( /obj/structure/bed/stool/bar/padded/red{ dir = 4 @@ -87802,117 +87779,69 @@ }, /turf/unsimulated/floor/monotile, /area/antag/loner) -"myb" = ( -/obj/structure/closet/boxinggloves, -/obj/machinery/light{ - dir = 4 +"myd" = ( +/obj/structure/grille, +/obj/machinery/door/firedoor, +/obj/structure/window/shuttle/scc_space_ship/cardinal, +/obj/structure/cable/green{ + icon_state = "1-8" }, -/obj/effect/floor_decal/corner/dark_green/diagonal, -/turf/simulated/floor/tiled, -/area/horizon/crew_quarters/fitness/gym) -"myc" = ( -/obj/effect/floor_decal/corner/dark_blue/full{ - dir = 1 +/obj/structure/cable/green, +/obj/machinery/door/blast/regular/open{ + dir = 8; + id = "shutters_deck3_longbow"; + name = "Safety Blast Door" }, -/obj/structure/fireaxecabinet/north{ +/turf/simulated/floor/tiled/dark/full, +/area/horizon/weapons/longbow) +"myf" = ( +/obj/machinery/light_switch{ + dir = 8; + pixel_x = -22; pixel_y = 30 }, +/turf/simulated/floor/carpet/rubber, +/area/horizon/maintenance/deck_1/workshop) +"myp" = ( +/obj/effect/floor_decal/corner/purple{ + dir = 9 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, /turf/simulated/floor/tiled, -/area/bridge/controlroom) -"mye" = ( -/obj/machinery/door/airlock/highsecurity{ - dir = 8; - name = "AI Core"; - req_access = list(16) - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/dark, -/area/turret_protected/ai_upload) -"myt" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/structure/lattice/catwalk/indoor, -/turf/simulated/floor/plating, -/area/engineering/engine_room/rust) +/area/horizon/maintenance/deck_2/wing/port) "myu" = ( /obj/structure/shuttle_part/tcfl{ icon_state = "0,0" }, /turf/unsimulated/floor/plating, /area/shuttle/legion) -"myx" = ( -/obj/effect/map_effect/window_spawner/full/reinforced/grille/firedoor, -/obj/structure/cable/green{ - icon_state = "0-8" - }, -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/obj/machinery/door/blast/regular/open{ - id = "AICore"; - name = "AI Core Blast Door"; +"myF" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/effect/floor_decal/industrial/warning{ dir = 4 }, -/turf/simulated/floor/tiled/dark, -/area/turret_protected/ai_upload) -"myz" = ( -/obj/structure/cable/green{ - icon_state = "4-8" +/obj/structure/sink{ + dir = 4; + pixel_x = 12 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/machinery/shower{ + dir = 8; + pixel_y = 1 }, -/obj/effect/floor_decal/corner_wide/green{ - dir = 10 +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/reactor/indra/monitoring) +"myJ" = ( +/obj/machinery/power/smes/buildable/substation{ + RCon_tag = "Substation - Xenoarchaeology" }, -/obj/structure/cable/green{ - icon_state = "1-4" +/obj/structure/cable{ + icon_state = "0-2" }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/structure/railing/mapped, -/turf/simulated/floor/tiled/white, -/area/hallway/medical/upper) -"myA" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/hangar/operations) -"myH" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/corner/brown/full, -/turf/simulated/floor/tiled, -/area/operations/break_room) -"myI" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 5 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/horizon/hydroponics/garden) +/obj/structure/cable/green, +/turf/simulated/floor/plating, +/area/horizon/maintenance/substation/xenoarchaeology) "myK" = ( /obj/effect/floor_decal/corner/red/full{ dir = 8 @@ -87921,21 +87850,33 @@ icon_state = "dark_preview" }, /area/centcom/holding) -"myM" = ( -/obj/machinery/door/airlock/external, -/obj/machinery/access_button{ - dir = 8; - pixel_x = 20; - pixel_y = 28 +"myO" = ( +/obj/effect/floor_decal/corner_wide/purple{ + dir = 10 }, -/obj/effect/map_effect/marker/airlock{ - frequency = 2005; - master_tag = "airlock_horizon_deck_2_aft_sm"; - name = "airlock_horizon_deck_2_aft_sm" +/obj/machinery/disposal, +/obj/effect/floor_decal/corner_wide/purple/diagonal, +/obj/structure/disposalpipe/trunk{ + dir = 8 }, -/obj/effect/map_effect/marker_helper/airlock/exterior, -/turf/simulated/floor/plating, -/area/engineering/engine_room) +/obj/machinery/light, +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/test_range) +"myR" = ( +/obj/structure/table/standard, +/obj/structure/closet/crate/plastic{ + pixel_y = -4; + tablestatus = -1 + }, +/obj/item/storage/box/fancy/crayons, +/obj/item/storage/box/fancy/crayons, +/obj/item/toy/figure/assistant, +/obj/item/device/radio/intercom/east, +/obj/effect/floor_decal/corner/beige{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/horizon/crew/vacantoffice) "myT" = ( /obj/machinery/computer/message_monitor, /turf/unsimulated/floor{ @@ -87955,47 +87896,20 @@ icon_state = "dark_preview" }, /area/centcom/holding) -"mzc" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 +"myZ" = ( +/obj/structure/grille, +/obj/machinery/door/firedoor, +/obj/structure/window/shuttle/scc_space_ship/cardinal, +/obj/structure/cable/green{ + icon_state = "0-2" }, -/obj/machinery/light/small/emergency, -/turf/simulated/floor/plating, -/area/maintenance/wing/port/far) -"mzd" = ( -/obj/machinery/atmospherics/pipe/tank/air/scc_shuttle{ - dir = 4 - }, -/obj/effect/floor_decal/corner/dark_blue/full{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 +/obj/machinery/door/blast/regular/open{ + dir = 2; + id = "shutters_deck3_longbow"; + name = "Safety Blast Door" }, /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"; - name = "Xenobiology External Access Bolts"; - pixel_y = -21; - req_access = list(55); - specialfunctions = 4; - desiredstate = 1 - }, -/obj/structure/table/standard, -/obj/effect/floor_decal/corner/mauve{ - dir = 10 - }, -/obj/machinery/centrifuge, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology/xenological) +/area/horizon/weapons/longbow) "mzs" = ( /obj/structure/table/reinforced/steel, /obj/item/deck/cards, @@ -88003,340 +87917,7 @@ /obj/item/trash/cigbutt, /turf/unsimulated/floor, /area/centcom/legion) -"mzu" = ( -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/structure/railing/mapped, -/turf/simulated/floor/tiled/white, -/area/operations/lower/machinist/surgicalbay) -"mzy" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/turf/simulated/floor/tiled, -/area/bridge/cciaroom/lounge) -"mzE" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/reinforced, -/area/engineering/gravity_gen) -"mzJ" = ( -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/effect/landmark{ - name = "Revenant" - }, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"mzL" = ( -/obj/machinery/atmospherics/pipe/simple/visible/black{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/engineering/atmos) -"mzO" = ( -/obj/structure/table/standard, -/obj/effect/floor_decal/corner/orange/diagonal, -/turf/unsimulated/floor{ - icon_state = "white" - }, -/area/tdome/tdomeadmin) -"mzR" = ( -/obj/effect/decal/cleanable/generic, -/turf/simulated/floor/carpet/rubber, -/area/maintenance/engineering/auxillary) -"mzS" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/visible/purple{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/engine_room/turbine) -"mzW" = ( -/obj/structure/bed/stool/chair{ - dir = 4 - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 8 - }, -/obj/machinery/requests_console/west{ - department = "Chapel"; - departmentType = 1 - }, -/turf/simulated/floor/wood, -/area/chapel/office) -"mAa" = ( -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/spline/plain{ - dir = 8 - }, -/turf/simulated/floor/lino, -/area/horizon/cafeteria) -"mAm" = ( -/obj/effect/floor_decal/corner/dark_green/diagonal, -/obj/structure/bed/stool/chair{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/starboard) -"mAo" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/industrial/hatch/red, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge/selfdestruct) -"mAq" = ( -/obj/machinery/chem_master, -/obj/effect/floor_decal/spline/plain{ - dir = 10 - }, -/obj/structure/extinguisher_cabinet/west, -/turf/simulated/floor/carpet/rubber, -/area/medical/pharmacy) -"mAs" = ( -/obj/item/storage/box/fancy/cigarettes/cigar{ - pixel_x = -5; - pixel_y = 6 - }, -/obj/item/flame/lighter/zippo{ - pixel_x = 7; - pixel_y = 7 - }, -/obj/structure/table/standard, -/turf/unsimulated/floor{ - icon_state = "wood" - }, -/area/centcom/legion/hangar5) -"mAw" = ( -/obj/machinery/suit_cycler/syndicate{ - locked = 0 - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/unsimulated/floor, -/area/antag/mercenary) -"mAL" = ( -/obj/machinery/porta_turret/crescent, -/obj/effect/decal/warning_stripes, -/turf/unsimulated/floor, -/area/centcom/control) -"mAX" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 9 - }, -/turf/simulated/floor/reinforced, -/area/rnd/xenobiology) -"mAY" = ( -/obj/effect/floor_decal/corner/dark_blue/diagonal, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/intrepid/flight_deck) -"mBa" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 9 - }, -/obj/structure/bed/stool/chair{ - dir = 4 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/unsimulated/floor, -/area/centcom/holding) -"mBb" = ( -/obj/machinery/power/apc/west, -/obj/structure/cable/green{ - icon_state = "0-4" - }, -/turf/simulated/floor/plating, -/area/engineering/rust_office) -"mBd" = ( -/obj/effect/floor_decal/corner/paleblue, -/obj/effect/floor_decal/spline/fancy/wood/corner, -/obj/effect/decal/fake_object{ - color = "#545c68"; - icon = 'icons/obj/railing.dmi'; - icon_state = "mcorneroverlay1"; - name = "railing" - }, -/turf/unsimulated/floor, -/area/centcom/spawning) -"mBh" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 8 - }, -/obj/effect/floor_decal/corner/yellow, -/obj/machinery/atmospherics/binary/pump{ - dir = 4; - name = "Hydrogen to Mixer" - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/engineering/engine_room/turbine) -"mBv" = ( -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/tiled/full, -/area/engineering/storage_hard) -"mBx" = ( -/obj/machinery/door/airlock/multi_tile/glass{ - dir = 2; - name = "Hangar" - }, -/obj/machinery/door/firedoor/multi_tile{ - dir = 1 - }, -/obj/machinery/door/blast/regular/open{ - id = "hangarlockdown"; - name = "Hangar Lockdown" - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/full, -/area/horizon/stairwell/central) -"mBI" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 5 - }, -/obj/machinery/light/floor{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/central) -"mBK" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 9 - }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/dark, -/area/horizon/longbow) -"mBM" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/outline/red, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/security/armoury) -"mBO" = ( -/obj/structure/table/standard, -/obj/effect/floor_decal/corner/green/full, -/obj/machinery/alarm/south, -/turf/simulated/floor/tiled/white, -/area/horizon/crew_quarters/fitness/showers) -"mBR" = ( -/obj/structure/platform, -/turf/simulated/floor/tiled/dark, -/area/maintenance/wing/port/far) -"mBU" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/outline/operations, -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/suit_cycler/engineering/prepared/atmos, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/atmos/storage) -"mBV" = ( -/obj/machinery/door/airlock/highsecurity{ - dir = 1; - name = "AI Secure Storage"; - req_access = list(16) - }, -/obj/structure/cable/green{ - icon_state = "2-4" - }, -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/obj/machinery/door/blast/regular/open{ - id = "AICore"; - name = "AI Core Blast Door"; - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/dark, -/area/turret_protected/ai_upload) -"mBY" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 4 - }, -/obj/structure/table/reinforced/wood, -/obj/item/device/flashlight/lamp, -/turf/unsimulated/floor{ - icon_state = "wood" - }, -/area/centcom/control) -"mCa" = ( +"mzK" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 9 }, @@ -88360,7 +87941,229 @@ icon_state = "pipe-c" }, /turf/simulated/floor/tiled, -/area/horizon/hallway/deck_two/fore) +/area/horizon/hallway/primary/deck_2/fore) +"mzO" = ( +/obj/structure/table/standard, +/obj/effect/floor_decal/corner/orange/diagonal, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/tdome/tdomeadmin) +"mzX" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/reagent_dispensers/watertank, +/turf/simulated/floor/tiled/dark, +/area/horizon/maintenance/deck_2/wing/port/far) +"mzZ" = ( +/obj/effect/floor_decal/corner/yellow/full{ + dir = 4 + }, +/obj/structure/table/standard, +/obj/item/storage/slide_projector, +/turf/simulated/floor/tiled, +/area/horizon/engineering/lobby) +"mAg" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/light/small/emergency{ + dir = 4 + }, +/turf/simulated/floor, +/area/horizon/maintenance/deck_3/aft/port) +"mAl" = ( +/obj/structure/platform_deco{ + icon_state = "ledge_deco" + }, +/obj/structure/platform_deco{ + dir = 8 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/horizon/command/heads/rd) +"mAs" = ( +/obj/item/storage/box/fancy/cigarettes/cigar{ + pixel_x = -5; + pixel_y = 6 + }, +/obj/item/flame/lighter/zippo{ + pixel_x = 7; + pixel_y = 7 + }, +/obj/structure/table/standard, +/turf/unsimulated/floor{ + icon_state = "wood" + }, +/area/centcom/legion/hangar5) +"mAt" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/computer/general_air_control/large_tank_control/terminal{ + name = "Hydrogen Supply Monitor"; + output_tag = "H2_out_starboardthruster"; + sensors = list("h_sensor"="Tank") + }, +/obj/effect/floor_decal/industrial/outline/firefighting_closet, +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/atmos/propulsion) +"mAw" = ( +/obj/machinery/suit_cycler/syndicate{ + locked = 0 + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/unsimulated/floor, +/area/antag/mercenary) +"mAK" = ( +/turf/simulated/floor/airless, +/area/horizon/hangar/operations) +"mAL" = ( +/obj/machinery/porta_turret/crescent, +/obj/effect/decal/warning_stripes, +/turf/unsimulated/floor, +/area/centcom/control) +"mAV" = ( +/obj/machinery/power/smes/buildable/substation{ + RCon_tag = "Substation - Hangar" + }, +/obj/structure/cable, +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/substation/hangar) +"mAW" = ( +/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/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/corner/brown{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/horizon/operations/mining_main/refinery) +"mBa" = ( +/obj/effect/floor_decal/corner/paleblue{ + dir = 9 + }, +/obj/structure/bed/stool/chair{ + dir = 4 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/unsimulated/floor, +/area/centcom/holding) +"mBd" = ( +/obj/effect/floor_decal/corner/paleblue, +/obj/effect/floor_decal/spline/fancy/wood/corner, +/obj/effect/decal/fake_object{ + color = "#545c68"; + icon = 'icons/obj/railing.dmi'; + icon_state = "mcorneroverlay1"; + name = "railing" + }, +/turf/unsimulated/floor, +/area/centcom/spawning) +"mBl" = ( +/obj/effect/floor_decal/corner/dark_blue/diagonal, +/obj/structure/bed/handrail, +/obj/structure/bed/stool/chair/office/dark{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/power/apc/north{ + req_access = null; + req_one_access = list(11, 73) + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/shuttle/intrepid/flight_deck) +"mBq" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/item/hullbeacon/red, +/obj/machinery/light/spot{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/horizon/hangar/intrepid) +"mBC" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/horizon/operations/office) +"mBF" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner/red/diagonal, +/obj/machinery/light/small/emergency, +/obj/random/dirt_75, +/turf/simulated/floor/tiled, +/area/horizon/maintenance/deck_2/wing/port) +"mBM" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/outline/red, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/security/armoury) +"mBQ" = ( +/obj/machinery/firealarm/east, +/obj/structure/bed/stool/chair/shuttle{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/shuttle/mining) +"mBY" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/obj/structure/table/reinforced/wood, +/obj/item/device/flashlight/lamp, +/turf/unsimulated/floor{ + icon_state = "wood" + }, +/area/centcom/control) "mCb" = ( /obj/structure/window/reinforced/crescent{ dir = 1 @@ -88370,18 +88173,18 @@ }, /turf/simulated/floor/grass/no_edge, /area/centcom/holding) -"mCf" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 +"mCd" = ( +/obj/structure/tank_wall/air{ + density = 0; + icon_state = "air6"; + opacity = 0 }, -/obj/structure/cable/green{ - icon_state = "2-4" - }, -/turf/simulated/floor/tiled/freezer{ - name = "cooled tiles"; - temperature = 253.15 - }, -/area/horizon/kitchen/freezer) +/turf/simulated/floor/reinforced/airmix, +/area/horizon/engineering/atmos/air) +"mCi" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/xenobiology) "mCk" = ( /obj/structure/table/reinforced/steel, /obj/item/storage/firstaid/regular{ @@ -88391,19 +88194,69 @@ /obj/item/storage/firstaid/regular, /turf/unsimulated/floor, /area/centcom/legion/hangar5) +"mCq" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/service/port) "mCr" = ( /obj/machinery/photocopier, /turf/unsimulated/floor{ icon_state = "wood" }, /area/centcom/control) -"mCJ" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/effect/floor_decal/spline/plain{ +"mCs" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/railing/mapped{ dir = 8 }, -/turf/simulated/floor/tiled/white, -/area/shuttle/intrepid/buffet) +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/service/port) +"mCu" = ( +/obj/structure/bed/stool/chair/office/bridge, +/turf/simulated/floor/carpet/rubber, +/area/horizon/command/bridge/controlroom) +"mCx" = ( +/obj/effect/floor_decal/corner/dark_green/full{ + dir = 4 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/railing/mapped, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_1/central) +"mCA" = ( +/obj/structure/bed/stool/chair/padded/black{ + dir = 4 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/obj/effect/landmark/start{ + name = "Chaplain" + }, +/turf/simulated/floor/wood, +/area/horizon/service/chapel/office) +"mCC" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/obj/effect/map_effect/door_helper/unres{ + dir = 1 + }, +/obj/machinery/door/airlock/engineering{ + name = "Engineering Lobby"; + req_one_access = list(10) + }, +/turf/simulated/floor/tiled/full, +/area/horizon/engineering/lobby) "mCP" = ( /obj/effect/floor_decal/corner/grey{ dir = 5 @@ -88436,100 +88289,95 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/holodeck_control) -"mCW" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 10 +"mDb" = ( +/obj/machinery/computer/general_air_control/large_tank_control/terminal{ + input_tag = "fusion_injector_air"; + name = "INDRA Chamber Monitor"; + sensors = list("fusion_sensor"="INDRA Chamber") }, -/obj/machinery/atm{ - pixel_y = -8 - }, -/turf/simulated/floor/tiled, -/area/operations/lobby) -"mDa" = ( -/obj/structure/platform/ledge, -/obj/structure/platform/ledge{ - dir = 4 - }, -/obj/structure/platform_deco/ledge{ - dir = 5 - }, -/turf/simulated/open, -/area/horizon/hallway/deck_three/primary/central) -"mDd" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/maintenance/wing/port/deck1) -"mDe" = ( -/obj/effect/floor_decal/corner_wide/yellow{ - dir = 9 - }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/turf/simulated/floor/tiled, -/area/hallway/engineering/rust) +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/reactor/indra/monitoring) "mDg" = ( /obj/structure/sign/christmas/snowman, /turf/simulated/floor/exoplanet/snow, /area/centcom/shared_dream) -"mDk" = ( +"mDm" = ( +/obj/effect/floor_decal/corner/black{ + dir = 6 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark, +/area/horizon/hangar/intrepid) +"mDn" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 6 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/horizon/engineering/reactor/indra/office) +"mDv" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, /obj/structure/cable/green{ - icon_state = "1-2" + icon_state = "2-8" }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/engineering/aft_airlock) -"mDt" = ( -/turf/simulated/wall, -/area/maintenance/substation/research_sublevel) -"mDx" = ( -/obj/machinery/door/airlock/hatch{ - dir = 1; - name = "Propulsion"; - req_one_access = list(11,24) - }, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/visible/black, -/turf/simulated/floor/tiled/dark, -/area/engineering/atmos/propulsion/starboard) -"mDF" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 +/obj/structure/cable/green{ + icon_state = "1-8" }, /obj/structure/cable/green{ icon_state = "4-8" }, -/obj/effect/floor_decal/corner/dark_green/full{ - dir = 8 +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" }, -/obj/effect/floor_decal/spline/plain/corner{ - dir = 8 +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/xenological) +"mDz" = ( +/turf/simulated/wall/shuttle/scc_space_ship/cardinal, +/area/horizon/hangar/intrepid) +"mDA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 }, -/obj/effect/floor_decal/spline/plain/purple{ +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/horizon/operations/lobby) +"mDC" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 1 }, /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/simulated/floor/tiled, -/area/horizon/hydroponics) +/turf/simulated/floor/tiled/full, +/area/horizon/hallway/primary/deck_2/central) +"mDD" = ( +/obj/structure/table/steel, +/obj/item/device/flashlight/lamp, +/turf/simulated/floor/reinforced, +/area/horizon/rnd/xenoarch/isolation_c) +"mDG" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/rnd/xenoarch/storage) "mDM" = ( /obj/structure/cable/green{ icon_state = "1-2" @@ -88539,92 +88387,35 @@ /obj/structure/disposalpipe/junction, /turf/simulated/floor/tiled, /area/horizon/security/investigations_hallway) +"mDN" = ( +/obj/structure/shuttle_part/scc_space_ship{ + icon_state = "d3-5-f" + }, +/turf/simulated/wall, +/area/horizon/engineering/drone_fabrication) "mDQ" = ( /obj/effect/floor_decal/industrial/warning, /turf/simulated/floor/tiled, /area/shuttle/merchant) -"mDR" = ( -/obj/machinery/door/airlock/glass_research{ - dir = 1; - name = "Xenobotany Lab"; - req_access = list(52) - }, -/obj/effect/map_effect/door_helper/unres{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/firedoor, +"mDU" = ( /obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/dark/full, -/area/rnd/xenobiology/xenoflora) -"mDT" = ( +/turf/simulated/floor/tiled/full, +/area/horizon/hallway/primary/deck_2/starboard) +"mEd" = ( /obj/effect/floor_decal/industrial/warning{ - dir = 8 + dir = 9 }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/machinery/alarm/north, -/turf/simulated/floor/tiled/dark/full, -/area/rnd/xenoarch_atrium) -"mEb" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 4 +/turf/simulated/floor/reinforced, +/area/horizon/rnd/xenobiology) +"mEk" = ( +/obj/machinery/porta_turret/stationary, +/obj/effect/floor_decal/industrial/warning/full, +/obj/machinery/camera/motion{ + c_tag = "Scuttling Device"; + network = list("Command","Security") }, -/turf/simulated/floor/wood, -/area/horizon/bar) -"mEc" = ( -/obj/machinery/door/firedoor, -/obj/effect/floor_decal/corner_wide/paleblue{ - dir = 1 - }, -/obj/effect/floor_decal/corner_wide/green{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/white, -/area/hallway/medical) -"mEi" = ( -/obj/effect/decal/cleanable/dirt, -/mob/living/silicon/robot/drone/construction/matriarch, -/turf/simulated/floor/plating, -/area/engineering/drone_fabrication) -"mEm" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/structure/window/shuttle/scc_space_ship/cardinal, -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/obj/structure/cable/green, -/obj/machinery/door/blast/regular/open{ - dir = 8; - id = "shutters_deck3_longbow"; - name = "Safety Blast Door" - }, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/longbow) -"mEn" = ( -/obj/effect/floor_decal/corner_wide/green{ - dir = 6 - }, -/obj/effect/floor_decal/industrial/warning, -/obj/structure/closet/walllocker/medical/secure{ - name = "Medication Closet"; - pixel_x = 31 - }, -/obj/item/storage/pill_bottle/mortaphenyl, -/obj/item/storage/pill_bottle/mortaphenyl, -/obj/item/storage/pill_bottle/ryetalyn, -/obj/item/reagent_containers/syringe/antiparasitic, -/obj/item/reagent_containers/syringe/antiparasitic, -/obj/item/reagent_containers/inhaler/pneumalin, -/obj/item/reagent_containers/inhaler/pneumalin, -/turf/simulated/floor/tiled/white, -/area/medical/gen_treatment) +/turf/simulated/floor/reinforced, +/area/horizon/command/bridge/selfdestruct) "mEq" = ( /obj/structure/sign/nosmoking_2{ pixel_x = -32; @@ -88637,16 +88428,6 @@ /obj/effect/floor_decal/corner/dark_blue/full, /turf/simulated/floor/tiled, /area/horizon/security/lobby) -"mEs" = ( -/obj/machinery/keycard_auth{ - pixel_x = 31; - pixel_y = 26 - }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 6 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge/aibunker) "mEu" = ( /obj/structure/table/rack, /obj/item/gun/energy/rifle/ionrifle{ @@ -88678,25 +88459,38 @@ }, /turf/unsimulated/floor/plating, /area/centcom/distress_prep) -"mEy" = ( -/obj/machinery/biogenerator/small/north, -/obj/effect/floor_decal/spline/plain/lime, -/turf/simulated/floor/tiled/dark, -/area/horizon/hydroponics/garden) -"mEL" = ( -/obj/machinery/light/small{ +"mEz" = ( +/turf/simulated/wall/shuttle/unique/scc/mining{ + icon_state = "4,1" + }, +/area/horizon/shuttle/mining) +"mEA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/corner/brown, +/turf/simulated/floor/tiled, +/area/horizon/operations/warehouse) +"mED" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_3/central) +"mEG" = ( +/obj/machinery/light{ dir = 4 }, -/obj/structure/railing/mapped, -/obj/effect/floor_decal/corner/brown{ - dir = 6 +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/machinery/sleeper{ + dir = 8 + }, +/obj/effect/floor_decal/corner/beige{ + dir = 10 }, /turf/simulated/floor/tiled/dark, -/area/shuttle/intrepid/port_compartment) -"mER" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/simulated/floor/plating, -/area/engineering/storage/lower) +/area/horizon/medical/gen_treatment) "mEU" = ( /obj/effect/decal/fake_object{ color = "#545c68"; @@ -88709,56 +88503,115 @@ /obj/effect/floor_decal/spline/plain, /turf/unsimulated/floor, /area/centcom/specops) -"mEX" = ( -/obj/effect/floor_decal/corner/dark_blue{ +"mEV" = ( +/obj/structure/table/reinforced/steel, +/obj/random/contraband, +/obj/random/contraband, +/turf/simulated/floor/carpet/rubber, +/area/horizon/maintenance/deck_1/workshop) +"mFb" = ( +/obj/machinery/power/breakerbox/activated{ + RCon_tag = "Hangar Substation" + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/substation/hangar) +"mFd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/reagent_dispensers/fueltank, +/obj/effect/floor_decal/industrial/warning/cee{ dir = 4 }, -/obj/effect/floor_decal/corner/yellow{ - dir = 1 +/turf/simulated/floor/tiled/dark, +/area/horizon/maintenance/deck_2/wing/port/far) +"mFi" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 }, +/obj/structure/bed/stool/chair/padded/brown{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/horizon/command/heads/chief) +"mFp" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor, +/area/horizon/maintenance/deck_3/aft/port) +"mFs" = ( +/obj/machinery/atmospherics/portables_connector, +/obj/machinery/portable_atmospherics/canister/air/airlock, /obj/effect/floor_decal/industrial/warning{ dir = 1 }, -/obj/machinery/atmospherics/pipe/simple/visible/yellow, /turf/simulated/floor/tiled/dark, -/area/engineering/engine_room/turbine) -"mFo" = ( +/area/horizon/engineering/atmos/propulsion/starboard) +"mFt" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/corner/dark_blue/full, /obj/structure/platform_stairs/full{ dir = 1 }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ +/turf/simulated/floor/tiled, +/area/horizon/command/bridge/upperdeck) +"mFu" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/dark/full, -/area/shuttle/intrepid/junction_compartment) +/turf/simulated/floor/tiled, +/area/horizon/maintenance/deck_2/wing/starboard/auxatmos) "mFv" = ( /obj/structure/holostool, /turf/simulated/floor/wood/maple, /area/horizon/holodeck/source_cafe) -"mFC" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/effect/floor_decal/industrial/warning{ +"mFz" = ( +/obj/structure/platform/ledge{ + dir = 1 + }, +/obj/structure/platform/ledge{ + dir = 4 + }, +/obj/structure/railing/mapped, +/turf/simulated/open, +/area/horizon/operations/office) +"mFB" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/full, +/area/horizon/hallway/primary/deck_1/central) +"mFD" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 6 + }, +/obj/machinery/meter, +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/atmos) +"mFK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 10 }, -/obj/structure/table/rack, -/obj/random/loot, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"mFO" = ( -/obj/structure/sign/emergency/evacuation{ - dir = 8 +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor, +/area/horizon/maintenance/deck_3/aft/port/far) +"mFN" = ( +/obj/structure/foamedmetal, +/obj/structure/shuttle_part/scc_space_ship{ + icon_state = "d2-1-f" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/hangar/operations) +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/starboard) "mFP" = ( /obj/effect/floor_decal/corner/lime/full{ dir = 4 @@ -88767,18 +88620,6 @@ icon_state = "dark_preview" }, /area/centcom/holding) -"mFQ" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_mining{ - dir = 1; - name = "Operations Bay"; - req_one_access = list(26,29,31,48,67,70) - }, -/obj/effect/map_effect/door_helper/unres{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/operations/office) "mFR" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -88797,14 +88638,52 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/full, /area/horizon/security/forensic_laboratory) -"mFS" = ( -/obj/machinery/mineral/processing_unit{ - id = "horizon_processing_3"; +"mFT" = ( +/obj/machinery/camera/network/service{ + c_tag = "Custodial - Main Storage"; + dir = 1 + }, +/obj/effect/floor_decal/corner/purple{ + dir = 10 + }, +/obj/effect/floor_decal/industrial/outline/custodial, +/obj/structure/janitorialcart, +/turf/simulated/floor/tiled, +/area/horizon/service/custodial) +"mFX" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/main/port) +"mFY" = ( +/turf/simulated/wall, +/area/horizon/maintenance/deck_2/research) +"mGa" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/effect/floor_decal/corner/purple{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/structure/sign/deathsposal{ + desc = "A warning sign which reads 'DANGER: MASS DRIVER'."; + name = "\improper DANGER: MASS DRIVER sign"; + pixel_y = 32 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/red{ dir = 8 }, -/obj/effect/floor_decal/industrial/warning/full, -/turf/simulated/floor/plating, -/area/outpost/mining_main/refinery) +/turf/simulated/floor/tiled/dark, +/area/horizon/service/custodial/disposals/deck_1) "mGe" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 1 @@ -88819,39 +88698,15 @@ }, /turf/unsimulated/floor, /area/antag/raider) -"mGn" = ( -/obj/effect/floor_decal/spline/fancy/wood/cee, -/obj/structure/flora/ausbushes/ywflowers, -/turf/simulated/floor/grass/no_edge, -/area/horizon/hallway/deck_three/primary/port) -"mGp" = ( -/obj/machinery/light, -/obj/effect/floor_decal/corner/yellow, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 8 +"mGq" = ( +/turf/simulated/wall/shuttle/unique/scc/mining{ + icon_state = "6,2" }, -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/engineering/atmos) +/area/horizon/shuttle/mining) "mGs" = ( /obj/machinery/door/airlock/multi_tile/glass, /turf/unsimulated/floor, /area/centcom/holding) -"mGv" = ( -/obj/machinery/requests_console/east{ - department = "Research - Xenological Studies"; - name = "Xenological Studies Request Console" - }, -/obj/structure/closet/crate, -/obj/structure/table/standard, -/obj/effect/floor_decal/corner/mauve{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology/xenological) "mGw" = ( /obj/structure/window/reinforced{ dir = 1; @@ -88871,28 +88726,65 @@ }, /turf/unsimulated/floor/plating, /area/centcom/legion) -"mGA" = ( -/obj/machinery/camera/network/reactor{ - c_tag = "Engineering - INDRA Room 3" +"mGy" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/medical{ + dir = 1; + name = "Deck 3 Medical"; + req_access = list(5) }, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/engine_room/rust) -"mGO" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 9 +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 2; + icon_state = "shutter0"; + id = "LCKDshutters"; + name = "Medical Lockdown Shutters"; + opacity = 0 }, -/obj/machinery/alarm/south, -/turf/simulated/floor/tiled/dark, -/area/engineering/atmos/propulsion) -"mGW" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 10 +/turf/simulated/floor/tiled/full, +/area/horizon/medical/hallway/upper) +"mGC" = ( +/obj/structure/shuttle_part/scc_space_ship{ + icon_state = "d3-5" }, -/obj/machinery/atmospherics/pipe/simple/hidden{ +/turf/simulated/wall/r_wall, +/area/horizon/rnd/xenobiology/xenoflora) +"mGS" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 1 + }, +/obj/effect/floor_decal/spline/plain, +/obj/machinery/atmospherics/pipe/simple/hidden/black{ + dir = 4 + }, +/turf/simulated/floor/carpet/rubber, +/area/horizon/tcommsat/chamber) +"mGT" = ( +/obj/effect/floor_decal/corner/brown{ dir = 4 }, /turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/starboard/docks) +/area/horizon/operations/office) +"mGU" = ( +/obj/structure/sign/nosmoking_1{ + pixel_y = 32 + }, +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/alarm/south, +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/atmos/propulsion/starboard) +"mGV" = ( +/obj/effect/landmark/entry_point/port{ + name = "port, rear" + }, +/turf/simulated/wall/shuttle/scc, +/area/horizon/shuttle/quark/cargo_hold) "mGZ" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 10 @@ -88905,6 +88797,15 @@ /obj/structure/table/steel, /turf/unsimulated/floor/monotile, /area/antag/raider) +"mHb" = ( +/obj/structure/grille, +/obj/structure/window/shuttle/scc_space_ship, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/horizon/operations/office_aux) +"mHc" = ( +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/bluespace_drive) "mHd" = ( /obj/structure/cryofeed{ dir = 2 @@ -88918,10 +88819,6 @@ }, /turf/unsimulated/floor/plating, /area/centcom/holding) -"mHe" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/black, -/turf/simulated/floor/tiled/dark, -/area/engineering/atmos/propulsion) "mHg" = ( /obj/effect/floor_decal/corner/red/full{ dir = 1 @@ -88935,10 +88832,26 @@ /obj/machinery/alarm/north, /turf/simulated/floor/tiled/dark, /area/horizon/security/interrogation) -"mHk" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, +"mHi" = ( +/obj/effect/floor_decal/corner/dark_blue/full, +/obj/item/device/radio/intercom/west, +/obj/machinery/light/small, +/obj/machinery/photocopier, +/turf/simulated/floor/tiled/dark, +/area/horizon/hangar/control) +"mHm" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, /turf/simulated/floor/wood, -/area/horizon/bar) +/area/horizon/command/heads/chief) "mHp" = ( /obj/structure/railing/mapped{ dir = 4 @@ -88948,12 +88861,13 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/holodeck/source_pool) -"mHu" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 4 +"mHw" = ( +/obj/effect/floor_decal/corner_wide/yellow{ + dir = 10 }, +/obj/structure/extinguisher_cabinet/south, /turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/starboard) +/area/horizon/engineering/hallway/interior) "mHC" = ( /obj/machinery/suit_cycler/syndicate{ locked = 0 @@ -88963,6 +88877,12 @@ }, /turf/simulated/floor/tiled/dark/full, /area/shuttle/skipjack) +"mHE" = ( +/obj/structure/shuttle_part/scc_space_ship{ + icon_state = "d3-5-f" + }, +/turf/simulated/wall, +/area/horizon/maintenance/deck_2/wing/port) "mHH" = ( /obj/structure/bed, /obj/item/bedsheet/syndie, @@ -88971,132 +88891,141 @@ }, /turf/unsimulated/floor/wood, /area/antag/mercenary) -"mHK" = ( -/obj/effect/floor_decal/corner/brown{ +"mHI" = ( +/obj/structure/cable/green, +/obj/structure/closet/crate/trashcart, +/obj/effect/floor_decal/corner/purple{ dir = 10 }, -/obj/structure/cable/green, -/obj/structure/engineer_maintenance/pipe, -/obj/structure/engineer_maintenance/electric{ - dir = 4 +/obj/effect/floor_decal/industrial/outline/custodial, +/obj/machinery/power/apc/super/south, +/obj/item/storage/bag/trash, +/obj/item/storage/bag/trash{ + pixel_x = -9; + pixel_y = 2 + }, +/obj/item/storage/bag/trash{ + pixel_x = -4; + pixel_y = -2 }, -/obj/machinery/power/apc/south, /turf/simulated/floor/tiled, -/area/operations/lobby) +/area/horizon/service/custodial) +"mHL" = ( +/obj/item/stack/rods, +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/main/port) +"mHM" = ( +/obj/effect/map_effect/window_spawner/full/reinforced/polarized/firedoor{ + id = "ce" + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/command/heads/chief) "mHN" = ( /turf/simulated/wall/walnutwood, /area/centcom/shared_dream) -"mHQ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, +"mHT" = ( /obj/structure/cable/green{ - icon_state = "4-8" + icon_state = "1-2" }, -/obj/structure/disposalpipe/segment{ +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/corner/dark_green, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_1/central) +"mHX" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/alarm/north, +/obj/machinery/light/small/emergency{ dir = 4 }, -/obj/item/device/radio/intercom/north, -/turf/simulated/floor/tiled/white, -/area/medical/ors) -"mIb" = ( -/obj/structure/table/reinforced/steel, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 5 - }, -/obj/item/paper_bin{ - pixel_x = -3; - pixel_y = -1 - }, -/obj/item/pen{ - pixel_x = -3 - }, -/obj/machinery/newscaster/security_unit/north, -/turf/simulated/floor/tiled/dark, -/area/bridge/aibunker) +/turf/simulated/floor, +/area/horizon/maintenance/deck_3/aft/port/far) "mIc" = ( /turf/unsimulated/floor/monotile, /area/antag/raider) -"mIj" = ( -/obj/structure/foamedmetal, -/obj/structure/shuttle_part/scc_space_ship{ - icon_state = "d3-5-f" +"mIh" = ( +/obj/machinery/telecomms/server/presets/command, +/turf/simulated/floor/bluegrid, +/area/horizon/tcommsat/chamber) +"mIi" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 }, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard) +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/door/airlock/multi_tile/glass{ + autoclose = 0; + dir = 2; + name = "Warehouse Elevator"; + req_one_access = list(26,29,31,48,67) + }, +/obj/machinery/door/firedoor/multi_tile{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/operations/loading) +"mIk" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 10 + }, +/obj/structure/cable/green, +/obj/machinery/camera/network/first_deck{ + c_tag = "First Deck - Hangar 8"; + dir = 1 + }, +/obj/machinery/power/apc/super/south, +/turf/simulated/floor/tiled/dark, +/area/horizon/hangar/intrepid) "mIl" = ( /turf/simulated/floor/holofloor/snow, /area/horizon/holodeck/source_snowfield) -"mIs" = ( -/obj/structure/platform_deco{ - icon_state = "ledge_deco" - }, -/obj/effect/floor_decal/corner/mauve/diagonal, -/turf/simulated/floor/tiled/white, -/area/rnd/lab) "mIw" = ( /turf/unsimulated/wall/steel, /area/antag/actor) -"mIy" = ( -/obj/machinery/vending/medical{ - density = 0; - pixel_x = -1; - pixel_y = -32 - }, -/obj/effect/floor_decal/corner_wide/green{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/medical/gen_treatment) -"mIz" = ( -/obj/structure/platform_deco, -/obj/effect/floor_decal/spline/fancy/wood{ +"mIC" = ( +/obj/effect/floor_decal/industrial/hatch_door/red, +/obj/machinery/door/airlock/external{ dir = 8 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/wood, -/area/bridge/meeting_room) -"mIA" = ( -/obj/structure/platform/ledge{ - dir = 1 - }, -/obj/structure/platform/ledge{ +/obj/effect/map_effect/marker_helper/airlock/exterior, +/obj/machinery/access_button{ + pixel_y = -29; + pixel_x = 7; dir = 4 }, -/obj/structure/platform/ledge{ +/obj/machinery/door/blast/shutters/open{ + dir = 8; + id = "intrepid_bay_outer"; + name = "Intrepid Shutter" + }, +/obj/effect/map_effect/marker/airlock{ + master_tag = "sccv_intrepid_port"; + name = "sccv_intrepid_port"; + req_one_access = null + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/shuttle/intrepid/port_compartment) +"mIJ" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 }, -/obj/structure/platform_deco/ledge{ +/obj/structure/bed/stool/chair{ + dir = 8 + }, +/obj/effect/floor_decal/corner/brown{ dir = 6 }, -/obj/structure/platform_deco/ledge{ - dir = 10 - }, -/obj/structure/railing/mapped, -/turf/simulated/open, -/area/operations/office) -"mII" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/random/loot, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard) -"mIK" = ( -/obj/structure/table/standard, -/obj/item/device/analyzer/plant_analyzer, -/obj/item/reagent_containers/spray/plantbgone, -/obj/item/material/minihoe, -/obj/item/material/hatchet, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology/xenoflora) -"mIP" = ( -/obj/machinery/atmospherics/unary/vent_pump/siphon/on/atmos{ - id_tag = "turbine_hot_out"; - frequency = 1443; - use_power = 0 - }, -/turf/simulated/floor/reinforced/airless, -/area/engineering/engine_room/turbine) +/turf/simulated/floor/tiled, +/area/horizon/operations/lobby) "mIQ" = ( /obj/effect/floor_decal/corner/dark_blue/full, /obj/machinery/firealarm/south, @@ -89130,59 +89059,12 @@ }, /turf/simulated/floor/tiled, /area/horizon/security/hallway) -"mIV" = ( -/obj/effect/floor_decal/corner/purple{ - dir = 10 +"mJc" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 }, /turf/simulated/floor/tiled, -/area/hallway/primary/central_two) -"mIW" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/corner/brown/full{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/operations/office) -"mIX" = ( -/obj/structure/bed/stool/chair/shuttle/double{ - pixel_x = -8 - }, -/obj/structure/bed/stool/chair/shuttle/double{ - pixel_x = 8 - }, -/obj/effect/floor_decal/spline/plain/black{ - dir = 6 - }, -/obj/item/device/radio/intercom/expedition/north, -/turf/simulated/floor/tiled/dark/full, -/area/shuttle/intrepid/starboard_compartment) -"mJd" = ( -/obj/structure/table/wood, -/obj/item/flame/candle{ - pixel_x = -5; - pixel_y = 3 - }, -/obj/random/contraband, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard) -"mJf" = ( -/obj/structure/toilet{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/tiled/freezer, -/area/medical/washroom) +/area/horizon/hallway/primary/deck_3/central) "mJj" = ( /obj/effect/floor_decal/carpet{ dir = 4 @@ -89193,16 +89075,6 @@ }, /turf/simulated/floor/carpet/magenta, /area/horizon/holodeck/source_cafe) -"mJk" = ( -/obj/machinery/atmospherics/pipe/manifold4w/visible/yellow, -/turf/simulated/floor/tiled/dark, -/area/engineering/atmos) -"mJm" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/structure/window/shuttle/scc_space_ship/cardinal, -/turf/simulated/floor/plating, -/area/horizon/hallway/deck_three/primary/port/docks) "mJp" = ( /obj/machinery/light{ dir = 1 @@ -89212,74 +89084,107 @@ }, /turf/unsimulated/floor, /area/centcom/holding) -"mJq" = ( -/obj/effect/floor_decal/industrial/outline/yellow, +"mJv" = ( +/obj/effect/floor_decal/corner/black{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/hangar/intrepid) +"mJE" = ( +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/structure/cable{ + icon_state = "12-0" + }, +/obj/machinery/atmospherics/pipe/zpipe/up/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers{ + dir = 8 + }, /obj/effect/floor_decal/industrial/warning{ - dir = 8 + dir = 9 }, -/obj/effect/floor_decal/industrial/loading/yellow{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/engine_room/rust) -"mJD" = ( -/obj/structure/shuttle_part/scc/scout{ - density = 0; - icon_state = "6,11"; - outside_part = 0 - }, -/obj/machinery/atmospherics/unary/engine/scc_shuttle, /turf/simulated/floor/plating, -/area/shuttle/canary) +/area/horizon/maintenance/deck_1/wing/port/far) "mJH" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 +/obj/structure/cable{ + icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ dir = 4 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor/plating, +/area/horizon/engineering/hallway/fore) +"mJM" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/corner/dark_green{ + dir = 10 + }, /turf/simulated/floor/tiled, -/area/horizon/hallway/deck_two/fore) -"mKb" = ( -/obj/structure/sign/fire{ - name = "\improper DANGER: COMBUSTION CHAMBER sign"; - pixel_x = 32 - }, -/obj/effect/floor_decal/corner_wide/black{ - dir = 6 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 4 - }, -/obj/machinery/meter, -/turf/simulated/floor/tiled/dark, -/area/engineering/atmos/propulsion) -"mKc" = ( -/obj/effect/floor_decal/corner/brown{ - dir = 5 - }, +/area/horizon/hallway/primary/deck_3/port) +"mJN" = ( /obj/structure/cable/green{ - icon_state = "0-4" + icon_state = "1-2" }, -/obj/structure/table/steel, -/obj/machinery/recharger{ - pixel_x = -6; - pixel_y = 6 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/lattice/catwalk/indoor, +/obj/structure/railing/mapped, +/obj/structure/railing/mapped{ + dir = 4 }, -/obj/machinery/power/apc/north, -/obj/machinery/recharger{ - pixel_x = 6; - pixel_y = 6 +/turf/simulated/floor/plating, +/area/horizon/engineering/bluespace_drive) +"mJP" = ( +/obj/structure/lattice/catwalk/indoor/grate/damaged{ + color = "#4c535b" }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/refinery) -"mKg" = ( -/obj/effect/floor_decal/spline/fancy/wood/corner, -/turf/simulated/floor/wood, -/area/horizon/bar) +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/starboard) +"mJR" = ( +/obj/machinery/atmospherics/unary/outlet_injector{ + frequency = 1441; + id = "n2o_in"; + name = "nitrous oxide injector"; + use_power = 1 + }, +/turf/simulated/floor/reinforced/n20, +/area/horizon/engineering/atmos/air) +"mKh" = ( +/obj/machinery/door/airlock/external, +/obj/effect/map_effect/marker/airlock{ + frequency = 1004; + master_tag = "airlock_horizon_deck_1_fore_1"; + name = "airlock_horizon_deck_1_fore_1" + }, +/obj/effect/map_effect/marker_helper/airlock/interior, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/hangar/starboard) +"mKk" = ( +/obj/effect/map_effect/window_spawner/full/reinforced/polarized/firedoor{ + id = "Recovery1" + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/medical/ward) "mKl" = ( /obj/effect/floor_decal/industrial/warning{ dir = 5 @@ -89287,27 +89192,41 @@ /obj/structure/grille, /turf/simulated/floor/reinforced/airless, /area/horizon/exterior) -"mKo" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 10 +"mKn" = ( +/obj/effect/floor_decal/corner_wide/green{ + dir = 9 }, +/obj/structure/table/standard, +/obj/item/storage/box/masks{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/storage/box/gloves, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/gen_treatment) +"mKp" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 9 + }, +/obj/structure/closet/secure_closet/bridge_crew, +/obj/effect/floor_decal/industrial/outline/security, /turf/simulated/floor/tiled/dark, -/area/hangar/intrepid) +/area/horizon/hangar/control) "mKq" = ( /obj/structure/sign/flag/nanotrasen/unmovable, /turf/unsimulated/floor{ icon_state = "dark_preview" }, /area/centcom/spawning) -"mKu" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/structure/cable/green{ - icon_state = "1-2" +"mKs" = ( +/obj/structure/railing/mapped{ + dir = 1 }, -/turf/simulated/floor/tiled, -/area/operations/office) +/turf/simulated/open, +/area/horizon/maintenance/deck_2/wing/port) "mKE" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 1 @@ -89323,20 +89242,61 @@ }, /turf/unsimulated/floor/dark_monotile, /area/antag/actor) -"mKW" = ( +"mKI" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 6 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/shuttle/intrepid/port_compartment) +"mKK" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/structure/lattice/catwalk/indoor, +/turf/simulated/floor/plating, +/area/horizon/engineering/atmos/air) +"mKO" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/table/standard, -/obj/item/deck/cards, -/obj/item/storage/box/fancy/cigarettes{ - pixel_y = 10; - pixel_x = -6 +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/random/contraband, -/turf/simulated/floor/tiled/dark, -/area/horizon/maintenance/deck_three/aft/starboard) +/obj/machinery/light, +/obj/effect/floor_decal/corner/brown{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/horizon/operations/office) +"mLa" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/cyan, +/turf/simulated/floor/plating, +/area/horizon/engineering/reactor/supermatter/mainchamber) +"mLh" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor, +/area/horizon/maintenance/deck_3/aft/port/far) "mLj" = ( /obj/effect/landmark/thunderdome1, /obj/effect/floor_decal/corner/grey/diagonal{ @@ -89345,45 +89305,34 @@ /obj/effect/decal/fake_object/light_source/invisible, /turf/simulated/floor/holofloor/tiled/dark, /area/tdome/tdome1) -"mLu" = ( -/obj/effect/map_effect/window_spawner/full/shuttle/scc{ - spawn_firedoor = 1; - spawn_grille = 1 +"mLp" = ( +/obj/structure/railing/mapped{ + dir = 8 }, -/obj/structure/cable{ +/turf/simulated/open, +/area/horizon/service/hydroponics) +"mLD" = ( +/turf/simulated/wall/shuttle/scc_space_ship/cardinal, +/area/horizon/engineering/atmos) +"mLF" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/machinery/requests_console/north{ + announcementConsole = 1; + department = "Consular's Office B"; + departmentType = 5; + name = "Consular's Office requests console"; + pixel_y = 34 + }, +/obj/structure/cable/green{ icon_state = "4-8" }, -/obj/machinery/door/blast/shutters/open{ - dir = 8; - id = "intrepid_bay_windows"; - name = "Intrepid Shutter" +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 5 }, -/turf/simulated/floor/plating, -/area/shuttle/intrepid/port_compartment) -"mLw" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/universal, -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 4 - }, -/obj/machinery/bluespace_beacon, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/shuttle/canary) -"mLz" = ( -/obj/effect/floor_decal/corner/mauve{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology) -"mLC" = ( -/obj/effect/floor_decal/corner/dark_green/full{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/port) +/turf/simulated/floor/wood, +/area/horizon/repoffice/consular_two) "mLG" = ( /obj/machinery/atmospherics/pipe/tank/air{ dir = 1 @@ -89392,41 +89341,104 @@ /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/dark, /area/shuttle/legion) -"mLH" = ( -/obj/structure/shuttle/engine/heater{ - dir = 1 - }, -/obj/structure/railing/mapped, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard/far) -"mMe" = ( -/obj/machinery/door/airlock/glass, -/turf/unsimulated/floor, -/area/antag/raider) -"mMh" = ( -/obj/machinery/optable, -/obj/machinery/light{ +"mLI" = ( +/obj/structure/platform/ledge{ dir = 8 }, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology/dissection) -"mMi" = ( -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/machinery/light/small/emergency{ +/obj/structure/platform/ledge{ dir = 1 }, -/obj/structure/cable/green{ - icon_state = "4-8" +/obj/structure/platform_deco/ledge{ + dir = 6 }, +/turf/simulated/open, +/area/horizon/hallway/primary/deck_3/central) +"mLM" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 9 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/structure/railing/mapped{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/horizon/operations/loading) +"mLO" = ( +/obj/structure/bed/stool/chair/sofa/left/orange{ + dir = 8 + }, +/obj/machinery/alarm/east, +/turf/simulated/floor/carpet/red, +/area/horizon/service/bar) +"mLS" = ( +/obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 4 + dir = 8 }, /obj/machinery/atmospherics/pipe/simple/hidden/aux{ dir = 4 }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/window/shuttle/scc_space_ship/cardinal, /turf/simulated/floor/plating, -/area/maintenance/research_port) +/area/horizon/engineering/atmos/turbine) +"mLY" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/engineering/drone_fabrication) +"mMd" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/sign/nosmoking_1{ + pixel_x = 32 + }, +/turf/simulated/floor/tiled, +/area/horizon/operations/lobby) +"mMe" = ( +/obj/machinery/door/airlock/glass, +/turf/unsimulated/floor, +/area/antag/raider) +"mMf" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/structure/platform_deco{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/port/near) +"mMg" = ( +/obj/effect/floor_decal/corner/black/full{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/hangar/intrepid) +"mMl" = ( +/obj/structure/bed/handrail{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/firealarm/south, +/turf/simulated/floor/plating, +/area/horizon/shuttle/intrepid/starboard_compartment) "mMp" = ( /obj/structure/table/reinforced/steel, /obj/item/storage/firstaid/regular{ @@ -89451,20 +89463,6 @@ }, /turf/unsimulated/floor/dark_monotile, /area/antag/actor) -"mMq" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/reinforced, -/area/horizon/grauwolf) -"mMr" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 5 - }, -/obj/structure/closet/walllocker/emerglocker/north, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/starboard/docks) "mMs" = ( /obj/machinery/embedded_controller/radio/simple_docking_controller{ frequency = 1380; @@ -89479,6 +89477,47 @@ }, /turf/simulated/floor/shuttle/black, /area/shuttle/specops) +"mMu" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 9 + }, +/obj/structure/disposalpipe/junction{ + dir = 8; + icon_state = "pipe-j2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/wood, +/area/horizon/command/bridge/minibar) +"mMx" = ( +/obj/structure/table/wood, +/obj/item/device/flashlight/lamp/green{ + pixel_y = 9; + pixel_x = 5 + }, +/obj/machinery/button/switch/windowtint{ + dir = 1; + id = "Bar_Private_Lounge"; + pixel_y = 24 + }, +/obj/item/lore_radio{ + pixel_x = 9; + pixel_y = 2 + }, +/obj/random/pottedplant_small{ + pixel_x = -7; + pixel_y = 3 + }, +/obj/machinery/power/outlet, +/turf/simulated/floor/carpet/red, +/area/horizon/service/bar) "mMy" = ( /obj/effect/decal/fake_object{ icon = 'icons/misc/beach.dmi'; @@ -89492,31 +89531,22 @@ icon_state = "beachcorner" }, /area/centcom/shared_dream) -"mMC" = ( -/obj/machinery/power/smes/batteryrack{ - input_attempt = 1; - input_level = 50000; - output_attempt = 1; - output_level = 45000 +"mMB" = ( +/turf/simulated/wall, +/area/horizon/engineering/storage/lower) +"mME" = ( +/obj/machinery/light, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 }, -/obj/structure/cable/yellow, -/turf/simulated/floor/carpet/rubber, -/area/maintenance/engineering/auxillary) -"mMD" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - icon_state = "1-2" +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 }, -/obj/machinery/door/airlock/maintenance{ - dir = 1; - name = "Hydroponics Maintenance"; - req_access = list(35) +/obj/effect/floor_decal/corner/brown{ + dir = 10 }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/full, -/area/horizon/hydroponics/lower) +/turf/simulated/floor/tiled, +/area/horizon/operations/break_room) "mMK" = ( /obj/effect/floor_decal/corner_wide/paleblue{ dir = 9 @@ -89542,45 +89572,6 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/security/armoury) -"mML" = ( -/obj/effect/floor_decal/corner_wide/lime/diagonal, -/turf/simulated/floor/tiled/white, -/area/medical/reception) -"mMN" = ( -/obj/structure/table/standard, -/obj/item/material/folding_table, -/obj/item/material/folding_table, -/obj/item/material/stool/chair/folding, -/obj/item/material/stool/chair/folding, -/turf/simulated/floor/plating, -/area/engineering/drone_fabrication) -"mMQ" = ( -/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/dark_green{ - dir = 5 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/loading/yellow{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/security/checkpoint) -"mMR" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/engineering) "mMT" = ( /obj/structure/bed/stool/chair/shuttle{ dir = 8 @@ -89590,6 +89581,20 @@ }, /turf/simulated/floor/shuttle/black, /area/shuttle/distress) +"mMV" = ( +/obj/machinery/shower{ + dir = 1; + pixel_y = -8 + }, +/obj/machinery/door/window/northleft{ + name = "Shower" + }, +/obj/structure/curtain/open/shower, +/obj/structure/bed/handrail{ + dir = 4 + }, +/turf/simulated/floor/tiled/freezer, +/area/horizon/crew/fitness/showers) "mMZ" = ( /obj/machinery/button/remote/airlock{ dir = 8; @@ -89615,25 +89620,31 @@ }, /turf/unsimulated/floor, /area/centcom/bar) -"mNc" = ( +"mNk" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/turf/simulated/floor/wood, -/area/crew_quarters/lounge) -"mNi" = ( -/obj/machinery/firealarm/west, -/obj/effect/floor_decal/corner/dark_green/full{ - dir = 8 +/obj/effect/floor_decal/spline/plain{ + dir = 5 }, -/turf/simulated/floor/tiled, -/area/horizon/crew_quarters/fitness/changing) -"mNn" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 9 +/turf/simulated/floor/carpet/rubber, +/area/horizon/engineering/reactor/indra/monitoring) +"mNo" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 }, -/turf/simulated/floor/tiled/dark, -/area/maintenance/wing/starboard/far) +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor/plating, +/area/horizon/hallway/primary/deck_2/central) "mNq" = ( /obj/structure/bed/stool/chair/shuttle{ can_dismantle = 1; @@ -89648,77 +89659,88 @@ }, /turf/simulated/floor/tiled/dark, /area/shuttle/mercenary) -"mNx" = ( -/obj/structure/cable{ - icon_state = "1-2" +"mNy" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 9 }, -/obj/structure/disposalpipe/segment, -/obj/structure/lattice/catwalk/indoor/grate/damaged, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard) -"mNG" = ( -/obj/machinery/atmospherics/binary/pump/on{ - dir = 8; - name = "Distro to Airlock"; - target_pressure = 200 +/obj/structure/engineer_maintenance/electric{ + dir = 8 }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/machinery/alarm/north, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard/deck1) -"mNH" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/effect/floor_decal/industrial/warning{ +/obj/structure/engineer_maintenance/pipe, +/turf/simulated/floor/wood, +/area/horizon/command/heads/captain) +"mNC" = ( +/obj/machinery/light{ dir = 4 }, -/turf/simulated/floor/tiled/dark, -/area/hangar/intrepid) -"mNI" = ( -/obj/effect/floor_decal/corner/grey/diagonal, +/turf/simulated/open, +/area/horizon/stairwell/bridge) +"mNM" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/starboard) -"mNK" = ( -/turf/simulated/wall/r_wall, -/area/maintenance/wing/starboard) -"mNQ" = ( -/obj/structure/table/stone/marble, -/obj/machinery/reagentgrinder{ - pixel_x = 4; - pixel_y = 18 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/item/reagent_containers/glass/beaker/teapot, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/bar) -"mNS" = ( -/obj/effect/landmark/entry_point/fore{ - name = "fore, secondary hangar port" - }, -/turf/unsimulated/wall/fakepdoor{ +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/area/hangar/auxiliary) -"mNU" = ( -/turf/space/dynamic, -/area/engineering/atmos/propulsion/starboard) -"mNV" = ( -/obj/effect/floor_decal/industrial/warning{ +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/main/port) +"mNP" = ( +/obj/machinery/light/small{ dir = 1 }, +/obj/effect/floor_decal/corner/green/full{ + dir = 1 + }, +/obj/machinery/vending/lavatory, +/turf/simulated/floor/tiled/white, +/area/horizon/operations/break_room) +"mOb" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/horizon/rnd/hallway) +"mOc" = ( +/obj/structure/trash_pile, +/turf/simulated/floor/tiled/dark, +/area/horizon/maintenance/deck_2/wing/starboard/nacelle) +"mOe" = ( +/obj/machinery/door/firedoor, +/obj/effect/floor_decal/corner/dark_green{ + dir = 1 + }, +/obj/effect/floor_decal/corner/grey, +/obj/machinery/door/window/desk/southleft{ + name = "Kitchen"; + req_access = list(28) + }, +/obj/machinery/door/window/desk/northleft{ + name = "Hydroponics"; + req_access = list(35) + }, +/obj/structure/table/reinforced, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/service/hydroponics) +"mOj" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, /obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard/deck1) -"mNW" = ( -/obj/effect/floor_decal/corner/mauve/full{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 +/obj/structure/bed/stool/bar/padded/red, +/turf/simulated/floor/tiled/dark, +/area/horizon/maintenance/deck_3/aft/port/far) +"mOk" = ( +/obj/effect/floor_decal/corner/grey/diagonal, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -89726,119 +89748,85 @@ /obj/structure/cable/green{ icon_state = "4-8" }, -/obj/machinery/firealarm/north, +/obj/structure/disposalpipe/segment{ + icon_state = "pipe-c" + }, +/obj/machinery/light_switch{ + dir = 8; + pixel_x = -24; + pixel_y = 23 + }, /turf/simulated/floor/tiled/white, -/area/rnd/xenobiology/foyer) -"mNX" = ( -/obj/structure/cable{ - icon_state = "4-8" +/area/horizon/service/kitchen) +"mOn" = ( +/obj/effect/floor_decal/corner_wide/green{ + dir = 6 }, -/obj/effect/floor_decal/corner/dark_green{ - dir = 10 +/obj/effect/landmark/start{ + name = "Physician" }, -/obj/machinery/alarm/south, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/starboard) -"mNY" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/operations/lobby) -"mOd" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/effect/floor_decal/corner/dark_green{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/hangar/auxiliary) -"mOf" = ( -/obj/machinery/power/emitter{ +/obj/structure/bed/stool/chair{ dir = 8 }, -/obj/machinery/alarm/west, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/hallway/upper) +"mOo" = ( /obj/machinery/light{ - dir = 8 + dir = 1; + name = "adjusted light fixture" }, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenoarch_storage) -"mOr" = ( -/obj/structure/railing/mapped{ - dir = 4 +/obj/structure/table/steel, +/turf/simulated/floor/carpet/rubber, +/area/horizon/crew/fitness/gym) +"mOz" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 5 }, -/obj/structure/railing/mapped, -/obj/effect/floor_decal/corner/dark_blue/diagonal, -/obj/machinery/computer/ship/navigation{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge/aibunker) -"mOA" = ( -/obj/effect/floor_decal/corner/dark_blue/full{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/platform, -/turf/simulated/floor/tiled/dark, -/area/bridge/controlroom) +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_3/port) "mOE" = ( /obj/effect/floor_decal/corner/yellow{ dir = 1 }, /turf/simulated/floor/marble/dark, /area/horizon/holodeck/source_trinary) -"mOK" = ( -/turf/simulated/wall/shuttle/scc_space_ship/cardinal, -/area/operations/storage) +"mOJ" = ( +/obj/effect/floor_decal/corner_wide/blue, +/obj/effect/floor_decal/corner_wide/yellow{ + dir = 8 + }, +/obj/effect/floor_decal/spline/plain, +/obj/machinery/atmospherics/binary/pump/high_power/on{ + dir = 8; + name = "Air Supply to Pumps"; + target_pressure = 15000 + }, +/turf/simulated/floor/tiled, +/area/horizon/engineering/atmos/storage) "mOM" = ( /obj/structure/lattice/catwalk, /turf/space/dynamic, /area/horizon/exterior) -"mOP" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - icon_state = "1-2" +"mON" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/shutters/open{ + dir = 4; + id = "lounge_window_shutters"; + name = "Lounge Window Shutter" }, -/obj/effect/floor_decal/corner/dark_blue/diagonal{ - dir = 8 +/obj/structure/grille, +/obj/structure/window/shuttle/scc_space_ship, +/turf/simulated/floor/plating, +/area/horizon/service/dining_hall) +"mOO" = ( +/obj/structure/table/reinforced, +/obj/item/device/healthanalyzer, +/obj/effect/floor_decal/corner_wide/purple{ + dir = 9 }, -/obj/structure/platform_deco{ - dir = 4 - }, -/obj/structure/extinguisher_cabinet/west, -/turf/simulated/floor/tiled, -/area/bridge) -"mOR" = ( -/obj/structure/morgue/crematorium{ - _wifi_id = "xenobio_crema" - }, -/obj/effect/floor_decal/corner/mauve/full{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/outline/red, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology) +/obj/effect/floor_decal/corner_wide/purple/diagonal, +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/test_range) "mOT" = ( /obj/structure/lattice/catwalk/indoor, /obj/machinery/door/blast/odin/open{ @@ -89847,6 +89835,13 @@ }, /turf/unsimulated/floor, /area/centcom/legion/hangar5) +"mPb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/bed/stool/chair/folding{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/horizon/maintenance/deck_1/wing/starboard/far) "mPg" = ( /obj/machinery/vending/cola{ pixel_x = 5 @@ -89856,191 +89851,194 @@ }, /turf/unsimulated/floor/wood, /area/centcom/bar) -"mPr" = ( -/obj/machinery/door/blast/shutters/open{ - dir = 8; - id = "shutters_deck3_cafedesk"; - name = "Cafe Desk Shutter" - }, -/obj/structure/table/stone/marble, -/obj/machinery/vending/dinnerware/plastic{ - pixel_y = 22 - }, -/obj/item/reagent_containers/food/condiment/shaker/salt{ - pixel_x = -6; - pixel_y = 8 - }, -/obj/item/reagent_containers/food/condiment/shaker/peppermill{ - pixel_x = 4; - pixel_y = 8 - }, -/obj/item/flame/candle{ - pixel_y = 8 - }, -/obj/item/glass_jar{ - desc = "A small empty jar that is mostly used for giving a tip."; - name = "tip jar"; - pixel_y = -9 - }, -/obj/machinery/power/outlet{ - pixel_y = 4; - pixel_x = 10 - }, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/cafeteria) -"mPy" = ( -/obj/machinery/atmospherics/binary/pump{ - name = "Mix to Connectors" - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/atmos) -"mPE" = ( -/obj/machinery/recharge_station, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/effect/floor_decal/corner/green/diagonal, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/horizon/crew_quarters/washroom/central) -"mPO" = ( -/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/lattice/catwalk/indoor/grate/dark, -/obj/machinery/light/small/emergency, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard) -"mPQ" = ( -/obj/machinery/light/spot{ +"mPq" = ( +/obj/effect/floor_decal/spline/plain, +/obj/effect/floor_decal/spline/plain{ 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 - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 10 - }, -/turf/simulated/floor/wood, -/area/horizon/bar) -"mPU" = ( -/obj/machinery/atmospherics/unary/vent_pump/siphon/on/atmos{ - id_tag = "n2o_out" - }, -/turf/simulated/floor/reinforced/n20, -/area/engineering/atmos/air) -"mPY" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/cable/green{ - icon_state = "0-4" - }, -/obj/machinery/power/apc/north{ - req_one_access = list(11, 24, 47, 65); - req_access = null - }, -/turf/simulated/floor/plating, -/area/shuttle/intrepid/port_compartment) -"mPZ" = ( -/obj/machinery/atmospherics/pipe/simple/visible/universal{ - dir = 8 - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard/deck1) -"mQa" = ( +/obj/machinery/alarm/tcom/north, +/turf/simulated/floor/carpet/rubber, +/area/horizon/tcommsat/chamber) +"mPt" = ( /obj/structure/cable/green{ icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/corner/red{ - dir = 6 +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/light/small/emergency{ + dir = 4 }, -/obj/machinery/door/airlock/glass_medical{ - dir = 1; - frequency = 1379; - id_tag = "processing_airlock_interior"; - locked = 1; - name = "Isolation Ward Interior"; - req_access = list(5) - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/dark, -/area/medical/ward/isolation) -"mQd" = ( -/obj/structure/tank_wall{ - icon_state = "m-14" - }, -/obj/effect/floor_decal/industrial/warning, /turf/simulated/floor/plating, -/area/engineering/atmos) -"mQf" = ( -/turf/simulated/wall, -/area/horizon/hallway/deck_three/primary/starboard/docks) -"mQi" = ( -/obj/effect/floor_decal/spline/fancy/wood{ +/area/horizon/maintenance/deck_2/wing/port/near) +"mPv" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/turf/simulated/floor/lino, +/area/horizon/service/chapel/main) +"mPw" = ( +/obj/structure/shuttle_part/scc/scout{ + density = 0; + icon_state = "6,2"; + outside_part = 0 + }, +/obj/machinery/iff_beacon/horizon/shuttle, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning{ dir = 4 }, -/obj/machinery/light{ +/obj/machinery/atmospherics/pipe/simple/visible/fuel, +/turf/simulated/floor/reinforced, +/area/horizon/shuttle/canary) +"mPz" = ( +/obj/effect/floor_decal/corner_wide/green{ + dir = 9 + }, +/obj/effect/floor_decal/corner_wide/green, +/obj/machinery/alarm/west, +/obj/structure/bed/stool/chair/office/dark{ dir = 4 }, -/obj/structure/bed/stool/chair/padded/beige, -/turf/simulated/floor/wood, -/area/bridge/minibar) +/turf/simulated/floor/tiled/white, +/area/horizon/medical/exam) +"mPC" = ( +/obj/effect/floor_decal/corner/dark_green/diagonal, +/obj/structure/bed/stool/chair{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_3/port) +"mPH" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/port) +"mPS" = ( +/obj/effect/floor_decal/corner/dark_green/full{ + dir = 1 + }, +/obj/machinery/firealarm/east, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_3/central) +"mQb" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 10 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_2/central) +"mQc" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/alarm/west{ + req_one_access = list(24,11,55) + }, +/turf/simulated/floor, +/area/horizon/maintenance/deck_3/aft/holodeck) +"mQn" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/turf/simulated/floor/tiled, +/area/horizon/operations/lobby) +"mQq" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/telesci) +"mQt" = ( +/obj/structure/disposaloutlet{ + dir = 1; + spread = 90; + spread_point = 1 + }, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/hatch/red, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/sign/drop{ + pixel_x = 32; + pixel_y = 32 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/service/custodial/disposals/deck_2) "mQu" = ( /turf/simulated/wall/shuttle/unique/tcfl{ icon_state = "12,6" }, /area/shuttle/legion) -"mQv" = ( -/obj/structure/window/shuttle/scc_space_ship, -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/shutters/open{ - id = "shutters_deck3_engibreakwindows"; - name = "Viewing Shutter" - }, -/obj/effect/landmark/entry_point/aft{ - name = "aft, engineering break room" - }, -/turf/simulated/floor/plating, -/area/engineering/break_room) -"mQz" = ( -/turf/unsimulated/wall/steel, -/area/template_noop) -"mQC" = ( -/obj/machinery/door/firedoor, +"mQw" = ( +/obj/structure/lattice/catwalk, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/machinery/door/airlock/maintenance{ - dir = 4; - req_one_access = list(5,12) - }, /obj/structure/cable/green{ - icon_state = "4-8" + icon_state = "11-4" }, -/turf/simulated/floor, -/area/horizon/maintenance/deck_three/aft/starboard) +/turf/simulated/open, +/area/horizon/maintenance/deck_2/wing/port/far) +"mQz" = ( +/turf/unsimulated/wall/steel, +/area/template_noop) +"mQB" = ( +/obj/machinery/light_switch{ + dir = 4; + pixel_x = 22; + pixel_y = 4 + }, +/obj/structure/railing/mapped, +/obj/structure/closet/secure_closet/custodial, +/obj/effect/floor_decal/corner/purple{ + dir = 6 + }, +/obj/effect/floor_decal/industrial/outline/custodial, +/turf/simulated/floor/tiled, +/area/horizon/service/custodial) +"mQG" = ( +/obj/machinery/firealarm/south, +/obj/effect/floor_decal/corner_wide/yellow{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/horizon/engineering/reactor/indra/mainchamber) +"mQI" = ( +/obj/machinery/door/firedoor, +/obj/effect/floor_decal/corner/dark_green{ + dir = 9 + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/full, +/area/horizon/hallway/primary/deck_3/central) "mQO" = ( /obj/structure/shuttle_part/ert{ icon_state = "9,4"; @@ -90048,36 +90046,6 @@ }, /turf/unsimulated/floor/plating, /area/centcom/specops) -"mQT" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/portable_atmospherics/hydroponics, -/obj/machinery/atmospherics/portables_connector{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/camera/network/research{ - c_tag = "Research - XenoBotanical Lab Aft" - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology/xenoflora) -"mQW" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/lattice/catwalk/indoor/grate, -/turf/simulated/floor, -/area/horizon/hallway/deck_three/primary/starboard) "mQX" = ( /obj/structure/railing/mapped{ dir = 1 @@ -90086,67 +90054,27 @@ dir = 8 }, /turf/simulated/floor/reinforced/airless, -/area/template_noop) +/area/horizon/exterior) "mRb" = ( /obj/machinery/door/airlock/multi_tile/glass, /obj/machinery/door/firedoor/multi_tile, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/full, /area/horizon/security/investigations_hallway) -"mRc" = ( -/obj/machinery/atmospherics/pipe/simple/visible/yellow, -/turf/simulated/floor/tiled/dark, -/area/engineering/atmos) -"mRg" = ( -/obj/effect/decal/cleanable/cobweb, -/turf/simulated/floor/tiled/dark, -/area/maintenance/wing/starboard/far) -"mRk" = ( -/obj/machinery/atmospherics/pipe/simple/visible/black{ - dir = 4 +"mRj" = ( +/obj/machinery/light{ + dir = 1 }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 +/obj/effect/floor_decal/corner_wide/blue/full{ + dir = 1 }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/structure/lattice/catwalk/indoor, -/turf/simulated/floor/plating, -/area/engineering/atmos/air) -"mRp" = ( -/obj/machinery/atmospherics/pipe/simple/visible/green{ - dir = 5 - }, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"mRs" = ( -/obj/effect/floor_decal/industrial/outline/grey, -/obj/item/hoist_kit, -/obj/item/ladder_mobile{ - pixel_y = 12 - }, -/obj/item/ladder_mobile{ - pixel_y = 12 - }, -/turf/simulated/floor/plating, -/area/hangar/intrepid) +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/storage/tech) "mRt" = ( /obj/machinery/acting/changer, /turf/unsimulated/floor/freezer, /area/centcom/distress_prep) -"mRu" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lime/full{ - dir = 8 - }, -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled, -/area/medical/emergency_storage) "mRz" = ( /obj/structure/shuttle_part/mercenary/small{ icon_state = "8,5" @@ -90158,16 +90086,65 @@ }, /turf/unsimulated/floor/plating, /area/shuttle/syndicate_elite) -"mRF" = ( -/obj/structure/cable/green{ - icon_state = "0-8" +"mRA" = ( +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/full, +/area/horizon/hallway/primary/deck_3/starboard/docks) +"mRJ" = ( +/obj/effect/floor_decal/corner/lime{ + dir = 10 }, -/obj/machinery/power/apc/high/north, -/obj/effect/floor_decal/corner_wide/green/full{ - dir = 1 +/turf/simulated/floor/tiled, +/area/horizon/engineering/hallway/fore) +"mRL" = ( +/obj/structure/sign/electricshock{ + desc = "A warning sign which reads 'MECH BAY AND RECHARGING STATION' and 'HIGH VOLTAGE EQUIPMENT INSIDE'."; + name = "\improper MECH BAY AND RECHARGING STATION sign"; + pixel_x = -32; + pixel_y = -32 + }, +/obj/effect/floor_decal/corner/dark_green{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/horizon/hangar/intrepid/interstitial) +"mRN" = ( +/obj/effect/floor_decal/corner_wide/green{ + dir = 10 + }, +/obj/structure/table/glass{ + table_reinf = "glass" + }, +/obj/item/modular_computer/laptop/preset/medical{ + pixel_y = 4 + }, +/obj/machinery/button/remote/airlock{ + id = "RecoveryWard"; + name = "Recovery Door Control"; + pixel_x = -7; + pixel_y = -19; + req_access = list(5) }, /turf/simulated/floor/tiled/white, -/area/medical/icu) +/area/horizon/medical/ward) +"mRO" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden, +/obj/effect/map_effect/marker/airlock/docking{ + landmark_tag = "nav_horizon_dock_deck_3_starboard_1"; + master_tag = "airlock_horizon_dock_deck_3_starboard_1"; + name = "airlock_horizon_dock_deck_3_starboard_1" + }, +/turf/simulated/floor/plating, +/area/horizon/hallway/primary/deck_3/port/docks) +"mRS" = ( +/obj/structure/table/steel, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/emergency{ + dir = 1 + }, +/obj/random/loot, +/turf/simulated/floor, +/area/horizon/maintenance/deck_3/aft/starboard/far) "mRU" = ( /obj/structure/window/reinforced{ dir = 1; @@ -90182,124 +90159,123 @@ /obj/structure/grille, /turf/unsimulated/floor/plating, /area/centcom/legion/hangar5) -"mRZ" = ( -/obj/structure/cable/green{ - icon_state = "2-4" +"mRV" = ( +/obj/machinery/bodyscanner{ + dir = 8 }, -/turf/simulated/floor/carpet, -/area/lawoffice/consular) -"mSd" = ( -/obj/structure/table/steel, -/obj/item/storage/toolbox/mechanical, -/obj/item/storage/toolbox/electrical{ - pixel_y = 8 +/obj/effect/floor_decal/corner/beige{ + dir = 5 + }, +/obj/structure/sign/nosmoking_2{ + pixel_x = 28 }, -/obj/effect/floor_decal/corner/dark_blue/full, -/obj/machinery/light, /turf/simulated/floor/tiled/dark, -/area/storage/eva) -"mSk" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 10 +/area/horizon/medical/gen_treatment) +"mSb" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_command{ + dir = 1; + name = "EVA Storage"; + req_one_access = list(18,47) }, -/obj/machinery/disposal/small/north, -/obj/machinery/ai_status_display{ - pixel_y = -32 +/obj/effect/map_effect/door_helper/unres, +/turf/simulated/floor/tiled/full, +/area/horizon/storage/eva) +"mSh" = ( +/obj/effect/floor_decal/corner/green/diagonal, +/obj/structure/bed/stool, +/obj/structure/curtain/open, +/obj/machinery/light{ + dir = 4 }, -/obj/structure/disposalpipe/trunk{ +/obj/structure/window/reinforced, +/turf/simulated/floor/tiled/white, +/area/horizon/crew/fitness/changing) +"mSl" = ( +/obj/machinery/atmospherics/portables_connector{ dir = 1 }, -/turf/simulated/floor/tiled, -/area/horizon/crew_quarters/cryo/living_quarters_lift) -"mSA" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 9 +/obj/machinery/portable_atmospherics/canister/air/airlock, +/turf/simulated/floor, +/area/horizon/ai/upload_foyer) +"mSm" = ( +/obj/structure/cable/green{ + icon_state = "1-2" }, -/obj/structure/bed/stool/chair{ +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 7 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/wood, +/area/horizon/command/heads/xo) +"mSr" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/machinery/newscaster/west, -/obj/machinery/light{ +/turf/simulated/floor/reinforced, +/area/horizon/engineering/gravity_gen) +"mSx" = ( +/obj/machinery/air_sensor{ + frequency = 1443; + id_tag = "turbine_sensor"; + output = 31 + }, +/turf/simulated/floor/reinforced/airless, +/area/horizon/engineering/atmos/turbine) +"mSF" = ( +/obj/structure/bed/stool/chair/padded/black, +/obj/effect/landmark/start{ + name = "Chief Engineer" + }, +/obj/effect/floor_decal/spline/plain{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/break_room) +"mSI" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/auxatmos) +"mSK" = ( +/obj/machinery/light, +/obj/effect/floor_decal/corner_wide/black{ + dir = 10 + }, +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 8 }, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_two/fore) -"mSD" = ( -/obj/effect/landmark/entry_point/port{ - name = "port, port nacelle" - }, -/turf/simulated/wall/shuttle/scc, -/area/shuttle/intrepid/port_storage) -"mSG" = ( -/obj/effect/floor_decal/corner_wide/yellow{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/red, -/turf/simulated/floor/tiled, -/area/engineering/atmos/storage) -"mSP" = ( -/obj/effect/floor_decal/spline/plain/lime{ - dir = 5 - }, -/obj/item/device/radio/intercom/east, -/obj/machinery/disposal/small/west, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/horizon/commissary) -"mSS" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/closet/emcloset{ - anchored = 1; - canbemoved = 1 - }, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/engine_room) -"mST" = ( -/obj/structure/morgue, -/obj/effect/floor_decal/spline/plain{ - dir = 8 - }, -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/structure/platform{ - dir = 4 - }, -/turf/simulated/floor/tiled/freezer{ - name = "cooled tiles"; - temperature = 278.15 - }, -/area/medical/morgue/lower) -"mSU" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 4 - }, -/obj/item/reagent_containers/food/drinks/shaker, -/obj/structure/table/stone/marble, -/turf/simulated/floor/marble/dark, -/area/bridge/minibar) -"mSV" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/green{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"mSZ" = ( -/obj/effect/floor_decal/spline/plain{ +/area/horizon/engineering/atmos/propulsion) +"mSR" = ( +/obj/effect/floor_decal/corner/dark_green{ dir = 10 }, -/obj/structure/table/standard, -/obj/item/stock_parts/subspace/amplifier, -/obj/item/stock_parts/subspace/amplifier, -/obj/item/stock_parts/subspace/amplifier, -/obj/item/device/radio/intercom/west, -/turf/simulated/floor/carpet/rubber, -/area/tcommsat/entrance) +/turf/simulated/floor/tiled, +/area/horizon/operations/lobby) +"mTb" = ( +/obj/effect/floor_decal/corner_wide/yellow{ + dir = 9 + }, +/obj/machinery/light/spot{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/horizon/engineering/bluespace_drive) "mTd" = ( /obj/effect/floor_decal/corner/red{ dir = 10 @@ -90307,12 +90283,38 @@ /obj/effect/floor_decal/industrial/warning, /turf/simulated/floor/tiled/dark, /area/shuttle/mercenary) +"mTh" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/main/interstitial) "mTi" = ( /obj/machinery/door/airlock/silver{ name = "Toilet" }, /turf/unsimulated/floor/monotile, /area/antag/mercenary) +"mTk" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/structure/table/rack, +/obj/random/loot, +/turf/simulated/floor, +/area/horizon/maintenance/deck_3/security/port) +"mTr" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/item/hullbeacon/red, +/obj/machinery/camera/network/supply{ + c_tag = "Operations - Mining Shuttle Dock Starboard"; + dir = 4 + }, +/turf/simulated/floor/airless, +/area/horizon/hangar/operations) "mTt" = ( /obj/structure/bed/stool/padded{ pixel_y = 10 @@ -90325,6 +90327,15 @@ }, /turf/unsimulated/floor/wood, /area/centcom/bar) +"mTw" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 9 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/horizon/command/bridge/controlroom) "mTF" = ( /obj/item/hoist_kit, /obj/item/ladder_mobile{ @@ -90339,18 +90350,6 @@ }, /turf/simulated/floor/plating, /area/shuttle/skipjack) -"mTG" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/maintenance/wing/port/far) "mTK" = ( /obj/structure/shuttle_part/ert{ icon_state = "0,0"; @@ -90358,24 +90357,21 @@ }, /turf/unsimulated/floor/plating, /area/shuttle/specops) -"mTQ" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/yellow{ - dir = 1 +"mTT" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 9 }, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"mTR" = ( -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/tiled/dark, -/area/maintenance/wing/starboard/far) -"mTU" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 +/obj/machinery/button/remote/airlock{ + id = "xeno_entrance_int_b"; + name = "Xenobiology External Access Bolts"; + req_access = list(55); + specialfunctions = 4; + dir = 8; + pixel_x = -23; + desiredstate = 1 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/industrial/warning/corner, -/turf/simulated/floor/reinforced, -/area/engineering/gravity_gen) +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/xenobiology) "mTX" = ( /obj/effect/decal/battlemonsters_logo{ dir = 1; @@ -90387,13 +90383,6 @@ }, /turf/simulated/floor/holofloor/tiled, /area/horizon/holodeck/source_battlemonsters) -"mTZ" = ( -/obj/random/junk, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/engineering) "mUe" = ( /obj/structure/bed/stool/chair/office/dark, /obj/machinery/button/remote/blast_door{ @@ -90417,13 +90406,87 @@ /obj/item/gun/energy/blaster, /turf/unsimulated/floor, /area/centcom/legion) -"mUk" = ( -/turf/simulated/wall/shuttle/scc, -/area/shuttle/escape_pod/pod2) +"mUg" = ( +/obj/machinery/camera/network/engineering{ + c_tag = "Engineering - Port Combustion Chamber"; + dir = 1; + pixel_x = -11 + }, +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 5 + }, +/turf/simulated/floor/reinforced/airless, +/area/horizon/engineering/atmos/propulsion/starboard) +"mUh" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 10 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_3/port) +"mUj" = ( +/obj/effect/floor_decal/corner/dark_green/full{ + dir = 8 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/horizon/hangar/intrepid/interstitial) +"mUl" = ( +/obj/machinery/light_switch{ + pixel_y = -19 + }, +/obj/effect/floor_decal/corner_wide/yellow{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/horizon/engineering/bluespace_drive) +"mUm" = ( +/obj/effect/floor_decal/corner/dark_green/diagonal, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/horizon/service/hydroponics) +"mUn" = ( +/turf/simulated/wall/shuttle/scc_space_ship/cardinal, +/area/horizon/ai/upload_foyer) +"mUq" = ( +/obj/structure/cable/green{ + 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/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/horizon/hangar/intrepid) +"mUt" = ( +/obj/machinery/atmospherics/portables_connector, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/bluespace_drive) "mUu" = ( /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/shuttle/black, /area/centcom/specops) +"mUv" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/structure/trash_pile, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/main/port) "mUw" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -90442,85 +90505,47 @@ }, /turf/unsimulated/floor, /area/centcom/holding) -"mUz" = ( -/obj/structure/bed/stool/chair/office/dark{ - dir = 1 +"mUy" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/structure/cable/green{ + icon_state = "1-2" }, -/obj/effect/landmark/start{ - name = "Atmospheric Technician" - }, -/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) +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/main/starboard) +"mUG" = ( +/obj/effect/floor_decal/corner/dark_green, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_1/central) "mUI" = ( /obj/effect/floor_decal/corner/dark_blue/full{ dir = 1 }, /turf/simulated/floor/tiled, /area/horizon/security/hallway) -"mUJ" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 10 - }, -/obj/structure/railing/mapped{ - dir = 8 - }, -/turf/simulated/floor/reinforced, -/area/bridge/controlroom) -"mUQ" = ( -/obj/machinery/door/airlock/command{ - dir = 1; - id_tag = "hra_room"; - name = "Human Resources Meeting Room"; - req_one_access = list(19,38,72) - }, -/obj/machinery/door/firedoor, -/obj/effect/map_effect/door_helper/unres, +"mUK" = ( +/obj/machinery/hologram/holopad, /obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/bridge/cciaroom) -"mUT" = ( -/obj/structure/disposalpipe/segment{ +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/obj/effect/floor_decal/corner/brown{ - dir = 10 +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/atmos) +"mUM" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/turf/simulated/floor/tiled, -/area/operations/office) +/obj/machinery/atmospherics/pipe/simple/hidden/aux, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/alarm/west, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/main/port) "mUU" = ( /obj/machinery/atmospherics/pipe/simple/hidden, /obj/effect/decal/cleanable/dirt, @@ -90535,39 +90560,67 @@ }, /turf/unsimulated/floor/rubber_carpet, /area/antag/jockey) -"mVd" = ( -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - icon_state = "1-2" +"mVe" = ( +/obj/machinery/camera/network/command{ + c_tag = "AI Core - Fore"; + dir = 8 }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 +/obj/structure/window/borosilicate/reinforced/skrell{ + dir = 8 }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"mVf" = ( -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/extinguisher_cabinet/west, -/turf/simulated/floor/plating, -/area/shuttle/intrepid/port_compartment) -"mVk" = ( -/obj/structure/bed/stool/chair, -/obj/effect/floor_decal/spline/fancy/wood{ +/obj/structure/window/borosilicate/reinforced/skrell{ dir = 1 }, -/turf/simulated/floor/wood, -/area/chapel/office) +/turf/simulated/floor/bluegrid{ + name = "cooled mainframe floor"; + temperature = 278 + }, +/area/horizon/ai/chamber) +"mVg" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 9 + }, +/obj/structure/table/standard, +/obj/item/storage/box/botanydisk{ + pixel_x = 2; + pixel_y = 8 + }, +/obj/item/disk/botany, +/obj/item/disk/botany{ + pixel_y = -2 + }, +/obj/item/disk/botany{ + pixel_y = -4 + }, +/obj/item/disk/botany{ + pixel_y = -6 + }, +/obj/item/disk/botany{ + pixel_x = -8 + }, +/obj/item/disk/botany{ + pixel_x = -8; + pixel_y = -2 + }, +/obj/item/disk/botany{ + pixel_x = -8; + pixel_y = -4 + }, +/obj/item/disk/botany{ + pixel_x = -8; + pixel_y = -6 + }, +/obj/item/device/hand_labeler, +/obj/machinery/alarm/west, +/turf/simulated/floor/tiled/dark, +/area/horizon/rnd/xenobiology/xenoflora) +"mVh" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/aft) "mVm" = ( /obj/structure/railing/mapped, /turf/unsimulated/floor{ @@ -90575,9 +90628,17 @@ icon_state = "ramptop" }, /area/centcom/holding) -"mVt" = ( -/turf/simulated/wall, -/area/operations/office_aux) +"mVp" = ( +/obj/effect/floor_decal/industrial/outline/red, +/obj/machinery/iv_drip, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/surgery) "mVw" = ( /obj/effect/floor_decal/corner/beige{ dir = 5 @@ -90585,16 +90646,6 @@ /obj/item/modular_computer/console/preset/security/investigations, /turf/simulated/floor/tiled/white, /area/horizon/security/forensic_laboratory) -"mVy" = ( -/obj/structure/cable/green{ - icon_state = "0-2" - }, -/obj/structure/cable/green, -/obj/effect/map_effect/window_spawner/full/reinforced/polarized/grille/firedoor{ - id = "HoS Windows" - }, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/security/head_of_security) "mVz" = ( /obj/structure/flora/ausbushes/fullgrass, /obj/effect/landmark{ @@ -90602,42 +90653,53 @@ }, /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) -"mVJ" = ( -/obj/structure/cable/green{ +"mVA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, +/obj/machinery/firealarm/west, /obj/effect/floor_decal/corner/dark_green{ dir = 9 }, -/obj/machinery/alarm/west, /turf/simulated/floor/tiled, -/area/hangar/intrepid) -"mVN" = ( -/obj/machinery/atmospherics/binary/pump{ - dir = 4; - name = "Air to Mix" +/area/horizon/hangar/auxiliary) +"mVD" = ( +/turf/simulated/wall, +/area/horizon/engineering/drone_fabrication) +"mVF" = ( +/obj/structure/table/wood, +/obj/item/paper_bin{ + pixel_x = 6 }, -/turf/simulated/floor/plating, -/area/engineering/atmos/air) +/obj/item/pen{ + pixel_x = 6 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/carpet, +/area/horizon/repoffice/representative_two) +"mVH" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/dark/full/airless, +/area/horizon/command/bridge/controlroom) "mVS" = ( /obj/structure/dueling_table{ icon_state = "center_left" @@ -90647,18 +90709,6 @@ }, /turf/simulated/floor/holofloor/wood, /area/horizon/holodeck/source_battlemonsters) -"mVU" = ( -/obj/machinery/light/small/emergency{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/carpet/rubber, -/area/maintenance/engineering/auxillary) "mVV" = ( /obj/structure/curtain/open/bed, /obj/effect/floor_decal/industrial/arrow/yellow, @@ -90668,103 +90718,31 @@ /obj/structure/bed/stool/padded/blue, /turf/simulated/floor/tiled/dark, /area/horizon/security/evidence_storage) -"mWd" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/railing/mapped{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/central) -"mWj" = ( -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/visible/cyan{ +"mWl" = ( +/obj/machinery/door/airlock/external{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/map_effect/marker/airlock{ + frequency = 1003; + master_tag = "airlock_horizon_deck_1_aft_port_1"; + name = "airlock_horizon_deck_1_aft_port_1" + }, +/obj/effect/map_effect/marker_helper/airlock/exterior, /turf/simulated/floor/plating, -/area/engineering/engine_room) +/area/horizon/maintenance/deck_1/auxatmos) "mWm" = ( /obj/effect/map_effect/window_spawner/full/reinforced/indestructible, /obj/structure/disposalpipe/segment, /turf/unsimulated/floor/plating, /area/tdome/tdomeobserve) -"mWr" = ( -/obj/effect/floor_decal/corner/yellow{ - dir = 9 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/closet/secure_closet/engineering_electrical, -/turf/simulated/floor/tiled, -/area/engineering/storage_eva) -"mWv" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 10 - }, -/obj/machinery/camera/network/command{ - c_tag = "Bridge - XO Line"; - dir = 1; - network = list("Command","XO_Office") - }, -/obj/structure/table/standard, -/obj/machinery/recharger{ - pixel_x = -8; - pixel_y = 8 - }, -/obj/item/device/toner, -/obj/item/device/toner, -/obj/item/paper_bin{ - pixel_x = 5; - pixel_y = 9 - }, -/obj/item/pen{ - pixel_y = 9; - pixel_x = 4 - }, -/turf/simulated/floor/tiled, -/area/bridge/upperdeck) -"mWw" = ( -/obj/effect/map_effect/map_helper/ruler_tiles_3, -/turf/simulated/wall/shuttle/scc_space_ship/cardinal, -/area/horizon/hallway/deck_three/primary/starboard/docks) -"mWy" = ( -/obj/structure/table/steel, -/obj/random/dirt_75, -/obj/random/tech_supply{ - pixel_y = 2 - }, +"mWn" = ( +/obj/machinery/telecomms/processor/preset_two, +/turf/simulated/floor/bluegrid, +/area/horizon/tcommsat/chamber) +"mWD" = ( +/obj/machinery/atmospherics/pipe/simple/visible/supply, /turf/simulated/floor/plating, -/area/maintenance/wing/port/far) -"mWz" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume, -/obj/machinery/airlock_sensor{ - dir = 8; - pixel_x = 20; - pixel_y = -6 - }, -/obj/effect/map_effect/marker/airlock/docking{ - landmark_tag = "nav_horizon_dock_deck_3_port_2"; - master_tag = "airlock_horizon_dock_deck_3_port_2"; - name = "airlock_horizon_dock_deck_3_port_2" - }, -/obj/machinery/embedded_controller/radio/airlock/docking_port{ - dir = 8; - pixel_x = 20; - pixel_y = 6 - }, -/turf/simulated/floor/plating, -/area/horizon/hallway/deck_three/primary/port/docks) -"mWC" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 9 - }, -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/turf/simulated/floor/wood, -/area/rnd/hallway) +/area/horizon/engineering/atmos/air) "mWF" = ( /obj/structure/table/wood, /obj/structure/window/reinforced{ @@ -90801,30 +90779,51 @@ icon_state = "dark_preview" }, /area/centcom/specops) -"mWS" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/machinery/alarm/north{ - req_one_access = list(24,11,55) - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/hydroponics/garden) -"mXc" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_two/fore) -"mXm" = ( -/obj/machinery/light/small/emergency{ +"mWU" = ( +/obj/structure/shuttle/engine/propulsion/burst/right{ dir = 8 }, -/obj/random/junk, -/obj/effect/floor_decal/industrial/outline_segment/yellow{ - dir = 10 +/turf/simulated/floor/plating, +/area/horizon/shuttle/escape_pod/pod1) +"mXi" = ( +/obj/effect/floor_decal/spline/plain/lime{ + dir = 5 + }, +/obj/item/device/radio/intercom/east, +/obj/machinery/disposal/small/west, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/maintenance/wing/port/far) +/area/horizon/operations/commissary) +"mXj" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 6 + }, +/obj/machinery/camera/network/second_deck{ + c_tag = "Second Deck - Hallway 1"; + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_2/central) +"mXk" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/structure/closet, +/obj/random/junk, +/turf/simulated/floor, +/area/horizon/maintenance/deck_3/aft/starboard/far) +"mXl" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/corner/brown{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/horizon/operations/office) "mXx" = ( /obj/structure/closet/gimmick{ name = "emergency response team wardrobe" @@ -90855,52 +90854,24 @@ /obj/machinery/alarm/east, /turf/simulated/floor/tiled, /area/horizon/security/equipment) -"mXD" = ( -/obj/structure/cable/green{ - icon_state = "4-8" +"mXI" = ( +/obj/effect/floor_decal/corner/green/diagonal, +/obj/machinery/button/remote/airlock{ + dir = 1; + id = "cargobreak_stall"; + name = "Door Bolt Control"; + pixel_x = 7; + pixel_y = 25; + specialfunctions = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/toilet{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/corner/dark_green{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/hangar/intrepid) -"mXG" = ( -/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/dark_green{ - dir = 5 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hangar/intrepid) -"mXH" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/closet/crate, -/obj/item/circuitboard/smes, -/obj/item/circuitboard/smes, -/obj/item/smes_coil, -/obj/item/smes_coil, -/obj/item/smes_coil/super_capacity, -/obj/item/smes_coil/super_capacity, -/obj/item/smes_coil/super_io, -/obj/item/smes_coil/super_io, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/engine_room/rust) +/turf/simulated/floor/tiled/white, +/area/horizon/operations/break_room) "mXM" = ( /obj/structure/cable/green{ icon_state = "1-2" @@ -90917,23 +90888,25 @@ }, /turf/simulated/floor/tiled, /area/horizon/security/hallway) -"mXQ" = ( -/obj/machinery/door/airlock/glass_command{ - dir = 4; - id_tag = ""; - name = "Bridge Officer Preparation"; - req_access = list(19) +"mXN" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 9 }, -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "bridge blast"; - name = "Bridge Blast Doors"; - opacity = 0 +/obj/effect/floor_decal/spline/plain/black{ + dir = 10 }, -/turf/simulated/floor/tiled/full, -/area/bridge/bridge_crew) +/obj/structure/bed/stool/chair/shuttle/double{ + pixel_x = 8; + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/shuttle/intrepid/main_compartment) +"mXO" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/gen_treatment) "mXS" = ( /obj/structure/bed/stool/chair/holochair{ dir = 4 @@ -90954,24 +90927,33 @@ icon_state = "white" }, /area/centcom/legion) -"mXZ" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 4 - }, -/obj/structure/railing/mapped{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/rnd/xenoarch_atrium) "mYb" = ( /obj/machinery/atmospherics/pipe/manifold/visible/red{ dir = 1 }, /turf/space/dynamic, /area/horizon/exterior) +"mYc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/alarm/east, +/obj/machinery/light/small/emergency, +/turf/simulated/floor/tiled/dark, +/area/horizon/maintenance/deck_2/wing/starboard) +"mYd" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/obj/structure/railing/mapped{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/horizon/rnd/xenoarch/atrium) +"mYe" = ( +/obj/structure/disposalpipe/segment{ + icon_state = "pipe-c" + }, +/turf/simulated/floor, +/area/horizon/maintenance/substation/command) "mYf" = ( /turf/simulated/floor/bluegrid, /area/tdome) @@ -91002,54 +90984,37 @@ }, /turf/simulated/floor/tiled/dark, /area/shuttle/hapt) -"mYi" = ( -/obj/effect/floor_decal/corner/black{ - dir = 5 +"mYq" = ( +/obj/structure/table/standard, +/obj/item/storage/box/syringegun{ + pixel_y = 8 }, -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ +/obj/item/gun/launcher/syringe, +/obj/effect/floor_decal/corner_wide/green{ dir = 6 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 }, -/obj/structure/cable/green{ - icon_state = "2-4" +/obj/machinery/alarm/east, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/equipment) +"mYr" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/rnd/hallway) -"mYn" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/corner/yellow{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/engineering/locker_room) -"mYp" = ( -/obj/machinery/light, /turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology/xenoflora) -"mYv" = ( -/obj/structure/cable{ - icon_state = "1-2" +/area/horizon/hangar/intrepid) +"mYt" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 }, -/obj/effect/floor_decal/corner/dark_green{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/central) +/obj/structure/closet/crate, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/port/far) "mYw" = ( /obj/structure/lattice, /obj/machinery/atmospherics/pipe/simple/heat_exchanging{ @@ -91057,15 +91022,40 @@ }, /turf/simulated/open/airless, /area/horizon/exterior) -"mYI" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/vending/snack, -/obj/structure/sign/securearea{ - name = "\improper WARNING: MUNITIONS BAY sign"; - pixel_y = -32 +"mYx" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 }, -/turf/simulated/floor/tiled/dark, -/area/horizon/hallway/deck_three/primary/port) +/obj/structure/trash_pile, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/research) +"mYy" = ( +/obj/structure/bed/stool/chair/sofa/pew/right{ + dir = 8 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 7 + }, +/turf/simulated/floor/wood, +/area/horizon/service/chapel/main) +"mYB" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 6 + }, +/obj/structure/platform{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/horizon/rnd/hallway/secondary) +"mYD" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/light/spot{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/reactor/supermatter/mainchamber) "mYJ" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -91078,10 +91068,6 @@ }, /turf/simulated/floor/tiled, /area/horizon/security/brig) -"mYM" = ( -/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, -/turf/simulated/floor/tiled/dark/full, -/area/rnd/conference) "mYP" = ( /obj/machinery/light{ dir = 4 @@ -91096,13 +91082,6 @@ /obj/machinery/light, /turf/simulated/floor/shuttle/black, /area/shuttle/specops) -"mYS" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/effect/map_effect/map_helper/ruler_tiles_3, -/turf/simulated/floor/reinforced/airless, -/area/bridge/cciaroom) "mYU" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 1 @@ -91115,32 +91094,6 @@ }, /turf/unsimulated/floor/carpet, /area/centcom/specops) -"mYX" = ( -/obj/structure/table/steel, -/obj/item/device/gps/science, -/obj/item/device/gps/science, -/obj/item/device/gps/science, -/obj/item/device/gps/science, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 6 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/storage/eva) -"mYY" = ( -/obj/machinery/light/small/emergency{ - dir = 1 - }, -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/engineering) "mZa" = ( /obj/structure/closet/secure_closet{ req_access = list(150) @@ -91155,6 +91108,9 @@ /obj/effect/floor_decal/corner/red/diagonal, /turf/simulated/floor/tiled/dark, /area/shuttle/mercenary) +"mZg" = ( +/turf/simulated/floor/carpet/red, +/area/horizon/service/bar) "mZh" = ( /obj/machinery/light/small{ dir = 1 @@ -91172,35 +91128,6 @@ /obj/random/voidsuit, /turf/simulated/floor/tiled/dark/full, /area/shuttle/skipjack) -"mZk" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/floor_decal/corner/dark_green{ - dir = 5 - }, -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/central) -"mZr" = ( -/obj/effect/floor_decal/corner/lime/full{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "0-8" - }, -/obj/machinery/light/small, -/obj/machinery/power/apc/east, -/turf/simulated/floor/tiled, -/area/medical/morgue/lower) "mZs" = ( /obj/machinery/light{ dir = 4 @@ -91218,37 +91145,40 @@ }, /turf/simulated/floor/tiled/dark, /area/shuttle/mercenary) -"mZx" = ( -/obj/effect/floor_decal/corner/dark_green/full{ - dir = 8 +"mZu" = ( +/obj/machinery/door/airlock/external, +/obj/effect/map_effect/marker_helper/airlock/interior, +/obj/effect/map_effect/marker/airlock/docking{ + landmark_tag = "nav_horizon_dock_deck_3_starboard_3"; + master_tag = "airlock_horizon_dock_deck_3_starboard_3"; + name = "airlock_horizon_dock_deck_3_starboard_3" }, -/obj/machinery/vending/coffee, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_two) -"mZD" = ( -/obj/effect/floor_decal/corner/black{ - dir = 6 +/turf/simulated/floor/plating, +/area/horizon/hallway/primary/deck_3/port/docks) +"mZv" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + icon_state = "1-2" }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/light/spot{ - dir = 8 +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 5 }, -/turf/simulated/floor/tiled/dark, -/area/hangar/intrepid) -"mZG" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ +/obj/structure/disposalpipe/segment, +/obj/machinery/light{ dir = 4 }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/structure/cable/green{ - icon_state = "4-8" +/turf/simulated/floor/wood, +/area/horizon/service/bar) +"mZE" = ( +/obj/structure/lattice, +/obj/structure/railing/mapped, +/obj/structure/platform/ledge{ + dir = 1 }, -/obj/effect/floor_decal/spline/plain/corner{ - dir = 8 - }, -/turf/simulated/floor/carpet/rubber, -/area/tcommsat/entrance) +/obj/structure/platform/ledge, +/turf/simulated/open, +/area/horizon/hallway/primary/deck_3/central) "mZI" = ( /obj/structure/shuttle_part/tcfl{ icon_state = "17,0" @@ -91264,81 +91194,52 @@ }, /turf/unsimulated/floor/wood, /area/centcom/bar) -"mZL" = ( +"mZW" = ( +/obj/structure/table/wood, +/obj/item/toy/desk/newtoncradle{ + pixel_x = 3; + pixel_y = 10 + }, +/obj/machinery/power/outlet, +/turf/simulated/floor/carpet/red, +/area/horizon/service/library) +"mZY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/corner/yellow{ + dir = 5 + }, /turf/simulated/floor/tiled/dark, -/area/maintenance/wing/starboard/far) -"mZX" = ( -/obj/structure/table/reinforced/steel, -/obj/machinery/door/window/westleft{ - req_one_access = list(26,29,31,48,67,35,25,28,37) - }, -/obj/machinery/door/blast/shutters{ - dir = 4; - id = "horizon_commissary_desk" - }, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/commissary) -"nag" = ( -/obj/effect/floor_decal/corner/brown{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/operations/loading) -"nal" = ( -/obj/machinery/atmospherics/valve{ - dir = 4; - name = "Equalization Valve" - }, -/obj/effect/floor_decal/industrial/hatch/red, -/turf/simulated/floor/tiled/dark, -/area/engineering/atmos/propulsion) -"nap" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ +/area/horizon/engineering/reactor/supermatter/waste) +"nad" = ( +/turf/simulated/wall/r_wall, +/area/horizon/engineering/bluespace_drive/monitoring) +"naf" = ( +/obj/effect/floor_decal/spline/fancy/wood{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 +/obj/structure/table/reinforced/wood, +/obj/item/reagent_containers/glass/beaker/teapot{ + pixel_y = 4 }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/airlock/glass{ - dir = 4 - }, -/turf/simulated/floor/tiled/full, -/area/horizon/hallway/deck_three/primary/starboard) -"nar" = ( -/obj/machinery/door/airlock/hatch{ - name = "Port Nacelle" - }, -/obj/effect/floor_decal/industrial/hatch_door/yellow{ +/turf/simulated/floor/wood, +/area/horizon/command/bridge/minibar) +"naj" = ( +/obj/structure/lattice, +/obj/structure/platform/ledge{ dir = 8 }, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/open, +/area/horizon/medical/hallway/upper) +"naq" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, -/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/purple{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/red, /turf/simulated/floor/tiled/dark/full, -/area/shuttle/intrepid/port_storage) -"nav" = ( -/obj/structure/cable/green{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/effect/floor_decal/spline/fancy/wood/corner, -/turf/simulated/floor/wood, -/area/chapel/office) +/area/horizon/service/custodial/disposals/deck_1) "naw" = ( /obj/effect/floor_decal/industrial/warning{ dir = 1 @@ -91349,36 +91250,6 @@ }, /turf/unsimulated/floor, /area/antag/jockey) -"nax" = ( -/obj/machinery/light/colored/blue{ - dir = 4 - }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 6 - }, -/obj/machinery/meter{ - name = "Fuel Reserve"; - pixel_x = -23; - pixel_y = 4 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/machinery/door/window/westleft{ - name = "EVA Suit Storage Rack Access" - }, -/obj/structure/table/rack, -/obj/item/rig/eva/pilot/equipped, -/obj/item/rig/eva/pilot/equipped{ - pixel_x = -5 - }, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/fuel, -/turf/simulated/floor/tiled/dark/full, -/area/shuttle/canary) "nay" = ( /obj/structure/flora/rock{ icon_state = "basalt2"; @@ -91393,51 +91264,62 @@ icon_state = "beachcorner" }, /area/centcom/shared_dream) -"naz" = ( -/obj/effect/floor_decal/corner/yellow/full{ +"naD" = ( +/obj/effect/floor_decal/corner_wide/lime/diagonal, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/obj/structure/table/standard, -/obj/item/storage/slide_projector, -/turf/simulated/floor/tiled, -/area/engineering/lobby) -"naK" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/reception) +"naF" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/structure/table/rack, -/obj/random/loot, -/turf/simulated/floor, -/area/horizon/maintenance/deck_three/aft/starboard) -"naL" = ( /obj/structure/cable/green{ - icon_state = "2-8" + icon_state = "4-8" }, -/obj/structure/disposalpipe/segment, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor, -/area/maintenance/security_port) +/obj/effect/floor_decal/spline/plain/lime{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/service/hydroponics/garden) +"naI" = ( +/obj/effect/floor_decal/corner/dark_green/full{ + dir = 1 + }, +/obj/machinery/alarm/east, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_1/central) "naO" = ( /obj/structure/holostool{ dir = 1 }, /turf/simulated/floor/tiled/dark, /area/horizon/holodeck/source_pool) -"naX" = ( -/obj/structure/sign/nosmoking_1{ - pixel_y = 32 - }, -/obj/machinery/atmospherics/pipe/manifold/visible/green{ +"naQ" = ( +/obj/structure/platform_stairs/full/east_west_cap{ dir = 1 }, -/turf/simulated/floor/plating, -/area/engineering/atmos/air) -"naY" = ( -/obj/effect/floor_decal/industrial/warning{ +/turf/simulated/floor/tiled/dark, +/area/horizon/service/dining_hall) +"naT" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/reinforced, +/area/horizon/command/bridge/selfdestruct) +"naU" = ( +/obj/effect/floor_decal/corner/dark_blue{ dir = 6 }, /turf/simulated/floor/tiled/dark, -/area/maintenance/wing/starboard/far) +/area/horizon/security/checkpoint2) "nba" = ( /obj/effect/floor_decal/carpet{ dir = 1 @@ -91450,10 +91332,69 @@ }, /turf/simulated/floor/holofloor/carpet, /area/horizon/holodeck/source_dininghall) -"nbv" = ( +"nbf" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/hallway/upper) +"nbk" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/light, /turf/simulated/floor/tiled, -/area/engineering/storage_eva) +/area/horizon/rnd/eva) +"nbn" = ( +/obj/structure/railing/mapped, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/port/near) +"nbr" = ( +/obj/structure/window/shuttle/scc_space_ship, +/obj/structure/grille, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id = "bridge blast"; + name = "Bridge Blast Doors"; + opacity = 0 + }, +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + icon_state = "0-8" + }, +/obj/machinery/door/blast/shutters/open{ + dir = 2; + id = "shutters_deck3_bridgesafety"; + name = "Safety Shutter" + }, +/obj/machinery/door/blast/shutters/open{ + dir = 2; + id = "conferencesafetyshutters"; + name = "Safety Shutter" + }, +/turf/simulated/floor/plating, +/area/horizon/command/bridge/meeting_room) +"nbs" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/effect/floor_decal/corner/green/full{ + dir = 8 + }, +/obj/item/bikehorn/rubberducky, +/turf/simulated/floor/tiled/white, +/area/horizon/operations/break_room) +"nbw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/horizon/operations/warehouse) "nby" = ( /obj/effect/decal/fake_object{ dir = 4; @@ -91470,21 +91411,10 @@ name = "overgrowth" }, /area/horizon/holodeck/source_moghes) -"nbz" = ( -/obj/structure/table/standard, -/obj/machinery/firealarm/east, -/obj/effect/floor_decal/corner/mauve{ - dir = 6 - }, -/obj/machinery/microscope/science{ - dir = 4; - pixel_y = 12 - }, -/obj/item/storage/box/fancy/vials{ - pixel_y = -12 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology/xenological) +"nbD" = ( +/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, +/turf/simulated/floor, +/area/horizon/crew/fitness/gym) "nbG" = ( /obj/effect/floor_decal/corner/lime/diagonal{ dir = 8 @@ -91495,43 +91425,35 @@ }, /turf/simulated/floor/tiled/dark, /area/shuttle/mercenary) -"nbJ" = ( -/obj/effect/floor_decal/corner/mauve/full{ +"nbO" = ( +/obj/structure/bed/stool/chair/office/dark, +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/telesci) +"nbS" = ( +/obj/machinery/power/apc/east, +/obj/structure/cable/green, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/disposal/small/west, +/obj/structure/disposalpipe/trunk{ dir = 1 }, -/obj/effect/floor_decal/corner/white{ - dir = 8 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, /turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology/xenoflora) -"nbK" = ( -/obj/machinery/light{ - dir = 1 - }, +/area/horizon/rnd/xenobiology/dissection) +"nbV" = ( /obj/effect/floor_decal/corner/dark_green{ - dir = 5 + dir = 6 }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/machinery/alarm/east, /turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/starboard) -"nbW" = ( -/obj/effect/floor_decal/corner/dark_blue/full{ - dir = 1 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/port/docks) -"nbZ" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/structure/closet, -/obj/random/loot, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard) +/area/horizon/hallway/primary/deck_2/central) +"nbY" = ( +/obj/structure/flora/ausbushes/sparsegrass, +/obj/structure/railing/mapped, +/turf/simulated/floor/grass/no_edge, +/area/horizon/service/cafeteria) "ncb" = ( /obj/effect/floor_decal/corner/paleblue/full, /obj/structure/railing/mapped{ @@ -91544,30 +91466,19 @@ icon_state = "dark_preview" }, /area/centcom/ferry) -"ncf" = ( -/obj/structure/table/standard, -/obj/item/paper/monitorkey{ - pixel_x = -8 +"ncc" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 }, -/obj/random/pottedplant_small{ - pixel_x = 2; - pixel_y = 12 - }, -/obj/item/stamp/ce{ - pixel_x = -1 - }, -/turf/simulated/floor/carpet, -/area/crew_quarters/heads/chief) -"nch" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/corner/mauve/diagonal, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/junction, -/turf/simulated/floor/tiled/white, -/area/rnd/lab) +/obj/structure/reagent_dispensers/extinguisher, +/turf/simulated/floor, +/area/horizon/maintenance/deck_3/aft/holodeck) +"ncd" = ( +/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/horizon/hangar/auxiliary) "nck" = ( /obj/structure/table/rack, /obj/item/clothing/under/color/green, @@ -91584,26 +91495,12 @@ }, /turf/unsimulated/floor/wood, /area/centcom/evac) -"nco" = ( -/obj/machinery/portable_atmospherics/hydroponics, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/window/reinforced{ - dir = 8 +"ncp" = ( +/obj/effect/map_effect/window_spawner/full/reinforced/polarized/firedoor{ + id = "repa" }, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology/xenoflora) -"ncs" = ( -/obj/effect/floor_decal/corner/mauve/full{ - dir = 4 - }, -/obj/structure/engineer_maintenance/electric{ - dir = 1 - }, -/obj/structure/engineer_maintenance/pipe{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/chemistry) +/turf/simulated/floor/tiled, +/area/horizon/repoffice/representative_one) "ncv" = ( /obj/effect/floor_decal/industrial/outline/yellow, /obj/machinery/light/small{ @@ -91612,41 +91509,28 @@ /obj/machinery/vending/dinnerware/bar, /turf/unsimulated/floor/linoleum, /area/antag/actor) -"ncB" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +"ncE" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/alarm/north, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/port/far) +"ncH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 1 +/obj/structure/cable{ + icon_state = "2-4" }, -/turf/simulated/floor/wood, -/area/horizon/crew_quarters/lounge/bar) -"ncC" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/tiled/freezer{ - name = "cooled tiles"; - temperature = 278.15 - }, -/area/medical/morgue/lower) -"ncG" = ( -/obj/effect/floor_decal/corner_wide/purple/diagonal, -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/firealarm/south, -/turf/simulated/floor/tiled/white, -/area/rnd/test_range) +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/maintenance/substation/wing_starboard) +"ncJ" = ( +/obj/structure/table/steel, +/obj/random/junk, +/turf/simulated/floor, +/area/horizon/maintenance/deck_3/aft/starboard) "ncM" = ( /obj/machinery/mech_recharger, /obj/structure/sign/directions/all{ @@ -91660,6 +91544,14 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/unsimulated/floor, /area/antag/mercenary) +"ncP" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/vending/dinnerware/metal, +/obj/effect/floor_decal/industrial/hatch/grey, +/turf/simulated/floor/tiled/full, +/area/horizon/command/bridge/minibar) "ncQ" = ( /obj/structure/sign/flag/biesel{ pixel_y = 30 @@ -91668,15 +91560,17 @@ icon_state = "wood" }, /area/centcom/legion) -"ncS" = ( -/obj/machinery/atmospherics/pipe/simple/visible/cyan{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" +"ncT" = ( +/obj/effect/floor_decal/industrial/warning/corner, +/obj/machinery/alarm/south, +/obj/machinery/atmospherics/binary/pump/high_power{ + dir = 4; + name = "Intake to Hot Loop"; + target_pressure = 15000 }, +/obj/effect/floor_decal/industrial/hatch_tiny/firefighting_closet, /turf/simulated/floor/plating, -/area/engineering/engine_room) +/area/horizon/engineering/reactor/supermatter/mainchamber) "ncV" = ( /obj/structure/window/reinforced/crescent{ dir = 8 @@ -91685,70 +91579,139 @@ /obj/structure/flora/ausbushes/ppflowers, /turf/simulated/floor/grass/no_edge, /area/centcom/evac) -"ndf" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/central) -"ndy" = ( -/obj/structure/railing/mapped{ - dir = 4 +"ndb" = ( +/obj/structure/sign/nosmoking_1, +/turf/simulated/wall, +/area/horizon/medical/ward) +"ndh" = ( +/obj/structure/shuttle_part/scc/mining{ + icon_state = "4,10"; + outside_part = 0 }, -/obj/structure/platform/ledge, -/obj/structure/platform/ledge{ - dir = 8 +/obj/machinery/atmospherics/unary/engine/scc_shuttle, +/obj/effect/floor_decal/industrial/warning/cee{ + dir = 1 }, -/obj/structure/platform_deco/ledge{ - dir = 9 - }, -/turf/simulated/open, -/area/horizon/hallway/deck_three/primary/central) -"ndH" = ( -/obj/structure/cable/green{ - icon_state = "4-8" +/turf/simulated/floor/plating, +/area/horizon/shuttle/mining) +"ndk" = ( +/obj/structure/cable{ + icon_state = "1-4" }, /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/starboard/near) +"ndo" = ( +/obj/effect/floor_decal/industrial/warning{ dir = 1 }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark, +/area/horizon/maintenance/deck_2/wing/starboard/nacelle) +"nds" = ( +/obj/machinery/atm{ + dir = 1; + pixel_y = 28 }, -/obj/structure/cable/green{ - icon_state = "2-4" - }, -/obj/structure/lattice/catwalk/indoor/grate, -/turf/simulated/floor/plating, -/area/operations/lobby) -"ndI" = ( -/obj/structure/shuttle_part/scc/scout{ - density = 0; - icon_state = "2,12" - }, -/turf/simulated/floor/plating, -/area/shuttle/canary) -"ndR" = ( -/obj/structure/railing/mapped, /obj/structure/railing/mapped{ dir = 8 }, -/obj/effect/floor_decal/corner/dark_blue/full, -/obj/machinery/computer/ship/navigation, -/turf/simulated/floor/tiled/dark, -/area/bridge/controlroom) -"ndS" = ( -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/turf/simulated/floor/tiled/full, -/area/engineering/rust_office) -"ndT" = ( -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 10 +/obj/effect/floor_decal/corner/brown/full{ + dir = 8 }, /turf/simulated/floor/tiled, -/area/maintenance/aux_atmospherics/deck_2/starboard/wing) +/area/horizon/operations/lobby) +"ndt" = ( +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_3/central) +"ndA" = ( +/obj/item/storage/secure/safe{ + pixel_y = 36 + }, +/obj/machinery/requests_console/north{ + announcementConsole = 1; + department = "Representative's Office Alpha"; + departmentType = 5; + name = "Representative's Office requests console"; + pixel_y = 5; + dir = 8; + pixel_x = -49 + }, +/obj/machinery/photocopier, +/turf/simulated/floor/carpet, +/area/horizon/repoffice/representative_one) +"ndE" = ( +/obj/effect/floor_decal/corner/white/diagonal, +/obj/structure/table/standard, +/obj/item/storage/belt/medical/paramedic, +/obj/item/storage/belt/medical/paramedic, +/obj/machinery/alarm/south, +/obj/machinery/requests_console/east{ + department = "Paramedic Bay" + }, +/obj/item/device/radio/med{ + pixel_x = -6; + pixel_y = 6 + }, +/obj/item/device/radio/med{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/item/device/gps/medical{ + pixel_x = -7 + }, +/obj/item/device/gps/medical{ + pixel_x = 5 + }, +/turf/simulated/floor/tiled, +/area/horizon/medical/paramedic) +"ndF" = ( +/obj/structure/platform/cutout, +/obj/structure/platform_stairs/full/east_west_cap{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/command/bridge/controlroom) +"ndK" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/tank_wall/air{ + icon_state = "air3" + }, +/turf/simulated/floor/plating, +/area/horizon/engineering/atmos/air) +"ndN" = ( +/obj/effect/floor_decal/corner/green/diagonal, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/mirror{ + pixel_y = 36 + }, +/obj/structure/sink{ + pixel_y = 28 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/crew/washroom/deck_2) +"nea" = ( +/obj/structure/bed/stool/chair/padded/red{ + dir = 8 + }, +/turf/simulated/floor/carpet/red, +/area/horizon/service/dining_hall) "ned" = ( /obj/effect/decal/fake_object{ dir = 1; @@ -91772,69 +91735,60 @@ name = "mossy grass" }, /area/horizon/holodeck/source_konyang) -"nef" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/corner/dark_green{ - dir = 5 +"neg" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/central) -"nem" = ( -/obj/machinery/door/airlock{ - dir = 1; - id_tag = "cryo_toilet_2"; - name = "Toilet 2" +/obj/structure/cable/green{ + icon_state = "1-2" }, -/obj/machinery/door/firedoor{ - dir = 4 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/research) +"neh" = ( +/obj/structure/platform{ + dir = 8 }, -/turf/simulated/floor/tiled, -/area/horizon/crew_quarters/cryo/washroom) -"net" = ( -/obj/effect/floor_decal/corner_wide/yellow{ +/obj/effect/floor_decal/corner/dark_blue{ dir = 10 }, -/turf/simulated/floor/tiled, -/area/engineering/bluespace_drive) -"ney" = ( -/obj/structure/disposalpipe/segment{ +/obj/structure/railing/mapped{ dir = 4 }, +/turf/simulated/floor/reinforced, +/area/horizon/command/bridge/controlroom) +"nen" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 8 + }, +/obj/structure/table/stone/marble, +/obj/machinery/chemical_dispenser/bar_soft/full{ + dir = 4; + pixel_y = 3 + }, +/turf/simulated/floor/marble/dark, +/area/horizon/command/bridge/minibar) +"nez" = ( +/obj/machinery/light/small{ + dir = 1 + }, /obj/structure/cable{ icon_state = "4-8" }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/maintenance/operations) -"neA" = ( -/obj/effect/floor_decal/corner/green/full{ - dir = 1 +/obj/effect/floor_decal/corner/dark_green{ + dir = 5 }, -/obj/structure/sink{ - dir = 4; - pixel_x = 12 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/structure/mirror{ - pixel_x = 25 - }, -/obj/effect/landmark{ - name = "borerstart" +/turf/simulated/floor/tiled, +/area/horizon/hangar/intrepid) +"neB" = ( +/obj/effect/floor_decal/corner_wide/orange{ + dir = 10 }, /turf/simulated/floor/tiled/white, -/area/horizon/crew_quarters/fitness/showers) -"neC" = ( -/obj/effect/floor_decal/corner/brown{ - dir = 9 - }, -/obj/effect/floor_decal/spline/plain/black{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/intrepid/main_compartment) +/area/horizon/medical/gen_treatment) "neF" = ( /obj/structure/table/reinforced/wood, /obj/effect/floor_decal/spline/fancy/wood{ @@ -91844,17 +91798,15 @@ icon_state = "wood" }, /area/centcom/control) -"neJ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/obj/structure/cable/green{ - icon_state = "1-2" +"neI" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 10 }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 }, /turf/simulated/floor/tiled, -/area/operations/office) +/area/horizon/hallway/primary/deck_3/port/docks) "neK" = ( /obj/item/modular_computer/console/preset/command, /obj/machinery/light{ @@ -91870,6 +91822,40 @@ "neN" = ( /turf/simulated/floor/exoplanet/barren, /area/centcom/shared_dream) +"neP" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 9 + }, +/obj/machinery/button/remote/blast_door{ + dir = 8; + id = "xenobio_b"; + name = "Cell Containment Blast Doors"; + pixel_x = -21; + req_access = list(47) + }, +/obj/structure/sink{ + dir = 8; + pixel_x = -12 + }, +/obj/effect/floor_decal/industrial/outline_corner/security{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/xenobiology) +"neS" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/main/starboard) +"neT" = ( +/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/rnd/hallway) "neW" = ( /obj/item/device/radio/intercom/west, /obj/effect/floor_decal/corner/dark_blue/full{ @@ -91898,51 +91884,70 @@ }, /turf/unsimulated/floor, /area/antag/mercenary) -"nff" = ( -/obj/effect/floor_decal/corner_wide/green{ - dir = 6 +"nfd" = ( +/obj/structure/cable/green{ + icon_state = "4-8" }, -/obj/effect/floor_decal/corner_wide/green{ - dir = 1 - }, -/obj/structure/table/standard, -/obj/item/device/mass_spectrometer{ - pixel_x = 6; - pixel_y = 2 - }, -/obj/item/storage/box/sharps{ - pixel_x = -5 - }, -/turf/simulated/floor/tiled/white, -/area/medical/exam) -"nfi" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 6 - }, -/obj/machinery/light/floor{ +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/obj/structure/platform_deco{ - icon_state = "ledge_deco" +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/wing/starboard) +"nfe" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/trash_pile, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/starboard) +"nfg" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/floor_decal/corner_wide/yellow{ + dir = 5 }, /turf/simulated/floor/tiled, -/area/bridge) -"nfj" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 +/area/horizon/engineering/bluespace_drive) +"nfl" = ( +/obj/structure/cable{ + icon_state = "1-8" }, -/obj/structure/bed/stool/padded/red{ - dir = 8 +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 }, -/obj/structure/curtain/open/medical, -/obj/effect/floor_decal/corner/green/diagonal{ - dir = 8 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/starboard) +"nfn" = ( +/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/horizon/hangar/auxiliary) +"nfp" = ( +/obj/structure/lattice, +/obj/structure/platform/ledge, +/obj/structure/platform/ledge{ + dir = 4 + }, +/obj/structure/platform_deco/ledge{ + dir = 5 }, -/turf/simulated/floor/tiled/white, -/area/medical/ward) -"nfr" = ( /turf/simulated/open, -/area/horizon/stairwell/bridge) +/area/horizon/hallway/primary/deck_2/central) "nft" = ( /obj/effect/floor_decal/corner/blue{ dir = 10 @@ -91953,101 +91958,114 @@ }, /turf/simulated/floor/tiled/white, /area/horizon/security/autopsy_laboratory) -"nfC" = ( -/obj/structure/cable{ - icon_state = "4-8" +"nfv" = ( +/obj/structure/cable/green{ + icon_state = "0-2" }, -/obj/machinery/alarm/north, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 +/obj/structure/cable/green{ + icon_state = "12-0" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard/far) -"nfE" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/computer/general_air_control/large_tank_control/wall{ - input_tag = "n2o_in"; - name = "Nitrous Oxide Supply Monitor"; - output_tag = "n2o_out"; - pixel_x = 32; - sensors = list("n2o_sensor"="Tank") - }, -/obj/machinery/atmospherics/pipe/simple/visible/cyan, -/obj/structure/lattice/catwalk/indoor, -/turf/simulated/floor/plating, -/area/engineering/atmos/air) -"nfO" = ( -/obj/machinery/door/airlock/highsecurity{ - dir = 4; - name = "Secure Technical Storage"; - req_access = list(23) - }, -/obj/machinery/door/firedoor, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/full, -/area/engineering/storage/tech) -"nfQ" = ( +/obj/effect/floor_decal/industrial/warning/full, +/obj/effect/decal/cleanable/cobweb2, +/obj/structure/railing/mapped, /obj/structure/railing/mapped{ dir = 8 }, -/obj/effect/floor_decal/corner/dark_blue/full, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/dark, -/area/horizon/longbow) -"nfR" = ( -/obj/structure/table/standard, -/obj/machinery/computer/security/telescreen{ - name = "Access Monitor"; - network = list("Xeno_Bio"); - req_access = list(55) - }, -/obj/effect/floor_decal/corner/mauve{ - dir = 10 - }, -/obj/structure/net_dispenser{ - pixel_y = -32 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology) -"nge" = ( -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/random/loot{ - pixel_x = -10; - pixel_y = -11 - }, -/obj/random/dirt_75, +/obj/structure/disposalpipe/up, /turf/simulated/floor/plating, -/area/maintenance/wing/port/far) -"ngg" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 9 +/area/horizon/maintenance/deck_1/wing/starboard) +"nfw" = ( +/obj/structure/platform, +/turf/simulated/floor/tiled/dark, +/area/horizon/maintenance/deck_2/wing/port/far) +"nfB" = ( +/obj/machinery/power/emitter{ + dir = 8 }, -/turf/simulated/floor/wood, -/area/crew_quarters/heads/hop/xo) -"ngh" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden{ +/obj/machinery/alarm/west, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/rnd/xenoarch/storage) +"nfF" = ( +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 8; + icon_state = "shutter0"; + id = "LCKDshutters"; + name = "Medical Lockdown Shutters"; + opacity = 0 + }, +/obj/effect/map_effect/window_spawner/full/reinforced/polarized/firedoor{ + id = "psych" + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/medical/psych) +"nfJ" = ( +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/effect/floor_decal/corner/yellow{ + dir = 5 + }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/turf/simulated/floor/tiled, +/area/horizon/engineering/hallway/fore) +"nfL" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/effect/map_effect/marker/airlock{ - master_tag = "airlock_horizon_bunker"; - name = "airlock_horizon_bunker"; - frequency = 1109; - req_one_access = list(19) +/obj/machinery/power/sensor{ + name = "Powernet Sensor - Deck 3 Command Subgrid"; + name_tag = "Deck 3 Command Subgrid" }, +/obj/structure/cable/green, /turf/simulated/floor, -/area/turret_protected/ai_upload_foyer) +/area/horizon/maintenance/substation/command) +"nfV" = ( +/obj/machinery/portable_atmospherics/canister/empty, +/obj/effect/floor_decal/industrial/outline/grey, +/turf/simulated/floor, +/area/horizon/maintenance/deck_3/aft/starboard) +"nfW" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/random/junk, +/obj/machinery/light/small/emergency{ + dir = 4 + }, +/obj/random/contraband, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/hangar/starboard) +"nfZ" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 10 + }, +/obj/machinery/alarm/south, +/turf/simulated/floor/tiled, +/area/horizon/engineering/hallway/fore) +"nga" = ( +/obj/machinery/atmospherics/pipe/manifold4w/visible, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/dark, +/area/horizon/rnd/xenobiology/xenoflora) +"ngf" = ( +/obj/machinery/light, +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/atmos/propulsion/starboard) "ngi" = ( /obj/machinery/camera/network/prison{ c_tag = "Security - Brig Communal Port"; @@ -92058,57 +92076,39 @@ }, /turf/simulated/floor/tiled, /area/horizon/security/brig) -"ngm" = ( -/obj/structure/platform_deco{ - dir = 4 - }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/bridge) -"ngo" = ( -/obj/machinery/conveyor{ - id = "Robocompo" - }, -/obj/structure/platform{ - dir = 4 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/operations/lower/machinist) -"ngr" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 9 - }, -/obj/structure/platform_deco{ - dir = 1 - }, -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled, -/area/bridge) -"ngs" = ( +"ngj" = ( +/obj/effect/floor_decal/industrial/hatch/red, +/turf/simulated/floor/reinforced/airless, +/area/horizon/engineering/reactor/indra/mainchamber) +"ngl" = ( /obj/structure/cable{ - icon_state = "4-8" + icon_state = "1-2" }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/effect/floor_decal/corner/dark_green{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/hangar/auxiliary) -"ngw" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/railing/mapped{ - dir = 8 +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/door/airlock/maintenance_hatch{ + dir = 1 }, /turf/simulated/floor/plating, -/area/engineering/engine_room) +/area/horizon/maintenance/deck_1/operations/starboard) +"ngp" = ( +/turf/simulated/wall, +/area/horizon/operations/lobby) +"ngx" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/operations/starboard/far) +"ngz" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/horizon/engineering/bluespace_drive) "ngA" = ( /obj/effect/floor_decal/carpet{ dir = 1 @@ -92121,38 +92121,31 @@ }, /turf/simulated/floor/holofloor/carpet, /area/horizon/holodeck/source_biesel) -"ngC" = ( -/obj/machinery/camera/network/reactor{ - c_tag = "Engineering - INDRA Room 2" - }, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/engine_room/rust) -"ngD" = ( -/obj/effect/floor_decal/spline/plain/corner{ - dir = 8 - }, -/obj/effect/floor_decal/corner/brown/full{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/operations/loading) +"ngB" = ( +/turf/simulated/wall/r_wall, +/area/horizon/ai/upload_foyer) "ngK" = ( /obj/effect/floor_decal/corner/red/full, /turf/simulated/floor/holofloor/tiled, /area/template_noop) -"ngN" = ( -/obj/effect/floor_decal/corner_wide/lime{ - dir = 9 - }, -/obj/structure/engineer_maintenance/pipe, -/obj/structure/bed/stool/chair{ +"ngM" = ( +/obj/structure/dispenser/oxygen, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/window/reinforced{ dir = 4 }, -/turf/simulated/floor/tiled/white, -/area/medical/reception) +/obj/machinery/door/window/westleft{ + name = "Oxygen Supplies Access"; + req_access = list(48) + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/operations/mining_main/refinery) +"ngO" = ( +/obj/structure/closet/firecloset, +/obj/effect/floor_decal/industrial/outline/firefighting_closet, +/obj/machinery/newscaster/east, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/storage/eva) "ngP" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 @@ -92174,35 +92167,12 @@ }, /turf/unsimulated/floor, /area/centcom/evac) -"ngR" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/machinery/alarm/east, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/structure/disposalpipe/trunk, -/obj/machinery/disposal/small/west, -/turf/simulated/floor/lino/diamond, -/area/horizon/library) "ngS" = ( /obj/effect/floor_decal/corner/red{ dir = 1 }, /turf/simulated/floor/holofloor/tiled, /area/horizon/holodeck/source_lasertag) -"ngX" = ( -/obj/effect/floor_decal/spline/plain/black{ - dir = 8 - }, -/obj/effect/floor_decal/corner/dark_green, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/horizon/crew_quarters/fitness/gym) "ngY" = ( /obj/effect/floor_decal/spline/fancy/wood, /obj/effect/decal/fake_object{ @@ -92214,22 +92184,28 @@ }, /turf/simulated/floor/holofloor/wood, /area/horizon/holodeck/source_sauna) -"nhc" = ( +"nha" = ( +/obj/machinery/light/small/emergency{ + dir = 8 + }, +/obj/structure/trash_pile, /obj/effect/floor_decal/industrial/warning{ dir = 5 }, /turf/simulated/floor/plating, -/area/maintenance/hangar/starboard) -"nhf" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 +/area/horizon/maintenance/deck_2/security_port) +"nhe" = ( +/obj/effect/floor_decal/corner_wide/yellow{ + dir = 6 }, -/obj/structure/stairs_lower{ - dir = 1; - pixel_y = 9 +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 }, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard/deck1) +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/horizon/engineering/hallway/interior) "nhh" = ( /obj/effect/floor_decal/carpet{ dir = 4 @@ -92242,95 +92218,74 @@ }, /turf/simulated/floor/holofloor/carpet, /area/horizon/holodeck/source_courtroom) -"nhi" = ( -/obj/effect/floor_decal/industrial/warning{ +"nhk" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden{ dir = 4 }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/item/hullbeacon/red, -/obj/machinery/camera/network/supply{ - c_tag = "Operations - Mining Shuttle Dock Port"; - dir = 1 +/obj/effect/map_effect/marker/airlock{ + master_tag = "airlock_horizon_bunker"; + name = "airlock_horizon_bunker"; + frequency = 1109; + req_one_access = list(19) }, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/airless, -/area/hangar/operations) -"nhl" = ( +/turf/simulated/floor, +/area/horizon/ai/upload_foyer) +"nho" = ( +/obj/machinery/firealarm/west, /obj/structure/closet/emcloset, -/obj/effect/floor_decal/corner/dark_green/full{ - dir = 1 - }, +/obj/effect/floor_decal/corner/dark_green/full, /obj/effect/floor_decal/industrial/outline/emergency_closet, /turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/central) -"nhp" = ( -/obj/effect/floor_decal/corner/dark_green/full{ +/area/horizon/hangar/auxiliary) +"nhF" = ( +/obj/machinery/door/blast/shutters/open{ + dir = 2; + id = "warehouse1"; + name = "Warehouse Shutter" + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/machinery/firealarm/east, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_two) -"nhw" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 9 - }, -/turf/simulated/floor/tiled/dark, -/area/storage/eva) -"nhx" = ( -/obj/structure/cable/green, -/obj/machinery/power/apc/south, -/obj/effect/floor_decal/corner/mauve{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/chemistry) -"nhA" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 4 - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 8 - }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 + dir = 4 }, -/turf/simulated/floor/wood, -/area/bridge/cciaroom) -"nhC" = ( -/obj/machinery/atmospherics/binary/pump/high_power{ - dir = 8; - name = "Intake to Cold Loop"; - target_pressure = 15000 +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/full, +/area/horizon/operations/warehouse) +"nhH" = ( +/obj/structure/cable/green{ + icon_state = "1-4" }, -/obj/effect/floor_decal/industrial/hatch_tiny/security, -/turf/simulated/floor/plating, -/area/engineering/engine_room) +/obj/effect/floor_decal/corner/dark_green{ + dir = 4 + }, +/obj/effect/floor_decal/spline/plain/corner/green{ + dir = 4 + }, +/obj/effect/floor_decal/spline/plain/corner/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/spline/plain/corner/red, +/turf/simulated/floor/tiled, +/area/horizon/service/hydroponics/lower) "nhL" = ( /obj/structure/shuttle_part/mercenary/small{ icon_state = "1,10" }, /turf/unsimulated/floor/plating, /area/shuttle/syndicate_elite) -"nhN" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/structure/bed/stool/chair/padded/beige, -/turf/simulated/floor/wood, -/area/bridge) "nhR" = ( /obj/effect/floor_decal/industrial/warning, /obj/effect/map_effect/map_helper/ruler_tiles_3, /turf/simulated/floor/reinforced/airless, -/area/template_noop) +/area/horizon/exterior) "nhU" = ( /obj/effect/shuttle_landmark/horizon/exterior/deck_1/fore, /turf/template_noop, @@ -92353,22 +92308,16 @@ }, /turf/unsimulated/floor/rubber_carpet, /area/centcom/control) -"nia" = ( -/obj/effect/floor_decal/corner/mauve/full, -/turf/simulated/floor/tiled/white, -/area/rnd/conference) -"nib" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/visible/green{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 8 - }, -/obj/structure/grille, -/obj/structure/window/shuttle/scc_space_ship, +"nhZ" = ( +/turf/simulated/floor/tiled/dark, +/area/horizon/command/bridge/aibunker) +"nid" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/alarm/north, +/obj/structure/closet/crate/bin, +/obj/random/loot, /turf/simulated/floor/plating, -/area/engineering/atmos/propulsion) +/area/horizon/maintenance/deck_1/main/port) "nie" = ( /obj/machinery/atmospherics/pipe/simple/visible/purple{ dir = 4 @@ -92379,53 +92328,61 @@ }, /turf/space/dynamic, /area/horizon/exterior) -"nif" = ( -/turf/simulated/wall/shuttle/scc_space_ship/cardinal, -/area/medical/smoking) -"nig" = ( -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 4 - }, +"nik" = ( +/obj/structure/table/stone/marble, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ - icon_state = "4-8" + d1 = 1; + d2 = 2; + icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/simple/visible/supply{ - dir = 8 +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/blast/shutters{ + dir = 2; + id = "bar_shutter"; + name = "Bar Shutter" }, -/obj/structure/lattice/catwalk/indoor, -/turf/simulated/floor/plating, -/area/engineering/atmos/air) -"nij" = ( -/obj/structure/kitchenspike, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/freezer{ - name = "cooled tiles"; - temperature = 253.15 +/turf/simulated/floor/tiled/dark, +/area/horizon/service/bar) +"nil" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/window/westright{ + name = "Hydroponics Desk"; + req_access = list(35) }, -/area/horizon/kitchen/freezer) -"nim" = ( -/obj/machinery/light/small/emergency{ +/obj/machinery/door/blast/shutters{ + dir = 4; + id = "shutters_deck2_hydroponicsdesk"; + name = "Hydroponics Desk Shutter" + }, +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/reagent_dispensers/watertank, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/floor_decal/industrial/warning{ - dir = 10 - }, -/turf/simulated/floor/plating, -/area/maintenance/security_port) -"niq" = ( -/obj/structure/table/standard, -/obj/item/storage/toolbox/mechanical{ - pixel_y = 13 - }, -/obj/structure/sign/poster{ - pixel_y = 32 - }, -/obj/item/storage/box/fancy/donut, /turf/simulated/floor/tiled/dark/full, -/area/operations/lower/machinist/surgicalbay) +/area/horizon/service/hydroponics) +"nin" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/horizon/engineering/break_room) +"nir" = ( +/obj/effect/floor_decal/spline/plain/corner{ + dir = 4 + }, +/obj/effect/floor_decal/spline/fancy{ + dir = 6 + }, +/obj/effect/floor_decal/corner_wide/white{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/hallway/primary/deck_2/central) "nis" = ( /obj/effect/decal/fake_object/light_source/invisible{ light_color = "#C46518"; @@ -92437,14 +92394,6 @@ icon_state = "beachcorner" }, /area/centcom/shared_dream) -"niw" = ( -/obj/structure/closet, -/obj/random/loot, -/turf/simulated/floor/plating, -/area/maintenance/operations) -"nix" = ( -/turf/simulated/wall/shuttle/scc_space_ship/cardinal, -/area/bridge/selfdestruct) "niA" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/bed/stool/chair, @@ -92456,41 +92405,56 @@ dir = 1 }, /area/antag/raider) -"niB" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 +"niH" = ( +/obj/structure/window/reinforced{ + dir = 8 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/operations/storage) +/obj/machinery/portable_atmospherics/hydroponics/soil, +/turf/simulated/floor/grass/no_edge, +/area/horizon/rnd/xenobiology/xenoflora) "niJ" = ( /obj/effect/decal/rolling_fog, /obj/machinery/door/window/holowindoor, /turf/simulated/floor/holofloor/reinforced, /area/horizon/holodeck/source_biesel) -"niN" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/portable_atmospherics/canister/boron, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/engine_room/rust) +"niO" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan, +/turf/simulated/wall/shuttle/scc_space_ship/cardinal, +/area/horizon/engineering/atmos/turbine) +"niR" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark, +/area/horizon/maintenance/deck_2/wing/starboard/nacelle) +"niS" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black, +/obj/machinery/meter, +/turf/simulated/floor/plating, +/area/horizon/engineering/atmos/air) "niV" = ( /obj/effect/shuttle_landmark/escape_pod/out/pod3, /turf/space/transit/east, /area/template_noop) -"niX" = ( -/obj/structure/cable/green{ - icon_state = "4-8" +"niY" = ( +/obj/structure/bed/stool/chair/shuttle{ + dir = 8 }, +/obj/machinery/light, +/turf/simulated/floor/shuttle/dark_blue, +/area/horizon/shuttle/escape_pod/pod4) +"nja" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/purple{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/atmos) +"njf" = ( +/obj/structure/trash_pile, /obj/effect/floor_decal/industrial/warning{ - dir = 1 + dir = 9 }, -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/bluespace_drive) +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/wing/port/far) "njg" = ( /obj/structure/grille, /obj/machinery/door/firedoor, @@ -92501,65 +92465,54 @@ /obj/structure/window/shuttle/scc_space_ship/cardinal, /turf/simulated/floor/plating, /area/shuttle/merchant) -"njq" = ( -/obj/effect/floor_decal/corner/white/diagonal, -/obj/structure/table/standard, -/obj/structure/roller_rack/two, -/turf/simulated/floor/tiled, -/area/medical/paramedic) -"njz" = ( -/obj/structure/table/reinforced/wood, -/obj/machinery/light{ - dir = 1 - }, -/obj/random/pottedplant_small{ - pixel_x = 5; - pixel_y = -1 - }, -/turf/simulated/floor/carpet, -/area/crew_quarters/heads/hop/xo) -"njB" = ( -/obj/structure/bed/stool/chair/office/dark{ +"nji" = ( +/obj/structure/bed/stool/chair/shuttle{ dir = 4 }, +/obj/machinery/light, +/turf/simulated/floor/shuttle/dark_blue, +/area/horizon/shuttle/escape_pod/pod1) +"njj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/bed/stool/chair/padded/black, /turf/simulated/floor/tiled, -/area/operations/storage) -"njD" = ( -/obj/structure/cable/green{ - icon_state = "2-8" +/area/horizon/maintenance/deck_1/wing/starboard/far) +"njo" = ( +/obj/structure/cable{ + icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 +/obj/effect/floor_decal/corner/dark_green{ + dir = 5 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 +/turf/simulated/floor/tiled, +/area/horizon/hangar/intrepid) +"njs" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 }, -/obj/effect/floor_decal/spline/plain, -/turf/simulated/floor/carpet/rubber, -/area/engineering/engine_monitoring) -"njH" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/atmospherics/binary/passive_gate{ - dir = 1; - name = "Oxygen to Thrusters" - }, -/turf/simulated/floor/plating, -/area/engineering/atmos/air) -"njN" = ( -/obj/effect/floor_decal/sign/gtr, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/firealarm/north, +/turf/simulated/floor/wood, +/area/horizon/command/bridge/minibar) +"njJ" = ( /obj/structure/cable/green{ icon_state = "1-2" }, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/sign/icu, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/airlock/maintenance{ + dir = 1; + name = "Aft Research Hallway Maintenance"; + req_one_access = list(12,47) }, -/turf/simulated/floor/tiled/white, -/area/medical/icu) +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/rnd/hallway) +"njK" = ( +/obj/structure/foamedmetal, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/starboard) "njP" = ( /obj/effect/floor_decal/spline/plain{ dir = 8 @@ -92569,175 +92522,101 @@ }, /turf/unsimulated/floor, /area/antag/mercenary) -"njT" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/structure/window/shuttle/scc_space_ship/cardinal, -/obj/machinery/door/blast/shutters/open{ - dir = 4; - id = "kitchen_window_shutters"; - name = "Viewing Shutter" +"njR" = ( +/obj/machinery/atmospherics/pipe/simple/visible/universal{ + dir = 4 }, +/obj/machinery/meter, /turf/simulated/floor/plating, -/area/horizon/kitchen/freezer) -"njW" = ( -/turf/simulated/wall/r_wall, -/area/engineering/engine_monitoring/rust) -"nka" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 +/area/horizon/engineering/atmos/air) +"njU" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 10 }, -/obj/effect/floor_decal/corner/grey{ - dir = 8 +/obj/structure/railing/mapped, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_2/central) +"njV" = ( +/obj/effect/floor_decal/industrial/hatch/red, +/obj/machinery/portable_atmospherics/canister/boron, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/bluespace_drive) +"nkb" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 9 + }, +/obj/structure/table/standard, +/obj/item/modular_computer/laptop/preset/command/teleporter, +/turf/simulated/floor/tiled/dark, +/area/horizon/command/teleporter) +"nkd" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/visible/green{ + dir = 4 + }, +/obj/structure/lattice/catwalk/indoor, +/turf/simulated/floor/plating, +/area/horizon/engineering/atmos/air) +"nkl" = ( +/obj/effect/map_effect/door_helper/unres{ + dir = 4 + }, +/obj/machinery/door/airlock/glass_research{ + dir = 4; + id_tag = "xeno_entrance_int_a"; + name = "Xenobiology"; + req_access = list(55); + locked = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/firedoor{ + dir = 4 }, -/turf/simulated/floor/lino, -/area/horizon/bar) -"nkf" = ( /obj/structure/cable/green{ icon_state = "4-8" }, -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/obj/effect/floor_decal/spline/fancy/wood/corner{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/captain) -"nkh" = ( -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/structure/platform/ledge{ - dir = 8 - }, -/obj/structure/platform/ledge{ - dir = 4 - }, -/turf/simulated/open, -/area/horizon/hallway/deck_three/primary/central) -"nkm" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/table/reinforced/steel, -/obj/item/device/hand_labeler{ - pixel_y = 4 - }, -/obj/item/storage/box/samplebags{ - pixel_x = 2; - pixel_y = -4 - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenoarch_atrium) -"nkA" = ( -/obj/effect/floor_decal/corner/mauve{ - dir = 9 - }, -/obj/machinery/light/floor{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/rnd/hallway/secondary) -"nkE" = ( -/obj/effect/floor_decal/corner_wide/purple{ - dir = 5 - }, -/obj/effect/floor_decal/corner_wide/purple{ - dir = 8 - }, -/obj/machinery/light{ - dir = 1 - }, +/obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/white, -/area/rnd/xenoarch_atrium) -"nkG" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 6 - }, -/obj/structure/bed/stool/chair/padded/beige{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_two) -"nkJ" = ( -/obj/machinery/disposal/small/north{ - pixel_y = -17 - }, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/wood, -/area/journalistoffice) -"nkK" = ( -/obj/structure/table/standard, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled, -/area/operations/storage) -"nkL" = ( -/obj/machinery/atmospherics/binary/pump/high_power{ - dir = 4; - name = "Oxidizer to Burn Mix" - }, -/obj/effect/floor_decal/corner_wide/black{ - dir = 10 - }, -/obj/effect/floor_decal/industrial/warning, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/engineering/atmos/propulsion) -"nkR" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, +/area/horizon/rnd/xenobiology) +"nky" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, -/obj/structure/disposalpipe/junction{ - dir = 1 +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 10 - }, -/turf/simulated/floor/wood, -/area/horizon/bar) -"nkY" = ( -/obj/structure/table/standard, -/obj/item/device/radio{ - pixel_x = -6 - }, -/obj/random/dirt_75, -/turf/simulated/floor/tiled/dark, -/area/maintenance/wing/port/far) -"nkZ" = ( -/obj/structure/lattice/catwalk/indoor, -/obj/machinery/light{ +/turf/simulated/floor/tiled/dark/full, +/area/horizon/operations/secure_ammunition_storage) +"nkB" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 }, -/turf/simulated/floor/plating, -/area/hangar/intrepid) +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/gravity_gen) +"nkQ" = ( +/obj/machinery/alarm/north, +/obj/structure/table/rack, +/obj/item/clothing/ears/earmuffs, +/obj/item/clothing/ears/earmuffs, +/obj/effect/floor_decal/corner/dark_blue{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark, +/area/horizon/weapons/longbow) +"nkV" = ( +/obj/structure/ship_weapon_dummy, +/turf/template_noop, +/area/horizon/weapons/grauwolf) "nle" = ( /obj/structure/window/reinforced/crescent{ dir = 4 @@ -92746,20 +92625,43 @@ /obj/effect/floor_decal/sign/a, /turf/unsimulated/floor, /area/centcom/holding) -"nls" = ( -/obj/structure/cable{ - icon_state = "1-2" +"nlf" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 9 }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/corner_wide/yellow{ +/turf/simulated/floor/tiled/dark, +/area/horizon/storage/eva) +"nlj" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/gen_treatment) +"nlk" = ( +/obj/structure/railing/mapped, +/obj/effect/floor_decal/spline/plain/grey{ dir = 10 }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 +/obj/random/dirt_75, +/obj/structure/sign/poster{ + pixel_x = -32 }, -/turf/simulated/floor/tiled, -/area/hallway/engineering) +/turf/simulated/floor/reinforced, +/area/horizon/crew/fitness/gym) +"nlm" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/surgery) +"nlq" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow, +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/atmos) "nlt" = ( /obj/machinery/light/small{ dir = 1 @@ -92776,6 +92678,12 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/security/interrogation/monitoring) +"nlu" = ( +/obj/machinery/iv_drip, +/obj/effect/floor_decal/industrial/outline/red, +/obj/machinery/light, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/icu) "nlv" = ( /obj/item/gun/energy/pistol{ pixel_x = 2; @@ -92797,30 +92705,70 @@ /obj/structure/table/rack, /turf/unsimulated/floor/plating, /area/centcom/specops) -"nlA" = ( -/obj/effect/map_effect/window_spawner/full/reinforced/polarized/firedoor{ - id = "library" - }, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/bar/backroom) "nlC" = ( /obj/machinery/computer/borgupload, /turf/unsimulated/floor{ icon_state = "dark_preview" }, /area/centcom/control) -"nlH" = ( -/turf/simulated/wall, -/area/medical/emergency_storage) -"nlI" = ( -/turf/simulated/floor/wood, -/area/horizon/crew_quarters/lounge/bar) -"nlR" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 10 +"nlJ" = ( +/obj/structure/cable/green{ + icon_state = "4-8" }, -/turf/simulated/floor/tiled/dark, -/area/maintenance/wing/starboard/far) +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_mining{ + dir = 4; + name = "Warehouse"; + req_one_access = list(26,29,31,48,67,70) + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/effect/map_effect/door_helper/unres{ + dir = 8 + }, +/turf/simulated/floor/tiled/full, +/area/horizon/operations/warehouse) +"nlN" = ( +/obj/machinery/door/airlock/glass_command{ + dir = 4; + id_tag = ""; + name = "Bridge Officer Preparation"; + req_access = list(19) + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id = "bridge blast"; + name = "Bridge Blast Doors"; + opacity = 0 + }, +/turf/simulated/floor/tiled/full, +/area/horizon/command/bridge/supply) +"nlP" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/effect/floor_decal/industrial/warning/corner, +/obj/machinery/floodlight, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/shuttle/intrepid/port_storage) +"nlQ" = ( +/obj/structure/table/glass{ + table_reinf = "glass" + }, +/obj/item/folder, +/obj/effect/floor_decal/corner_wide/green{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/hallway/upper) "nlS" = ( /obj/effect/floor_decal/corner/red{ dir = 5 @@ -92834,27 +92782,54 @@ }, /turf/unsimulated/floor, /area/centcom/spawning) +"nlT" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/airlock/maintenance{ + dir = 4; + name = "Deck 2 Central Washroom Maintenance"; + req_access = list(12) + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled, +/area/horizon/crew/washroom/deck_2) "nlU" = ( /turf/simulated/wall/shuttle/unique/tcfl{ icon_state = "0,4" }, /area/shuttle/legion) +"nlX" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 10 + }, +/obj/machinery/firealarm/south, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_2/starboard) "nlY" = ( /obj/effect/floor_decal/spline/plain{ dir = 6 }, /turf/simulated/floor/exoplanet/grass, /area/centcom/shared_dream) -"nmb" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/railing/mapped{ +"nmc" = ( +/obj/machinery/vending/zora, +/obj/machinery/alarm/south, +/obj/machinery/light{ dir = 8 }, -/obj/structure/lattice/catwalk/indoor, -/turf/simulated/floor/plating, -/area/engineering/bluespace_drive) +/obj/effect/floor_decal/industrial/hatch/operations, +/turf/simulated/floor/tiled/full, +/area/horizon/operations/commissary) "nme" = ( /obj/machinery/light/small{ dir = 8 @@ -92873,157 +92848,124 @@ icon_state = "wood" }, /area/centcom/distress_prep) -"nmq" = ( -/obj/machinery/atm{ - dir = 1; - pixel_y = 28 +"nmC" = ( +/obj/structure/platform/ledge, +/obj/structure/platform/ledge{ + dir = 8 + }, +/obj/structure/platform_deco/ledge{ + dir = 9 + }, +/turf/simulated/open, +/area/horizon/hallway/primary/deck_3/central) +"nmG" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/horizon/hangar/operations) +"nmH" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/shuttle/intrepid/port_storage) +"nmL" = ( +/obj/effect/floor_decal/corner_wide/purple{ + dir = 10 + }, +/obj/effect/floor_decal/corner_wide/purple{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/platform{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/xenoarch/atrium) +"nmM" = ( +/obj/machinery/light, +/turf/simulated/floor/tiled, +/area/horizon/command/bridge/controlroom) +"nnc" = ( +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/obj/machinery/power/apc/low/north, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/hangar/port) +"nni" = ( +/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/dark_green{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/horizon/stairwell/starboard/deck_1) +"nnk" = ( +/obj/effect/floor_decal/spline/fancy{ + dir = 10 + }, +/obj/machinery/recharger{ + pixel_x = -6; + pixel_y = 8 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 }, /obj/structure/railing/mapped{ dir = 8 }, -/obj/effect/floor_decal/corner/brown/full{ - dir = 8 +/obj/item/device/radio/off{ + pixel_x = 12; + pixel_y = 15 }, -/turf/simulated/floor/tiled, -/area/operations/lobby) -"nms" = ( -/obj/machinery/door/airlock/glass_research{ - dir = 4; - id_tag = "xeno_dissection"; - name = "Dissection"; - req_access = list(55); - locked = 1 +/obj/item/device/radio/off{ + pixel_x = 12; + pixel_y = 7 }, -/obj/machinery/door/firedoor{ - dir = 4 - }, -/obj/machinery/door/blast/regular/open{ - dir = 2; - fail_secure = 1; - id = "hazardous_lockdown"; - name = "Hazardous Containment Lockdown" - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology/dissection) -"nmt" = ( -/obj/structure/table/reinforced/wood, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/item/paper_scanner{ - pixel_x = -1 - }, -/obj/random/pottedplant_small{ - pixel_x = -14; - pixel_y = 5 - }, -/turf/simulated/floor/carpet, -/area/crew_quarters/captain) -"nmy" = ( -/turf/simulated/wall, -/area/medical/equipment) -"nmz" = ( -/obj/machinery/bodyscanner, -/obj/effect/floor_decal/corner/beige{ - dir = 9 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/medical/gen_treatment) -"nmA" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/portable_atmospherics/powered/scrubber, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/lobby) -"nmF" = ( -/obj/effect/floor_decal/corner/dark_blue/full, -/obj/item/device/radio/intercom/west, -/obj/machinery/light/small, -/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 - }, -/obj/effect/map_effect/marker/airlock{ - frequency = 1004; - master_tag = "airlock_horizon_deck_1_fore_1"; - name = "airlock_horizon_deck_1_fore_1" - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/maintenance/hangar/starboard) -"nmQ" = ( -/obj/machinery/ringer/west{ - department = "Custodial"; - id = "ringers_custodial"; - name = "\improper Custodial Ringer Terminal"; - pixel_y = 5; - req_access = list(26) - }, -/obj/structure/coatrack{ - pixel_x = -9 - }, -/obj/effect/floor_decal/corner/purple{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/horizon/custodial) -"nmV" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/effect/floor_decal/corner_wide/yellow{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/engineering/bluespace_drive) -"nnb" = ( -/obj/effect/landmark/entry_point/starboard{ - name = "starboard, ballast aft" - }, -/turf/simulated/wall/shuttle/scc_space_ship/cardinal, -/area/maintenance/wing/starboard/far) -"nng" = ( -/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, -/obj/machinery/door/blast/shutters/open{ - id = "RnDShutters"; - dir = 4 - }, -/turf/simulated/floor/tiled/dark/full, -/area/rnd/lab) -"nnh" = ( -/obj/machinery/atmospherics/unary/vent_pump/siphon/on/atmos{ - dir = 4; - id_tag = "h_out" - }, -/turf/simulated/floor/reinforced/hydrogen, -/area/engineering/atmos) +/obj/structure/railing/mapped, +/obj/structure/table/reinforced/steel, +/turf/simulated/floor/carpet/rubber, +/area/horizon/command/bridge/controlroom) "nnq" = ( /obj/effect/floor_decal/corner/dark_blue{ dir = 9 @@ -93033,52 +92975,6 @@ }, /turf/simulated/floor/tiled, /area/horizon/security/investigations_hallway) -"nns" = ( -/obj/structure/bed/stool/chair/office/light{ - dir = 8 - }, -/obj/effect/floor_decal/corner/mauve{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/chemistry) -"nnu" = ( -/obj/structure/platform_stairs/full{ - dir = 4 - }, -/obj/structure/platform{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/bridge/cciaroom/lounge) -"nnv" = ( -/obj/structure/lattice, -/turf/simulated/open, -/area/hallway/medical/upper) -"nnw" = ( -/turf/simulated/wall, -/area/maintenance/operations) -"nnz" = ( -/obj/effect/floor_decal/corner/dark_green/full{ - dir = 4 - }, -/obj/structure/railing/mapped, -/obj/effect/floor_decal/spline/plain, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_two/fore) -"nnB" = ( -/obj/structure/lattice/catwalk/indoor/grate/dark, -/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) "nnG" = ( /obj/effect/floor_decal/spline/plain{ dir = 4 @@ -93087,9 +92983,35 @@ dir = 4 }, /area/antag/mercenary) -"nnI" = ( -/turf/simulated/floor/carpet/rubber, -/area/horizon/crew_quarters/fitness/gym) +"nnH" = ( +/obj/item/device/taperecorder{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/briefcase, +/obj/item/device/flash, +/obj/item/storage/secure/briefcase, +/obj/item/device/eftpos{ + eftpos_name = "Internal Affairs EFTPOS scanner" + }, +/obj/item/clothing/under/suit_jacket/really_black, +/obj/item/clothing/shoes/laceup, +/obj/item/clothing/shoes/laceup, +/obj/item/clipboard, +/obj/item/pen/multi, +/obj/structure/closet/lawcloset, +/obj/item/device/camera, +/obj/item/stamp/denied, +/obj/item/folder/blue, +/obj/item/folder/white, +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/obj/machinery/power/apc/west, +/obj/item/device/destTagger, +/obj/item/stack/packageWrap, +/turf/simulated/floor/carpet, +/area/horizon/repoffice/representative_one) "nnK" = ( /obj/structure/table/standard, /obj/item/storage/firstaid/regular{ @@ -93104,6 +93026,19 @@ icon_state = "white" }, /area/centcom/legion) +"nnQ" = ( +/obj/effect/floor_decal/corner/grey/full{ + dir = 4 + }, +/obj/structure/engineer_maintenance/electric, +/obj/structure/engineer_maintenance/pipe{ + dir = 4 + }, +/obj/structure/closet/walllocker/medical/firstaid{ + pixel_y = -32 + }, +/turf/simulated/floor/lino, +/area/horizon/service/bar) "nnV" = ( /obj/machinery/atmospherics/pipe/simple/heat_exchanging{ dir = 5 @@ -93111,80 +93046,79 @@ /obj/structure/lattice, /turf/space/dynamic, /area/horizon/exterior) -"noa" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 +"nog" = ( +/obj/random/pottedplant, +/obj/effect/floor_decal/corner_wide/lime{ + dir = 10 }, -/obj/machinery/camera/network/command{ - c_tag = "Bridge - Venator Sensor Array" +/turf/simulated/floor/tiled/white, +/area/horizon/medical/reception) +"nok" = ( +/obj/structure/railing/mapped, +/obj/effect/floor_decal/corner/black{ + dir = 10 }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/dark/full/airless, -/area/bridge/controlroom) -"nod" = ( -/obj/structure/railing/mapped{ +/obj/effect/floor_decal/industrial/outline/emergency_closet, +/obj/structure/closet/emcloset, +/turf/simulated/floor/tiled/dark, +/area/horizon/hangar/auxiliary) +"noq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 8 }, -/obj/structure/railing/mapped, -/obj/machinery/mech_recharger, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/plating, -/area/operations/lower/machinist) -"non" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - icon_state = "1-2" +/obj/effect/floor_decal/corner/mauve/diagonal, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/horizon/custodial) -"not" = ( -/obj/effect/floor_decal/corner/dark_green/diagonal, -/turf/simulated/floor/tiled, -/area/horizon/hydroponics) -"nou" = ( -/obj/structure/railing/mapped{ - dir = 1 +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/lab) +"nos" = ( +/obj/machinery/door/window/holowindoor{ + req_access = list(55) + }, +/obj/machinery/door/window/holowindoor{ + dir = 1; + req_access = list(55) + }, +/obj/machinery/door/blast/regular/open{ + dir = 8; + fail_secure = 1; + id = "xenobio_e"; + name = "Cell Containment Blast Door" + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/rnd/xenobiology) +"nox" = ( +/obj/structure/table/rack, +/obj/effect/floor_decal/corner/lime/full{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/platform{ + dir = 8 }, /obj/structure/railing/mapped{ dir = 4 }, -/obj/machinery/light, -/turf/simulated/open, -/area/horizon/hydroponics) -"noz" = ( -/obj/structure/window/shuttle/scc_space_ship, -/obj/structure/grille, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard/deck1) -"noB" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 13 +/turf/simulated/floor/tiled/white{ + name = "cooled white floor"; + temperature = 278.15 }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/machinery/firealarm/east, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology/dissection) -"noC" = ( +/area/horizon/medical/morgue) +"noE" = ( /obj/structure/cable/green{ - icon_state = "1-2" + icon_state = "1-4" }, -/obj/effect/floor_decal/corner/yellow{ - dir = 9 +/obj/structure/cable/green{ + icon_state = "4-8" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/railing/mapped, /turf/simulated/floor/tiled, -/area/engineering/lobby) +/area/horizon/engineering/hallway/interior) "noF" = ( /turf/unsimulated/floor{ icon_state = "wood" @@ -93236,17 +93170,6 @@ }, /turf/simulated/floor/tiled/white, /area/centcom/shared_dream) -"noL" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/operations/lobby) "noN" = ( /obj/machinery/power/apc/north, /obj/structure/closet/secure_closet/investigator, @@ -93256,27 +93179,30 @@ /obj/effect/floor_decal/industrial/outline/security, /turf/simulated/floor/lino, /area/horizon/security/investigators_office) -"noQ" = ( -/obj/structure/bed/roller, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 +"noO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/aux{ + dir = 9 }, -/obj/effect/floor_decal/industrial/outline/medical, -/turf/simulated/floor/tiled/white, -/area/medical/gen_treatment) +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/command/bridge/aibunker) +"noP" = ( +/obj/structure/cable/green, +/obj/machinery/power/apc/low/south, +/obj/machinery/power/sensor{ + name = "Powernet Sensor - Deck 2 Research Subgrid"; + name_tag = "Deck 2 Research Subgrid" + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/substation/research) "noV" = ( /obj/structure/bed/stool/padded/beige{ dir = 8 }, /turf/unsimulated/floor/wood, /area/centcom/bar) -"noX" = ( -/obj/effect/map_effect/window_spawner/full/borosilicate/reinforced/firedoor, -/obj/machinery/door/blast/shutters/open{ - id = "exploratory_chem_shutters" - }, -/turf/simulated/floor/tiled/dark/full, -/area/rnd/chemistry) "noY" = ( /obj/structure/table/reinforced, /obj/machinery/door/firedoor, @@ -93285,33 +93211,11 @@ /obj/item/clothing/glasses/safety/goggles, /turf/simulated/floor/tiled/dark/full, /area/horizon/security/firing_range) -"noZ" = ( -/obj/item/modular_computer/console/preset/civilian{ - dir = 8; - pixel_x = 5 - }, -/obj/machinery/embedded_controller/radio/simple_docking_controller/escape_pod{ - frequency = 1380; - id_tag = "escape_pod_2"; - pixel_x = -9; - pixel_y = 25; - tag_door = "escape_pod_2_hatch" - }, -/turf/simulated/floor/shuttle/dark_blue, -/area/shuttle/escape_pod/pod2) -"npa" = ( -/obj/effect/floor_decal/corner_wide/black{ - dir = 10 - }, -/obj/effect/floor_decal/industrial/warning, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/engineering/atmos/propulsion/starboard) +"npf" = ( +/obj/structure/closet/crate, +/obj/random/loot, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/wing/starboard/far) "npg" = ( /obj/machinery/bodyscanner{ dir = 8 @@ -93321,65 +93225,92 @@ icon_state = "dark_preview" }, /area/centcom/holding) -"npi" = ( -/obj/structure/window/reinforced{ - dir = 8 +"npj" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 10 }, -/obj/structure/window/reinforced, -/obj/random/dirt_75, -/turf/simulated/floor/carpet/rubber, -/area/maintenance/wing/port/far) -"npm" = ( -/obj/random/dirt_75, -/turf/simulated/floor, -/area/maintenance/security_port) -"npn" = ( -/obj/effect/floor_decal/spline/fancy/wood{ +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/meter{ + name = "Air Reserve" + }, +/obj/machinery/vending/wallmed1{ + pixel_x = -42; + pixel_y = 27; + req_access = null + }, +/obj/structure/fuel_port/phoron/scc{ + pixel_x = -26; + pixel_y = 27 + }, +/obj/effect/floor_decal/corner/dark_blue{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/warning{ dir = 1 }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 7 - }, -/obj/machinery/alarm/north{ - pixel_y = 0; - dir = 8; - pixel_x = -43 - }, -/turf/simulated/floor/wood, -/area/lawoffice/representative_two) -"nps" = ( +/turf/simulated/floor/tiled/dark/full, +/area/horizon/shuttle/canary) +"npm" = ( +/obj/machinery/power/apc/south, +/obj/structure/cable/green, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/research) +"npq" = ( /obj/structure/cable/green{ icon_state = "4-8" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ +/obj/effect/floor_decal/corner/dark_green{ + dir = 10 + }, +/obj/structure/disposalpipe/segment{ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/structure/disposalpipe/segment{ +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/obj/structure/lattice/catwalk/indoor/grate, -/turf/simulated/floor, -/area/horizon/hallway/deck_three/primary/central) +/obj/structure/railing/mapped, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_3/central) +"npt" = ( +/obj/machinery/smartfridge/drying_rack, +/obj/effect/floor_decal/industrial/outline/service, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/service/hydroponics/lower) "npw" = ( /obj/structure/flora/stump/log, /turf/simulated/floor/exoplanet/grass, /area/centcom/shared_dream) -"npz" = ( -/obj/structure/table/standard{ - no_cargo = 1 +"npy" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 }, -/obj/random/glowstick{ - pixel_x = 20; - pixel_y = 4 - }, -/obj/item/bikehorn/rubberducky{ - pixel_y = 5 +/obj/effect/floor_decal/industrial/warning{ + dir = 8 }, /turf/simulated/floor/plating, -/area/maintenance/research_port) +/area/horizon/engineering/storage/lower) +"npA" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/corner/brown/diagonal, +/obj/machinery/camera/network/supply{ + c_tag = "Operations - Warehouse Entrance"; + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/horizon/operations/loading) "npF" = ( /obj/machinery/papershredder, /obj/effect/floor_decal/corner/grey{ @@ -93393,12 +93324,75 @@ }, /turf/template_noop, /area/template_noop) +"npN" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner/mauve{ + dir = 5 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/horizon/rnd/hallway) +"npQ" = ( +/obj/structure/grille/diagonal{ + dir = 1 + }, +/obj/structure/window/shuttle/scc_space_ship, +/obj/effect/floor_decal/spline/plain{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/service/bar) +"npR" = ( +/obj/effect/floor_decal/corner/dark_blue/diagonal, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/security/checkpoint) +"npU" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/table/reinforced/steel, +/obj/machinery/recharger, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/reactor/supermatter/monitoring) "npZ" = ( /obj/effect/overlay/palmtree_l, /turf/simulated/floor/beach/sand{ icon_state = "desert" }, /area/centcom/shared_dream) +"nqd" = ( +/turf/simulated/wall/r_wall, +/area/horizon/operations/office_aux) +"nqf" = ( +/obj/structure/platform/ledge, +/obj/structure/platform_deco/ledge{ + dir = 1 + }, +/turf/simulated/open, +/area/horizon/hallway/primary/deck_3/central) +"nqh" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/structure/tank_wall/oxygen{ + icon_state = "o2-7" + }, +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/horizon/engineering/atmos/air) "nqi" = ( /obj/structure/window/reinforced/holowindow{ dir = 4 @@ -93408,51 +93402,15 @@ }, /turf/simulated/floor/holofloor/tiled, /area/template_noop) -"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, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/random/junk, -/obj/machinery/atmospherics/pipe/simple/hidden/aux, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/maintenance/operations) -"nqq" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/structure/tank_wall/nitrogen{ - icon_state = "n4" - }, -/turf/simulated/floor/plating, -/area/engineering/atmos/air) +"nqk" = ( +/turf/simulated/wall/shuttle/scc_space_ship/cardinal, +/area/horizon/maintenance/deck_3/aft/starboard/far) +"nqn" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/random/dirt_75, +/turf/simulated/floor, +/area/horizon/maintenance/deck_2/wing/starboard/far) "nqw" = ( /obj/structure/table/rack{ pixel_y = -3 @@ -93488,166 +93446,76 @@ name = "Service Airlock" }, /area/centcom/legion/hangar5) -"nqA" = ( -/obj/effect/floor_decal/corner/grey{ - dir = 9 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/unsimulated/floor/dark, -/area/antag/actor) -"nqB" = ( -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/structure/railing/mapped{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"nqC" = ( -/obj/machinery/atmospherics/valve{ - dir = 4; - name = "Propellant Line to Heat Exchangers" - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/dark, -/area/engineering/atmos/propulsion) -"nqD" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 10 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/engine_room/rust) -"nqH" = ( -/obj/machinery/alarm/west, -/turf/simulated/floor/tiled/white, -/area/medical/ors) -"nqI" = ( -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/machinery/alarm/north, -/turf/simulated/floor/plating, -/area/maintenance/security_port) -"nqJ" = ( -/obj/machinery/vending/encryption{ - pixel_y = 29 - }, -/turf/simulated/floor/carpet, -/area/crew_quarters/heads/hop/xo) +"nqF" = ( +/turf/simulated/wall/r_wall, +/area/horizon/operations/machinist) "nqK" = ( /obj/structure/table/wood, /obj/random/plushie, /turf/simulated/floor/wood, /area/merchant_station) -"nqM" = ( +"nqN" = ( +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/xenobiology) +"nqO" = ( +/obj/structure/bed/stool/chair/padded/beige{ + dir = 1 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/turf/simulated/floor/carpet, +/area/horizon/command/heads/captain) +"nrf" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/random/dirt_75, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/starboard/nacelle) +"nri" = ( +/obj/effect/floor_decal/industrial/hatch/red, /obj/effect/floor_decal/industrial/warning{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/maintenance/engineering) -"nqX" = ( -/obj/structure/railing/mapped, -/obj/machinery/alarm/east{ - req_one_access = list(24,11,48) - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard) -"nrc" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ +/obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 }, -/obj/structure/bed/stool/chair/sofa/pew/left{ - dir = 8 - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 9 - }, -/turf/simulated/floor/wood, -/area/chapel/main) -"nre" = ( -/obj/effect/decal/cleanable/liquid_fuel, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/carpet/rubber, -/area/maintenance/engineering/auxillary) -"nrj" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 6 - }, -/obj/machinery/firealarm/east, -/obj/machinery/light, -/obj/machinery/computer/ship/navigation{ +/turf/simulated/floor/tiled/dark/full, +/area/horizon/operations/secure_ammunition_storage) +"nrr" = ( +/obj/effect/floor_decal/industrial/warning{ dir = 1 }, -/turf/simulated/floor/wood, -/area/crew_quarters/lounge) -"nrq" = ( -/obj/machinery/atmospherics/pipe/simple/visible/black, -/obj/machinery/atmospherics/binary/pump{ - dir = 8; - name = "Carbon dioxide to Connector" +/obj/effect/map_effect/window_spawner/full/borosilicate/reinforced, +/obj/machinery/door/blast/regular/open{ + id = "r_ust_core_blast"; + name = "INDRA Reactor Blast Doors" }, -/obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled/dark/full, -/area/engineering/atmos) +/area/horizon/engineering/reactor/indra/mainchamber) "nrt" = ( /obj/effect/map_effect/window_spawner/full/reinforced/indestructible, /turf/unsimulated/floor/plating, /area/tdome/tdomeadmin) -"nru" = ( -/turf/simulated/wall/shuttle/scc_space_ship/cardinal, -/area/turret_protected/ai_upload) -"nrx" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +"nrw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/corner/dark_blue{ + dir = 9 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 +/obj/machinery/light{ + dir = 8 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/rnd/hallway) +/turf/simulated/floor/tiled/dark, +/area/horizon/security/checkpoint2) "nrB" = ( /obj/effect/floor_decal/spline/plain{ dir = 10 }, /turf/simulated/floor/exoplanet/barren/raskara, /area/centcom/shared_dream) -"nrC" = ( -/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{ - req_one_access = list(65,47,74,74) - }, -/turf/simulated/floor/plating, -/area/shuttle/quark/cargo_hold) "nrE" = ( /turf/simulated/floor/holofloor/tiled/dark, /area/horizon/holodeck/source_boxingcourt) @@ -93657,104 +93525,76 @@ }, /turf/unsimulated/floor/plating, /area/shuttle/syndicate_elite) -"nrK" = ( -/obj/structure/cable{ +"nrH" = ( +/turf/simulated/wall, +/area/horizon/security/checkpoint) +"nrI" = ( +/obj/machinery/alarm/east, +/turf/simulated/floor/reinforced, +/area/horizon/rnd/xenobiology/hazardous) +"nrR" = ( +/obj/machinery/atmospherics/unary/outlet_injector{ + dir = 4; + frequency = 1439; + id = "cooling_in"; + name = "Reactor Coolant Injector"; + pixel_y = 1; + power_rating = 30000; + use_power = 1; + volume_rate = 700 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/reinforced/reactor, +/area/horizon/engineering/reactor/supermatter/mainchamber) +"nsi" = ( +/obj/structure/bed/handrail{ + dir = 4 + }, +/obj/effect/map_effect/marker/airlock/shuttle{ + cycle_to_external_air = 1; + master_tag = "airlock_shuttle_intrepid"; + name = "airlock_shuttle_intrepid"; + req_one_access = null; + shuttle_tag = "Intrepid" + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/shuttle/intrepid/main_compartment) +"nsj" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ icon_state = "4-8" }, -/obj/effect/floor_decal/corner/dark_green{ - dir = 5 +/obj/machinery/firealarm/south, +/turf/simulated/floor/tiled/dark, +/area/horizon/stairwell/bridge/deck_2) +"nsl" = ( +/obj/structure/table/steel, +/obj/item/device/flashlight/lamp, +/turf/simulated/floor/reinforced, +/area/horizon/rnd/xenoarch/isolation_b) +"nsp" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 }, -/obj/machinery/alarm/north, -/turf/simulated/floor/tiled, -/area/hangar/auxiliary) -"nrO" = ( -/obj/structure/platform_stairs, -/turf/simulated/floor/tiled/dark/full, -/area/rnd/telesci) -"nrS" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor, -/area/maintenance/engineering_ladder) -"nrV" = ( -/obj/machinery/firealarm/west, -/obj/effect/floor_decal/spline/fancy/wood{ +/obj/effect/floor_decal/corner/dark_blue/diagonal, +/obj/structure/table/steel, +/obj/item/device/flashlight/lamp, +/obj/item/device/hand_labeler, +/obj/machinery/light{ dir = 8 }, -/turf/simulated/floor/wood, -/area/journalistoffice) -"nrW" = ( -/obj/machinery/light_switch{ - dir = 8; - pixel_x = -24; - pixel_y = -29 - }, -/turf/simulated/floor/tiled/freezer{ - name = "cooled tiles"; - temperature = 253.15 - }, -/area/horizon/kitchen/freezer) -"nrY" = ( -/obj/machinery/button/ignition{ - id = "port_prop_igni"; - pixel_y = 26; - name = "Combustion Chamber Ignition" - }, -/obj/machinery/atmospherics/pipe/simple/visible/purple{ - dir = 4 - }, -/obj/effect/floor_decal/corner_wide/black/full{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 9 - }, /turf/simulated/floor/tiled/dark, -/area/engineering/atmos/propulsion) -"nsa" = ( -/obj/machinery/door/airlock/glass_research{ - dir = 4; - name = "Storage and Incineration"; - req_access = list(55) - }, -/obj/effect/map_effect/door_helper/unres{ - dir = 4 - }, -/obj/machinery/door/firedoor{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology) -"nsb" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/machinery/power/terminal{ - dir = 1 - }, -/obj/structure/cable{ - icon_state = "0-8" - }, -/turf/simulated/floor/plating, -/area/engineering/bluespace_drive) -"nsg" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/hangar/operations) +/area/horizon/security/checkpoint) "nsq" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/floor_decal/industrial/outline/yellow, @@ -93767,40 +93607,26 @@ }, /turf/unsimulated/floor/plating, /area/centcom/legion/hangar5) -"nsr" = ( -/obj/structure/cable{ - icon_state = "1-2" +"nsw" = ( +/obj/machinery/camera/network/research{ + c_tag = "Research - Xenobiology Fore"; + dir = 1; + network = list("Research","Xeno_Bio") }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/lattice/catwalk/indoor/grate, -/turf/simulated/floor, -/area/horizon/hallway/deck_three/primary/central) -"nsu" = ( -/obj/structure/platform/ledge{ - dir = 1 - }, -/obj/structure/platform/ledge{ - dir = 4 - }, -/obj/structure/platform_deco/ledge{ +/obj/effect/floor_decal/corner/mauve{ dir = 10 }, -/turf/simulated/open, -/area/hallway/primary/central_one) -"nsx" = ( -/obj/machinery/atmospherics/pipe/manifold4w/visible, -/obj/machinery/meter, -/obj/structure/cable/green{ - icon_state = "4-8" +/obj/structure/table/standard, +/obj/machinery/firealarm/south, +/obj/machinery/vending/wallmed1{ + pixel_y = -32; + req_access = null }, -/turf/simulated/floor/tiled/dark, -/area/engineering/atmos) -"nsy" = ( -/turf/simulated/floor/tiled/ramp/bottom{ - dir = 8 +/obj/machinery/microscope/science{ + pixel_y = 8 }, -/area/maintenance/wing/starboard) +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/xenobiology) "nsz" = ( /obj/machinery/door/airlock/command{ dir = 1; @@ -93816,87 +93642,40 @@ /obj/structure/shuttle/engine/propulsion, /turf/simulated/floor/plating, /area/shuttle/mercenary) -"nsE" = ( -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/structure/disposalpipe/segment{ +"nsO" = ( +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 4; + icon_state = "shutter0"; + id = "LCKDshutters"; + name = "MedBay Lockdown Shutters"; + opacity = 0 + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/full, +/area/horizon/medical/reception) +"nsP" = ( +/obj/effect/floor_decal/corner_wide/purple{ + dir = 10 + }, +/obj/effect/floor_decal/corner_wide/purple{ dir = 4 }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"nsH" = ( -/turf/simulated/wall, -/area/crew_quarters/lounge/secondary) -"nsI" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 1 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/starboard) -"nsL" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/effect/floor_decal/corner/brown, -/turf/simulated/floor/tiled, -/area/operations/mail_room) -"nsM" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 9 - }, -/turf/simulated/floor/wood, -/area/bridge/upperdeck) -"nsN" = ( -/obj/effect/landmark/entry_point/starboard{ - name = "starboard, engineering spare storage" - }, -/turf/simulated/wall/shuttle/scc_space_ship/cardinal, -/area/engineering/atmos/propulsion/starboard) -"nsR" = ( -/obj/machinery/portable_atmospherics/canister/empty/air, -/obj/effect/floor_decal/industrial/outline/grey, -/turf/simulated/floor/tiled/dark, -/area/horizon/maintenance/deck_three/aft/starboard) -"nsS" = ( -/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/dark, -/area/rnd/xenoarch_storage) -"nsT" = ( -/obj/structure/table/stone/marble, -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/shutters{ - dir = 8; - id = "shutters_deck2_kitchendesk"; - name = "Kitchen Desk Shutter" +/obj/structure/cable/green{ + icon_state = "1-2" }, -/turf/simulated/floor/tiled/dark, -/area/horizon/kitchen) -"nsV" = ( -/obj/effect/floor_decal/corner/dark_green/full{ - dir = 8 +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/xenoarch/atrium) +"nsY" = ( +/obj/machinery/smartfridge, +/obj/structure/platform/ledge{ + dir = 4 }, -/obj/machinery/lapvend, -/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/structure/platform/ledge, /turf/simulated/floor/tiled, -/area/storage/primary) +/area/horizon/rnd/xenobiology/xenoflora) "nta" = ( /obj/effect/decal/fake_object{ dir = 4; @@ -93916,27 +93695,21 @@ }, /turf/simulated/floor/holofloor, /area/horizon/holodeck/source_biesel) -"ntd" = ( -/obj/structure/platform, -/obj/structure/window/reinforced{ - dir = 1 +"ntb" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden, +/obj/effect/map_effect/marker/airlock{ + frequency = 3002; + master_tag = "airlock_horizon_deck_2_port_1"; + name = "airlock_horizon_deck_2_port_1" }, -/obj/structure/table/standard, -/obj/item/roller{ - pixel_y = 6 +/turf/simulated/floor, +/area/horizon/maintenance/deck_2/wing/starboard/far) +"ntk" = ( +/obj/structure/cable/green{ + icon_state = "4-8" }, -/obj/item/storage/box/sharps, -/obj/item/storage/box/sharps, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology/dissection) -"ntf" = ( -/obj/structure/tank_wall/nitrous_oxide{ - density = 0; - icon_state = "h6"; - opacity = 0 - }, -/turf/simulated/floor/reinforced/n20, -/area/engineering/atmos/air) +/turf/simulated/floor/plating, +/area/horizon/maintenance/substation/engineering/lower) "nto" = ( /obj/structure/lattice, /obj/machinery/atmospherics/pipe/simple/visible/red, @@ -93945,6 +93718,96 @@ }, /turf/space/dynamic, /area/horizon/exterior) +"ntp" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner/dark_green/full{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/turf/simulated/floor/tiled, +/area/horizon/stairwell/starboard/deck_1) +"ntq" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner/dark_blue/diagonal, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/ai/upload_foyer) +"nts" = ( +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/main/starboard) +"ntt" = ( +/obj/structure/window/borosilicate/reinforced/skrell{ + dir = 8 + }, +/obj/structure/window/borosilicate/reinforced/skrell, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/turf/simulated/floor/bluegrid{ + name = "cooled mainframe floor"; + temperature = 278 + }, +/area/horizon/ai/chamber) +"ntv" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/effect/floor_decal/corner_wide/yellow{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/horizon/engineering/bluespace_drive) +"ntw" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/horizon/engineering/locker_room) +"nty" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor, +/area/horizon/maintenance/deck_3/aft/holodeck) +"ntz" = ( +/obj/structure/table/steel, +/obj/item/towel/random{ + pixel_x = -2; + pixel_y = 3 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/horizon/crew/fitness/gym) "ntC" = ( /obj/effect/floor_decal/industrial/hatch/red, /obj/effect/floor_decal/industrial/warning/cee{ @@ -93957,27 +93820,83 @@ }, /turf/simulated/floor/reinforced/airless, /area/horizon/exterior) -"ntD" = ( -/obj/machinery/telecomms/server/presets/science, -/turf/simulated/floor/bluegrid, -/area/tcommsat/chamber) -"ntJ" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/black, -/turf/simulated/floor/tiled/dark, -/area/engineering/atmos/propulsion/starboard) -"nua" = ( -/obj/structure/cable{ - icon_state = "1-2" +"ntG" = ( +/obj/structure/bed/stool/chair{ + dir = 8 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/firedoor, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/machinery/door/airlock/maintenance_hatch{ +/obj/effect/floor_decal/spline/fancy/wood/cee{ dir = 1 }, +/obj/machinery/camera/network/supply{ + c_tag = "Operations - Machinist Surgical Bay"; + dir = 8 + }, +/turf/simulated/floor/wood, +/area/horizon/operations/machinist/surgicalbay) +"ntL" = ( +/obj/structure/table/standard, +/obj/item/device/firing_pin/test_range, +/obj/item/clothing/glasses/safety/goggles/science{ + pixel_y = 10 + }, +/obj/structure/reagent_dispensers/acid{ + pixel_x = 28 + }, +/obj/item/stack/material/steel/full, +/obj/item/stack/material/glass/full, +/obj/item/reagent_containers/glass/beaker/sulphuric{ + pixel_y = 3 + }, +/obj/structure/platform{ + dir = 1 + }, +/obj/structure/railing/mapped, +/obj/effect/floor_decal/corner/mauve/full{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/lab) +"ntM" = ( +/obj/machinery/conveyor_switch/oneway{ + id = "sorting"; + pixel_x = -13; + pixel_y = 22 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/horizon/operations/mail_room) +"ntU" = ( +/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/horizon/hangar/auxiliary) +"ntY" = ( +/obj/machinery/camera/network/engineering{ + c_tag = "Engineering - Atmos Locker Room"; + dir = 1 + }, +/obj/effect/floor_decal/industrial/outline/operations, +/obj/machinery/suit_cycler/engineering/prepared/atmos, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/atmos/storage) +"ntZ" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 5 + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, /turf/simulated/floor/plating, -/area/maintenance/wing/starboard/deck1) +/area/horizon/engineering/reactor/supermatter/mainchamber) "nug" = ( /obj/machinery/door/airlock/external{ dir = 1; @@ -93990,63 +93909,6 @@ /obj/effect/floor_decal/industrial/hatch/yellow, /turf/unsimulated/floor, /area/antag/mercenary) -"nuj" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/airlock/glass_mining{ - dir = 1; - name = "Mining Equipment"; - req_access = list(48) - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/dark/full, -/area/outpost/mining_main/eva) -"num" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/warning, -/obj/machinery/door/blast/shutters/open{ - dir = 2; - id = "shutters_deck2_portstairwellsec"; - name = "Security Shutter" - }, -/obj/structure/sign/crush{ - pixel_x = 32; - pixel_y = 8 - }, -/obj/machinery/door/blast/regular/open{ - dir = 4; - id = "hangarlockdown"; - name = "Hangar Lockdown" - }, -/turf/simulated/floor/tiled/full, -/area/rnd/eva) -"nuo" = ( -/obj/structure/cable/orange{ - icon_state = "1-4" - }, -/obj/effect/floor_decal/industrial/hatch/red, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/bluespace_drive) -"nup" = ( -/obj/effect/floor_decal/corner/dark_blue/full{ - dir = 1 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/structure/table/steel, -/obj/item/paper_bin, -/obj/item/pen, -/obj/item/device/radio/intercom/east, -/turf/simulated/floor/tiled/dark, -/area/hangar/control) "nur" = ( /obj/structure/table/steel, /obj/item/gun/launcher/crossbow, @@ -94069,27 +93931,6 @@ }, /turf/simulated/floor/tiled, /area/horizon/security/brig) -"nuu" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/airlock/maintenance{ - dir = 4; - name = "Deck 2 Central Washroom Maintenance"; - req_access = list(12) - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled, -/area/horizon/crew_quarters/washroom/central) "nuv" = ( /obj/effect/floor_decal/industrial/warning{ dir = 1 @@ -94106,56 +93947,81 @@ }, /turf/unsimulated/floor/monotile, /area/antag/raider) -"nuz" = ( -/obj/structure/table/standard, -/obj/effect/floor_decal/corner_wide/orange{ - dir = 6 - }, -/obj/item/device/quikpay{ - destinationact = "Medical"; - pixel_y = 7; - pixel_x = -5 - }, -/obj/machinery/button/remote/blast_door{ - dir = 10; - id = "CHE2shutters"; - name = "Window Shutter Control"; - pixel_x = 6; - pixel_y = 9; - req_access = list(33) - }, -/obj/machinery/button/remote/blast_door{ - dir = 10; - id = "CHE3shutters"; - name = "Desk Shutter Control"; - pixel_x = 6; - pixel_y = -1; - req_access = list(33) - }, -/turf/simulated/floor/tiled/white, -/area/medical/pharmacy) -"nuA" = ( -/obj/machinery/atmospherics/pipe/simple/visible/green{ +"nux" = ( +/obj/structure/extinguisher_cabinet/east, +/obj/effect/floor_decal/corner/pink/diagonal, +/obj/random/dirt_75, +/obj/item/material/stool/chair/folding, +/obj/item/material/folding_table, +/turf/simulated/floor/tiled/dark, +/area/horizon/maintenance/deck_2/wing/starboard/nacelle) +"nuK" = ( +/obj/effect/floor_decal/corner/dark_green/full{ dir = 4 }, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"nuC" = ( -/turf/simulated/floor/plating, -/area/engineering/rust_office) -"nuJ" = ( -/obj/machinery/hologram/holopad/long_range, -/turf/simulated/floor/carpet, -/area/crew_quarters/captain) -"nuL" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ +/obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 }, -/turf/simulated/floor/carpet/rubber, -/area/rnd/lab) +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/firealarm/south, +/obj/item/device/radio/intercom/east, +/turf/simulated/floor/tiled, +/area/horizon/stairwell/starboard/deck_2) +"nuN" = ( +/obj/machinery/camera/network/mining{ + c_tag = "Mining - Production Room"; + dir = 1 + }, +/obj/effect/floor_decal/corner/brown/full, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/machinery/embedded_controller/radio/simple_docking_controller{ + dir = 1; + frequency = 1380; + id_tag = "cargo_shuttle_dock"; + name = "cargo shuttle docking controller"; + pixel_x = -7; + pixel_y = -22; + req_one_access = list(13,31); + tag_door = "cargo_shuttle_dock_airlock" + }, +/obj/structure/railing/mapped{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/horizon/operations/loading) +"nuP" = ( +/obj/machinery/suit_cycler/science/prepared, +/obj/item/tank/jetpack/carbondioxide, +/obj/item/tank/oxygen, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/rnd/telesci) +"nuQ" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/corner/dark_blue{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/horizon/hangar/intrepid) "nuR" = ( /turf/simulated/floor/holofloor/carpet/rubber, /area/horizon/holodeck/source_gym) +"nuS" = ( +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/storage/secure) "nvc" = ( /obj/structure/shuttle_part/ert{ icon_state = "1,4"; @@ -94171,43 +94037,23 @@ name = "overgrowth" }, /area/horizon/holodeck/source_moghes) -"nvg" = ( -/obj/structure/bed/stool/chair/office/light{ +"nvp" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/table/rack, +/obj/machinery/light/small{ dir = 8 }, -/obj/effect/floor_decal/corner/mauve{ - dir = 9 +/turf/unsimulated/floor/linoleum, +/area/antag/actor) +"nvr" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 }, -/turf/simulated/floor/tiled/white, -/area/rnd/chemistry) -"nvn" = ( -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/machinery/atmospherics/unary/vent_pump/high_volume, -/obj/machinery/door/blast/shutters/open{ - dir = 2; - id = "intrepid_bay_outer"; - name = "Intrepid Shutter" +/obj/structure/bed/handrail{ + pixel_y = 2 }, -/obj/effect/map_effect/marker/airlock/shuttle{ - cycle_to_external_air = 1; - master_tag = "airlock_shuttle_intrepid"; - name = "airlock_shuttle_intrepid"; - req_one_access = null; - shuttle_tag = "Intrepid" - }, -/obj/effect/map_effect/marker_helper/airlock/exterior, -/obj/machinery/access_button{ - dir = 4; - pixel_x = -22; - pixel_y = -3 - }, -/obj/machinery/airlock_sensor/airlock_exterior{ - dir = 4; - pixel_x = -21; - pixel_y = 7 - }, -/turf/simulated/floor/plating, -/area/shuttle/intrepid/main_compartment) +/turf/simulated/floor/reinforced, +/area/horizon/shuttle/quark/cargo_hold) "nvs" = ( /obj/effect/floor_decal/spline/fancy/wood, /obj/structure/railing/mapped{ @@ -94215,41 +94061,91 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/holodeck/source_biesel) -"nvz" = ( -/obj/machinery/alarm/east, -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/effect/floor_decal/spline/plain, -/obj/machinery/camera/network/service{ - c_tag = "Dinner - Kitchen 1"; +"nvu" = ( +/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/horizon/hangar/auxiliary) +"nvx" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/industrial/warning{ dir = 8 }, -/turf/simulated/floor/tiled/white, -/area/horizon/kitchen) -"nvG" = ( -/obj/effect/floor_decal/corner/white/diagonal, -/obj/structure/cable/green{ - icon_state = "0-2" - }, -/obj/machinery/power/apc/low/west, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/bluespace_drive) +"nvy" = ( +/obj/effect/floor_decal/corner/dark_green{ dir = 6 }, +/obj/machinery/atmospherics/unary/vent_pump/on, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/medical/paramedic) -"nvI" = ( -/obj/machinery/alarm/south, -/obj/effect/floor_decal/industrial/warning/corner{ dir = 1 }, -/obj/structure/cable/green{ - icon_state = "1-4" +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_2/starboard) +"nvA" = ( +/obj/machinery/light/small/emergency{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + icon_state = "pipe-c" }, /obj/structure/lattice/catwalk/indoor/grate/dark, /turf/simulated/floor/plating, -/area/maintenance/security_port) +/area/horizon/maintenance/deck_2/service/starboard) +"nvC" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/horizon/hangar/intrepid) +"nvE" = ( +/obj/machinery/atmospherics/pipe/simple/visible/red{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/atmos) +"nvF" = ( +/obj/machinery/door/airlock/glass_research{ + dir = 4; + name = "Storage and Incineration"; + req_access = list(55) + }, +/obj/effect/map_effect/door_helper/unres{ + dir = 4 + }, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/horizon/rnd/xenobiology) "nvJ" = ( /obj/effect/floor_decal/corner/white/diagonal, /obj/structure/toilet{ @@ -94270,61 +94166,41 @@ }, /turf/unsimulated/floor, /area/centcom/spawning) -"nvN" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, +"nvK" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden, /obj/structure/cable/green{ - icon_state = "2-4" + icon_state = "2-8" }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology/hazardous) -"nvQ" = ( -/obj/structure/bed/stool/chair/office/light, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology) -"nvU" = ( -/obj/structure/table/standard, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/machinery/requests_console/north{ - department = "Medical Bay"; - departmentType = 1 - }, -/obj/item/modular_computer/laptop/preset/medical, -/obj/item/modular_computer/laptop/preset/medical{ - pixel_y = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/reception) -"nvV" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/airlock/maintenance{ - dir = 1; - name = "Maintenance Passthrough"; - req_one_access = list(12,47) - }, -/turf/simulated/floor/plating, -/area/rnd/xenoarch_atrium) -"nvZ" = ( -/obj/machinery/atmospherics/pipe/manifold/visible{ +/turf/simulated/floor/tiled, +/area/horizon/medical/gen_treatment) +"nvP" = ( +/obj/machinery/atmospherics/pipe/simple/visible/green{ dir = 4 }, -/obj/effect/map_effect/marker/airlock{ - frequency = 1003; - master_tag = "airlock_horizon_deck_1_aft_port_1"; - name = "airlock_horizon_deck_1_aft_port_1" +/obj/structure/grille, +/obj/machinery/door/firedoor, +/obj/structure/window/shuttle/scc_space_ship, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 }, /turf/simulated/floor/plating, -/area/maintenance/research_port) +/area/horizon/engineering/reactor/supermatter/airlock) +"nvW" = ( +/obj/effect/map_effect/window_spawner/full/reinforced/grille/firedoor, +/obj/structure/cable/green, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/service/custodial/disposals/deck_1) +"nvY" = ( +/obj/effect/floor_decal/industrial/hatch/red, +/obj/machinery/mass_driver{ + _wifi_id = "chapel_driver"; + id = "chapel_driver" + }, +/turf/simulated/floor/reinforced, +/area/horizon/service/chapel/office) +"nwj" = ( +/turf/simulated/wall, +/area/horizon/operations/break_room) "nwl" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/machinery/door/blast/regular{ @@ -94342,71 +94218,38 @@ icon_state = "dark_preview" }, /area/centcom/holding) -"nwo" = ( -/obj/machinery/porta_turret, -/obj/effect/floor_decal/industrial/warning/full, -/obj/machinery/camera/network/command{ - c_tag = "AI Core - Upload"; - dir = 1 +"nwn" = ( +/turf/simulated/floor/reinforced, +/area/horizon/rnd/xenoarch/isolation_a) +"nwr" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor, +/obj/structure/sign/staff_only{ + pixel_y = 32 }, -/turf/simulated/floor/tiled/dark, -/area/turret_protected/ai_upload_foyer) -"nwp" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/effect/floor_decal/corner/white{ - dir = 5 +/turf/simulated/floor/tiled/full, +/area/horizon/hallway/primary/deck_3/port) +"nws" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/horizon/hangar/auxiliary) +"nwC" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/structure/tank_wall/nitrogen{ + icon_state = "n7" + }, +/obj/machinery/atmospherics/pipe/simple/visible/green{ + dir = 4 }, -/turf/simulated/floor/tiled/dark, -/area/storage/eva) -"nww" = ( /turf/simulated/floor/plating, -/area/rnd/eva) -"nwy" = ( -/obj/effect/floor_decal/industrial/outline/security, -/obj/machinery/computer/shuttle_control/explore/terminal/intrepid{ - dir = 1 - }, -/obj/machinery/camera/network/intrepid{ - dir = 8; - c_tag = "Intrepid - Flight Deck" - }, -/turf/simulated/floor/tiled/dark/full, -/area/shuttle/intrepid/flight_deck) -"nwz" = ( -/obj/structure/table/glass{ - table_reinf = "glass" - }, -/obj/effect/floor_decal/corner_wide/paleblue{ - dir = 10 - }, -/obj/machinery/requests_console/south{ - announcementConsole = 1; - department = "Chief Medical Officer's Desk"; - departmentType = 5; - name = "Chief Medical Officer RC" - }, -/obj/machinery/light_switch{ - pixel_x = -14; - pixel_y = -19 - }, -/obj/machinery/button/switch/windowtint{ - id = "cmooffice"; - pixel_x = -7; - pixel_y = -19; - req_access = list(40) - }, -/obj/item/folder/white, -/obj/item/stamp/cmo, -/obj/random/pottedplant_small{ - pixel_x = 8; - pixel_y = 12 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/heads/cmo) -"nwA" = ( -/obj/effect/floor_decal/industrial/warning/corner, -/turf/simulated/floor/reinforced/airless, -/area/template_noop) +/area/horizon/engineering/atmos/air) "nwE" = ( /obj/machinery/porta_turret/cannon, /obj/machinery/light/colored/red{ @@ -94415,15 +94258,26 @@ /obj/effect/floor_decal/industrial/warning/full, /turf/simulated/floor/reinforced, /area/shuttle/hapt) -"nwI" = ( +"nwL" = ( +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, /obj/effect/floor_decal/industrial/warning{ - dir = 4 + dir = 1 }, -/obj/structure/tank_wall/nitrogen{ - icon_state = "n13" +/turf/simulated/floor/tiled, +/area/horizon/operations/mail_room) +"nwM" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 }, +/obj/random/dirt_75, /turf/simulated/floor/plating, -/area/engineering/atmos/air) +/area/horizon/maintenance/deck_2/wing/starboard/nacelle) "nwN" = ( /turf/simulated/floor/holofloor/grass{ dir = 8; @@ -94432,14 +94286,62 @@ name = "overgrowth" }, /area/horizon/holodeck/source_moghes) -"nwQ" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ +"nwW" = ( +/obj/effect/floor_decal/corner/grey/diagonal, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/structure/cable/green, +/obj/machinery/power/apc/east{ + is_critical = 1 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/service/kitchen) +"nwX" = ( +/obj/machinery/light{ dir = 8 }, -/obj/structure/table/reinforced/steel, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenoarch_atrium) +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 9 + }, +/obj/structure/coatrack{ + pixel_x = -10; + pixel_y = 24 + }, +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/obj/machinery/alarm/west, +/turf/simulated/floor/wood, +/area/horizon/crew/journalistoffice) +"nwZ" = ( +/obj/structure/cable, +/obj/machinery/power/terminal{ + dir = 8 + }, +/obj/machinery/camera/network/engineering{ + c_tag = "Engineering - Deck 1 - Security Substation"; + dir = 8 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/substation/security) +"nxb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/table/standard{ + no_cargo = 1 + }, +/obj/random/firstaid, +/turf/simulated/floor/tiled, +/area/horizon/maintenance/deck_1/wing/starboard/far) "nxd" = ( /obj/machinery/door/airlock/centcom{ name = "Bedroom"; @@ -94447,43 +94349,57 @@ }, /turf/unsimulated/floor/monotile, /area/antag/mercenary) -"nxf" = ( -/obj/structure/cable/green{ - icon_state = "4-8" +"nxi" = ( +/obj/random/pottedplant, +/obj/effect/floor_decal/corner/dark_green/full{ + dir = 8 }, -/obj/structure/disposalpipe/segment{ +/obj/machinery/alarm/north, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_3/central) +"nxk" = ( +/obj/machinery/door/airlock/glass_research{ + name = "Research and Development"; + req_access = list(7); dir = 4 }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/obj/effect/map_effect/door_helper/unres{ + dir = 8 + }, +/obj/machinery/door/blast/shutters/open{ + id = "RnDShutters"; + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/horizon/rnd/lab) +"nxv" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/horizon/maintenance/deck_2/wing/port/nacelle) +"nxx" = ( +/obj/structure/cable/green{ + icon_state = "1-4" + }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/obj/effect/floor_decal/corner_wide/green{ +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/corner/brown{ dir = 10 }, -/obj/structure/railing/mapped, -/turf/simulated/floor/tiled/white, -/area/hallway/medical/upper) -"nxj" = ( -/obj/structure/bed/handrail{ - dir = 8 - }, -/obj/effect/map_effect/marker/airlock/shuttle{ - cycle_to_external_air = 1; - master_tag = "airlock_shuttle_intrepid"; - name = "airlock_shuttle_intrepid"; - req_one_access = null; - shuttle_tag = "Intrepid" - }, -/obj/machinery/atmospherics/unary/vent_pump/high_volume, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 9 - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/shuttle/intrepid/main_compartment) +/turf/simulated/floor/tiled, +/area/horizon/operations/break_room) "nxB" = ( /obj/effect/floor_decal/corner/dark_blue{ dir = 5 @@ -94496,33 +94412,69 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/security/interrogation/monitoring) +"nxD" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/hidden/aux{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 6 + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/operations/starboard/amidships) +"nxE" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/structure/lattice/catwalk/indoor, +/turf/simulated/floor/plating, +/area/horizon/engineering/bluespace_drive) +"nxG" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/structure/table/rack, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/wing/port/far) +"nxM" = ( +/obj/effect/floor_decal/industrial/hatch_door/red{ + dir = 1 + }, +/obj/machinery/door/airlock/external, +/obj/effect/map_effect/marker/airlock/shuttle{ + cycle_to_external_air = 1; + master_tag = "airlock_shuttle_intrepid"; + name = "airlock_shuttle_intrepid"; + req_one_access = null; + shuttle_tag = "Intrepid" + }, +/obj/effect/map_effect/marker_helper/airlock/interior, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/shuttle/intrepid/main_compartment) "nxP" = ( /obj/effect/shuttle_landmark/horizon/exterior/deck_3/starboardfore, /turf/template_noop, /area/template_noop) -"nxS" = ( -/obj/structure/window/reinforced{ - dir = 4; - maxhealth = 140 - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 5 - }, -/obj/structure/bed/stool/bar/padded/brown, -/turf/simulated/floor/wood, -/area/bridge/upperdeck) +"nxT" = ( +/turf/simulated/wall/shuttle/scc_space_ship/cardinal, +/area/horizon/command/heads/rd) "nxW" = ( /turf/simulated/wall/shuttle/hapt/blue, /area/shuttle/hapt) -"nxX" = ( -/obj/effect/floor_decal/corner_wide/green{ - dir = 5 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/hallway/medical/upper) "nyc" = ( /obj/machinery/portable_atmospherics/canister/air/airlock, /obj/machinery/atmospherics/portables_connector{ @@ -94535,248 +94487,200 @@ /obj/effect/floor_decal/spline/fancy/wood/cee, /turf/simulated/floor/holofloor/grass, /area/horizon/holodeck/source_battlemonsters) -"nyn" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ +"nyg" = ( +/obj/structure/railing/mapped, +/obj/structure/railing/mapped{ dir = 8 }, +/obj/structure/platform/ledge{ + dir = 4 + }, +/obj/structure/platform/ledge{ + dir = 1 + }, +/obj/structure/platform_deco/ledge{ + dir = 10 + }, +/turf/simulated/open, +/area/horizon/hallway/primary/deck_3/central) +"nyh" = ( +/obj/machinery/mineral/stacking_machine{ + id = "horizon_stacking_1"; + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning/full, +/turf/simulated/floor/plating, +/area/horizon/operations/mining_main/refinery) +"nyl" = ( /obj/effect/floor_decal/corner/dark_green{ - dir = 6 + dir = 10 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet/south, /turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/starboard) -"nyp" = ( -/obj/structure/flora/ausbushes/sparsegrass, -/obj/structure/flora/ausbushes/brflowers, -/mob/living/simple_animal/cow, -/turf/simulated/floor/grass/no_edge, -/area/horizon/hydroponics/lower) -"nyu" = ( -/obj/effect/floor_decal/industrial/hatch_door/red, -/obj/machinery/door/airlock/external{ +/area/horizon/stairwell/starboard/deck_2) +"nyr" = ( +/obj/machinery/light/spot{ + dir = 1 + }, +/obj/machinery/floodlight, +/obj/effect/floor_decal/industrial/outline/grey, +/turf/simulated/floor/plating, +/area/horizon/hangar/auxiliary) +"nyt" = ( +/obj/structure/bed/stool/chair/shuttle{ dir = 8 }, -/obj/effect/map_effect/marker_helper/airlock/exterior, -/obj/machinery/access_button{ - pixel_y = -29; - pixel_x = -7; +/obj/effect/floor_decal/corner/purple/full{ dir = 8 }, -/obj/machinery/door/blast/shutters/open{ - dir = 8; - id = "intrepid_bay_outer"; - name = "Intrepid Shutter" - }, -/obj/effect/map_effect/marker/airlock{ - master_tag = "sccv_intrepid_starboard"; - name = "sccv_intrepid_starboard"; - req_one_access = null - }, -/turf/simulated/floor/tiled/dark/full, -/area/shuttle/intrepid/starboard_compartment) +/turf/simulated/floor/tiled/dark, +/area/horizon/shuttle/quark/cockpit) "nyv" = ( /obj/structure/table/reinforced/steel, /obj/random/tech_supply, /turf/unsimulated/floor/plating, /area/centcom/spawning) -"nyw" = ( -/obj/effect/map_effect/window_spawner/full/reinforced/polarized/grille/firedoor{ - id = "cap" - }, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "bridge blast"; - name = "Bridge Blast Doors"; - opacity = 0 - }, -/obj/structure/cable/green, -/turf/simulated/floor, -/area/crew_quarters/captain) "nyx" = ( /obj/structure/shuttle_part/ccia{ icon_state = "11,2" }, /turf/unsimulated/floor/plating, /area/shuttle/transport1) +"nyy" = ( +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/structure/railing/mapped, +/obj/structure/platform/ledge{ + dir = 1 + }, +/obj/structure/platform/ledge{ + dir = 8 + }, +/turf/simulated/open, +/area/horizon/hallway/primary/deck_2/central) "nyB" = ( /obj/structure/table/steel, /turf/simulated/floor/carpet/art, /area/shuttle/skipjack) -"nyF" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/random/dirt_75, -/turf/simulated/floor/plating, -/area/maintenance/wing/port/far) -"nyJ" = ( +"nyC" = ( /obj/structure/cable/green{ icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/effect/floor_decal/corner_wide/yellow{ - dir = 5 - }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 - }, -/obj/structure/noticeboard{ - pixel_y = 32 - }, -/obj/structure/engineer_maintenance/pipe{ - dir = 8 - }, -/obj/structure/engineer_maintenance/electric{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/engineering/lobby) -"nyL" = ( -/turf/unsimulated/wall/fakepdoor{ dir = 4 }, -/area/hangar/auxiliary) -"nyY" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ +/turf/simulated/floor/tiled, +/area/horizon/rnd/hallway) +"nyE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/horizon/operations/warehouse) +"nyK" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/turf/simulated/floor/tiled, +/area/horizon/operations/office_aux) +"nyQ" = ( +/obj/structure/tank_wall/hydrogen{ + icon_state = "h9" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible/red{ + dir = 4 + }, +/turf/simulated/floor/airless, +/area/horizon/engineering/atmos) +"nyT" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/effect/floor_decal/corner/dark_green/full{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/horizon/stairwell/starboard/deck_3) +"nyU" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/spline/fancy/wood/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/wood, +/area/horizon/command/heads/xo) +"nza" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, /obj/structure/cable/green{ icon_state = "4-8" }, -/obj/structure/lattice/catwalk/indoor/grate, -/turf/simulated/floor, -/area/horizon/hallway/deck_three/primary/central) -"nyZ" = ( -/obj/effect/floor_decal/spline/fancy/wood/cee{ - dir = 8 - }, -/obj/structure/bed/stool/chair/padded/brown{ +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/turf/simulated/floor/wood, -/area/operations/office) -"nzi" = ( -/obj/machinery/firealarm/east, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 6 - }, -/turf/simulated/floor/tiled/dark, -/area/horizon/grauwolf) -"nzj" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/structure/tank_wall/nitrous_oxide{ - icon_state = "n2o9" +/turf/simulated/floor/tiled, +/area/horizon/crew/fitness/changing) +"nzg" = ( +/obj/structure/cable/green{ + icon_state = "2-4" }, +/turf/simulated/wall/shuttle/scc_space_ship/cardinal, +/area/horizon/command/bridge/controlroom) +"nzq" = ( +/obj/structure/grille, +/obj/structure/window/shuttle/scc_space_ship, /turf/simulated/floor/plating, -/area/engineering/atmos/air) -"nzn" = ( -/obj/machinery/atmospherics/pipe/simple/visible/purple, -/obj/effect/floor_decal/corner/yellow{ - dir = 1 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/dark, -/area/engineering/engine_room/turbine) -"nzo" = ( -/obj/machinery/alarm/north{ - dir = 4; - pixel_y = 0; - pixel_x = 10 - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 6 - }, -/obj/structure/flora/ausbushes/brflowers, -/turf/simulated/floor/grass/no_edge, -/area/bridge) +/area/horizon/shuttle/escape_pod/pod3) "nzs" = ( /obj/structure/closet/secure_closet/personal, /turf/unsimulated/floor{ icon_state = "dark_preview" }, /area/centcom/ferry) -"nzt" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 6 - }, -/obj/machinery/button/remote/blast_door{ - dir = 9; - id = "conferencesafetyshutters"; - name = "Conference Room Shutters"; - pixel_x = -26; - pixel_y = 8; - req_access = list(19) - }, -/obj/machinery/light_switch{ - dir = 5; - pixel_x = -26 - }, -/turf/simulated/floor/carpet, -/area/bridge/meeting_room) "nzv" = ( /obj/structure/flora/tree/jungle, /turf/simulated/floor/exoplanet/grass, /area/centcom/shared_dream) -"nzC" = ( -/obj/item/material/shard{ - icon_state = "small" - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "1-2" +"nzx" = ( +/obj/structure/table/rack{ + dir = 8 }, +/obj/random/glowstick, +/obj/random/glowstick, +/obj/random/hardhat, +/obj/random/tool, +/obj/random/tool, +/obj/random/tech_supply, +/obj/random/tech_supply, /turf/simulated/floor/plating, -/area/maintenance/research_port) -"nzI" = ( -/obj/structure/railing/mapped, -/obj/structure/railing/mapped{ - dir = 1 - }, -/turf/simulated/floor/reinforced/airless, -/area/bridge/controlroom) -"nzK" = ( -/turf/simulated/wall/r_wall, -/area/crew_quarters/captain) -"nzP" = ( -/obj/machinery/portable_atmospherics/canister/empty, -/obj/effect/floor_decal/industrial/outline/grey, -/turf/simulated/floor, -/area/maintenance/security_port) -"nAa" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/machinery/light/small/emergency{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/wing/port) -"nAb" = ( -/obj/effect/floor_decal/industrial/outline/firefighting_closet, -/obj/structure/closet/firecloset, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/lobby) +/area/horizon/engineering/storage/lower) "nAf" = ( /obj/machinery/atmospherics/pipe/manifold/hidden{ dir = 4 @@ -94784,92 +94688,54 @@ /obj/structure/lattice/catwalk/indoor/grate/dark, /turf/simulated/floor/plating, /area/shuttle/skipjack) -"nAh" = ( -/obj/effect/floor_decal/corner/brown{ - dir = 10 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/operations/lobby) -"nAk" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/wood, -/area/crew_quarters/heads/hor) -"nAn" = ( -/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 - }, -/obj/structure/lattice/catwalk/indoor/grate, -/turf/simulated/floor/plating, -/area/hangar/intrepid) -"nAv" = ( -/obj/machinery/door/airlock/external, -/obj/effect/map_effect/marker_helper/airlock/interior, -/obj/effect/map_effect/marker/airlock/docking{ - landmark_tag = "nav_horizon_dock_deck_3_starboard_2"; - master_tag = "airlock_horizon_dock_deck_3_starboard_2"; - name = "airlock_horizon_dock_deck_3_starboard_2" - }, -/turf/simulated/floor/plating, -/area/horizon/hallway/deck_three/primary/starboard/docks) "nAw" = ( /obj/machinery/atmospherics/pipe/simple/heat_exchanging{ dir = 5 }, /turf/simulated/floor/reinforced/airless, /area/horizon/exterior) -"nAx" = ( -/obj/machinery/smartfridge/drying_rack, -/obj/effect/floor_decal/industrial/outline/service, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/hydroponics/lower) "nAz" = ( /turf/simulated/wall/shuttle/unique/tcfl{ icon_state = "5,0" }, /area/shuttle/legion) -"nAA" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/machinery/door/airlock/external, -/obj/machinery/access_button{ - dir = 1; - pixel_x = -28; - pixel_y = 12 - }, -/obj/effect/map_effect/marker/airlock{ - frequency = 1002; - master_tag = "airlock_horizon_deck_3_fore_starboard_1"; - name = "airlock_horizon_deck_3_fore_starboard_1" - }, -/obj/effect/map_effect/marker_helper/airlock/interior, -/turf/simulated/floor, -/area/maintenance/bridge) "nAJ" = ( /turf/simulated/floor/tiled, /area/horizon/security/equipment) -"nAK" = ( -/obj/structure/closet/crate, -/obj/item/stack/material/steel{ - max_amount = 25 +"nAN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/aux{ + dir = 9 }, -/obj/item/stack/rods/full, -/obj/item/stack/packageWrap, -/turf/simulated/floor/plating, -/area/engineering/rust_office) +/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/horizon/shuttle/quark/cargo_hold) +"nAO" = ( +/obj/structure/sign/securearea{ + pixel_y = 32 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/obj/machinery/light/small/emergency{ + dir = 8 + }, +/obj/machinery/camera/network/command{ + c_tag = "Bridge - CIC Foyer"; + dir = 4 + }, +/turf/simulated/floor, +/area/horizon/maintenance/deck_3/aft/starboard/far) "nAQ" = ( /obj/effect/floor_decal/corner/blue{ dir = 6 @@ -94889,49 +94755,73 @@ icon_state = "dark_preview" }, /area/centcom/control) -"nAS" = ( -/obj/structure/cable/green{ - icon_state = "4-8" +"nAR" = ( +/obj/machinery/power/breakerbox/activated{ + RCon_tag = "Xenoarchaeology Substation" }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/substation/xenoarchaeology) +"nBc" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 + dir = 9 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/wood, +/area/horizon/medical/psych) +"nBg" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/visible/purple{ dir = 4 }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard/deck1) -"nAT" = ( -/obj/machinery/door/airlock/engineering{ +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/atmos/turbine) +"nBi" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment{ dir = 4; - name = "Engineering Storage"; - req_one_access = list(11,24) + icon_state = "pipe-c" }, -/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/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/engineering/storage/lower) -"nAX" = ( -/obj/structure/tank_wall/hydrogen{ - icon_state = "h7" +/turf/simulated/floor/carpet/rubber, +/area/horizon/rnd/lab) +"nBj" = ( +/obj/machinery/door/blast/regular{ + id = "exteriorpropulsionstarboard" }, +/turf/simulated/floor/reinforced/airless, +/area/horizon/engineering/atmos/propulsion) +"nBr" = ( /obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/obj/random/junk, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/main/starboard) +"nBw" = ( +/obj/structure/railing/mapped{ dir = 4 }, -/turf/simulated/floor/airless, -/area/engineering/atmos) +/obj/item/modular_computer/console/preset/medical{ + dir = 8 + }, +/obj/effect/floor_decal/corner/dark_blue/full{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/command/bridge/aibunker) "nBy" = ( /obj/effect/floor_decal/corner/dark_blue{ dir = 9 @@ -94941,35 +94831,18 @@ }, /turf/simulated/floor/tiled, /area/horizon/security/hallway) -"nBA" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 +"nBz" = ( +/obj/structure/cable/green{ + icon_state = "1-2" }, -/obj/structure/railing/mapped{ - dir = 8 +/obj/structure/cable/green{ + icon_state = "1-8" }, -/obj/structure/railing/mapped, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/light/small{ - dir = 8 +/obj/effect/map_effect/window_spawner/full/reinforced/polarized/grille/firedoor{ + id = "hra" }, -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 8 - }, -/obj/effect/map_effect/marker_helper/airlock/exterior, -/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/airlock_sensor{ - dir = 4; - pixel_x = -25 - }, -/turf/simulated/floor/reinforced, -/area/shuttle/mining) +/turf/simulated/floor, +/area/horizon/command/bridge/cciaroom) "nBE" = ( /obj/structure/closet/secure_closet/guncabinet{ name = "CCIA Bodyguard Sidearm"; @@ -94982,72 +94855,80 @@ icon_state = "dark_preview" }, /area/centcom/control) -"nBK" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/machinery/light/small/emergency{ - dir = 1 +"nBM" = ( +/turf/simulated/wall, +/area/horizon/service/hydroponics) +"nBN" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 }, -/turf/simulated/floor/plating, -/area/maintenance/engineering) -"nBL" = ( -/obj/machinery/door/firedoor, -/obj/structure/sign/directions/all{ - dir = 4; - pixel_y = 32 +/obj/structure/bed/stool/padded/red{ + dir = 8 + }, +/obj/structure/curtain/open/medical, +/obj/effect/floor_decal/corner/green/diagonal{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/ward) +"nBQ" = ( +/obj/structure/cable/green{ + icon_state = "1-4" }, /obj/structure/cable/green{ - icon_state = "4-8" + icon_state = "2-4" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/door/airlock/glass{ - dir = 4 - }, -/turf/simulated/floor/tiled/full, -/area/horizon/hallway/deck_three/primary/starboard) -"nBO" = ( -/obj/effect/landmark/entry_point/fore{ - name = "fore, kitchen" - }, -/turf/simulated/wall/shuttle/scc_space_ship/cardinal, -/area/horizon/kitchen/freezer) -"nBP" = ( -/obj/machinery/atmospherics/pipe/simple/visible/black{ - dir = 6 - }, -/obj/effect/floor_decal/corner/yellow{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/engineering/engine_waste) +/obj/machinery/atmospherics/pipe/simple/hidden/fuel, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/shuttle/intrepid/port_compartment) "nBS" = ( /obj/structure/table/reinforced/steel, /turf/unsimulated/floor/rubber_carpet, /area/centcom/control) -"nBT" = ( -/obj/machinery/door/firedoor{ - req_one_access = list(24,11,67,73) - }, -/obj/effect/floor_decal/industrial/hatch_door/yellow{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/dark/full, -/area/shuttle/intrepid/main_compartment) "nBU" = ( /obj/effect/step_trigger/thrower/shuttle/south, /turf/template_noop, /area/template_noop) +"nBV" = ( +/obj/effect/floor_decal/corner/dark_blue/diagonal, +/obj/structure/table/steel, +/obj/machinery/button/remote/blast_door{ + dir = 9; + id = "shutters_hangardeskcpstarboard"; + name = "Starboard Security Checkpoint Access Shutters"; + pixel_x = -6; + pixel_y = -1; + req_access = list(63) + }, +/obj/machinery/button/remote/blast_door{ + dir = 9; + id = "shutters_hangardeskcpport"; + name = "Port Security Checkpoint Access Shutters"; + pixel_x = 5; + pixel_y = -1; + req_access = list(63) + }, +/obj/machinery/button/remote/blast_door{ + dir = 9; + id = "shutters_hangarseccpdesk"; + name = "Desk Shutter"; + pixel_x = -6; + pixel_y = 10; + req_access = list(63) + }, +/obj/machinery/button/remote/blast_door{ + dir = 9; + id = "shutters_hangarseccpexternal"; + name = "External Security Checkpoint Shutters"; + pixel_x = 5; + pixel_y = 10; + req_access = list(63) + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/security/checkpoint) "nBZ" = ( /obj/structure/table/standard, /obj/item/storage/firstaid/adv{ @@ -95078,166 +94959,249 @@ icon_state = "dark_preview" }, /area/centcom/holding) -"nCa" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 6 - }, -/obj/machinery/atmospherics/unary/heater{ - dir = 8 - }, -/obj/structure/railing/mapped{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/rnd/xenoarch_atrium) "nCd" = ( /obj/effect/floor_decal/corner/paleblue{ dir = 5 }, /turf/unsimulated/floor/freezer, /area/antag/mercenary) -"nCf" = ( -/obj/structure/table/wood, -/obj/item/toy/desk/newtoncradle{ - pixel_x = 3; - pixel_y = 10 +"nCe" = ( +/obj/effect/floor_decal/industrial/outline/service, +/obj/machinery/camera/network/service{ + c_tag = "Service - Library"; + dir = 1 }, -/obj/machinery/power/outlet, -/turf/simulated/floor/carpet/red, -/area/horizon/library) -"nCi" = ( -/obj/machinery/atmospherics/pipe/simple/visible/black{ - dir = 9 +/obj/machinery/vending/battlemonsters, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/service/library) +"nCg" = ( +/obj/machinery/gravity_generator/main/station, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/reinforced, +/area/horizon/engineering/gravity_gen) +"nCj" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance{ + dir = 4; + req_one_access = list(12, 35) }, -/turf/simulated/wall/shuttle/scc_space_ship/cardinal, -/area/engineering/atmos/propulsion/starboard) +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/door/blast/regular/open{ + id = "hangarlockdown"; + name = "Hangar Lockdown" + }, +/turf/simulated/floor/tiled/full, +/area/horizon/maintenance/deck_1/hangar/port) +"nCk" = ( +/obj/structure/foamedmetal, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/port) +"nCm" = ( +/obj/effect/floor_decal/spline/fancy, +/obj/effect/map_effect/window_spawner/full/reinforced, +/turf/simulated/floor/carpet/rubber, +/area/horizon/command/bridge/controlroom) +"nCp" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/firealarm/west, +/obj/effect/floor_decal/corner/dark_green/full{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/horizon/crew/chargebay) "nCs" = ( /obj/effect/landmark/distress_team_equipment, /turf/unsimulated/floor, /area/centcom/distress_prep) -"nCv" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, +"nCB" = ( +/obj/structure/railing/mapped, +/turf/simulated/floor/reinforced/airless, +/area/horizon/exterior) +"nCD" = ( /obj/effect/floor_decal/corner/dark_green{ - dir = 6 + dir = 10 }, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/central) -"nCA" = ( -/turf/simulated/wall/r_wall, -/area/rnd/xenobiology/foyer) -"nCC" = ( -/obj/machinery/atmospherics/pipe/simple/visible/black{ - dir = 5 +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor{ + dir = 4 }, -/turf/simulated/floor/plating, -/area/engineering/atmos/air) -"nCG" = ( -/turf/simulated/wall/shuttle/scc_space_ship/cardinal, -/area/hangar/auxiliary) -"nCH" = ( -/obj/effect/floor_decal/corner/lime/diagonal, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 +/turf/simulated/floor/tiled/full, +/area/horizon/engineering/hallway/fore) +"nCI" = ( +/obj/machinery/camera/network/service{ + c_tag = "Service - Chapel Storage"; + dir = 4 }, -/obj/machinery/light/small{ - dir = 1 +/obj/structure/closet/crate/coffin, +/obj/structure/closet/crate/coffin{ + pixel_y = 4 }, -/obj/structure/bed/handrail{ - dir = 8 - }, -/obj/structure/closet/walllocker/medical/secure{ - name = "O- Blood Locker"; - pixel_x = 32 - }, -/obj/item/reagent_containers/blood/OMinus, -/obj/item/reagent_containers/blood/OMinus, -/obj/item/reagent_containers/blood/OMinus, -/turf/simulated/floor/tiled/white, -/area/shuttle/intrepid/medical) +/turf/simulated/floor/tiled/dark, +/area/horizon/service/chapel/office) "nCL" = ( /obj/effect/floor_decal/spline/plain/cee, /obj/effect/landmark/skrell_srom, /obj/structure/flora/ausbushes/fullgrass, /turf/simulated/floor/exoplanet/grass/grove, /area/centcom/shared_dream) -"nCU" = ( +"nCO" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, /obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/atmospherics/portables_connector, +/turf/simulated/floor/plating, +/area/horizon/medical/cryo) +"nCR" = ( /obj/machinery/light{ - dir = 8 + dir = 1 }, -/obj/machinery/vending/cigarette, -/turf/simulated/floor/tiled/dark, -/area/horizon/hallway/deck_three/primary/port) -"nCV" = ( -/turf/simulated/floor/tiled, -/area/operations/storage) -"nDa" = ( -/obj/effect/floor_decal/corner_wide/yellow{ +/obj/effect/floor_decal/industrial/outline/red, +/obj/structure/table/rack, +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/item/warhead/longbow, +/obj/item/warhead/longbow, +/obj/item/warhead/longbow, +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/operations/secure_ammunition_storage) +"nDc" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/floor_decal/spline/fancy/wood{ dir = 9 }, -/obj/structure/cable{ - icon_state = "4-8" +/turf/simulated/floor/wood, +/area/horizon/crew/lounge) +"nDd" = ( +/obj/structure/shuttle_part/scc_space_ship{ + icon_state = "d2-1-f" }, -/obj/structure/disposalpipe/segment{ +/obj/effect/landmark/entry_point/fore{ + name = "fore, deck 2 port maintenance" + }, +/turf/simulated/wall, +/area/horizon/maintenance/deck_2/wing/starboard) +"nDg" = ( +/obj/structure/window/reinforced{ dir = 4 }, +/obj/structure/window/reinforced, +/obj/structure/lattice, +/turf/simulated/open, +/area/horizon/maintenance/deck_2/wing/port) +"nDh" = ( +/obj/machinery/door/airlock/glass{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/horizon/rnd/hallway/secondary) +"nDi" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/horizon/medical/morgue) +"nDn" = ( +/obj/machinery/light, +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 5 + }, +/obj/machinery/meter, +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/atmos/propulsion/starboard) +"nDp" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 10 + }, +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/obj/machinery/power/apc/south, +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/telesci) +"nDq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/camera/network/third_deck{ + c_tag = "Third Deck - Central Ring Elevator" + }, +/obj/effect/floor_decal/corner/dark_green{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_3/central) +"nDw" = ( +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/machinery/access_button{ + pixel_x = -25; + pixel_y = 20 + }, +/obj/machinery/airlock_sensor/airlock_interior{ + pixel_x = -25; + pixel_y = 27 + }, +/obj/effect/map_effect/marker_helper/airlock/interior, +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 4 + }, +/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/tiled/dark, +/area/horizon/shuttle/mining) +"nDx" = ( +/obj/effect/floor_decal/corner/black{ + dir = 5 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 +/obj/structure/disposalpipe/junction{ + dir = 4; + icon_state = "pipe-j2" }, /turf/simulated/floor/tiled, -/area/hallway/engineering) -"nDk" = ( -/obj/effect/floor_decal/corner/brown{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"nDl" = ( -/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, -/turf/simulated/floor/tiled/dark/full, -/area/rnd/xenobiology/xenoflora) -"nDm" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/sortjunction/flipped{ - name = "Engineering"; - sortType = "Engineering" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/effect/floor_decal/corner_wide/yellow{ - dir = 5 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/engineering/lobby) -"nDy" = ( -/obj/structure/reagent_dispensers/coolanttank, -/obj/machinery/firealarm/west, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/carpet/rubber, -/area/rnd/xenoarch_atrium) +/area/horizon/rnd/hallway) "nDA" = ( /obj/effect/decal/fake_object{ dir = 4; @@ -95280,15 +95244,48 @@ name = "shallow water" }, /area/horizon/holodeck/source_konyang) -"nDI" = ( -/turf/simulated/wall/shuttle/scc_space_ship/cardinal, -/area/hangar/intrepid) -"nDL" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 10 +"nDC" = ( +/obj/machinery/portable_atmospherics/hydroponics, +/obj/structure/window/reinforced{ + dir = 4 }, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard/deck1) +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark, +/area/horizon/rnd/xenobiology/xenoflora) +"nDE" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/corner/dark_green{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/horizon/stairwell/starboard/deck_2) +"nDN" = ( +/obj/structure/bed/stool/bar/padded/blue{ + dir = 8 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/horizon/command/bridge/minibar) +"nDQ" = ( +/obj/effect/floor_decal/corner_wide/green{ + dir = 6 + }, +/obj/structure/mirror{ + pixel_x = 27 + }, +/obj/structure/sink{ + dir = 4; + pixel_x = 13 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/ward) "nDR" = ( /obj/machinery/cryopod, /turf/simulated/floor/carpet/cyan, @@ -95297,6 +95294,28 @@ /obj/effect/step_trigger/thrower/shuttle/south, /turf/unsimulated/mineral/asteroid, /area/template_noop) +"nDW" = ( +/obj/effect/floor_decal/corner_wide/purple{ + dir = 9 + }, +/obj/effect/floor_decal/corner_wide/purple{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible/yellow, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/platform_deco{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/xenoarch/atrium) "nDX" = ( /obj/effect/floor_decal/corner/white/diagonal, /obj/effect/floor_decal/spline/plain{ @@ -95305,109 +95324,65 @@ /obj/structure/window/reinforced/holowindow, /turf/simulated/floor/holofloor/tiled, /area/template_noop) -"nEc" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/full, -/area/hallway/primary/aft) -"nEm" = ( -/turf/simulated/wall/shuttle/scc_space_ship/cardinal, -/area/horizon/custodial/disposals) -"nEn" = ( -/obj/effect/floor_decal/industrial/warning/cee{ - dir = 4 +"nEe" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 5 }, -/obj/structure/closet/toolcloset, -/turf/simulated/floor/tiled, -/area/maintenance/wing/starboard/far) -"nEp" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/security/vacantoffice) -"nEs" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_mining{ - dir = 1; - name = "Mail Sorting"; - req_one_access = list(26,31,67) - }, -/turf/simulated/floor/tiled/full, -/area/operations/mail_room) -"nEE" = ( -/obj/machinery/camera/network/command{ - c_tag = "Bridge - Atrium Port"; - dir = 4 - }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 9 - }, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/machinery/disposal/small/east, -/turf/simulated/floor/tiled/full, -/area/bridge/upperdeck) -"nEG" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 10 - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/machinery/r_n_d/destructive_analyzer, -/turf/simulated/floor/carpet/rubber, -/area/rnd/lab) -"nEI" = ( -/obj/effect/floor_decal/corner/dark_blue/full{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/bridge) -"nEP" = ( -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 4 - }, -/obj/machinery/light/floor{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology/xenoflora) -"nEU" = ( /obj/structure/cable/green{ icon_state = "1-2" }, -/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, -/area/operations/mail_room) -"nEZ" = ( -/obj/structure/disposalpipe/segment{ - icon_state = "pipe-c" +/area/horizon/hallway/primary/deck_3/central) +"nEj" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/corner/brown{ + dir = 9 }, -/obj/structure/cable/green{ - icon_state = "4-8" +/obj/structure/engineer_maintenance/pipe, +/obj/structure/engineer_maintenance/electric{ + dir = 8 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ +/turf/simulated/floor/tiled, +/area/horizon/operations/mail_room) +"nEo" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/storage/eva) +"nEB" = ( +/obj/effect/floor_decal/spline/fancy/wood/cee{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/lattice/catwalk/indoor/grate, -/turf/simulated/floor, -/area/horizon/hallway/deck_three/primary/starboard) -"nFd" = ( /obj/structure/bed/stool/chair/padded/brown{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/horizon/operations/office) +"nEO" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/simulated/floor/carpet, -/area/crew_quarters/heads/hop/xo) +/turf/simulated/floor/wood, +/area/horizon/service/dining_hall) "nFf" = ( /obj/effect/floor_decal/spline/fancy/wood/corner, /turf/simulated/floor/holofloor/lino, /area/horizon/holodeck/source_courtroom) +"nFg" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 5 + }, +/obj/structure/sign/directions/all{ + pixel_y = 28 + }, +/obj/structure/sign/directions/medical{ + pixel_y = 36 + }, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_3/port) "nFh" = ( /obj/structure/table/rack, /obj/effect/floor_decal/industrial/outline/yellow, @@ -95437,37 +95412,37 @@ }, /turf/unsimulated/floor, /area/centcom/legion/hangar5) -"nFk" = ( -/obj/machinery/conveyor{ - id = "Robocompo" +"nFj" = ( +/obj/machinery/alarm/south, +/obj/effect/floor_decal/industrial/outline_straight/yellow{ + dir = 8 }, -/obj/structure/platform{ +/obj/effect/floor_decal/corner/yellow{ + dir = 6 + }, +/obj/machinery/light/colored/blue{ dir = 4 }, -/obj/machinery/alarm/west, -/turf/simulated/floor/tiled, -/area/operations/lower/machinist) -"nFl" = ( -/obj/structure/table/rack, -/obj/random/loot, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/plating, -/area/maintenance/wing/port/far) -"nFr" = ( -/obj/effect/floor_decal/corner/paleblue/diagonal, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/heads/cmo) -"nFs" = ( -/obj/effect/floor_decal/industrial/warning{ +/obj/machinery/atmospherics/pipe/simple/hidden{ dir = 9 }, /turf/simulated/floor/tiled/dark, -/area/engineering/atmos/propulsion/starboard) +/area/horizon/service/hydroponics/lower) +"nFp" = ( +/obj/machinery/door/blast/shutters/open{ + dir = 2; + id = "seconddeckdocksaf"; + name = "Security Checkpoint Shutter" + }, +/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/security/checkpoint2) +"nFq" = ( +/obj/effect/floor_decal/corner/dark_green/diagonal, +/obj/effect/floor_decal/industrial/loading/yellow, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled, +/area/horizon/stairwell/port/deck_2) "nFt" = ( /obj/effect/floor_decal/corner/grey/diagonal{ dir = 4 @@ -95477,22 +95452,6 @@ }, /turf/unsimulated/floor, /area/centcom/spawning) -"nFw" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/trunk, -/obj/machinery/disposal/small/south{ - pixel_y = 16 - }, -/turf/simulated/floor/tiled, -/area/bridge) "nFx" = ( /obj/machinery/door/window/northleft{ base_state = "right"; @@ -95505,28 +95464,50 @@ icon_state = "dark_preview" }, /area/centcom/control) -"nFC" = ( -/obj/machinery/camera/network/third_deck{ - c_tag = "Third Deck - Crew Lounge Fore"; +"nFD" = ( +/obj/structure/table/steel, +/obj/item/storage/bag/inflatable, +/obj/item/storage/bag/inflatable, +/obj/item/storage/bag/inflatable, +/obj/effect/floor_decal/corner/dark_blue/full{ dir = 4 }, -/obj/effect/floor_decal/spline/fancy/wood{ +/obj/machinery/light, +/turf/simulated/floor/tiled/dark, +/area/horizon/storage/eva) +"nFG" = ( +/obj/structure/railing/mapped, +/obj/structure/lattice, +/obj/structure/platform/ledge{ + dir = 1 + }, +/obj/structure/platform/ledge, +/turf/simulated/open, +/area/horizon/hallway/primary/deck_3/central) +"nFI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/aux, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/main/port) +"nFK" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 }, -/turf/simulated/floor/wood, -/area/crew_quarters/lounge/secondary) -"nFE" = ( -/obj/machinery/door/firedoor, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/structure/curtain/open/medical, -/turf/simulated/floor/tiled/white, -/area/medical/ors) -"nFJ" = ( -/obj/effect/floor_decal/corner/dark_green/full{ +/turf/simulated/floor/tiled, +/area/horizon/engineering/hallway/fore) +"nFL" = ( +/obj/effect/floor_decal/corner/brown/full{ dir = 4 }, /turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/port) +/area/horizon/operations/mining_main/refinery) "nFM" = ( /obj/effect/floor_decal/corner/dark_blue{ dir = 5 @@ -95538,11 +95519,23 @@ }, /turf/simulated/floor/tiled, /area/horizon/security/hallway) -"nFP" = ( -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/machinery/alarm/north, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard/far) +"nFO" = ( +/obj/structure/shuttle_part/scc/mining{ + icon_state = "8,8"; + outside_part = 0; + pixel_x = 32 + }, +/turf/simulated/wall/shuttle/unique/scc/mining{ + icon_state = "7,8" + }, +/area/horizon/shuttle/mining) +"nFT" = ( +/obj/machinery/portable_atmospherics/hydroponics/soil, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/grass/no_edge, +/area/horizon/rnd/xenobiology/xenoflora) "nFU" = ( /obj/structure/reagent_dispensers/watertank, /obj/item/reagent_containers/glass/bucket, @@ -95562,13 +95555,6 @@ }, /turf/unsimulated/floor, /area/antag/mercenary) -"nFX" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 4 - }, -/obj/machinery/hologram/holopad, -/turf/simulated/floor/wood, -/area/lawoffice/consular_two) "nFY" = ( /obj/effect/floor_decal/industrial/warning{ dir = 4 @@ -95614,39 +95600,44 @@ }, /turf/unsimulated/floor, /area/antag/raider) -"nGh" = ( -/obj/structure/flora/ausbushes/ppflowers, -/obj/structure/flora/ausbushes/sunnybush, -/turf/simulated/floor/grass/no_edge, -/area/crew_quarters/lounge) -"nGn" = ( -/obj/structure/table/standard, -/obj/item/stack/material/glass/full{ - pixel_y = 3; - pixel_x = 7 +"nGj" = ( +/obj/machinery/power/apc/super/critical/west, +/obj/structure/cable{ + icon_state = "0-2" }, -/obj/item/stack/material/steel/full{ - pixel_y = 3; - pixel_x = -8 +/obj/structure/table/reinforced/steel, +/obj/machinery/button/remote/blast_door{ + dir = 1; + id = "r_ust_core_blast"; + name = "INDRA Reactor Core Blast Doors"; + pixel_x = -6; + pixel_y = 7 }, -/turf/simulated/floor/plating, -/area/engineering/drone_fabrication) -"nGo" = ( -/obj/machinery/light/floor{ - dir = 8 +/obj/machinery/button/remote/blast_door{ + dir = 1; + id = "r-ust_monitoring_blast"; + name = "INDRA Reactor Monitoring Blast Doors"; + pixel_x = 6; + pixel_y = 7 }, -/obj/structure/bed/handrail{ +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/reactor/indra/monitoring) +"nGp" = ( +/obj/structure/tank_wall/air{ + density = 0; + icon_state = "air11"; + opacity = 0 + }, +/obj/machinery/atmospherics/pipe/simple/visible{ dir = 4 }, -/obj/structure/closet/walllocker/emerglocker/west, -/obj/item/clothing/suit/space/emergency, -/obj/item/clothing/suit/space/emergency, -/obj/item/clothing/suit/space/emergency, -/obj/item/clothing/head/helmet/space/emergency, -/obj/item/clothing/head/helmet/space/emergency, -/obj/item/clothing/head/helmet/space/emergency, +/turf/simulated/floor/reinforced/airmix, +/area/horizon/engineering/atmos/air) +"nGs" = ( +/obj/machinery/suit_cycler/engineering/prepared, +/obj/effect/floor_decal/industrial/outline/operations, /turf/simulated/floor/tiled/dark/full, -/area/shuttle/intrepid/main_compartment) +/area/horizon/storage/eva) "nGB" = ( /obj/machinery/door/airlock/glass_security{ autoclose = 0; @@ -95669,12 +95660,72 @@ }, /turf/simulated/floor/tiled/full, /area/horizon/security/brig) -"nGF" = ( -/obj/effect/floor_decal/corner/brown{ +"nGC" = ( +/obj/structure/shuttle_part/scc/scout{ + icon_state = "3,11" + }, +/turf/simulated/floor/plating, +/area/horizon/shuttle/canary) +"nGD" = ( +/obj/effect/floor_decal/corner/brown/full, +/obj/machinery/disposal/small/east{ + pixel_x = -16 + }, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/machinery/firealarm/south, +/turf/simulated/floor/tiled, +/area/horizon/operations/office_aux) +"nGG" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/intrepid/port_compartment) +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/corner/purple{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/horizon/service/custodial) +"nGI" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/door/blast/shutters{ + dir = 4; + id = "engineering_storage"; + name = "Engineering Hard Storage" + }, +/turf/simulated/floor/tiled/full, +/area/horizon/engineering/storage_hard) +"nGN" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/alarm/east, +/obj/effect/decal/cleanable/dirt, +/obj/structure/trash_pile, +/turf/simulated/floor, +/area/horizon/maintenance/deck_3/aft/starboard/far) "nGV" = ( /obj/item/storage/box/zipties{ pixel_x = 6; @@ -95700,50 +95751,51 @@ /obj/structure/table/reinforced/steel, /turf/unsimulated/floor, /area/antag/mercenary) -"nGX" = ( +"nHe" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/airlock/hatch{ + dir = 1; + id_tag = "engine_electrical_maintenance"; + locked = 1; + name = "Supermatter Reactor SMES"; + req_one_access = list(11,24) + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/smes) +"nHl" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, /obj/effect/floor_decal/spline/fancy/wood{ - dir = 1 + dir = 6 }, /turf/simulated/floor/wood, -/area/crew_quarters/heads/hop/xo) -"nHc" = ( -/obj/machinery/alarm/north{ - dir = 4; - pixel_y = 3; - pixel_x = 8 +/area/horizon/service/chapel/main) +"nHo" = ( +/obj/structure/window/shuttle/unique/scc/scout{ + icon_state = "5,3" }, -/obj/machinery/cryopod, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/computer/cryopod/living_quarters{ - pixel_y = 32 +/obj/structure/window/shuttle/unique/scc/scout/over{ + icon_state = "5,3" }, -/turf/simulated/floor/tiled, -/area/medical/ward) -"nHw" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/shutters{ - dir = 8; - id = "shutters_deck2_smartheater"; - name = "SmartHeater Shutter" +/turf/simulated/floor/plating, +/area/horizon/shuttle/canary) +"nHx" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/alarm/north, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/security_port) +"nHy" = ( +/obj/effect/floor_decal/industrial/warning/cee{ + dir = 1 }, -/obj/machinery/smartfridge/foodheater, -/turf/simulated/floor/tiled/white, -/area/horizon/kitchen) -"nHz" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/item/material/shard, -/turf/simulated/floor, -/area/maintenance/security_port) -"nHA" = ( -/obj/structure/railing/mapped, -/obj/machinery/camera/network/research{ - c_tag = "Research - Research & Development Circuitry"; - pixel_y = 9; - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/lab) +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/port) "nHB" = ( /obj/structure/flora/grass/green, /turf/simulated/floor/exoplanet/snow, @@ -95762,13 +95814,34 @@ "nHE" = ( /turf/simulated/wall/shuttle/raider, /area/shuttle/skipjack) -"nHL" = ( -/obj/structure/railing/mapped, -/obj/effect/floor_decal/corner/black{ - dir = 10 +"nHH" = ( +/obj/structure/grille, +/obj/structure/window/shuttle/scc_space_ship, +/turf/simulated/floor/plating, +/area/horizon/shuttle/escape_pod/pod1) +"nHO" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 4 }, +/obj/machinery/meter, /turf/simulated/floor/tiled/dark, -/area/hangar/auxiliary) +/area/horizon/engineering/atmos/propulsion/starboard) +"nHP" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled, +/area/horizon/maintenance/deck_2/wing/starboard/nacelle) +"nHR" = ( +/obj/effect/floor_decal/corner_wide/yellow{ + dir = 5 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/horizon/engineering/hallway/aft) "nHU" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -95784,49 +95857,67 @@ }, /turf/simulated/floor/tiled, /area/horizon/security/investigations_hallway) +"nHV" = ( +/turf/simulated/wall/shuttle/scc_space_ship/cardinal, +/area/horizon/maintenance/deck_1/auxatmos) +"nHX" = ( +/obj/structure/disposalpipe/segment{ + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/corner_wide/green{ + dir = 6 + }, +/obj/effect/landmark/start{ + name = "Surgeon" + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/bed/stool/chair{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/hallway/upper) "nHZ" = ( /obj/effect/floor_decal/industrial/warning{ dir = 8 }, /obj/effect/map_effect/map_helper/ruler_tiles_3, /turf/simulated/floor/reinforced/airless, -/area/template_noop) -"nIa" = ( -/obj/structure/table/wood, -/obj/item/paper_bin, -/obj/item/pen{ - pixel_x = -4 - }, -/obj/item/pen/red{ - pixel_x = -1; - pixel_y = 4 - }, -/obj/item/pen/blue{ - pixel_x = 3; - pixel_y = 7 - }, -/turf/simulated/floor/carpet, -/area/journalistoffice) -"nIk" = ( -/obj/effect/floor_decal/industrial/warning/full, -/obj/machinery/door/blast/regular/open{ - fail_secure = 1; - id = "xenobio_b"; - name = "Cell Containment Blast Door" - }, -/obj/machinery/door/window/holowindoor{ - dir = 8; - req_access = list(55) - }, -/obj/machinery/door/window/holowindoor{ - dir = 4; - req_access = list(55) - }, -/obj/machinery/door/firedoor{ +/area/horizon/exterior) +"nIf" = ( +/obj/structure/railing/mapped{ dir = 4 }, +/obj/structure/table/standard, +/obj/item/storage/box/gloves{ + pixel_x = -5 + }, +/obj/item/storage/box/masks{ + pixel_x = -5 + }, +/obj/item/reagent_containers/spray/cleaner{ + pixel_x = 5 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/operations/machinist/surgicalbay) +"nIi" = ( +/obj/structure/cable/orange{ + icon_state = "0-2" + }, +/obj/machinery/power/emitter{ + anchored = 1; + dir = 1; + id = "ReactorEmitter"; + state = 2 + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/effect/floor_decal/industrial/warning/cee, /turf/simulated/floor/tiled/dark/full, -/area/rnd/xenobiology) +/area/horizon/engineering/reactor/supermatter/mainchamber) "nIm" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -95842,39 +95933,17 @@ }, /turf/simulated/floor/tiled, /area/horizon/security/investigations_hallway) -"nIt" = ( -/obj/machinery/door/airlock/glass_service{ - dir = 4; - name = "Bar - Preparations"; - req_access = list(25) +"nIn" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/bed/handrail{ + dir = 8 }, -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/full, -/area/horizon/bar) -"nIw" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/power/portgen/basic, /turf/simulated/floor/plating, -/area/engineering/storage/lower) -"nIE" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/area/horizon/shuttle/intrepid/port_compartment) +"nIq" = ( +/obj/effect/floor_decal/corner/lime{ + dir = 10 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -95882,91 +95951,88 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor/tiled/dark, +/area/horizon/storage/eva) +"nIr" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/airlock/glass_mining{ + dir = 1; + name = "Mining Equipment"; + req_access = list(48) + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/operations/mining_main/eva) +"nIu" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/engineering{ + dir = 4; + name = "Deck 3 Civilian Substation"; + req_one_access = list(11,24) + }, +/turf/simulated/floor, +/area/horizon/maintenance/substation/civ_d3) +"nIv" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/cable/green{ + icon_state = "2-8" + }, /turf/simulated/floor/plating, -/area/hallway/engineering) +/area/horizon/maintenance/substation/research) +"nIz" = ( +/obj/machinery/portable_atmospherics/canister/air/airlock, +/obj/machinery/atmospherics/portables_connector{ + dir = 1 + }, +/turf/simulated/floor, +/area/horizon/hallway/primary/deck_3/port/docks) +"nIB" = ( +/obj/machinery/door/airlock/maintenance{ + dir = 4; + name = "Research and Development Maintenance"; + req_one_access = list(12,47) + }, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/command/heads/rd) "nIF" = ( /turf/simulated/wall, /area/horizon/security/washroom) -"nII" = ( -/obj/structure/cable{ - icon_state = "1-2" +"nIG" = ( +/obj/structure/cable/green{ + icon_state = "4-8" }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/structure/disposalpipe/segment{ - icon_state = "pipe-c" - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard) -"nIJ" = ( -/obj/structure/bed/stool/chair{ - dir = 8 - }, -/obj/effect/floor_decal/spline/fancy/wood/cee, -/turf/simulated/floor/wood, -/area/operations/lower/machinist/surgicalbay) -"nIL" = ( -/turf/simulated/wall/r_wall, -/area/storage/secure) -"nIN" = ( -/obj/structure/platform{ +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/plating, -/area/maintenance/wing/port/far) -"nIP" = ( -/obj/machinery/access_button{ - dir = 1; - pixel_x = -28; - pixel_y = 11 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 }, -/obj/machinery/door/airlock/external{ - dir = 1; - icon_state = "door_locked" - }, -/obj/effect/map_effect/marker_helper/airlock/exterior, -/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/effect/floor_decal/industrial/hatch/grey, -/turf/simulated/floor/tiled/dark/full, -/area/shuttle/mining) -"nIQ" = ( -/obj/effect/floor_decal/corner_wide/paleblue{ - dir = 10 - }, -/obj/machinery/button/remote/blast_door{ - id = "LCKDshutters"; - name = "MedBay Lockdown Control"; - pixel_x = -28; - pixel_y = -19; - req_access = list(40) - }, -/obj/machinery/button/remote/blast_door{ - id = "cmowindowshutters"; - name = "Window Shutters"; - pixel_x = -2; - pixel_y = -19; - req_access = list(40) - }, -/obj/machinery/light, -/obj/machinery/button/remote/airlock{ - id = "CMOdoor"; - name = "Office Door Control"; - pixel_x = 9; - pixel_y = -19; - req_access = list(40) +/obj/structure/disposalpipe/junction{ + dir = 8 }, /turf/simulated/floor/tiled/white, -/area/crew_quarters/heads/cmo) +/area/horizon/medical/gen_treatment) +"nIK" = ( +/obj/structure/reagent_dispensers/lube, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/horizon/engineering/storage/lower) "nIT" = ( /obj/structure/closet/crate/trashcart, /obj/item/storage/bag/trash{ @@ -96004,102 +96070,61 @@ }, /turf/simulated/floor/reinforced/airless, /area/horizon/exterior) -"nIZ" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/effect/floor_decal/corner/dark_green{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/port) -"nJc" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/structure/sign/flag/scc{ - pixel_x = 32 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/effect/floor_decal/industrial/warning/corner, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/machinery/button/remote/blast_door{ - dir = 1; - id = "ai_upload"; - name = "AI Upload Blast Door"; - pixel_x = 2; - pixel_y = 30; - req_access = list(16) - }, -/turf/simulated/floor/tiled/dark/full, -/area/turret_protected/ai_upload_foyer) -"nJn" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, +"nJa" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/structure/lattice/catwalk/indoor/grate/dark, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/obj/effect/floor_decal/corner_wide/green{ - dir = 10 - }, -/obj/structure/disposalpipe/junction{ - dir = 4; - icon_state = "pipe-j2" +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 }, /obj/structure/railing/mapped, -/turf/simulated/floor/tiled/white, -/area/hallway/medical/upper) -"nJo" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ +/obj/machinery/alarm/north, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/port/near) +"nJj" = ( +/obj/effect/floor_decal/industrial/warning{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ - dir = 4 - }, -/obj/machinery/door/blast/regular{ - dir = 2; - id = "EngineEmitterPortWest"; - name = "Supermatter Reactor Waste Management Blast Door" - }, -/turf/simulated/floor/tiled/full, -/area/engineering/engine_waste) -"nJr" = ( -/obj/machinery/r_n_d/circuit_imprinter, -/obj/item/reagent_containers/glass/beaker{ - pixel_y = 8 - }, -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/carpet/rubber, -/area/operations/lower/machinist) -"nJs" = ( -/obj/effect/floor_decal/corner/brown{ - dir = 6 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/intrepid/port_compartment) +/obj/machinery/photocopier, +/turf/simulated/floor/tiled, +/area/horizon/crew/chargebay) "nJt" = ( /obj/structure/shuttle_part/ccia{ icon_state = "12,2" }, /turf/unsimulated/floor/plating, /area/shuttle/transport1) +"nJu" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_atmos{ + dir = 1; + name = "Atmosphere Control"; + req_access = list(24) + }, +/obj/effect/map_effect/door_helper/unres{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/hatch_door/engineering{ + dir = 1 + }, +/obj/effect/map_effect/door_helper/unres{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/atmos) +"nJw" = ( +/obj/structure/window/shuttle/scc_space_ship, +/obj/structure/grille, +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/shutters{ + dir = 2; + id = "shutters_deck2_hydroponicswindowssafety"; + name = "Viewing Shutter" + }, +/turf/simulated/floor/plating, +/area/horizon/service/hydroponics/lower) "nJx" = ( /obj/machinery/portable_atmospherics/powered/pump/filled{ start_pressure = 15000 @@ -96109,6 +96134,15 @@ icon_state = "dark_preview" }, /area/centcom/specops) +"nJD" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 10 + }, +/turf/simulated/floor/wood, +/area/horizon/service/bar) "nJK" = ( /obj/structure/table/rack, /obj/item/clothing/shoes/magboots, @@ -96118,32 +96152,17 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/unsimulated/floor, /area/antag/mercenary) -"nJQ" = ( -/obj/machinery/light/small/emergency{ - dir = 8 +"nJO" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 9 }, -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 1; - frequency = 1337; - id_tag = "merchant_shuttle_dock_pump" +/obj/machinery/mineral/stacking_unit_console{ + id = "horizon_stacking_1"; + pixel_x = -32 }, -/obj/machinery/embedded_controller/radio/airlock/docking_port{ - frequency = 1337; - id_tag = "merchant_shuttle_dock"; - pixel_x = 29; - req_access = list(13); - tag_airpump = "merchant_shuttle_dock_pump"; - tag_chamber_sensor = "merchant_shuttle_dock_sensor"; - tag_exterior_door = "merchant_shuttle_dock_outer"; - tag_interior_door = "merchant_shuttle_dock_inner" - }, -/obj/machinery/airlock_sensor{ - frequency = 1337; - id_tag = "merchant_shuttle_dock_sensor"; - pixel_x = -27 - }, -/turf/simulated/floor/plating, -/area/security/checkpoint2) +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled, +/area/horizon/operations/mining_main/refinery) "nJR" = ( /obj/item/ore{ name = "meteor fragment"; @@ -96157,67 +96176,100 @@ }, /turf/unsimulated/floor/plating, /area/antag/raider) -"nKc" = ( -/obj/effect/floor_decal/corner/mauve{ +"nJU" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/aux, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/command/bridge/aibunker) +"nKa" = ( +/obj/effect/floor_decal/corner_wide/green{ dir = 10 }, -/obj/structure/engineer_maintenance/electric, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/gen_treatment) +"nKh" = ( +/obj/effect/floor_decal/corner_wide/lime{ + dir = 6 + }, +/obj/effect/floor_decal/corner_wide/orange{ + dir = 6 + }, +/obj/machinery/camera/network/medbay{ + c_tag = "Medical - Chemistry Lab Bravo"; + dir = 8 + }, /obj/structure/engineer_maintenance/pipe{ dir = 4 }, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology/xenoflora) -"nKf" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"nKl" = ( -/obj/structure/railing/mapped, -/obj/structure/platform/ledge{ +/obj/structure/engineer_maintenance/electric{ dir = 1 }, -/turf/simulated/open, -/area/horizon/hallway/deck_three/primary/central) -"nKy" = ( -/obj/structure/girder, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard) -"nKA" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ +/turf/simulated/floor/tiled/white, +/area/horizon/medical/pharmacy) +"nKj" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/corner/brown{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 8 }, -/obj/effect/floor_decal/corner/dark_green, -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/simulated/floor/tiled, +/area/horizon/operations/office) +"nKm" = ( +/obj/structure/window/shuttle/scc_space_ship, +/obj/structure/grille, +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/shutters/open{ + id = "shutters_deck3_engibreakwindows"; + name = "Viewing Shutter" + }, +/turf/simulated/floor/plating, +/area/horizon/engineering/break_room) +"nKo" = ( +/obj/machinery/alarm/north{ + dir = 4; + pixel_y = 3; + pixel_x = 8 + }, +/obj/machinery/cryopod, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/computer/cryopod/living_quarters{ + pixel_y = 32 }, /turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"nKB" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'WARNING: EQUIPMENT RADIOACTIVE DURING OPERATION'."; - icon_state = "radiation"; - name = "WARNING: EQUIPMENT RADIOACTIVE DURING OPERATION sign" +/area/horizon/medical/ward) +"nKp" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 }, -/turf/simulated/wall/r_wall, -/area/rnd/xenoarch_atrium) -"nKC" = ( -/obj/effect/floor_decal/spline/fancy/wood/corner{ - dir = 4 +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/main/starboard) +"nKq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 9 }, -/turf/simulated/floor/wood, -/area/horizon/crew_quarters/lounge/bar) -"nKI" = ( -/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, -/obj/machinery/door/blast/shutters/open{ - id = "shutters_deck2_hydroponicswindows"; - name = "Window Shutter" +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 1 }, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/hydroponics) -"nKK" = ( -/obj/random/junk, +/turf/simulated/floor/tiled/dark, +/area/horizon/shuttle/mining) +"nKs" = ( +/turf/simulated/floor/plating, +/area/horizon/rnd/eva) +"nKu" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled, +/area/horizon/operations/mail_room) +"nKy" = ( /obj/structure/railing/mapped{ dir = 8 }, @@ -96225,44 +96277,73 @@ dir = 10 }, /turf/simulated/floor/plating, -/area/maintenance/research_port) -"nKV" = ( -/obj/structure/bed/stool/chair/office/light{ - dir = 8 - }, -/obj/effect/floor_decal/spline/plain/lime{ - dir = 8 +/area/horizon/maintenance/deck_1/main/port) +"nKz" = ( +/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, -/area/horizon/commissary) -"nLc" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/operations/starboard/far) +"nKN" = ( +/obj/structure/lattice/catwalk/indoor, +/obj/structure/sign/radiation{ + pixel_x = 32 + }, +/obj/structure/closet/walllocker/medical/firstaid{ + pixel_y = 32 }, /turf/simulated/floor/plating, -/area/maintenance/wing/starboard/deck1) -"nLk" = ( -/obj/effect/floor_decal/corner_wide/yellow/diagonal, +/area/horizon/engineering/reactor/indra/smes) +"nKP" = ( +/obj/machinery/door/airlock/hatch{ + dir = 1; + name = "Starboard Maneuvering Propulsion"; + req_one_access = list(11,24) + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/port/nacelle) +"nKR" = ( /obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" + dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_3/central) +"nKU" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/port) +"nKW" = ( +/turf/simulated/wall, +/area/horizon/maintenance/deck_3/aft/starboard/far) +"nLb" = ( +/turf/simulated/wall, +/area/horizon/hallway/primary/deck_3/central) +"nLd" = ( +/obj/structure/table/reinforced/steel, +/obj/item/paper_bin{ + pixel_x = 6; + pixel_y = 18 }, -/obj/structure/cable/green{ - icon_state = "2-4" +/obj/item/device/binoculars/high_power{ + pixel_x = 7; + pixel_y = 3 }, -/turf/simulated/floor/tiled/dark, -/area/engineering/break_room) -"nLm" = ( -/obj/structure/bed/stool/chair/office/bridge/pilot, -/turf/simulated/floor/carpet/rubber, -/area/bridge/controlroom) +/obj/item/device/flashlight/lamp{ + pixel_y = 1; + pixel_x = -7 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/shuttle/intrepid/flight_deck) "nLt" = ( /obj/structure/bed/stool/padded, /obj/machinery/light{ @@ -96270,46 +96351,106 @@ }, /turf/unsimulated/floor, /area/centcom/legion) -"nLA" = ( -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/manifold/hidden, -/obj/structure/cable/green{ - icon_state = "4-8" +"nLx" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 6 + }, +/obj/machinery/firealarm/east, +/obj/structure/table/standard, +/obj/item/storage/box/flares, +/turf/simulated/floor/tiled/dark, +/area/horizon/command/teleporter) +"nLy" = ( +/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, +/turf/simulated/floor/tiled/full, +/area/horizon/engineering/storage_hard) +"nLC" = ( +/obj/effect/floor_decal/corner/dark_green/full, +/obj/machinery/camera/network/third_deck{ + c_tag = "Third Deck - Central Stairwell"; + dir = 4 + }, +/obj/structure/sign/emergency/evacuation/stairs, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/effect/floor_decal/industrial/loading/yellow, +/turf/simulated/floor/tiled, +/area/horizon/stairwell/starboard/deck_3) +"nLD" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 9 }, /turf/simulated/floor/carpet/rubber, -/area/server) -"nLJ" = ( +/area/horizon/engineering/reactor/indra/monitoring) +"nLF" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/random/contraband, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/wing/port/far) +"nLK" = ( /obj/structure/table/standard, -/obj/item/device/multitool, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 5 +/obj/machinery/light{ + dir = 8 }, /obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/camera/motion{ - c_tag = "Longbow"; - network = list("Command","Security") - }, -/turf/simulated/floor/tiled/dark, -/area/horizon/longbow) -"nLL" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor/tiled/dark, -/area/storage/eva) +/turf/simulated/floor/carpet/rubber, +/area/horizon/rnd/xenoarch/spectrometry) "nLN" = ( /obj/structure/table/stone/marble, /turf/unsimulated/floor/blue_circuit, /area/antag/wizard) -"nLT" = ( -/obj/effect/floor_decal/corner/dark_blue{ +"nLO" = ( +/obj/item/material/shard{ + icon_state = "small" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/main/starboard) +"nLS" = ( +/obj/effect/floor_decal/corner/dark_green{ dir = 9 }, +/obj/structure/bed/stool/chair{ + dir = 4 + }, +/obj/machinery/newscaster/west, +/obj/machinery/light{ + dir = 8 + }, /turf/simulated/floor/tiled, -/area/bridge/controlroom) +/area/horizon/hallway/primary/deck_2/fore) +"nLY" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/closet/crate, +/obj/effect/floor_decal/corner/brown{ + dir = 6 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled, +/area/horizon/operations/warehouse) +"nLZ" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/cyan, +/obj/structure/tank_wall/oxygen{ + density = 0; + icon_state = "o2-12"; + opacity = 0 + }, +/turf/simulated/floor/reinforced/oxygen, +/area/horizon/engineering/atmos/air) "nMb" = ( /obj/machinery/light, /obj/effect/floor_decal/corner/green{ @@ -96317,11 +96458,56 @@ }, /turf/unsimulated/floor, /area/centcom/holding) -"nMd" = ( -/obj/effect/floor_decal/industrial/outline/red, -/obj/machinery/iv_drip, +"nMe" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/structure/disposalpipe/junction{ + dir = 8 + }, /turf/simulated/floor/tiled/white, -/area/medical/gen_treatment) +/area/horizon/medical/hallway) +"nMi" = ( +/obj/machinery/power/apc/west, +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/obj/effect/floor_decal/industrial/warning/full, +/obj/structure/sign/biohazard{ + pixel_x = -32 + }, +/obj/structure/closet/secure_closet/freezer/kois/spores, +/turf/simulated/floor/tiled/freezer{ + name = "cooled tiles"; + temperature = 253.15 + }, +/area/horizon/service/kitchen/freezer) +"nMj" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/disposalpipe/segment{ + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor, +/area/horizon/maintenance/deck_3/aft/port) +"nMm" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/structure/tank_wall/phoron{ + icon_state = "ph16" + }, +/obj/machinery/atmospherics/pipe/simple/visible/purple, +/turf/simulated/floor/airless, +/area/horizon/engineering/atmos) "nMo" = ( /obj/structure/bed/stool/chair/sofa/black{ desc = "A pew, how holy!"; @@ -96334,81 +96520,59 @@ /obj/effect/floor_decal/corner/grey/diagonal, /turf/simulated/floor/marble, /area/horizon/holodeck/source_trinary) -"nMt" = ( -/obj/structure/platform/ledge, -/turf/simulated/open, -/area/horizon/hallway/deck_three/primary/central) "nMu" = ( /turf/simulated/wall/shuttle/unique/ccia{ icon_state = "8,0" }, /area/shuttle/transport1) -"nMv" = ( -/obj/effect/floor_decal/corner/dark_blue/full, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge/meeting_room) -"nMy" = ( -/obj/effect/floor_decal/spline/plain, -/turf/simulated/floor/tiled/dark, -/area/horizon/hallway/deck_three/primary/central) -"nMA" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/machinery/atmospherics/pipe/simple/hidden/yellow, -/turf/simulated/floor/plating, -/area/maintenance/engineering) -"nME" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/structure/bed/handrail{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning, -/obj/machinery/atmospherics/pipe/manifold/hidden{ - dir = 8 - }, -/obj/machinery/meter{ - name = "Air Reserve" - }, -/turf/simulated/floor/plating, -/area/shuttle/intrepid/engineering) -"nMG" = ( -/obj/effect/floor_decal/corner_wide/paleblue{ - dir = 5 - }, -/obj/machinery/firealarm/north, -/obj/effect/floor_decal/sign/srg, -/turf/simulated/floor/tiled/white, -/area/hallway/medical) -"nMJ" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, +"nMw" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/floor_decal/corner/dark_green{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_3/central) +"nMC" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/r_n_d/protolathe, +/obj/structure/railing/mapped{ dir = 4 }, -/obj/structure/cable{ - icon_state = "1-2" +/obj/structure/railing/mapped, +/turf/simulated/floor/carpet/rubber, +/area/horizon/operations/machinist) +"nMF" = ( +/obj/structure/table/steel, +/obj/item/stack/material/glass/full, +/obj/item/stack/material/steel/full, +/obj/item/stack/material/wood/full, +/obj/item/stack/material/plastic/full, +/obj/machinery/light, +/obj/machinery/firealarm/south, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 }, -/obj/structure/cable/green{ - icon_state = "4-8" +/obj/effect/floor_decal/corner/purple{ + dir = 10 }, +/obj/random/pottedplant_small{ + pixel_x = -12 + }, +/turf/simulated/floor/tiled, +/area/horizon/service/custodial) +"nMK" = ( +/obj/machinery/door/firedoor, +/obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/full, -/area/hallway/primary/aft) +/area/horizon/hallway/primary/deck_3/central) "nMN" = ( /obj/structure/sign/directions/security{ dir = 4 @@ -96423,226 +96587,193 @@ }, /turf/unsimulated/floor/rubber_carpet, /area/centcom/control) -"nMP" = ( -/obj/effect/floor_decal/sign/c{ - pixel_x = -10; - pixel_y = 4 - }, -/obj/effect/floor_decal/spline/plain{ - dir = 1 - }, -/obj/effect/floor_decal/spline/plain, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/black{ - dir = 4 - }, -/turf/simulated/floor/carpet/rubber, -/area/tcommsat/chamber) "nMT" = ( /turf/simulated/floor/tiled/dark, /area/horizon/security/meeting_room) -"nMX" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/reagent_dispensers/fueltank, -/obj/effect/floor_decal/industrial/warning/cee{ - dir = 4 +"nMV" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/alarm/north, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/starboard/nacelle) +"nNh" = ( +/obj/structure/lattice/catwalk/indoor, +/obj/machinery/light{ + dir = 8 }, -/turf/simulated/floor/tiled/dark, -/area/maintenance/wing/starboard/far) -"nMY" = ( -/obj/effect/floor_decal/corner_wide/grey/diagonal, -/obj/structure/table/standard, -/obj/item/stack/packageWrap, -/obj/random/pottedplant_small{ - pixel_x = -1; - pixel_y = 9 +/turf/simulated/floor/plating, +/area/horizon/hangar/intrepid) +"nNk" = ( +/obj/machinery/power/terminal, +/obj/machinery/power/sensor{ + name = "Powernet Sensor - C-Goliath Drive Chamber"; + name_tag = "C-Goliath Drive Chamber" }, -/turf/simulated/floor/tiled/white, -/area/operations/break_room) -"nNb" = ( -/obj/structure/cable/green{ - icon_state = "1-2" +/obj/structure/cable{ + icon_state = "0-8" }, -/turf/simulated/floor/tiled/dark, -/area/horizon/longbow) +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/turf/simulated/floor/plating, +/area/horizon/engineering/bluespace_drive) "nNm" = ( /obj/effect/landmark/entry_point/fore{ name = "fore, kitchen freezer" }, /turf/template_noop, /area/template_noop) -"nNq" = ( -/obj/structure/cable/green{ - icon_state = "4-8" +"nNA" = ( +/obj/effect/floor_decal/corner/green{ + dir = 5 }, /obj/structure/cable/green{ - icon_state = "2-8" + icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/white, +/area/horizon/crew/washroom/deck_3) +"nNB" = ( +/obj/machinery/light{ dir = 4 }, -/turf/simulated/floor/tiled/full, -/area/hallway/primary/central_one) -"nNC" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/vending/zora, +/turf/simulated/floor/tiled/dark, +/area/horizon/hallway/primary/deck_3/starboard) +"nNG" = ( +/obj/structure/platform, +/obj/structure/platform{ + dir = 8 }, -/obj/item/hoist_kit, -/obj/structure/sign/nosmoking_2{ - pixel_x = -32 +/obj/structure/platform_deco{ + dir = 9 }, /turf/simulated/floor/plating, -/area/maintenance/wing/port/far) -"nNE" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/area/horizon/maintenance/deck_2/wing/port/far) +"nNH" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/effect/floor_decal/corner/dark_green{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_2/central) +"nNJ" = ( +/obj/machinery/alarm/south, +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/atmos/propulsion) +"nNM" = ( +/obj/structure/cable{ + icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 + dir = 6 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/alarm/west, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/starboard) +"nNN" = ( +/obj/effect/floor_decal/corner/grey/diagonal, +/obj/effect/floor_decal/spline/plain{ + dir = 8 + }, +/obj/effect/floor_decal/spline/plain{ dir = 4 }, -/obj/structure/cable{ - icon_state = "4-8" +/obj/structure/disposalpipe/segment, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/service/kitchen) +"nNQ" = ( +/obj/machinery/portable_atmospherics/hydroponics/soil, +/turf/simulated/floor/grass/no_edge, +/area/horizon/rnd/xenobiology/xenoflora) +"nNT" = ( +/obj/effect/floor_decal/corner_wide/orange/full{ + dir = 4 + }, +/obj/structure/table/rack/retail_shelf, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/pharmacy) +"nNW" = ( +/obj/structure/cable/green{ + icon_state = "2-4" }, /obj/structure/lattice/catwalk/indoor/grate/dark, /turf/simulated/floor/plating, -/area/maintenance/engineering) -"nNS" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/window/westright{ - name = "Oxygen Supplies Access" - }, -/turf/simulated/floor/tiled/dark/full, -/area/outpost/mining_main/refinery) +/area/horizon/maintenance/deck_1/hangar/port) "nNX" = ( /obj/effect/floor_decal/corner/paleblue{ dir = 5 }, /turf/unsimulated/floor, /area/centcom/legion) -"nNZ" = ( -/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, +"nOc" = ( /turf/simulated/floor/tiled/dark/full, -/area/hallway/primary/central_one) -"nOa" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/tiled/dark, -/area/storage/eva) -"nOh" = ( -/obj/structure/railing/mapped{ - dir = 4 - }, +/area/horizon/command/bridge/aibunker) +"nOg" = ( +/obj/effect/floor_decal/industrial/hatch/red, /obj/effect/floor_decal/industrial/warning{ - dir = 4 + dir = 6 }, -/obj/machinery/alarm/north, -/obj/structure/reagent_dispensers/watertank, -/turf/simulated/floor/plating, -/area/horizon/maintenance/deck_two/fore/starboard) -"nOn" = ( +/turf/simulated/floor/tiled/dark/full, +/area/horizon/service/custodial/disposals/deck_1) +"nOi" = ( /obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/random/dirt_75, /turf/simulated/floor/plating, -/area/maintenance/wing/port/far) -"nOo" = ( -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ +/area/horizon/maintenance/deck_1/hangar/starboard) +"nOq" = ( +/obj/machinery/light/floor{ dir = 4 }, -/turf/simulated/wall/shuttle/scc_space_ship/cardinal, -/area/engineering/atmos/propulsion) -"nOt" = ( -/obj/effect/floor_decal/corner/paleblue{ - dir = 5 +/obj/structure/bed/handrail{ + dir = 8 }, +/obj/structure/closet/walllocker/firecloset{ + pixel_x = 32 + }, +/obj/item/storage/bag/inflatable/emergency, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/shuttle/intrepid/main_compartment) +"nOs" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/machinery/atmospherics/portables_connector, +/turf/simulated/floor/plating, +/area/horizon/medical/cryo) +"nOG" = ( +/obj/structure/shuttle/engine/propulsion/burst/left{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/horizon/shuttle/escape_pod/pod4) +"nOI" = ( +/obj/effect/floor_decal/corner/grey/diagonal, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /obj/structure/cable/green{ icon_state = "4-8" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ +/obj/effect/floor_decal/spline/plain{ dir = 4 }, -/turf/simulated/floor/tiled, -/area/bridge/cciaroom/lounge) -"nOu" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" +/obj/effect/landmark/start{ + name = "Chef" }, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/engine_room/rust) -"nOv" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 9 - }, -/obj/structure/bed/stool/chair/padded/brown, -/turf/simulated/floor/wood, -/area/horizon/cafeteria) -"nOy" = ( -/obj/machinery/door/airlock/maintenance{ - dir = 4; - name = "Deck 3 Medical Maintenance"; - req_access = list(5) - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 4; - icon_state = "shutter0"; - id = "LCKDshutters"; - name = "Medical Lockdown Shutters"; - opacity = 0 - }, -/turf/simulated/floor/tiled/full, -/area/hallway/medical/upper) -"nOF" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 9 - }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 6 - }, -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/machinery/alarm/west, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1; - level = 2 - }, -/turf/simulated/floor/tiled, -/area/horizon/stairwell/bridge) +/turf/simulated/floor/tiled/white, +/area/horizon/service/kitchen) "nOJ" = ( /obj/structure/bed/stool/padded/brown{ dir = 8 @@ -96655,19 +96786,13 @@ }, /turf/unsimulated/floor/wood, /area/antag/raider) -"nOM" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +"nOK" = ( +/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 - }, -/obj/structure/lattice/catwalk/indoor/grate, +/obj/structure/lattice/catwalk/indoor/grate/dark, /turf/simulated/floor/plating, -/area/hallway/primary/aft) +/area/horizon/maintenance/deck_1/operations/starboard/far) "nOT" = ( /turf/simulated/floor/exoplanet/water/shallow, /area/horizon/holodeck/source_beach) @@ -96675,30 +96800,19 @@ /obj/effect/shuttle_landmark/horizon/exterior/deck_1/port, /turf/template_noop, /area/template_noop) -"nOY" = ( -/obj/item/device/radio/intercom/east{ - pixel_y = 1 +"nOV" = ( +/turf/simulated/wall/r_wall, +/area/horizon/command/bridge/supply) +"nOW" = ( +/obj/machinery/portable_atmospherics/powered/scrubber, +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/atmos/propulsion) +"nPb" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 }, -/obj/effect/floor_decal/industrial/outline/medical, -/obj/machinery/stasis_bed, -/turf/simulated/floor/tiled/white, -/area/medical/icu) -"nOZ" = ( -/obj/effect/floor_decal/corner_wide/lime{ - dir = 6 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/medical/reception) -"nPd" = ( -/obj/structure/table/reinforced/glass, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor/wood, -/area/rnd/conference) +/turf/simulated/floor/reinforced/airless, +/area/horizon/engineering/reactor/indra/mainchamber) "nPe" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 8 @@ -96709,32 +96823,14 @@ /obj/effect/map_effect/window_spawner/full/reinforced/indestructible, /turf/unsimulated/floor/plating, /area/centcom/legion) -"nPk" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - dir = 1 +"nPj" = ( +/obj/item/clothing/ears/earmuffs{ + pixel_x = 3; + pixel_y = 2 }, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel, -/obj/machinery/atmospherics/pipe/simple/hidden/aux, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"nPo" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled, -/area/engineering/break_room) -"nPq" = ( -/obj/machinery/door/airlock/maintenance{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard/deck1) +/obj/structure/table/standard, +/turf/simulated/floor/tiled/dark, +/area/horizon/maintenance/deck_2/wing/starboard/nacelle) "nPs" = ( /obj/effect/floor_decal/spline/plain/corner{ dir = 4 @@ -96744,75 +96840,45 @@ }, /turf/simulated/floor/exoplanet/grass/grove, /area/centcom/shared_dream) -"nPD" = ( -/obj/effect/floor_decal/corner/mauve{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/button/remote/airlock{ - id = "hazardous_access"; - name = "Hazardous Containment"; - req_access = list(55); - specialfunctions = 4; - dir = 8; - pixel_x = -23; - desiredstate = 1 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology/foyer) -"nPK" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/effect/floor_decal/corner/dark_green{ - dir = 5 +"nPy" = ( +/obj/structure/reagent_dispensers/extinguisher, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 }, +/turf/simulated/floor, +/area/horizon/maintenance/deck_3/aft/port) +"nPC" = ( /obj/structure/cable/green{ icon_state = "4-8" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hangar/intrepid/interstitial) -"nPL" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 9 - }, -/turf/simulated/floor/plating, -/area/maintenance/hangar/starboard) -"nPM" = ( -/obj/structure/railing/mapped{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/lounge) -"nPN" = ( -/obj/structure/closet/crate/software_backup, -/obj/effect/floor_decal/corner_wide/blue{ - dir = 9 +/turf/simulated/floor/tiled/white, +/area/horizon/storage/eva/expedition) +"nPH" = ( +/turf/simulated/wall/r_wall, +/area/horizon/rnd/test_range) +"nPJ" = ( +/obj/effect/floor_decal/corner/purple/full{ + dir = 8 }, /obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/sign/nosmoking_1{ - pixel_x = -32 +/obj/structure/closet/crate/trashcart, +/obj/item/stack/cable_coil/random, +/obj/random/loot, +/turf/simulated/floor/tiled/dark, +/area/horizon/service/custodial/disposals/deck_1) +"nPT" = ( +/obj/effect/map_effect/window_spawner/full/shuttle/scc{ + spawn_firedoor = 1; + spawn_grille = 1 }, -/obj/machinery/camera/motion{ - c_tag = "Secure Technical Storage"; - dir = 4; - network = list("Command","Security","Engineering") +/obj/effect/landmark/entry_point/port{ + name = "port, cockpit" }, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/storage/tech) -"nPR" = ( -/obj/structure/table/reinforced/wood, -/obj/item/paper_scanner{ - pixel_x = -1 - }, -/turf/simulated/floor/carpet, -/area/crew_quarters/heads/hop/xo) +/turf/simulated/floor/plating, +/area/horizon/shuttle/quark/cockpit) "nPW" = ( /obj/effect/floor_decal/corner/dark_blue{ dir = 6 @@ -96831,12 +96897,6 @@ }, /turf/simulated/floor/tiled, /area/horizon/security/investigations_hallway) -"nPX" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/engineering/lobby) "nPZ" = ( /obj/effect/floor_decal/corner/grey{ dir = 9 @@ -96846,41 +96906,53 @@ }, /turf/unsimulated/floor, /area/antag/mercenary) +"nQb" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 6 + }, +/obj/structure/bed/stool/chair/office/bridge{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/command/bridge/meeting_room) +"nQc" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/pharmacy) +"nQi" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/service/bar) +"nQj" = ( +/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/horizon/hangar/auxiliary) "nQk" = ( /obj/effect/floor_decal/carpet{ dir = 1 }, /turf/simulated/floor/holofloor/carpet, /area/horizon/holodeck/source_meetinghall) -"nQn" = ( -/obj/effect/floor_decal/corner_wide/purple{ - dir = 5 - }, -/obj/effect/floor_decal/corner_wide/purple{ - dir = 8 - }, -/obj/structure/cable/green{ - icon_state = "0-2" - }, -/obj/machinery/power/apc/north, -/obj/structure/engineer_maintenance/pipe{ - dir = 8 - }, -/obj/structure/engineer_maintenance/electric{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenoarch_atrium) -"nQr" = ( -/obj/structure/bed/stool/bar/padded/teal{ - dir = 4 - }, -/obj/effect/floor_decal/corner/red/diagonal, -/obj/effect/floor_decal/spline/plain{ - dir = 4 - }, -/turf/simulated/floor/lino, -/area/horizon/cafeteria) +"nQm" = ( +/obj/machinery/space_heater, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark, +/area/horizon/rnd/xenoarch/storage) "nQw" = ( /obj/effect/floor_decal/industrial/warning{ dir = 8 @@ -96894,58 +96966,27 @@ }, /turf/simulated/floor/plating, /area/merchant_station/warehouse) -"nQx" = ( -/obj/structure/coatrack, -/obj/effect/floor_decal/corner/mauve/full{ - dir = 8 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology/xenological) -"nQE" = ( -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ +"nQy" = ( +/obj/structure/bed/stool/chair/office/dark{ dir = 1 }, -/obj/machinery/disposal/deliveryChute{ - dir = 4 +/obj/machinery/button/remote/blast_door{ + dir = 10; + id = "vacant_office"; + name = "Public Office Shutter"; + pixel_x = -25; + pixel_y = 8 }, -/obj/machinery/door/window/eastleft{ - req_access = list(55) +/obj/effect/floor_decal/corner/beige{ + dir = 5 }, -/obj/machinery/door/blast/regular/open{ - fail_secure = 1; - id = "xenobio_a"; - name = "Cell Containment Blast Door" - }, -/obj/machinery/door/firedoor{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark/full, -/area/rnd/xenobiology) -"nQH" = ( -/obj/effect/floor_decal/industrial/hatch_door/red{ - dir = 1 - }, -/obj/machinery/door/airlock/external, -/obj/effect/map_effect/marker/airlock/shuttle{ - cycle_to_external_air = 1; - master_tag = "airlock_shuttle_intrepid"; - name = "airlock_shuttle_intrepid"; - req_one_access = null; - shuttle_tag = "Intrepid" - }, -/obj/effect/map_effect/marker_helper/airlock/interior, -/obj/machinery/atmospherics/pipe/manifold4w/hidden, -/turf/simulated/floor/tiled/dark/full, -/area/shuttle/intrepid/main_compartment) +/turf/simulated/floor/tiled, +/area/horizon/crew/vacantoffice) +"nQF" = ( +/obj/structure/table/standard, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled, +/area/horizon/operations/warehouse) "nQJ" = ( /obj/effect/floor_decal/corner/dark_blue{ dir = 10 @@ -96973,28 +97014,6 @@ }, /turf/simulated/floor/tiled/white, /area/horizon/security/autopsy_laboratory) -"nQM" = ( -/obj/effect/floor_decal/corner/yellow{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/visible/cyan, -/turf/simulated/floor/tiled/dark, -/area/engineering/engine_waste) -"nQN" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 1 - }, -/obj/machinery/airlock_sensor{ - dir = 1; - pixel_y = -20 - }, -/obj/effect/map_effect/marker/airlock{ - frequency = 1003; - master_tag = "airlock_horizon_deck_1_aft_port_1"; - name = "airlock_horizon_deck_1_aft_port_1" - }, -/turf/simulated/floor/plating, -/area/maintenance/research_port) "nQQ" = ( /obj/structure/window/shuttle/scc_space_ship, /obj/machinery/door/firedoor, @@ -97005,29 +97024,59 @@ /obj/structure/grille/diagonal, /turf/simulated/floor/tiled/dark, /area/shuttle/merchant) -"nQW" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 6 +"nQT" = ( +/obj/effect/floor_decal/spline/fancy/wood/corner{ + dir = 1 }, -/obj/item/stock_parts/subspace/ansible, -/obj/item/stock_parts/subspace/ansible, -/obj/item/stock_parts/subspace/ansible, -/obj/structure/table/standard, -/obj/machinery/firealarm/east, -/turf/simulated/floor/carpet/rubber, -/area/tcommsat/entrance) -"nRb" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable{ +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/wood, +/area/horizon/service/dining_hall) +"nQV" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/wood, +/area/horizon/command/heads/hos) +"nQX" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/effect/shuttle_landmark/quark/hangar{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/horizon/hangar/auxiliary) +"nQZ" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/obj/structure/cable/green{ icon_state = "4-8" }, -/obj/machinery/door/airlock/engineering{ - dir = 4; - name = "Deck 3 Civilian Substation"; - req_one_access = list(11,24) +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/bluespace_drive) +"nRc" = ( +/obj/machinery/atmospherics/pipe/simple/visible/red, +/obj/machinery/atmospherics/binary/pump{ + dir = 8; + name = "Hydrogen to Connector" }, -/turf/simulated/floor, -/area/maintenance/substation/civilian_east) +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/atmos) "nRd" = ( /obj/effect/decal/fake_object{ dir = 4; @@ -97052,66 +97101,116 @@ name = "shallow water" }, /area/horizon/holodeck/source_konyang) +"nRl" = ( +/obj/structure/lattice/catwalk/indoor/grate/damaged{ + color = "#4c535b" + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/port/far) +"nRt" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/suit_storage_unit/standard_unit, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/storage/eva) "nRx" = ( /obj/structure/shuttle_part/mercenary/small{ icon_state = "2,0" }, /turf/unsimulated/floor/plating, /area/shuttle/syndicate_elite) -"nRy" = ( -/turf/simulated/wall, -/area/horizon/hydroponics/lower) -"nRA" = ( -/obj/machinery/recharge_station, -/turf/simulated/floor/tiled/dark/full, -/area/bridge/aibunker) -"nRE" = ( -/obj/effect/floor_decal/corner/red/diagonal, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor/lino, -/area/horizon/cafeteria) -"nRH" = ( -/obj/machinery/light{ +"nRz" = ( +/obj/effect/floor_decal/industrial/warning{ dir = 1 }, -/obj/effect/floor_decal/spline/plain{ - dir = 1 - }, -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/carpet/rubber, -/area/tcommsat/entrance) -"nRQ" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/engineering{ +/turf/simulated/floor/tiled, +/area/horizon/maintenance/deck_2/wing/starboard/nacelle) +"nRI" = ( +/obj/structure/disposalpipe/segment{ dir = 4; - name = "Engineering Substation"; - req_one_access = list(11,24) + icon_state = "pipe-c" }, -/turf/simulated/floor/plating, -/area/maintenance/substation/engineering/lower) +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/effect/floor_decal/corner/black{ + dir = 1 + }, +/obj/effect/floor_decal/corner/black, +/turf/simulated/floor/tiled, +/area/horizon/operations/machinist) +"nRL" = ( +/obj/structure/railing/mapped, +/obj/structure/table/rack, +/obj/item/ship_ammunition/longbow, +/obj/item/ship_ammunition/longbow, +/obj/item/ship_ammunition/longbow, +/obj/item/ship_ammunition/longbow, +/obj/item/ship_ammunition/longbow, +/obj/effect/floor_decal/corner/dark_blue{ + dir = 10 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark, +/area/horizon/weapons/longbow) +"nRR" = ( +/obj/structure/filingcabinet/chestdrawer, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/hallway/upper) +"nRS" = ( +/obj/machinery/firealarm/south, +/obj/effect/floor_decal/corner/lime/diagonal, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/white{ + name = "cooled white floor"; + temperature = 278.15 + }, +/area/horizon/medical/morgue) "nRU" = ( /obj/structure/railing/mapped, /obj/structure/flora/ausbushes/sparsegrass, /obj/structure/flora/ausbushes/lavendergrass, /turf/simulated/floor/grass/no_edge, /area/centcom/bar) -"nRZ" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/effect/floor_decal/industrial/outline/grey, -/obj/machinery/air_sensor{ - frequency = 1441; - id_tag = "co2_sensor" +"nRX" = ( +/obj/structure/cable{ + icon_state = "1-2" }, -/obj/effect/decal/fake_object/light_source/invisible, -/turf/simulated/floor/reinforced/carbon_dioxide, -/area/engineering/atmos) +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 10 + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/main/port) +"nRY" = ( +/obj/structure/bed/stool/chair/office/dark{ + dir = 8 + }, +/obj/effect/landmark/start{ + name = "Corporate Reporter" + }, +/turf/simulated/floor/carpet, +/area/horizon/crew/journalistoffice) +"nSe" = ( +/obj/machinery/camera/network/service{ + c_tag = "Service - Hydroponics Lower 1"; + dir = 4 + }, +/obj/machinery/atmospherics/unary/freezer{ + dir = 4; + icon_state = "freezer" + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/service/hydroponics/lower) "nSf" = ( /obj/effect/floor_decal/industrial/warning, /obj/effect/floor_decal/industrial/warning{ @@ -97126,27 +97225,18 @@ icon_state = "0-8" }, /turf/simulated/floor/tiled/dark/full/airless, -/area/horizon/exterior) +/area/horizon/command/bridge/controlroom) "nSg" = ( /obj/structure/sign/directions/cryo, /turf/unsimulated/wall/darkshuttlewall, /area/centcom/ferry) "nSh" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 4 - }, -/obj/machinery/papershredder, -/turf/simulated/floor/wood, -/area/horizon/library) -"nSi" = ( -/obj/machinery/atmospherics/pipe/simple/visible/red{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/structure/window/shuttle/scc_space_ship, -/obj/structure/grille, +/obj/structure/bed/stool/bar/padded/red, /turf/simulated/floor/plating, -/area/engineering/atmos/propulsion) +/area/horizon/maintenance/deck_2/wing/port) +"nSn" = ( +/turf/simulated/floor/tiled/dark/full, +/area/horizon/maintenance/deck_2/wing/starboard) "nSo" = ( /obj/effect/floor_decal/spline/plain/corner{ dir = 1 @@ -97159,38 +97249,6 @@ }, /turf/simulated/floor/marble/dark, /area/horizon/holodeck/source_tribunal) -"nSs" = ( -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/tiled/full, -/area/engineering/lobby) -"nSt" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/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 @@ -97200,42 +97258,6 @@ }, /turf/simulated/floor/shuttle/black, /area/shuttle/hapt) -"nSy" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 6 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"nSz" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/aux{ - dir = 9 - }, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/structure/cable/yellow, -/obj/machinery/power/smes/buildable{ - RCon_tag = "Combustion Turbine - Grid"; - cur_coils = 4; - input_level = 500000; - output_level = 500000 - }, -/turf/simulated/floor/plating, -/area/engineering/engine_room/turbine) "nSA" = ( /obj/structure/table/reinforced/wood, /obj/item/paper_scanner, @@ -97252,9 +97274,29 @@ /obj/item/gun/energy/laser, /turf/simulated/floor, /area/tdome/tdome2) -"nSJ" = ( -/turf/simulated/wall/shuttle/scc, -/area/shuttle/quark/cockpit) +"nSQ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/corner/brown/full{ + dir = 8 + }, +/obj/machinery/button/remote/blast_door{ + dir = 8; + id = "warehouse2"; + name = "Warehouse Shutter"; + pixel_x = -22; + pixel_y = -28 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/engineer_maintenance/pipe/wall, +/turf/simulated/floor/tiled, +/area/horizon/operations/warehouse) "nSR" = ( /obj/structure/lattice/catwalk, /obj/structure/disposalpipe/segment{ @@ -97263,104 +97305,18 @@ }, /turf/simulated/open/airless, /area/horizon/exterior) -"nSS" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "bridge blast"; - name = "Bridge Blast Doors"; - opacity = 0 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/airlock/engineering{ - dir = 1; - name = "Deck 3 Command Substation"; - req_one_access = list(11,24,57) - }, -/turf/simulated/floor, -/area/maintenance/substation/command) -"nTb" = ( -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 6 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/reagent_dispensers/extinguisher, -/turf/simulated/floor/plating, -/area/horizon/maintenance/deck_two/fore/starboard) "nTc" = ( /turf/simulated/floor/tiled, /area/horizon/security/brig) -"nTe" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/bridge/bridge_crew) -"nTh" = ( -/obj/structure/tank_wall, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/engineering/atmos) -"nTk" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/window/westright{ - name = "Hydroponics Desk"; - req_access = list(35) - }, -/obj/machinery/door/blast/shutters{ - dir = 4; - id = "shutters_deck2_hydroponicsdesk"; - name = "Hydroponics Desk Shutter" - }, +"nTf" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/hydroponics) -"nTl" = ( -/obj/structure/bed/stool/chair/padded/beige{ - dir = 4 +/obj/structure/cable/green{ + icon_state = "4-8" }, -/turf/simulated/floor/carpet, -/area/hallway/primary/central_two) -"nTm" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/aux, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/maintenance/engineering) +/turf/simulated/floor/tiled/full, +/area/horizon/operations/lobby) "nTn" = ( /obj/machinery/light/small/emergency{ dir = 4 @@ -97371,270 +97327,217 @@ /obj/effect/decal/cleanable/dirt, /turf/unsimulated/floor, /area/centcom/legion) -"nTr" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_two/fore) -"nTt" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/corner/red/diagonal, -/obj/effect/floor_decal/spline/plain{ - dir = 8 - }, -/obj/machinery/light/floor{ - dir = 8 - }, -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/turf/simulated/floor/lino, -/area/horizon/cafeteria) -"nTx" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard) -"nTz" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/starboard) -"nTA" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/starboard/docks) -"nTC" = ( -/turf/simulated/floor/tiled/dark, -/area/supply/dock) -"nTF" = ( -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/engine_room) -"nTI" = ( -/obj/effect/map_effect/marker/airlock/docking{ - landmark_tag = "nav_horizon_dock_deck_3_starboard_2"; - master_tag = "airlock_horizon_dock_deck_3_starboard_2"; - name = "airlock_horizon_dock_deck_3_starboard_2" - }, -/obj/machinery/light/small/emergency{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/horizon/hallway/deck_three/primary/starboard/docks) -"nTL" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/structure/window/shuttle/scc_space_ship/cardinal, -/obj/machinery/door/blast/regular/open{ - dir = 8; - id = "shutters_deck2_grauwolf"; - name = "Safety Blast Door" - }, -/turf/simulated/floor/plating, -/area/horizon/grauwolf) -"nTO" = ( -/obj/effect/floor_decal/corner/dark_green/diagonal, -/obj/machinery/newscaster/north, -/turf/simulated/floor/tiled, -/area/security/checkpoint2) -"nTQ" = ( -/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, -/turf/simulated/floor/tiled/dark/full, -/area/maintenance/wing/port/far) -"nTV" = ( -/obj/effect/floor_decal/corner_wide/green/diagonal{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/medical/equipment) -"nTZ" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 6 - }, -/turf/simulated/floor/tiled/dark, -/area/storage/eva) -"nUg" = ( -/obj/effect/floor_decal/corner/beige{ - dir = 9 - }, -/obj/machinery/light_switch{ - dir = 8; - pixel_x = -23; - pixel_y = 3 - }, -/turf/simulated/floor/tiled, -/area/security/vacantoffice) -"nUn" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/effect/floor_decal/corner/brown{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/operations/storage) -"nUo" = ( +"nTo" = ( /obj/effect/floor_decal/corner/mauve{ dir = 10 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 +/turf/simulated/floor/tiled, +/area/horizon/rnd/hallway/secondary) +"nTp" = ( +/obj/structure/table/standard, +/obj/item/modular_computer/laptop/preset/research/rd, +/obj/item/storage/slide_projector{ + pixel_y = 12 }, +/turf/simulated/floor/carpet/purple, +/area/horizon/command/heads/rd) +"nTq" = ( +/obj/machinery/door/airlock/glass{ + dir = 4; + name = "Lounge" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled, +/area/horizon/crew/lounge) +"nTu" = ( +/turf/simulated/wall/r_wall, +/area/horizon/service/kitchen/freezer) +"nTC" = ( +/turf/simulated/floor/tiled/dark, +/area/supply/dock) +"nTH" = ( /obj/structure/cable/green{ icon_state = "1-4" }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology/foyer) -"nUr" = ( -/obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/turf/simulated/floor/tiled/dark, -/area/horizon/maintenance/deck_three/aft/starboard) -"nUE" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 9 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/teleporter) +"nTN" = ( +/obj/machinery/iff_beacon/horizon/shuttle{ + pixel_y = -15 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/reinforced, +/area/horizon/shuttle/quark/cockpit) +"nTT" = ( +/obj/machinery/computer/shuttle_control/explore/terminal/quark{ + dir = 1; + req_access = null; + req_one_access = list(65,74) }, -/obj/structure/table/rack, -/obj/item/ship_ammunition/grauwolf_probe, -/obj/item/ship_ammunition/grauwolf_probe, -/obj/item/ship_ammunition/grauwolf_probe, -/obj/item/ship_ammunition/grauwolf_probe, -/obj/item/ship_ammunition/grauwolf_probe, -/obj/item/ship_ammunition/grauwolf_probe, -/obj/item/ship_ammunition/grauwolf_probe, -/obj/item/ship_ammunition/grauwolf_probe, -/obj/item/ship_ammunition/grauwolf_probe, -/obj/item/ship_ammunition/grauwolf_probe, /turf/simulated/floor/tiled/dark, -/area/horizon/grauwolf) +/area/horizon/shuttle/quark/cockpit) +"nTU" = ( +/obj/effect/floor_decal/corner/grey/diagonal, +/obj/effect/floor_decal/spline/plain{ + dir = 4 + }, +/obj/effect/floor_decal/spline/plain/corner{ + dir = 4 + }, +/obj/effect/floor_decal/spline/plain/corner{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/white, +/area/horizon/service/kitchen) +"nTW" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_3/starboard) +"nTX" = ( +/obj/effect/floor_decal/corner/purple/diagonal, +/obj/structure/sign/drop{ + pixel_x = 32; + pixel_y = 32 + }, +/obj/structure/sign/flag/sol{ + pixel_y = 32 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/structure/sign/poster/pinup{ + pixel_x = -32 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/service/custodial/disposals/deck_2) +"nUc" = ( +/obj/effect/floor_decal/corner_wide/yellow/full{ + dir = 8 + }, +/obj/structure/table/standard, +/obj/machinery/recharger{ + pixel_y = -1; + pixel_x = -8 + }, +/obj/machinery/cell_charger{ + pixel_y = 13; + pixel_x = -2 + }, +/obj/machinery/firealarm/north, +/turf/simulated/floor/tiled, +/area/horizon/engineering/lobby) +"nUC" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/carpet/purple, +/area/horizon/command/heads/rd) +"nUG" = ( +/turf/simulated/floor/carpet, +/area/horizon/command/heads/captain) +"nUK" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/corner_wide/green{ + dir = 10 + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/hallway) "nUN" = ( /obj/random/pottedplant, /obj/effect/floor_decal/spline/fancy/wood/full, /turf/simulated/floor/holofloor/wood, /area/horizon/holodeck/source_sauna) -"nUR" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/aft) -"nUU" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/service{ - dir = 1; - name = "Chapel" - }, -/turf/simulated/floor/tiled/full, -/area/chapel/main) -"nVb" = ( -/obj/machinery/atmospherics/pipe/simple/visible/black, -/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, +"nUQ" = ( +/obj/effect/decal/cleanable/dirt, /turf/simulated/floor/tiled/dark/full, -/area/engineering/atmos) -"nVj" = ( -/obj/effect/floor_decal/corner_wide/paleblue{ - dir = 5 - }, -/obj/structure/filingcabinet/chestdrawer{ - pixel_x = 10 - }, -/obj/structure/filingcabinet/medical{ - pixel_x = -7 - }, -/obj/machinery/alarm/north, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/heads/cmo) -"nVk" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ +/area/horizon/maintenance/deck_3/aft/port/far) +"nUS" = ( +/obj/effect/floor_decal/corner/purple/full, +/obj/structure/closet/hazmat/custodial, +/obj/effect/floor_decal/industrial/outline/custodial, +/obj/machinery/power/apc/west, +/obj/machinery/light/small{ dir = 8 }, -/turf/simulated/floor/tiled/white, -/area/medical/ors) -"nVq" = ( -/obj/item/modular_computer/console/preset/security{ +/obj/item/device/radio/intercom/south, +/obj/structure/cable/green, +/turf/simulated/floor/tiled, +/area/horizon/service/custodial/auxiliary) +"nVe" = ( +/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, +/obj/machinery/door/blast/shutters/open{ + dir = 4; + id = "shutters_deck2_portstairwellsec"; + name = "Security Shutter" + }, +/obj/machinery/door/blast/regular/open{ + id = "hangarlockdown"; + name = "Hangar Lockdown" + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/hangar/auxiliary) +"nVf" = ( +/obj/machinery/portable_atmospherics/canister/air/airlock, +/obj/machinery/atmospherics/portables_connector, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/aft_airlock) +"nVv" = ( +/obj/structure/closet/hazmat/research, +/obj/item/clothing/mask/gas/alt, +/obj/item/tank/oxygen, +/obj/effect/floor_decal/corner/mauve/full{ dir = 4 }, -/obj/machinery/status_display{ - pixel_y = -32 +/obj/machinery/button/remote/airlock{ + id = "xeno_entrance_int_b"; + name = "Xenobiology External Access Bolts"; + req_access = list(55); + specialfunctions = 4; + dir = 4; + pixel_x = 23; + desiredstate = 1 }, -/obj/machinery/requests_console/west{ - department = "Head of Security's Office"; - announcementConsole = 1; - departmentType = 5; - name = "Head of Security Request Console" - }, -/turf/simulated/floor/carpet, -/area/horizon/security/head_of_security) -"nVs" = ( -/obj/structure/table/wood, -/obj/item/storage/box/fancy/cigarettes, -/obj/machinery/power/outlet{ - pixel_y = 9 - }, -/turf/simulated/floor/carpet/art, -/area/crew_quarters/lounge) -"nVt" = ( -/obj/machinery/computer/borgupload{ - dir = 1 - }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 5 - }, -/turf/simulated/floor/tiled/dark, -/area/turret_protected/ai_upload_foyer) -"nVz" = ( -/turf/simulated/wall/r_wall, -/area/engineering/bluespace_drive) -"nVB" = ( -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/engine_room) +/obj/machinery/alarm/south, +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/xenobiology) "nVH" = ( /obj/effect/map_effect/window_spawner/full/shuttle{ color = "#BDB6AE"; @@ -97652,94 +97555,36 @@ /obj/effect/floor_decal/industrial/outline/red, /turf/simulated/floor/tiled/dark, /area/horizon/holodeck_control) -"nVJ" = ( -/obj/effect/floor_decal/corner/brown/diagonal, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/effect/floor_decal/industrial/warning{ +"nVX" = ( +/obj/item/modular_computer/console/preset/command{ dir = 8 }, -/obj/effect/floor_decal/industrial/warning{ +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 5 + }, +/obj/machinery/light{ dir = 4 }, -/obj/machinery/door/airlock/multi_tile/glass{ - autoclose = 0; - dir = 2; - name = "Warehouse Elevator"; - req_one_access = list(26,29,31,48,67,70) - }, -/obj/machinery/door/firedoor/multi_tile{ - dir = 2 - }, -/turf/simulated/floor/tiled/dark, -/area/operations/office) -"nVK" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/reagent_dispensers/fueltank, -/turf/simulated/floor/tiled/dark, -/area/maintenance/wing/starboard) -"nVM" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 1 - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 7 - }, -/obj/machinery/requests_console/south{ - department = "Conference Room"; - name = "Conference Room Requests Console"; - dir = 1; - pixel_y = 37 +/obj/structure/cable/green{ + icon_state = "1-8" }, /turf/simulated/floor/wood, -/area/bridge/meeting_room) -"nVO" = ( -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/machinery/alarm/north, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"nVQ" = ( -/obj/structure/bed/stool/chair/padded/brown, -/obj/effect/landmark/start{ - name = "Passenger" - }, -/turf/simulated/floor/carpet/art, -/area/crew_quarters/lounge) -"nVU" = ( -/obj/structure/bed/stool/bar/padded/red{ - dir = 1 - }, -/turf/simulated/floor/lino, -/area/horizon/bar) -"nVV" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/effect/floor_decal/spline/plain, -/obj/effect/landmark/start{ - name = "Chef" - }, -/turf/simulated/floor/tiled/white, -/area/horizon/kitchen) -"nVW" = ( +/area/horizon/command/heads/xo) +"nWb" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor, -/area/horizon/maintenance/deck_three/aft/starboard) -"nVZ" = ( -/obj/structure/railing/mapped{ - dir = 8 +/obj/effect/floor_decal/corner/red/diagonal, +/obj/effect/floor_decal/spline/plain/corner, +/obj/structure/cable/green{ + icon_state = "1-4" }, -/obj/effect/floor_decal/corner/black{ - dir = 9 - }, -/obj/effect/floor_decal/industrial/loading/yellow{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/hangar/intrepid) +/turf/simulated/floor/lino, +/area/horizon/service/cafeteria) "nWe" = ( /obj/machinery/door/airlock/external{ frequency = 1380; @@ -97752,43 +97597,27 @@ /obj/effect/floor_decal/industrial/hatch/yellow, /turf/unsimulated/floor, /area/centcom/evac) -"nWf" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/structure/closet/crate, -/obj/effect/floor_decal/corner/brown{ - dir = 6 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled, -/area/operations/storage) -"nWg" = ( -/obj/effect/floor_decal/industrial/outline/grey, -/obj/structure/survey_probe/ground, -/turf/simulated/floor/plating, -/area/hangar/intrepid) -"nWm" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/maintenance/wing/starboard/far) -"nWn" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, +"nWj" = ( +/obj/effect/floor_decal/corner/green/diagonal, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 }, /obj/structure/cable/green{ - icon_state = "4-8" + icon_state = "2-8" }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/simulated/floor/tiled/white, +/area/horizon/medical/ward/isolation) +"nWp" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/corner/dark_blue/full{ + dir = 8 }, -/turf/simulated/floor/wood, -/area/horizon/crew_quarters/lounge/bar) +/turf/simulated/floor/tiled/dark, +/area/horizon/security/checkpoint2) "nWr" = ( /obj/effect/floor_decal/corner/white/diagonal, /obj/effect/floor_decal/spline/plain{ @@ -97799,19 +97628,27 @@ }, /turf/simulated/floor/holofloor/tiled, /area/template_noop) -"nWA" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 +"nWs" = ( +/obj/effect/floor_decal/spline/fancy/wood, +/obj/machinery/hologram/holopad, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 }, -/turf/simulated/floor/plating, -/area/engineering/storage/lower) -"nWF" = ( -/turf/simulated/wall, -/area/maintenance/hangar/starboard) -"nWK" = ( -/turf/simulated/wall/shuttle/scc_space_ship/cardinal, -/area/bridge/controlroom) +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/horizon/service/dining_hall) +"nWM" = ( +/obj/effect/floor_decal/corner/dark_blue/diagonal, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/dark, +/area/horizon/ai/upload_foyer) "nWN" = ( /obj/structure/table/rack, /obj/item/clothing/shoes/magboots, @@ -97824,119 +97661,110 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/unsimulated/floor, /area/antag/mercenary) -"nWZ" = ( -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 8 +"nWO" = ( +/obj/machinery/door/airlock/maintenance{ + dir = 4; + req_one_access = list(5,10,12) }, -/turf/simulated/floor/plating, -/area/hangar/intrepid) -"nXe" = ( -/obj/structure/table/steel, -/obj/machinery/light/small/emergency{ +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/full, +/area/horizon/engineering/hallway/fore) +"nWP" = ( +/obj/machinery/camera/network/second_deck{ + c_tag = "Second Deck - Starboard Dock Port"; dir = 1 }, -/obj/item/contraband/poster{ - pixel_x = 1; - pixel_y = 5 - }, -/obj/item/contraband/poster{ - pixel_x = 16; - pixel_y = 9 - }, -/turf/simulated/floor, -/area/maintenance/security_port) -"nXf" = ( -/obj/machinery/door/window/holowindoor{ - dir = 1; - req_access = list(55) - }, -/obj/machinery/door/window/holowindoor{ - req_access = list(55) - }, -/obj/machinery/door/blast/regular/open{ - fail_secure = 1; - id = "xenobio_f"; - name = "Cell Containment Blast Door"; - dir = 8 - }, -/turf/simulated/floor/tiled/dark/full, -/area/rnd/xenobiology) -"nXh" = ( -/obj/structure/railing/mapped{ +/obj/machinery/atmospherics/pipe/simple/hidden{ dir = 4 }, -/obj/structure/platform/ledge{ - dir = 8 +/obj/effect/floor_decal/corner/dark_green{ + dir = 10 }, -/turf/simulated/open, -/area/operations/office) +/obj/structure/sign/vacuum{ + pixel_y = -32 + }, +/turf/simulated/floor/tiled, +/area/horizon/security/checkpoint2) +"nWQ" = ( +/obj/machinery/requests_console/east{ + department = "Research - Xenological Studies"; + name = "Xenological Studies Request Console" + }, +/obj/structure/closet/crate, +/obj/structure/table/standard, +/obj/effect/floor_decal/corner/mauve{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/xenological) +"nXb" = ( +/obj/effect/floor_decal/industrial/warning/corner, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/green, +/obj/structure/grille, +/turf/simulated/floor/tiled/dark/full/airless, +/area/horizon/command/bridge/controlroom) "nXi" = ( /obj/machinery/atmospherics/unary/vent_pump/on, /turf/simulated/floor/tiled, /area/horizon/security/brig) -"nXk" = ( -/obj/structure/table/standard, -/obj/item/storage/box/fancy/donut, -/obj/machinery/alarm/north{ - dir = 4; - pixel_y = 0; - pixel_x = 10 - }, -/obj/item/storage/box/drinkingglasses{ - pixel_y = 15; - pixel_x = 6 - }, -/obj/item/storage/box/drinkingglasses{ - pixel_y = 15; - pixel_x = -9 - }, -/turf/simulated/floor/tiled/full, -/area/bridge/cciaroom) -"nXl" = ( -/obj/structure/cable/green{ - icon_state = "11-8" - }, -/obj/structure/railing/mapped{ +"nXj" = ( +/obj/structure/bed/stool/chair/office/dark{ dir = 1 }, -/obj/structure/railing/mapped{ - dir = 8 +/obj/effect/floor_decal/spline/plain{ + dir = 9 }, -/obj/structure/railing/mapped{ - dir = 4 +/obj/structure/cable/green{ + icon_state = "0-2" }, -/obj/structure/lattice, -/obj/structure/disposalpipe/down{ - dir = 8 +/obj/structure/cable/green{ + icon_state = "0-4" }, -/turf/simulated/open, -/area/horizon/maintenance/deck_two/fore/port) -"nXn" = ( -/obj/structure/table/reinforced/steel, -/obj/machinery/button/remote/blast_door{ - dir = 1; - id = "r_ust_core_blast"; - name = "INDRA Reactor Core Blast Doors"; - pixel_x = -6; - pixel_y = 7 +/obj/machinery/power/apc/critical/west, +/turf/simulated/floor/carpet/rubber, +/area/horizon/tcommsat/entrance) +"nXp" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/fuel, +/obj/structure/shuttle_part/scc/scout{ + icon_state = "2,9"; + opacity = 1; + outside_part = 0 }, -/obj/machinery/button/remote/blast_door{ - dir = 1; - id = "r-ust_monitoring_blast"; - name = "INDRA Reactor Monitoring Blast Doors"; - pixel_x = 6; - pixel_y = 7 +/turf/simulated/floor/reinforced{ + blocks_air = 1; + density = 1; + name = "thruster mount"; + opacity = 1 }, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/engine_monitoring/rust) -"nXy" = ( -/obj/machinery/portable_atmospherics/canister/air/airlock, -/obj/machinery/atmospherics/portables_connector{ - dir = 8 +/area/horizon/shuttle/canary) +"nXr" = ( +/obj/structure/cable/green{ + icon_state = "1-2" }, -/obj/effect/floor_decal/industrial/outline/yellow, +/obj/item/trash/koisbar, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor, +/area/horizon/maintenance/deck_3/security/port) +"nXt" = ( +/obj/structure/ladder/up{ + pixel_y = 13 + }, +/obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, -/area/engineering/engine_room) +/area/horizon/maintenance/deck_2/service/port) +"nXw" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/vending/snack, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/hallway/fore) "nXz" = ( /turf/simulated/floor/exoplanet/water/shallow{ dir = 4; @@ -97944,17 +97772,36 @@ icon_state = "beachcorner" }, /area/horizon/holodeck/source_moghes) -"nXE" = ( -/obj/machinery/light/small{ +"nXI" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/structure/closet/walllocker/firecloset{ + pixel_x = -25 + }, +/obj/machinery/atmospherics/portables_connector/fuel{ dir = 4 }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 +/turf/simulated/floor/tiled/dark, +/area/horizon/shuttle/mining) +"nXR" = ( +/obj/effect/map_effect/marker/airlock{ + frequency = 2001; + master_tag = "airlock_horizon_deck_2_starboard_aft"; + name = "airlock_horizon_deck_2_starboard_aft" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 1 }, -/obj/structure/closet/crate/bin, -/obj/random/loot, /turf/simulated/floor/plating, -/area/maintenance/operations) +/area/horizon/maintenance/deck_2/wing/port/near) +"nXS" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/obj/structure/bed/stool/chair/padded/brown{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/horizon/repoffice/consular_two) "nXW" = ( /obj/item/modular_computer/console/preset/security, /obj/effect/floor_decal/corner/blue{ @@ -97964,54 +97811,56 @@ icon_state = "dark_preview" }, /area/centcom/control) -"nYj" = ( -/obj/structure/bed/stool/chair/office/bridge{ - dir = 4 +"nYb" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 5 }, -/obj/effect/floor_decal/corner/dark_blue/diagonal, -/turf/simulated/floor/tiled/dark, -/area/bridge/aibunker) -"nYx" = ( +/obj/structure/table/standard, +/obj/machinery/power/apc/north, /obj/structure/cable/green{ - icon_state = "1-2" + icon_state = "0-2" + }, +/obj/machinery/button/remote/blast_door{ + dir = 10; + id = "hazardous_lockdown"; + name = "Area lockdown"; + req_access = list(47); + pixel_y = 5 + }, +/obj/machinery/camera/network/research{ + c_tag = "Research - Xenobiology Hazardous Containment"; + network = list("Research","Xeno_Bio") + }, +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/xenobiology/hazardous) +"nYe" = ( +/obj/structure/cable{ + icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/lattice/catwalk/indoor/grate/damaged, +/obj/effect/decal/cleanable/greenglow, /obj/structure/disposalpipe/segment, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/maintenance{ - dir = 1; - req_one_access = list(26,29,31,48,67) - }, -/turf/simulated/floor/tiled/full, -/area/operations/loading) -"nYA" = ( -/obj/structure/window/shuttle/scc_space_ship, -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/shutters{ - id = "shutters_disposals"; - name = "\improper Viewing Shutter" - }, /turf/simulated/floor/plating, -/area/horizon/custodial/disposals) -"nYB" = ( -/obj/machinery/conveyor{ - dir = 8; - id = "warehousetomail" - }, -/obj/machinery/door/firedoor, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/structure/plasticflaps{ - dir = 4; - name = "Delivery Chute to Mail Room" - }, +/area/horizon/maintenance/deck_1/operations/starboard) +"nYn" = ( +/obj/machinery/portable_atmospherics/powered/pump/filled, +/obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled, -/area/operations/storage) -"nYF" = ( -/obj/structure/bed/stool/bar/padded, +/area/horizon/hangar/operations) +"nYp" = ( +/obj/machinery/door/window/southleft{ + req_access = list(47); + name = "Secure Storage" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/carpet/rubber, -/area/rnd/lab) +/area/horizon/rnd/lab) +"nYB" = ( +/obj/effect/map_effect/window_spawner/full/borosilicate/reinforced/firedoor, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/reactor/supermatter/airlock) "nYH" = ( /obj/structure/bed/stool/chair/office/bridge/generic{ desc = "Looks suspiciously comfortable."; @@ -98021,12 +97870,42 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/carpet, /area/shuttle/skipjack) +"nYN" = ( +/obj/effect/floor_decal/spline/plain/lime{ + dir = 6 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/operations/commissary) +"nYR" = ( +/obj/structure/shuttle_part/scc/mining{ + icon_state = "4,0" + }, +/turf/simulated/floor/plating, +/area/horizon/shuttle/mining) +"nYS" = ( +/obj/structure/shuttle_part/scc_space_ship{ + icon_state = "d2-2" + }, +/turf/simulated/wall, +/area/horizon/maintenance/deck_2/cargo_compartment) "nYW" = ( /obj/effect/floor_decal/spline/fancy/wood/corner{ dir = 1 }, /turf/unsimulated/floor, /area/centcom/ferry) +"nYY" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/starboard/far) "nZa" = ( /obj/effect/floor_decal/corner/green/full{ dir = 1 @@ -98036,46 +97915,32 @@ }, /turf/simulated/floor/holofloor/tiled, /area/horizon/holodeck/source_thunderdomecourt) -"nZb" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 1 +"nZt" = ( +/obj/machinery/portable_atmospherics/canister/empty/carbon_dioxide, +/obj/effect/floor_decal/industrial/outline/grey, +/turf/simulated/floor/tiled/dark, +/area/horizon/maintenance/deck_3/aft/port/far) +"nZx" = ( +/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/operations/mining_main/refinery) +"nZF" = ( +/obj/item/material/shard{ + icon_state = "small" }, -/obj/machinery/portable_atmospherics/canister/air/airlock, -/obj/structure/window/reinforced{ +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/port) +"nZJ" = ( +/obj/effect/floor_decal/industrial/hatch/red, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning{ dir = 4 }, -/turf/simulated/floor/plating, -/area/maintenance/hangar/starboard) -"nZc" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/table/reinforced/steel, -/obj/item/clipboard, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/bluespace_drive/monitoring) -"nZp" = ( -/obj/machinery/atmospherics/pipe/manifold4w/visible/yellow, -/turf/simulated/floor/plating, -/area/rnd/xenoarch_atrium) -"nZD" = ( -/obj/machinery/atmospherics/pipe/manifold4w/visible, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology/xenoflora) -"nZI" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/effect/floor_decal/spline/fancy/wood, -/turf/simulated/floor/wood, -/area/chapel/office) +/turf/simulated/floor/reinforced/airless, +/area/horizon/engineering/reactor/supermatter/mainchamber) "nZK" = ( /obj/structure/cable/green{ icon_state = "1-2" @@ -98092,31 +97957,32 @@ /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/full, /area/horizon/security/hallway) -"nZL" = ( -/obj/machinery/light, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 7 +"nZM" = ( +/obj/structure/platform/ledge, +/obj/structure/platform/ledge{ + dir = 4 }, -/obj/structure/cable/green{ - icon_state = "4-8" +/obj/structure/platform_deco/ledge{ + dir = 5 }, -/turf/simulated/floor/wood, -/area/crew_quarters/captain) +/turf/simulated/open, +/area/horizon/hallway/primary/deck_3/central) "nZN" = ( /turf/simulated/floor/holofloor/carpet/rubber, /area/horizon/holodeck/source_basketball) -"nZP" = ( -/obj/structure/bed/stool/chair{ - dir = 4 - }, -/obj/effect/floor_decal/corner/brown{ - dir = 10 - }, -/obj/effect/landmark/start{ - name = "Assistant" - }, +"nZS" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/light/small, +/obj/effect/large_stock_marker, /turf/simulated/floor/tiled, -/area/operations/lobby) +/area/horizon/operations/warehouse) +"nZT" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner/dark_green, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_2/fore) "nZW" = ( /obj/effect/step_trigger/thrower/shuttle/northwest, /turf/space/transit/east, @@ -98130,6 +97996,23 @@ }, /turf/simulated/floor/exoplanet/grass/grove, /area/centcom/shared_dream) +"oaa" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor, +/area/horizon/maintenance/deck_3/aft/port) "oad" = ( /obj/structure/sign/poster{ pixel_y = 32 @@ -98151,13 +98034,6 @@ }, /turf/simulated/floor/exoplanet/barren/raskara, /area/centcom/shared_dream) -"oal" = ( -/obj/effect/floor_decal/spline/fancy/wood, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/horizon/library) "oam" = ( /obj/structure/grille/diagonal{ dir = 8 @@ -98170,43 +98046,68 @@ /obj/machinery/atmospherics/pipe/simple/hidden/yellow, /turf/space/dynamic, /area/horizon/exterior) -"oat" = ( -/obj/effect/floor_decal/corner/dark_blue/full{ - dir = 4 +"oas" = ( +/obj/structure/table/stone/marble, +/obj/machinery/appliance/mixer/candy{ + pixel_y = 8 }, -/obj/structure/table/steel, -/obj/item/storage/box/gloves, -/obj/item/storage/box/gloves{ - pixel_y = 11 +/turf/simulated/floor/tiled/dark/full, +/area/horizon/service/kitchen) +"oau" = ( +/obj/effect/floor_decal/spline/plain/lime{ + dir = 6 }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 +/obj/machinery/disposal/small/west, +/obj/machinery/power/apc/east, +/obj/structure/cable/green, +/obj/structure/disposalpipe/trunk{ + dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/storage/eva) +/area/horizon/service/hydroponics/garden) +"oav" = ( +/obj/structure/railing/mapped{ + dir = 8 + }, +/turf/simulated/open, +/area/horizon/hallway/primary/deck_3/port) "oaw" = ( /obj/effect/step_trigger/thrower/shuttle/east, /turf/space/transit/east, /area/template_noop) -"oaB" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/reinforced, -/area/bridge/selfdestruct) -"oaE" = ( -/obj/effect/floor_decal/corner/white{ +"oax" = ( +/obj/effect/floor_decal/corner/dark_green{ dir = 5 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"oaI" = ( -/obj/structure/lattice/catwalk/indoor/grate/dark, +/area/horizon/hallway/primary/deck_2/central) +"oaA" = ( /obj/structure/cable/green{ - icon_state = "1-8" + icon_state = "1-2" }, -/turf/simulated/floor/plating, -/area/maintenance/wing/cargo_compartment) +/obj/structure/cable/green, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/landmark/latejoinmedbayrecovery, +/obj/effect/floor_decal/corner_wide/green{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/ward) +"oaC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/corner/dark_green{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_3/port) "oaK" = ( /obj/effect/floor_decal/corner/paleblue/diagonal, /obj/structure/table/standard, @@ -98222,6 +98123,20 @@ icon_state = "white" }, /area/centcom/holding) +"oaL" = ( +/obj/machinery/light/floor, +/turf/simulated/floor/carpet/rubber, +/area/horizon/rnd/telesci) +"oaM" = ( +/obj/structure/bookcase/libraryspawn/reference, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/service/library) +"oaN" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/port/nacelle) "oaP" = ( /obj/machinery/light{ dir = 8; @@ -98233,17 +98148,6 @@ name = "staircase" }, /area/antag/mercenary) -"oaT" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 1 - }, -/obj/effect/floor_decal/spline/fancy/wood, -/obj/machinery/light, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/heads/hor) "oaU" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 8 @@ -98254,59 +98158,63 @@ /obj/machinery/light, /turf/unsimulated/floor/wood, /area/centcom/bar) -"oba" = ( +"oaX" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/main/starboard) +"obe" = ( +/obj/structure/closet/crate, +/obj/random/loot, +/turf/simulated/floor/tiled/dark, +/area/horizon/maintenance/deck_2/wing/starboard) +"obf" = ( +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 + dir = 4 }, +/turf/simulated/floor/plating, +/area/horizon/engineering/reactor/supermatter/mainchamber) +"obk" = ( +/obj/machinery/alarm/east, +/obj/random/pottedplant, +/turf/simulated/floor/wood, +/area/horizon/medical/psych) +"obl" = ( /obj/structure/cable/green{ icon_state = "4-8" }, -/obj/structure/lattice/catwalk/indoor/grate, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /turf/simulated/floor/plating, -/area/hallway/primary/central_two) -"obd" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 +/area/horizon/maintenance/deck_2/wing/port/near) +"obp" = ( +/obj/effect/floor_decal/corner_wide/lime{ + dir = 9 }, -/obj/effect/floor_decal/corner/dark_green{ - dir = 10 +/obj/random/pottedplant, +/obj/machinery/computer/guestpass{ + pixel_x = -32 }, -/turf/simulated/floor/tiled, -/area/security/checkpoint2) -"obo" = ( -/obj/effect/floor_decal/corner_wide/yellow/full{ - dir = 1 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/button/remote/blast_door{ - dir = 4; - id = "shutters_deck3_shieldwindows"; - name = "Viewing Shutters"; - pixel_x = 23 - }, -/turf/simulated/floor/tiled/dark/full, -/area/storage/shields) -"obs" = ( -/obj/effect/floor_decal/corner_wide/black/full{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 5 - }, -/obj/machinery/atmospherics/binary/pump/high_power{ - dir = 8; - name = "Hydrogen to Burn Mix" - }, -/turf/simulated/floor/tiled/dark, -/area/engineering/atmos/propulsion/starboard) +/turf/simulated/floor/tiled/white, +/area/horizon/medical/reception) "oby" = ( /obj/structure/table/reinforced/steel, /obj/item/storage/box/bodybags{ @@ -98326,14 +98234,46 @@ name = "dirt" }, /area/horizon/holodeck/source_adhomai) -"obB" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 5 +"obF" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 8 }, -/obj/structure/table/wood, -/obj/machinery/newscaster/north, -/turf/simulated/floor/tiled, -/area/operations/lobby) +/obj/machinery/airlock_sensor{ + dir = 8; + pixel_x = 20; + pixel_y = -6 + }, +/obj/effect/map_effect/marker/airlock/docking{ + landmark_tag = "nav_horizon_dock_deck_3_starboard_2"; + master_tag = "airlock_horizon_dock_deck_3_starboard_2"; + name = "airlock_horizon_dock_deck_3_starboard_2" + }, +/obj/machinery/embedded_controller/radio/airlock/docking_port{ + dir = 8; + pixel_x = 20; + pixel_y = 6 + }, +/turf/simulated/floor/plating, +/area/horizon/hallway/primary/deck_3/port/docks) +"obH" = ( +/obj/structure/sign/biohazard{ + pixel_x = -1; + pixel_y = -30 + }, +/obj/structure/sink{ + dir = 8; + pixel_x = -12 + }, +/obj/machinery/shower{ + dir = 4; + pixel_y = 1 + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/service/hydroponics/lower) "obI" = ( /obj/machinery/light{ dir = 4 @@ -98348,65 +98288,38 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/security/firing_range) -"obJ" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 1 +"obO" = ( +/obj/machinery/smartfridge/secure, +/obj/machinery/door/firedoor, +/obj/machinery/door/window/desk/northright{ + name = "Hydroponics"; + req_access = list(35) }, -/obj/effect/floor_decal/spline/fancy/wood, -/obj/structure/coatrack{ - pixel_x = -5; - pixel_y = 22 +/obj/machinery/door/window/desk/southright{ + name = "Kitchen"; + req_access = list(28) }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/operations/qm) -"obK" = ( +/turf/simulated/floor/tiled/dark/full, +/area/horizon/service/hydroponics) +"obQ" = ( /obj/structure/cable/green{ - icon_state = "1-2" + icon_state = "11-8" }, -/obj/effect/floor_decal/corner/dark_green/full{ +/obj/structure/railing/mapped{ dir = 1 }, -/obj/effect/floor_decal/spline/plain/corner/green{ +/obj/structure/railing/mapped{ dir = 8 }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ +/obj/structure/railing/mapped{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/horizon/hydroponics/lower) -"obL" = ( -/obj/structure/bed/stool/chair/shuttle{ +/obj/structure/lattice, +/obj/structure/disposalpipe/down{ dir = 8 }, -/turf/simulated/floor/shuttle/dark_blue, -/area/shuttle/escape_pod/pod4) -"obM" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/machinery/light/small/emergency{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/engineering) -"obR" = ( -/obj/structure/platform_stairs/full/east_west_cap, -/obj/structure/platform/cutout{ - dir = 8 - }, -/obj/structure/platform{ - dir = 1 - }, -/turf/simulated/floor/carpet/purple, -/area/crew_quarters/heads/hor) +/turf/simulated/open, +/area/horizon/maintenance/deck_2/service/starboard) "obS" = ( /obj/structure/table/standard, /obj/item/storage/toolbox/mechanical, @@ -98415,191 +98328,15 @@ icon_state = "white" }, /area/tdome/tdomeadmin) -"obT" = ( -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/obj/effect/floor_decal/corner/yellow{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/light, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/engineering/aft_airlock) -"obW" = ( -/obj/machinery/chem_master/condimaster{ - pixel_y = 1 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/light, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/kitchen) -"oca" = ( -/obj/machinery/firealarm/south, -/obj/effect/floor_decal/corner/dark_green{ - dir = 10 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/turf/simulated/floor/tiled, -/area/horizon/crew_quarters/fitness/changing) -"ocp" = ( -/obj/effect/floor_decal/industrial/hatch_door/yellow{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/firedoor{ - req_one_access = list(24,11,67,73) - }, -/obj/machinery/door/airlock/glass_command{ - dir = 1; - id_tag = "intrepid_flightdeck"; - name = "Intrepid Flight Deck"; - req_access = list(73) - }, -/turf/simulated/floor/tiled/dark/full, -/area/shuttle/intrepid/flight_deck) -"oct" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/airlock/maintenance_hatch{ - dir = 4; - name = "Delivery Chute Maintenance"; - req_access = list(31) - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/firedoor{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/operations/storage) -"ocu" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/effect/floor_decal/corner/dark_green{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/hangar/intrepid) -"ocx" = ( -/turf/simulated/floor/shuttle/black, -/area/shuttle/hapt) -"ocy" = ( -/obj/effect/floor_decal/corner/dark_blue/diagonal, -/obj/item/modular_computer/console/preset/security{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/dark, -/area/security/checkpoint) -"ocC" = ( -/turf/simulated/floor/holofloor/tiled, -/area/horizon/holodeck/source_boxingcourt) -"ocH" = ( -/obj/machinery/power/generator{ - anchored = 1; - dir = 4 - }, -/obj/structure/cable/yellow, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"ocJ" = ( -/obj/machinery/firealarm/north, -/obj/machinery/newscaster/west, -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/floor_decal/corner/dark_blue/full{ - dir = 8 - }, -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/structure/closet, -/obj/item/clothing/mask/breath, -/obj/item/clothing/mask/breath, -/obj/item/clothing/mask/breath, -/obj/item/clothing/mask/breath, -/turf/simulated/floor/tiled/dark, -/area/storage/eva) -"ocL" = ( -/obj/structure/shuttle_part/tcfl{ - icon_state = "15,1" - }, -/turf/unsimulated/floor/plating, -/area/shuttle/legion) -"ocO" = ( -/obj/random/junk, -/obj/effect/floor_decal/industrial/warning{ - dir = 5 - }, -/turf/simulated/floor, -/area/horizon/maintenance/deck_three/aft/starboard) -"ocQ" = ( -/obj/machinery/light/small/emergency{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/wing/port/deck1) -"ocT" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/maintenance{ - dir = 4; - req_one_access = list(12, 35) - }, -/obj/machinery/door/blast/regular/open{ - id = "hangarlockdown"; - name = "Hangar Lockdown" - }, -/turf/simulated/floor/tiled/full, -/area/maintenance/hangar/port) -"ocW" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 9 - }, -/obj/effect/floor_decal/industrial/loading/yellow{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/dark, -/area/horizon/grauwolf) -"ocX" = ( -/obj/machinery/keycard_auth{ - pixel_x = -5; - pixel_y = -24 - }, -/obj/machinery/button/remote/blast_door{ - desc = "A remote control-switch for engine core."; - id = "sat_blast"; - name = "Scuttling Device Blast Doors Control"; - pixel_x = 10; - pixel_y = -20; - req_access = list(20) - }, -/obj/effect/floor_decal/spline/fancy/wood, +"obV" = ( /obj/effect/floor_decal/spline/fancy/wood{ - dir = 1 + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 }, /obj/structure/cable/green{ icon_state = "4-8" @@ -98607,46 +98344,224 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ +/obj/structure/platform_deco{ dir = 4 }, +/turf/simulated/floor/wood, +/area/horizon/service/dining_hall) +"ocb" = ( +/obj/structure/table/wood, +/obj/item/modular_computer/laptop/preset/security/hos{ + pixel_y = 9 + }, +/turf/simulated/floor/carpet, +/area/horizon/command/heads/hos) +"oci" = ( +/obj/effect/floor_decal/corner/lime/diagonal, +/obj/item/device/gps/stationary/sccv_intrepid{ + pixel_x = -10; + pixel_y = 25 + }, +/obj/machinery/vending/wallmed1{ + pixel_x = 4; + pixel_y = 31; + req_access = null + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/shuttle/intrepid/medical) +"ocl" = ( +/obj/effect/floor_decal/industrial/outline/service, +/obj/machinery/vending/hydronutrients/hydroponics, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/service/hydroponics/lower) +"ocs" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/portables_connector{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/horizon/rnd/xenoarch/atrium) +"ocx" = ( +/turf/simulated/floor/shuttle/black, +/area/shuttle/hapt) +"ocB" = ( +/obj/structure/cable/green{ + icon_state = "11-4" + }, +/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/zpipe/down/supply{ + dir = 4 + }, +/turf/simulated/open, +/area/horizon/medical/ward/isolation) +"ocC" = ( +/turf/simulated/floor/holofloor/tiled, +/area/horizon/holodeck/source_boxingcourt) +"ocD" = ( +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/effect/floor_decal/corner/black{ + dir = 9 + }, +/obj/effect/floor_decal/industrial/loading/yellow{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/hangar/intrepid) +"ocE" = ( +/obj/structure/platform{ + dir = 4 + }, +/obj/structure/sign/fire{ + desc = "A warning sign which reads 'DANGER: SHUTTLE THRUSTERS IN USE' and 'MIND THE DISTANCE'."; + name = "\improper DANGER: THRUSTERS sign"; + pixel_x = -32 + }, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/machinery/disposal/small/east, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/operations/machinist) +"ocF" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/hatch{ + locked = 1; + name = "INDRA Reactor Core Access"; + req_one_access = list(11,24) + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/reactor/indra/mainchamber) +"ocL" = ( +/obj/structure/shuttle_part/tcfl{ + icon_state = "15,1" + }, +/turf/unsimulated/floor/plating, +/area/shuttle/legion) +"odf" = ( +/obj/structure/disposalpipe/segment{ + icon_state = "pipe-c" + }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/turf/simulated/floor/wood, -/area/crew_quarters/captain) -"odc" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 10 +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 }, -/obj/item/modular_computer/console/preset/command{ - dir = 1 +/obj/structure/cable/green{ + icon_state = "2-8" }, -/obj/structure/railing/mapped, -/turf/simulated/floor/tiled/dark, -/area/bridge/controlroom) +/obj/structure/lattice/catwalk/indoor/grate, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/horizon/hallway/primary/deck_2/central) +"odg" = ( +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/teleporter) +"odh" = ( +/obj/effect/floor_decal/spline/plain, +/turf/simulated/floor/tiled/freezer{ + name = "cooled tiles"; + temperature = 278.15 + }, +/area/horizon/medical/morgue) +"odk" = ( +/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_2/fore) +"odm" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/corner_wide/yellow{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/horizon/engineering/bluespace_drive) "odn" = ( /obj/structure/table/holotable, /obj/item/holo/practicesword/holorapier, /obj/item/holo/practicesword/holorapier, /turf/simulated/floor/holofloor/tiled, /area/horizon/holodeck/source_boxingcourt) -"odo" = ( -/obj/structure/railing/mapped, -/turf/simulated/open, -/area/maintenance/wing/starboard) -"odq" = ( -/obj/structure/platform, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/light{ +"ods" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/effect/floor_decal/corner/mauve/full{ dir = 1 }, -/obj/machinery/vending/cola, -/turf/simulated/floor/tiled/full, -/area/bridge) -"odF" = ( -/turf/simulated/wall/r_wall, -/area/engineering/engine_room/rust) +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/xenobiology/hazardous) +"odv" = ( +/obj/structure/closet/crate, +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/random/loot, +/obj/effect/decal/cleanable/cobweb2{ + icon_state = "cobweb1" + }, +/obj/structure/railing/mapped{ + density = 0; + icon_state = "railing0-0" + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/operations/starboard) +"odw" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/reinforced, +/area/horizon/rnd/xenobiology/hazardous) +"odC" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/meter, +/obj/effect/floor_decal/spline/plain/cee{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/black{ + dir = 8 + }, +/turf/simulated/floor/carpet/rubber, +/area/horizon/tcommsat/entrance) +"odE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/floor_decal/industrial/warning, +/obj/structure/trash_pile, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/wing/port/far) "odG" = ( /obj/effect/floor_decal/corner/paleblue/diagonal{ dir = 8 @@ -98656,93 +98571,57 @@ }, /turf/unsimulated/floor, /area/centcom/spawning) -"odI" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/effect/landmark/entry_point/port{ - name = "port, deck 3 port hallway" - }, -/obj/structure/window/shuttle/scc_space_ship/cardinal, -/turf/simulated/floor/plating, -/area/horizon/hallway/deck_three/primary/port) "odJ" = ( /obj/structure/shuttle_part/tcfl{ icon_state = "14,0" }, /turf/unsimulated/floor/plating, /area/shuttle/legion) -"odK" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/substation/civilian_west) -"odO" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/table/standard, -/obj/machinery/camera/network/supply{ - c_tag = "Operations - Lower Warehouse 3" - }, -/turf/simulated/floor/tiled, -/area/operations/storage) -"odQ" = ( -/obj/effect/floor_decal/industrial/outline_door/yellow{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/arrow/yellow{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/maintenance/wing/starboard/far) +"odS" = ( +/obj/structure/stairs_lower/stairs_upper, +/turf/simulated/wall/r_wall, +/area/horizon/service/custodial/disposals/deck_1) "odT" = ( /obj/structure/bed/stool/padded, /turf/unsimulated/floor{ icon_state = "wood" }, /area/centcom/specops) -"odV" = ( +"odU" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/plating, +/area/horizon/engineering/drone_fabrication) +"odX" = ( /obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 5 + dir = 9 }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/dark, -/area/engineering/atmos) -"oea" = ( +/turf/simulated/floor/plating, +/area/horizon/engineering/atmos/air) +"odY" = ( +/obj/machinery/alarm/south, /obj/effect/floor_decal/industrial/warning/corner{ - dir = 8 - }, -/obj/structure/bed/handrail{ dir = 1 }, -/obj/machinery/camera/network/intrepid{ - dir = 1; - c_tag = "Intrepid - Port Nacelle" +/obj/structure/cable/green{ + icon_state = "1-4" }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark/full, -/area/shuttle/intrepid/port_storage) +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_3/security/starboard) "oeb" = ( /turf/unsimulated/wall/darkshuttlewall, /area/centcom/bar) -"oec" = ( -/turf/simulated/wall/r_wall, -/area/bridge/aibunker) -"oeh" = ( -/obj/effect/floor_decal/corner_wide/yellow{ +"oei" = ( +/obj/effect/floor_decal/corner/dark_green{ dir = 6 }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/vending/frontiervend, /turf/simulated/floor/tiled, -/area/engineering/engine_room/rust) +/area/horizon/security/checkpoint2) "oej" = ( /obj/structure/flora/ausbushes/sparsegrass, /obj/effect/floor_decal/spline/fancy/wood{ @@ -98752,39 +98631,48 @@ /obj/structure/flora/ausbushes/ywflowers, /turf/simulated/floor/holofloor/grass, /area/horizon/holodeck/source_meetinghall) -"oek" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/research{ - dir = 1; - name = "Suit Storage"; - req_access = list(65) +"oel" = ( +/obj/machinery/power/smes/buildable/horizon_shuttle{ + RCon_tag = "Quark" }, -/obj/structure/cable/green{ - icon_state = "1-2" +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/obj/structure/cable/green, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/horizon/shuttle/quark/cargo_hold) +"oes" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 }, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenoarch_storage) -"oem" = ( /obj/structure/railing/mapped{ dir = 8 }, -/obj/structure/lattice, -/turf/simulated/open, -/area/maintenance/wing/starboard) -"oep" = ( -/obj/structure/bed/stool/chair/office/light{ +/obj/structure/railing/mapped, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/light/small{ dir = 8 }, -/obj/effect/landmark/start{ - name = "Xenoarchaeologist" +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 8 }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 4 +/obj/effect/map_effect/marker_helper/airlock/exterior, +/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/wood, -/area/rnd/conference) +/obj/machinery/airlock_sensor{ + dir = 4; + pixel_x = -25 + }, +/turf/simulated/floor/reinforced, +/area/horizon/shuttle/mining) "oew" = ( /obj/machinery/access_button{ command = "cycle_interior"; @@ -98824,61 +98712,40 @@ /obj/effect/decal/cleanable/dirt, /turf/unsimulated/floor/monotile, /area/antag/jockey) -"oeA" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 +"oez" = ( +/obj/effect/floor_decal/industrial/outline/red, +/obj/structure/table/rack, +/obj/item/ship_ammunition/grauwolf_bundle/ap, +/obj/item/ship_ammunition/grauwolf_bundle/ap, +/obj/item/ship_ammunition/grauwolf_bundle/ap, +/obj/item/ship_ammunition/grauwolf_bundle/ap, +/obj/effect/floor_decal/industrial/warning{ + dir = 10 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 +/obj/structure/sign/fire{ + desc = "A danger sign which reads 'DANGER: EXPLOSIVE ORDINANCE' and 'THIS ROOM CONTAINS ORDINANCE THAT WILL KILL YOU INSTANTLY'."; + name = "\improper DANGER: EXPLOSIVE ORDINANCE sign"; + pixel_y = -32 }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_engineering{ - dir = 4; - name = "INDRA Reactor Monitoring Room"; - req_access = list(11) - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/structure/sign/securearea{ + desc = "A danger sign which reads 'DANGER: EXPLOSIVE ORDINANCE' and 'THIS ROOM CONTAINS ORDINANCE THAT WILL KILL YOU INSTANTLY'."; + name = "\improper DANGER: EXPLOSIVE ORDINANCE sign"; + pixel_x = -32 }, /turf/simulated/floor/tiled/dark/full, -/area/engineering/smes/rust) -"oeE" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/sortjunction{ - dir = 1; - name = "Medical Bay"; - sortType = "Medical Bay" - }, -/turf/simulated/floor/tiled/white, -/area/medical/gen_treatment) -"oeN" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/wood, -/area/bridge/meeting_room) +/area/horizon/operations/secure_ammunition_storage) +"oeI" = ( +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/hangar/port) "oeQ" = ( /turf/unsimulated/floor/blue_circuit, /area/antag/wizard) -"oeR" = ( -/obj/effect/floor_decal/corner/brown{ - dir = 5 - }, -/obj/machinery/alarm/north, -/turf/simulated/floor/tiled, -/area/operations/lobby) +"oeT" = ( +/obj/effect/floor_decal/industrial/outline/security, +/obj/machinery/suit_cycler/security/prepared, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/storage/eva) "oeV" = ( /obj/structure/cryofeed{ dir = 4 @@ -98888,59 +98755,56 @@ }, /turf/unsimulated/floor, /area/centcom/legion) -"oeW" = ( -/obj/structure/shuttle_part/scc_space_ship{ - icon_state = "d3-4" - }, -/turf/simulated/wall/r_wall, -/area/rnd/xenobiology/xenoflora) -"oeX" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_two) "oeZ" = ( /turf/unsimulated/wall/riveted, /area/template_noop) -"ofg" = ( -/obj/item/modular_computer/console/preset/command{ +"ofc" = ( +/obj/structure/bed/handrail{ dir = 4 }, -/obj/machinery/keycard_auth{ - dir = 4; - pixel_x = -20 - }, -/turf/simulated/floor/carpet, -/area/horizon/security/head_of_security) -"ofh" = ( -/obj/machinery/light/small/emergency{ - dir = 1 - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/plating, -/area/maintenance/wing/port/deck1) -"ofl" = ( -/obj/machinery/lapvend, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 7 +/area/horizon/shuttle/intrepid/starboard_compartment) +"ofd" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 6 }, -/turf/simulated/floor/wood, -/area/bridge/meeting_room) +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/atmos/turbine) +"ofi" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 5 + }, +/turf/simulated/floor/carpet/rubber, +/area/horizon/engineering/reactor/indra/monitoring) +"ofj" = ( +/obj/machinery/door/airlock/glass_research{ + dir = 1; + id_tag = "xeno_entrance_ext"; + name = "Xenobiology Foyer"; + req_access = list(55); + locked = 1 + }, +/obj/effect/map_effect/door_helper/unres, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/xenobiology/foyer) "ofm" = ( /obj/structure/flora/ausbushes/sunnybush, /turf/simulated/floor/exoplanet/grass, /area/centcom/shared_dream) -"ofn" = ( -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/machinery/disposal/small{ - dir = 4; - pixel_x = -12 - }, -/turf/simulated/floor/wood, -/area/medical/psych) +"ofr" = ( +/obj/machinery/portable_atmospherics/canister/empty, +/obj/effect/floor_decal/industrial/outline/grey, +/turf/simulated/floor/tiled/dark, +/area/horizon/maintenance/deck_3/aft/port/far) "oft" = ( /obj/structure/closet/gimmick{ name = "sol clothing" @@ -98998,30 +98862,37 @@ /obj/item/clothing/under/rank/sol, /turf/unsimulated/floor, /area/antag/mercenary) -"ofu" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 +"ofw" = ( +/obj/structure/table/stone/marble, +/obj/machinery/chemical_dispenser/bar_alc/full{ + pixel_x = -4; + pixel_y = 16 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 +/obj/item/reagent_containers/glass/rag{ + pixel_x = -3; + pixel_y = 2 }, -/obj/effect/floor_decal/corner/dark_green/diagonal, -/turf/simulated/floor/tiled, -/area/hangar/auxiliary) -"ofA" = ( +/obj/random/pottedplant_small{ + pixel_x = 10; + pixel_y = -2 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/service/bar) +"ofB" = ( /obj/effect/floor_decal/industrial/outline/grey, -/obj/structure/closet/crate/tool, -/obj/random/tool, -/obj/random/tool, -/obj/random/tool, -/obj/random/tool, -/obj/random/tech_supply, -/obj/random/tech_supply, -/obj/random/tool, -/obj/random/tool, -/obj/item/cell, +/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/intrepid) +/area/horizon/hangar/intrepid) "ofC" = ( /obj/effect/map_effect/window_spawner/full/reinforced/indestructible, /turf/unsimulated/floor/plating, @@ -99036,39 +98907,73 @@ /obj/machinery/light, /turf/simulated/floor/grass/no_edge, /area/centcom/spawning) +"ofG" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance{ + dir = 1; + req_access = list(12) + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor, +/area/horizon/hallway/primary/deck_3/port) +"ofJ" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 5 + }, +/obj/machinery/light_switch{ + dir = 1; + pixel_y = 28 + }, +/turf/simulated/floor/tiled, +/area/horizon/command/bridge/controlroom) "ofM" = ( /obj/effect/floor_decal/corner/red{ dir = 9 }, /turf/simulated/floor/holofloor/tiled, /area/template_noop) -"ofO" = ( -/obj/machinery/light, -/obj/effect/floor_decal/industrial/outline/red, -/obj/structure/table/rack, -/obj/structure/railing/mapped{ +"ofQ" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/item/clothing/glasses/safety/goggles, +/obj/structure/window/borosilicate/reinforced{ + dir = 1 + }, +/obj/structure/window/borosilicate/reinforced{ dir = 4 }, -/obj/item/ship_ammunition/grauwolf_bundle, -/obj/item/ship_ammunition/grauwolf_bundle, -/obj/item/ship_ammunition/grauwolf_bundle, -/obj/item/ship_ammunition/grauwolf_bundle, -/obj/effect/floor_decal/industrial/warning{ - dir = 6 +/turf/simulated/floor/reinforced, +/area/horizon/rnd/test_range) +"ofY" = ( +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" }, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/secure_ammunition_storage) -"ofP" = ( -/obj/structure/closet/crate{ - name = "Camera Assembly Crate" +/obj/machinery/power/apc/north, +/obj/structure/table/wood, +/obj/item/paper_bin{ + pixel_x = -6; + pixel_y = 7 }, -/obj/item/camera_assembly, -/obj/item/camera_assembly, -/obj/item/camera_assembly, -/obj/item/camera_assembly, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/storage_hard) +/obj/item/pen{ + pixel_x = -7; + pixel_y = 9 + }, +/obj/item/reagent_containers/food/condiment/shaker/spacespice, +/obj/item/holomenu{ + pixel_x = 9; + pixel_y = 8 + }, +/obj/item/holomenu{ + pixel_x = 9; + pixel_y = 4 + }, +/obj/random/pottedplant_small{ + pixel_x = 5; + pixel_y = 9 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/service/bar/backroom) "oga" = ( /obj/machinery/light{ dir = 8 @@ -99090,38 +98995,27 @@ icon_state = "dark_preview" }, /area/centcom/specops) -"ogd" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, +"ogc" = ( /obj/effect/floor_decal/corner/dark_blue{ - dir = 1 + dir = 10 }, -/obj/structure/platform_deco{ +/obj/machinery/ringer/south, +/obj/structure/disposalpipe/junction{ + dir = 4; + icon_state = "pipe-j2" + }, +/turf/simulated/floor/tiled, +/area/horizon/command/bridge/upperdeck) +"ogi" = ( +/obj/effect/floor_decal/spline/fancy/wood/cee, +/obj/structure/bed/stool/chair/sofa/left/red{ + dir = 8 + }, +/obj/structure/railing/mapped{ dir = 4 }, -/obj/item/folder/blue{ - pixel_y = 7; - pixel_x = 5 - }, -/obj/item/folder/blue{ - pixel_y = 7; - pixel_x = 5 - }, -/obj/item/pen/red{ - pixel_x = 7; - pixel_y = 3 - }, -/obj/item/pen/blue{ - pixel_x = 5 - }, -/obj/item/clipboard{ - pixel_x = -8; - pixel_y = 5 - }, -/obj/structure/table/reinforced/steel, -/turf/simulated/floor/tiled/dark, -/area/bridge/controlroom) +/turf/simulated/floor/wood, +/area/horizon/service/cafeteria) "ogl" = ( /obj/structure/bed/stool/padded/brown, /obj/effect/landmark{ @@ -99133,11 +99027,6 @@ icon_state = "carpet" }, /area/antag/raider) -"ogm" = ( -/obj/random/loot, -/obj/random/dirt_75, -/turf/simulated/floor/tiled/dark, -/area/maintenance/wing/port/far) "ogn" = ( /obj/structure/bed/stool/chair/shuttle{ can_dismantle = 1; @@ -99146,19 +99035,60 @@ }, /turf/simulated/floor/tiled/dark/full, /area/shuttle/mercenary) -"ogq" = ( -/obj/machinery/light/small/emergency{ +"ogo" = ( +/obj/item/paper_bin, +/obj/item/pen/black, +/obj/structure/table/standard, +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/floor_decal/corner/mauve/full{ dir = 1 }, -/turf/simulated/floor/tiled/dark, -/area/maintenance/wing/starboard) -"ogs" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 9 +/obj/machinery/alarm/north, +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/xenological) +"ogp" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/aux{ + dir = 1 }, -/obj/machinery/light/small/floor, -/turf/simulated/floor/wood, -/area/horizon/cafeteria) +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/command/bridge/aibunker) +"ogv" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/machinery/door/airlock/external{ + dir = 4 + }, +/obj/machinery/access_button{ + dir = 8; + pixel_x = -12; + pixel_y = -28 + }, +/obj/effect/map_effect/marker/airlock{ + frequency = 1003; + master_tag = "airlock_horizon_deck_1_aft_port_1"; + name = "airlock_horizon_deck_1_aft_port_1" + }, +/obj/effect/map_effect/marker_helper/airlock/interior, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/auxatmos) +"ogx" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/corner/dark_green/full{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_1/central) "ogy" = ( /obj/structure/table/reinforced/steel, /obj/item/gun/energy/blaster/rifle{ @@ -99172,6 +99102,25 @@ }, /turf/unsimulated/floor, /area/centcom/legion/hangar5) +"ogz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/button/remote/blast_door{ + dir = 8; + id = "warehouse1"; + name = "Warehouse Shutter"; + pixel_x = -22; + pixel_y = -28 + }, +/obj/effect/floor_decal/corner/brown{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/horizon/operations/warehouse) "ogA" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/manifold/hidden{ @@ -99180,46 +99129,81 @@ /obj/structure/lattice/catwalk/indoor/grate/dark, /turf/simulated/floor/plating, /area/shuttle/skipjack) -"ogN" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_command{ - dir = 1; - name = "EVA Storage"; - req_one_access = list(18,47) - }, -/turf/simulated/floor/tiled/full, -/area/storage/eva) -"ogO" = ( -/obj/machinery/door/airlock/maintenance{ - dir = 4; - name = "Atmospherics Locker Room Maintenance"; - req_access = list(24) - }, -/obj/machinery/door/firedoor, -/obj/effect/floor_decal/spline/plain/corner{ - dir = 4 - }, -/obj/effect/floor_decal/spline/plain/corner{ +"ogD" = ( +/obj/structure/railing/mapped{ dir = 8 }, -/turf/simulated/floor/tiled/full, -/area/engineering/atmos/storage) -"ogU" = ( -/obj/machinery/power/smes/buildable/horizon_shuttle{ - RCon_tag = "Canary" +/obj/structure/railing/mapped{ + dir = 1 + }, +/turf/simulated/open, +/area/horizon/maintenance/deck_2/wing/port/near) +"ogE" = ( +/obj/machinery/atmospherics/pipe/manifold/visible, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/aux{ + dir = 10 + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/auxatmos) +"ogJ" = ( +/obj/effect/floor_decal/corner/purple/full{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/shuttle/quark/cockpit) +"ogP" = ( +/obj/structure/window/shuttle/scc_space_ship, +/obj/structure/grille, +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id = "bridge blast"; + name = "Bridge Blast Doors"; + opacity = 0 + }, +/obj/machinery/door/blast/shutters/open{ + dir = 2; + id = "shutters_deck3_bridgesafety"; + name = "Safety Shutter" }, /obj/structure/cable/green{ - icon_state = "0-4" + icon_state = "0-8" }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 9 +/obj/structure/cable/green{ + icon_state = "4-8" }, -/obj/structure/closet/walllocker/emerglocker/west{ - pixel_x = -25 +/obj/machinery/door/blast/shutters/open{ + dir = 2; + id = "conferencesafetyshutters"; + name = "Safety Shutter" + }, +/turf/simulated/floor/plating, +/area/horizon/command/bridge/meeting_room) +"ogR" = ( +/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, +/obj/machinery/door/blast/regular/open{ + dir = 4; + id = "hangarlockdown"; + name = "Hangar Lockdown" }, /turf/simulated/floor/tiled/dark/full, -/area/shuttle/canary) +/area/horizon/hangar/intrepid) +"ogX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/corner/dark_blue/full, +/turf/simulated/floor/tiled/dark, +/area/horizon/storage/eva) "ogY" = ( /obj/structure/table/rack, /obj/item/clothing/shoes/magboots, @@ -99229,12 +99213,16 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/unsimulated/floor, /area/antag/mercenary) -"ohb" = ( -/obj/effect/floor_decal/corner/mauve{ - dir = 10 +"ogZ" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 5 }, -/turf/simulated/floor/tiled/white, -/area/rnd/conference) +/obj/machinery/alarm/north{ + pixel_y = 19 + }, +/obj/structure/closet/secure_closet/xo2, +/turf/simulated/floor/wood, +/area/horizon/command/heads/xo) "ohd" = ( /obj/machinery/light{ dir = 4 @@ -99245,152 +99233,173 @@ icon_state = "dark_preview" }, /area/centcom/specops) -"ohi" = ( -/obj/effect/floor_decal/corner/mauve/diagonal, -/obj/machinery/shower{ - dir = 8; - pixel_x = 1; - pixel_y = 1 - }, -/obj/machinery/shower{ - dir = 8; - pixel_x = 1; - pixel_y = 1 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora) -"ohk" = ( -/obj/structure/table/rack, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"ohl" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/light/small, -/obj/effect/large_stock_marker, -/turf/simulated/floor/tiled, -/area/operations/storage) -"ohm" = ( -/obj/structure/railing/mapped{ +"ohf" = ( +/obj/effect/floor_decal/industrial/hatch_door/yellow{ dir = 8 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor{ + req_one_access = list(24,11,67,73) + }, +/obj/machinery/door/airlock/glass_command{ + dir = 1; + id_tag = "intrepid_flightdeck"; + name = "Intrepid Flight Deck"; + req_access = list(73) + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/shuttle/intrepid/flight_deck) +"ohh" = ( +/obj/effect/floor_decal/corner_wide/green{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/hallway) +"ohs" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 10 + }, +/obj/effect/floor_decal/corner/yellow/full{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/aft_airlock) +"oht" = ( +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/obj/effect/floor_decal/corner/grey/diagonal{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/service/cafeteria) +"ohz" = ( +/turf/simulated/wall/r_wall, +/area/horizon/rnd/xenobiology/dissection) +"ohD" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/disposal/small/west, +/obj/structure/disposalpipe/trunk, +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/conference) +"ohE" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 10 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/computer/security/engineering{ + name = "Drone Monitoring Cameras" + }, +/obj/machinery/light, +/turf/simulated/floor/tiled, +/area/horizon/engineering/lobby) +"ohJ" = ( +/obj/structure/table/standard, +/obj/item/storage/box/fancy/vials{ + pixel_x = -4; + pixel_y = 10 + }, +/obj/item/storage/box/syringes, +/obj/item/storage/box/beakers{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/effect/floor_decal/corner/mauve/full{ + dir = 8 + }, +/obj/machinery/camera/network/research{ + c_tag = "Research - XenoBotanical Lab"; + dir = 4 + }, +/obj/machinery/requests_console/north{ + department = "Xenobotany"; + departmentType = 2; + dir = 8; + name = "Xenobotany Requests Console"; + pixel_x = -19; + pixel_y = 0 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/rnd/xenobiology/xenoflora) +"ohK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/obj/structure/disposalpipe/junction{ + dir = 4 + }, +/obj/machinery/light/floor{ + dir = 1 + }, +/turf/simulated/floor/lino, +/area/horizon/service/dining_hall) +"ohP" = ( +/obj/structure/closet/emcloset, +/obj/effect/floor_decal/corner/dark_green/full{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/outline/emergency_closet, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_3/central) +"ohQ" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/fuel, +/turf/simulated/wall/shuttle/unique/scc/mining{ + icon_state = "4,7" + }, +/area/horizon/shuttle/mining) +"ohZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/emergency{ + dir = 1 + }, +/obj/structure/bed/stool/chair, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/port) +"oig" = ( +/obj/structure/table/wood, +/obj/item/storage/box/beanbags, +/obj/item/wrench, +/obj/item/paper{ + info = "This permit signifies that the Bartender is permitted to posess this firearm in the bar, and ONLY the bar. Failure to adhere to this permit will result in confiscation of the weapon and possibly arrest."; + name = "Shotgun permit" + }, /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 }, -/obj/effect/floor_decal/corner/black{ - dir = 9 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, +/obj/machinery/alarm/west, /turf/simulated/floor/tiled/dark, -/area/hangar/intrepid) -"ohn" = ( -/obj/effect/floor_decal/corner/green{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/white, -/area/horizon/crew_quarters/fitness/showers) -"ohq" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 9 - }, -/obj/structure/platform_stairs/full/south_north_cap, -/turf/simulated/floor/tiled, -/area/bridge/controlroom) -"ohx" = ( -/obj/machinery/atmospherics/pipe/manifold4w/visible/black, -/obj/machinery/meter, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/dark, -/area/engineering/engine_waste) -"ohB" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/item/reagent_containers/glass/bucket, -/obj/item/reagent_containers/glass/bucket, -/obj/effect/floor_decal/corner/purple{ - dir = 9 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled, -/area/horizon/custodial) -"ohC" = ( -/turf/simulated/floor/tiled/ramp/bottom{ - dir = 8 - }, -/area/hangar/operations) -"ohG" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 8 - }, -/obj/item/device/radio/intercom/west, -/obj/machinery/disposal/small/east, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/simulated/floor/marble/dark, -/area/bridge/minibar) -"ohM" = ( -/obj/structure/lattice/catwalk, -/obj/structure/railing/mapped{ - dir = 8 - }, -/turf/simulated/open/airless, -/area/template_noop) -"ohX" = ( -/obj/structure/table/standard, -/obj/machinery/light{ - dir = 8 - }, -/obj/item/storage/box/sharps{ - pixel_y = 9 - }, -/obj/item/vitals_monitor, -/obj/item/vitals_monitor, -/obj/item/vitals_monitor, -/obj/item/vitals_monitor, -/obj/effect/floor_decal/corner_wide/green/full, -/turf/simulated/floor/tiled/white, -/area/medical/gen_treatment) -"oic" = ( -/obj/machinery/shieldwallgen, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/light, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/storage_hard) -"oid" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/portable_atmospherics/canister/air/airlock, -/obj/machinery/atmospherics/portables_connector{ - dir = 1 - }, -/turf/simulated/floor, -/area/maintenance/wing/port/far) +/area/horizon/service/bar/backroom) "oik" = ( /obj/structure/window/shuttle/unique/ccia{ icon_state = "0,2" }, /turf/simulated/floor/plating, /area/shuttle/transport1) -"oim" = ( -/obj/machinery/hologram/holopad, -/turf/simulated/floor/wood, -/area/crew_quarters/heads/chief) +"oip" = ( +/obj/structure/table/reinforced/wood, +/obj/item/modular_computer/laptop/preset/command/xo{ + pixel_y = 10 + }, +/turf/simulated/floor/carpet, +/area/horizon/command/heads/xo) "oiq" = ( /obj/structure/shuttle/engine/heater, /obj/structure/window/borosilicate/reinforced{ @@ -99401,30 +99410,45 @@ }, /turf/unsimulated/floor/plating, /area/centcom/distress_prep) -"ois" = ( -/obj/effect/floor_decal/corner/dark_blue/diagonal, -/obj/structure/bed/handrail, -/obj/structure/bed/stool/chair/office/dark{ +"oir" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/railing/mapped{ dir = 8 }, -/obj/effect/floor_decal/industrial/warning/corner{ +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plating, +/area/horizon/engineering/reactor/supermatter/mainchamber) +"oiu" = ( +/obj/effect/floor_decal/corner/dark_blue/full, +/turf/simulated/floor/tiled, +/area/horizon/rnd/eva) +"oiv" = ( +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/airlock/glass{ + dir = 1; + name = "Deck 3 Starboard Lounge" + }, +/turf/simulated/floor/tiled, +/area/horizon/crew/lounge) +"oiE" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4 }, /obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" + icon_state = "0-2" }, -/obj/machinery/power/apc/north{ - req_access = null; - req_one_access = list(11, 73) +/obj/effect/floor_decal/corner/brown{ + dir = 6 }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/intrepid/flight_deck) -"oiw" = ( -/obj/item/modular_computer/console/preset/engineering, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/engine_monitoring) +/obj/machinery/power/apc/high/east, +/turf/simulated/floor/tiled, +/area/horizon/operations/warehouse) "oiF" = ( /obj/effect/floor_decal/industrial/warning{ dir = 1 @@ -99466,122 +99490,137 @@ }, /turf/unsimulated/floor/plating, /area/centcom/specops) -"oiJ" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 10 - }, -/obj/machinery/camera/network/second_deck{ - c_tag = "Second Deck - Hallway 3"; +"oiI" = ( +/obj/effect/floor_decal/spline/plain{ dir = 1 }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/carpet/rubber, +/area/horizon/tcommsat/entrance) +"oiN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/effect/floor_decal/corner/dark_green{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/horizon/hangar/intrepid) +"oiO" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"oiQ" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable/green{ - icon_state = "1-2" +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" }, +/obj/effect/floor_decal/corner/purple{ + dir = 10 + }, +/obj/machinery/light, +/turf/simulated/floor/tiled, +/area/horizon/service/custodial) +"oiP" = ( +/obj/structure/table/reinforced/wood, +/obj/item/paper_scanner{ + pixel_x = -1 + }, +/turf/simulated/floor/carpet, +/area/horizon/command/heads/xo) +"oiU" = ( +/obj/structure/disposalpipe/junction{ + dir = 8 + }, +/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 + }, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_3/central) +"oiX" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/white, -/area/hallway/medical) -"oiS" = ( -/turf/simulated/floor/greengrid/nitrogen, -/area/engineering/drone_fabrication) -"oiW" = ( -/obj/machinery/atmospherics/portables_connector/fuel{ +/obj/machinery/light/floor{ + dir = 4 + }, +/obj/effect/floor_decal/spline/plain/red{ + dir = 4 + }, +/obj/effect/floor_decal/corner/dark_green{ dir = 1 }, -/obj/effect/floor_decal/industrial/warning/cee, -/turf/simulated/floor/reinforced, -/area/shuttle/canary) -"oiY" = ( -/turf/simulated/wall, -/area/maintenance/aux_atmospherics/deck_2/starboard/wing) -"oji" = ( -/obj/structure/shuttle_part/scc/scout{ - density = 0; - icon_state = "7,12" +/obj/structure/disposalpipe/junction, +/turf/simulated/floor/tiled, +/area/horizon/service/hydroponics) +"oiZ" = ( +/obj/machinery/atmospherics/pipe/simple/visible/universal{ + dir = 4 }, +/obj/machinery/meter, /turf/simulated/floor/plating, -/area/shuttle/canary) +/area/horizon/rnd/xenoarch/atrium) +"ojb" = ( +/turf/simulated/wall, +/area/horizon/maintenance/deck_2/wing/starboard/nacelle) +"oje" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/carpet/rubber, +/area/horizon/engineering/bluespace_drive/monitoring) "ojk" = ( /obj/effect/floor_decal/corner/grey/full{ dir = 8 }, /turf/unsimulated/floor, /area/antag/mercenary) -"ojl" = ( -/obj/machinery/atmospherics/pipe/simple/visible/red{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/engineering/atmos/propulsion/starboard) -"ojy" = ( -/obj/structure/table/wood, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 7 - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/structure/cable/green{ +"ojo" = ( +/obj/structure/cable/orange{ icon_state = "4-8" }, -/turf/simulated/floor/wood, -/area/bridge/upperdeck) -"ojE" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 8 - }, -/obj/effect/floor_decal/spline/fancy/wood{ +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/machinery/disposal/small/west, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/horizon/security/head_of_security) -"ojG" = ( -/obj/effect/floor_decal/corner/black/full{ - dir = 1 +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 }, +/turf/simulated/floor/tiled, +/area/horizon/engineering/reactor/indra/mainchamber) +"ojr" = ( +/turf/simulated/floor/carpet, +/area/horizon/service/chapel/office) +"ojt" = ( +/obj/structure/table/rack, +/obj/random/loot, /obj/effect/floor_decal/industrial/warning{ dir = 1 }, -/turf/simulated/floor/tiled/dark, -/area/hangar/intrepid) -"ojH" = ( -/obj/machinery/door/airlock/external{ - dir = 1; - frequency = 1380; - icon_state = "door_locked"; - id_tag = "centcom_shuttle_dock_outer"; - locked = 1; - name = "Docking Port Airlock"; - req_access = list(13) +/turf/simulated/floor, +/area/horizon/maintenance/deck_3/aft/port) +"oju" = ( +/obj/structure/table/standard, +/obj/effect/floor_decal/corner_wide/paleblue{ + dir = 10 }, -/obj/machinery/access_button{ - command = "cycle_exterior"; - frequency = 1380; - master_tag = "centcom_shuttle_dock_airlock"; - name = "exterior access button"; - pixel_x = 25; - req_one_access = list(13,65) +/obj/item/storage/box/fancy/tray, +/obj/machinery/light, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/surgery) +"ojv" = ( +/obj/structure/railing/mapped{ + dir = 1 }, +/obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, -/area/security/checkpoint2) +/area/horizon/maintenance/deck_1/wing/starboard) "ojI" = ( /obj/effect/map_effect/window_spawner/full/reinforced/indestructible, /obj/structure/sign/directions/tram{ @@ -99591,14 +99630,61 @@ }, /turf/unsimulated/floor/plating, /area/centcom/bar) -"ojK" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +"ojN" = ( +/obj/machinery/light/spot{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/effect/floor_decal/corner/brown{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/horizon/hangar/operations) +"ojO" = ( +/obj/structure/window/shuttle/scc_space_ship, +/obj/structure/grille, +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/shutters{ + dir = 4; + id = "cmowindowshutters"; + name = "Window Shutters" + }, +/obj/effect/landmark/entry_point/starboard{ + name = "starboard, CMO office" + }, +/turf/simulated/floor/plating, +/area/horizon/command/heads/cmo) +"ojQ" = ( /obj/structure/disposalpipe/segment{ - dir = 1; + dir = 4 + }, +/obj/effect/floor_decal/corner/brown{ + dir = 6 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/horizon/operations/lobby) +"ojS" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; icon_state = "pipe-c" }, -/turf/simulated/floor/tiled/white, -/area/medical/pharmacy) +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor, +/area/horizon/maintenance/deck_3/aft/starboard/far) "ojT" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 4 @@ -99608,62 +99694,55 @@ }, /turf/simulated/floor/tiled/dark, /area/shuttle/hapt) -"oka" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/structure/window/shuttle/scc_space_ship/cardinal, -/obj/machinery/door/blast/regular/open{ - id = "shutters_deck2_grauwolf"; - name = "Safety Blast Door" +"ojU" = ( +/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/horizon/grauwolf) -"okg" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/area/horizon/hangar/auxiliary) +"ojW" = ( +/obj/effect/floor_decal/corner_wide/yellow{ + dir = 10 + }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - icon_state = "1-2" +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/horizon/engineering/hallway/interior) +"okc" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/simulated/floor/tiled/full, -/area/bridge) -"okl" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/lino, +/area/horizon/service/dining_hall) +"okj" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/light/spot, /turf/simulated/floor/plating, -/area/maintenance/research_port) -"okn" = ( -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/random/junk, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard/far) -"okv" = ( -/obj/structure/railing/mapped, -/obj/effect/floor_decal/spline/plain/grey{ - dir = 10 +/area/horizon/engineering/reactor/supermatter/mainchamber) +"okm" = ( +/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, +/obj/machinery/door/blast/shutters/open{ + dir = 4; + id = "shutters_hangarseccp"; + name = "Security Checkpoint Shutter" }, -/obj/random/dirt_75, -/obj/structure/sign/poster{ - pixel_x = -32 - }, -/turf/simulated/floor/reinforced, -/area/horizon/crew_quarters/fitness/gym) -"okw" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 10 - }, -/obj/structure/sign/emergency/evacuation{ +/turf/simulated/floor/tiled/dark/full, +/area/horizon/security/checkpoint) +"okq" = ( +/obj/structure/window/reinforced{ dir = 8 }, -/turf/simulated/floor/tiled, -/area/horizon/stairwell/central) +/obj/structure/table/reinforced/steel, +/obj/item/paper_bin, +/obj/item/pen, +/obj/structure/railing/mapped, +/turf/simulated/floor/tiled/dark, +/area/horizon/rnd/xenoarch/atrium) +"okw" = ( +/turf/simulated/wall, +/area/horizon/maintenance/substation/wing_port) "okx" = ( /obj/effect/floor_decal/industrial/warning{ dir = 4 @@ -99676,38 +99755,84 @@ }, /turf/simulated/floor/plating, /area/merchant_station/warehouse) -"okA" = ( -/obj/structure/cable{ - icon_state = "1-2" +"okB" = ( +/obj/machinery/firealarm/south, +/obj/effect/floor_decal/corner_wide/yellow/full{ + dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/hidden/aux, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/maintenance/operations) +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/horizon/engineering/reactor/indra/mainchamber) +"okE" = ( +/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/brown{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/horizon/operations/warehouse) +"okF" = ( +/obj/machinery/portable_atmospherics/canister/air/airlock, +/obj/machinery/atmospherics/portables_connector{ + dir = 1 + }, +/turf/simulated/floor, +/area/horizon/maintenance/deck_2/wing/starboard/far) +"okI" = ( +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/structure/cable/green{ + icon_state = "0-8" + }, +/obj/effect/map_effect/window_spawner/full/reinforced/grille/firedoor, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/tcommsat/chamber) "okJ" = ( /obj/structure/flora/ausbushes/fullgrass, /obj/effect/floor_decal/spline/plain/corner, /turf/simulated/floor/exoplanet/grass/grove, /area/centcom/shared_dream) -"okQ" = ( -/obj/structure/platform/ledge{ +"okK" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/horizon/hangar/operations) +"okS" = ( +/obj/machinery/atmospherics/portables_connector{ dir = 4 }, -/turf/simulated/open, -/area/horizon/hallway/deck_three/primary/central) -"oli" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 9 +/obj/effect/floor_decal/industrial/outline/firefighting_closet, +/turf/simulated/floor/plating, +/area/horizon/engineering/reactor/supermatter/mainchamber) +"okU" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/reinforced, +/area/horizon/rnd/xenoarch/isolation_c) +"old" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 5 }, -/turf/simulated/floor/tiled/dark, -/area/engineering/break_room) +/obj/machinery/alarm/north, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_3/starboard/docks) "olj" = ( /turf/simulated/wall, /area/horizon/security/meeting_room) +"olm" = ( +/turf/simulated/floor/tiled/dark, +/area/horizon/maintenance/deck_3/aft/starboard/far) "oln" = ( /obj/structure/toilet{ dir = 4 @@ -99718,43 +99843,54 @@ }, /turf/unsimulated/floor, /area/centcom/legion/hangar5) -"olq" = ( -/obj/effect/floor_decal/corner_wide/green, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/hallway/medical) -"ols" = ( -/obj/machinery/requests_console/north{ - announcementConsole = 1; - department = "Captain's Desk"; - departmentType = 5; - name = "Captain RC"; - pixel_y = 35; - pixel_x = -32 - }, -/obj/item/modular_computer/console/preset/command/captain{ - dir = 4; - pixel_x = -18; - density = 0 - }, -/turf/simulated/floor/carpet, -/area/crew_quarters/captain) -"olx" = ( -/obj/structure/shuttle_part/scc/scout{ - icon_state = "7,9" - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/shuttle/canary) -"oly" = ( +"olv" = ( +/obj/structure/table/steel, /obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/vending/cola, -/turf/simulated/floor/tiled/dark, -/area/horizon/hallway/deck_three/primary/port) +/obj/item/hoist_kit, +/obj/item/device/multitool, +/obj/structure/railing/mapped{ + dir = 8 + }, +/turf/simulated/floor/reinforced, +/area/horizon/weapons/grauwolf) +"olw" = ( +/obj/structure/bed/stool/chair{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/horizon/operations/break_room) +"olz" = ( +/obj/effect/floor_decal/industrial/outline/red, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/operations/starboard) +"olA" = ( +/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, +/turf/simulated/floor/plating, +/area/horizon/hangar/intrepid) +"olD" = ( +/obj/effect/floor_decal/spline/fancy/wood/cee, +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/structure/railing/mapped, +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/structure/flora/ausbushes/ppflowers, +/obj/structure/flora/ausbushes/sunnybush, +/turf/simulated/floor/grass/no_edge, +/area/horizon/hallway/primary/deck_2/starboard) "olF" = ( /obj/machinery/door/airlock/glass_centcom{ dir = 1; @@ -99799,27 +99935,36 @@ icon_state = "carpet" }, /area/centcom/specops) +"olP" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/rnd/xenobiology/xenoflora) +"olR" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/floor_decal/corner/dark_green{ + dir = 9 + }, +/obj/effect/floor_decal/spline/plain/lime{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_2/fore) "olS" = ( /turf/space/dynamic, /area/antag/raider) -"olX" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 +"omb" = ( +/obj/effect/floor_decal/corner/green/diagonal, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/structure/bed/stool/chair/plastic{ + dir = 1 }, -/obj/structure/railing/mapped, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard/deck1) -"oma" = ( -/obj/structure/window/shuttle/scc_space_ship, -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/shutters{ - dir = 4; - id = "shutters_disposals"; - name = "\improper Viewing Shutter" - }, -/turf/simulated/floor/plating, -/area/horizon/custodial/disposals) +/turf/simulated/floor/tiled/white, +/area/horizon/medical/ward/isolation) "ome" = ( /turf/unsimulated/floor/rubber_carpet, /area/centcom/specops) @@ -99837,23 +99982,6 @@ icon_state = "dark_preview" }, /area/centcom/holding) -"omn" = ( -/turf/simulated/wall, -/area/horizon/cafeteria) -"omt" = ( -/obj/machinery/vending/cola, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/hatch/operations, -/turf/simulated/floor/tiled/full, -/area/horizon/commissary) "omu" = ( /obj/effect/floor_decal/corner/yellow{ dir = 4 @@ -99864,142 +99992,96 @@ }, /turf/simulated/floor/marble/dark, /area/horizon/holodeck/source_trinary) -"omv" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/effect/floor_decal/corner_wide/green{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/hallway/medical) +"omw" = ( +/obj/machinery/light, +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/atmos/propulsion) "omy" = ( /obj/structure/shuttle_part/ccia{ icon_state = "11,3" }, /turf/unsimulated/floor/plating, /area/shuttle/transport1) -"omL" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 10 +"omJ" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 1 + }, +/obj/effect/map_effect/marker/airlock/docking{ + landmark_tag = "nav_horizon_dock_deck_3_port_4"; + master_tag = "airlock_horizon_dock_deck_3_port_4"; + name = "airlock_horizon_dock_deck_3_port_4" }, /turf/simulated/floor/plating, -/area/maintenance/wing/starboard/deck1) -"omO" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 +/area/horizon/hallway/primary/deck_3/starboard/docks) +"omQ" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 }, -/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" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/black, -/obj/structure/plasticflaps/airtight, -/obj/machinery/door/airlock/hatch{ - dir = 1; - name = "Telecommunications - Server Hall"; - req_access = list(61) - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/dark/full, -/area/tcommsat/chamber) -"omR" = ( -/obj/effect/floor_decal/industrial/warning/corner, /obj/structure/cable{ icon_state = "1-2" }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ +/turf/simulated/floor/plating, +/area/horizon/hangar/auxiliary) +"omU" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/light/small{ dir = 8 }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ +/obj/machinery/recharge_station, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/shuttle/intrepid/port_storage) +"omW" = ( +/turf/simulated/wall, +/area/horizon/service/bar/backroom) +"ond" = ( +/obj/effect/floor_decal/industrial/warning{ dir = 4 }, -/turf/simulated/floor/tiled/full, -/area/engineering/storage_hard) -"omS" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled/full, -/area/outpost/mining_main/refinery) -"omZ" = ( -/obj/structure/cable/green{ - icon_state = "4-8" +/obj/structure/tank_wall/air{ + icon_state = "air9" + }, +/turf/simulated/floor/plating, +/area/horizon/engineering/atmos/air) +"ong" = ( +/mob/living/simple_animal/corgi/Ian, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 }, /obj/structure/disposalpipe/segment{ - dir = 4 + icon_state = "pipe-c" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 +/turf/simulated/floor/wood, +/area/horizon/command/heads/xo) +"onk" = ( +/obj/machinery/computer/ship/targeting/cockpit{ + pixel_x = -25; + req_one_access = list(73,74) }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 +/obj/structure/bed/stool/chair/cockpit, +/obj/machinery/computer/ship/sensors/cockpit/right{ + pixel_x = 25 }, -/obj/structure/lattice/catwalk/indoor/grate, -/turf/simulated/floor, -/area/horizon/hallway/deck_three/primary/starboard) -"onb" = ( -/obj/effect/floor_decal/corner/green/diagonal, -/obj/structure/curtain/open, -/obj/machinery/camera/network/medbay{ - c_tag = "Medical - Isolation Ward"; - dir = 8 +/turf/simulated/floor/carpet/rubber, +/area/horizon/shuttle/canary) +"onl" = ( +/obj/effect/landmark/entry_point/fore{ + name = "fore, deck 3 port docks" }, -/turf/simulated/floor/tiled/white, -/area/medical/ward/isolation) -"one" = ( -/obj/structure/platform/ledge{ - dir = 4 +/turf/simulated/wall/shuttle/scc_space_ship/cardinal, +/area/horizon/hallway/primary/deck_3/starboard/docks) +"onm" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + dir = 1; + name = "Supermatter Reactor Waste Management"; + req_one_access = list(11,24) }, -/turf/simulated/open, -/area/hallway/medical/upper) -"oni" = ( -/obj/machinery/camera/network/research{ - c_tag = "Research - XenoBotanical Lab Fore"; - dir = 1 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/firedoor, +/obj/structure/cable{ + icon_state = "1-2" }, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology/xenoflora) -"onv" = ( -/obj/structure/table/standard, -/obj/item/device/paicard{ - pixel_x = 5 - }, -/obj/effect/floor_decal/corner/mauve/full{ - dir = 1 - }, -/obj/structure/extinguisher_cabinet/east, -/obj/machinery/button/remote/blast_door{ - dir = 10; - id = "telesci_lockdown"; - name = "Telescience Lockdown"; - pixel_x = -7; - req_access = list(47); - pixel_y = 5 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/telesci) -"onA" = ( -/obj/machinery/hologram/holopad/long_range, -/turf/simulated/floor/tiled, -/area/operations/office) +/turf/simulated/floor/tiled/full, +/area/horizon/stairwell/engineering/deck_2) "onB" = ( /obj/effect/decal/fake_object{ color = "#545c68"; @@ -100013,6 +100095,19 @@ density = 1 }, /area/antag/ninja) +"onG" = ( +/obj/machinery/camera/network/reactor{ + c_tag = "Engineering - Supermatter Reactor 1"; + dir = 1 + }, +/obj/machinery/atmospherics/binary/pump/high_power{ + dir = 8; + name = "Intake to Cold Loop"; + target_pressure = 15000 + }, +/obj/effect/floor_decal/industrial/hatch_tiny/security, +/turf/simulated/floor/plating, +/area/horizon/engineering/reactor/supermatter/mainchamber) "onI" = ( /obj/structure/sink/kitchen{ pixel_y = 28 @@ -100022,45 +100117,32 @@ }, /turf/unsimulated/floor, /area/antag/mercenary) -"onL" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/effect/floor_decal/corner/dark_green{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/starboard) -"onN" = ( -/obj/machinery/atmospherics/pipe/simple/visible/purple{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/engineering/atmos/propulsion) "onP" = ( /obj/effect/floor_decal/spline/plain/corner{ dir = 1 }, /turf/simulated/floor/exoplanet/grass, /area/centcom/shared_dream) +"onQ" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 10 + }, +/obj/machinery/camera/network/second_deck{ + c_tag = "Second Deck - Operations Hallway"; + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/horizon/operations/lobby) +"onR" = ( +/obj/machinery/firealarm/north, +/obj/structure/cargo_receptacle/horizon, +/turf/simulated/floor/tiled, +/area/horizon/operations/warehouse) "onS" = ( /turf/simulated/wall/shuttle/unique/tcfl{ icon_state = "14,5" }, /area/shuttle/legion) -"onT" = ( -/obj/effect/floor_decal/corner/brown{ - dir = 6 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/intrepid/main_compartment) "onU" = ( /obj/machinery/atmospherics/pipe/zpipe/up/black, /obj/structure/lattice, @@ -100076,13 +100158,37 @@ /obj/machinery/papershredder, /turf/simulated/floor/wood, /area/merchant_station) -"onY" = ( -/obj/structure/bed/stool/chair/sofa/corner/concave/brown, -/obj/machinery/light{ +"oob" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable/green{ + icon_state = "11-1"; + d1 = 11 + }, +/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers{ dir = 1 }, -/turf/simulated/floor/carpet/art, -/area/crew_quarters/lounge) +/obj/machinery/atmospherics/pipe/zpipe/down/supply{ + dir = 1 + }, +/turf/simulated/open, +/area/horizon/maintenance/deck_3/security/starboard) +"ood" = ( +/obj/machinery/door/airlock/maintenance{ + dir = 1; + req_access = list(12); + welded = 1 + }, +/obj/item/tape/engineering{ + icon_state = "engineering_door" + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/workshop) "oof" = ( /obj/machinery/door/airlock/hatch{ dir = 1; @@ -100108,24 +100214,19 @@ /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/dark, /area/shuttle/legion) -"ooh" = ( -/turf/simulated/wall, -/area/horizon/crew_quarters/lounge/bar) -"ool" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 10 +"oom" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 }, -/obj/structure/cable/green{ - icon_state = "4-8" +/obj/structure/cable{ + icon_state = "2-4" }, -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/turf/simulated/floor/wood, -/area/lawoffice/consular) +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/starboard/far) "oop" = ( /obj/structure/bed/stool/chair/padded/black{ dir = 4 @@ -100134,13 +100235,6 @@ icon_state = "dark_preview" }, /area/centcom/control) -"oor" = ( -/obj/effect/floor_decal/corner/dark_blue/diagonal, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/bridge/supply) "oos" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 4 @@ -100162,25 +100256,87 @@ }, /turf/simulated/floor/lino, /area/horizon/security/investigators_office) +"ooy" = ( +/obj/structure/window/shuttle/scc_space_ship, +/obj/structure/grille, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/operations/starboard/far) +"ooz" = ( +/obj/effect/floor_decal/corner/paleblue{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/horizon/command/bridge/cciaroom/lounge) +"ooC" = ( +/obj/structure/ship_weapon_dummy, +/obj/machinery/ship_weapon/grauwolf{ + pixel_x = -32; + pixel_y = -192; + weapon_id = "Grauwolf Flak Battery" + }, +/turf/simulated/floor/reinforced, +/area/horizon/weapons/grauwolf) +"ooE" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 9 + }, +/obj/structure/platform_deco{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled, +/area/horizon/command/bridge/upperdeck) "ooG" = ( /obj/structure/railing/mapped, /turf/simulated/floor/holofloor/tiled/ramp{ dir = 4 }, /area/horizon/holodeck/source_trinary) -"ooJ" = ( -/obj/structure/shuttle_part/scc_space_ship{ - icon_state = "d2-1-f" +"ooK" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 5 }, -/turf/simulated/wall, -/area/maintenance/wing/port/far) -"ooT" = ( -/obj/structure/bed/stool/chair/office/dark{ - dir = 4 +/obj/machinery/light{ + dir = 1 }, -/obj/effect/floor_decal/corner/dark_blue/diagonal, -/turf/simulated/floor/tiled/dark, -/area/hangar/control) +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_3/port/docks) +"ooL" = ( +/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/horizon/shuttle/quark/cargo_hold) +"ooR" = ( +/obj/structure/grille, +/obj/machinery/door/firedoor, +/obj/structure/window/shuttle/scc_space_ship/cardinal, +/obj/machinery/door/blast/regular/open{ + dir = 8; + id = "shutters_deck2_grauwolf"; + name = "Safety Blast Door" + }, +/turf/simulated/floor/plating, +/area/horizon/weapons/grauwolf) "ooX" = ( /obj/effect/floor_decal/corner/dark_blue/diagonal, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -100189,26 +100345,97 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/security/armoury) +"opa" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/obj/item/hullbeacon/red, +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/structure/bed/handrail{ + dir = 1 + }, +/turf/simulated/floor/reinforced, +/area/horizon/shuttle/intrepid/main_compartment) "opc" = ( /obj/machinery/light, /turf/simulated/floor/wood, /area/shuttle/hapt) +"opl" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/main/port) +"opn" = ( +/obj/machinery/telecomms/server/presets/science, +/turf/simulated/floor/bluegrid, +/area/horizon/tcommsat/chamber) "opo" = ( /obj/machinery/light/small/emergency{ dir = 4 }, /turf/unsimulated/floor/plating, /area/centcom/legion) -"opu" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/effect/floor_decal/spline/plain{ +"opq" = ( +/obj/structure/window/shuttle/scc_space_ship, +/obj/structure/grille, +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/shutters/open{ + dir = 8; + id = "bar_viewing_shutters"; + name = "Bar Viewing Shutters" + }, +/turf/simulated/floor/plating, +/area/horizon/service/bar) +"opB" = ( +/obj/structure/cable/green, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/machinery/power/apc/hyper/south, +/obj/effect/floor_decal/industrial/warning/cee{ dir = 1 }, +/obj/structure/railing/mapped{ + dir = 4 + }, +/turf/simulated/floor, +/area/horizon/maintenance/substation/command) +"opC" = ( +/obj/machinery/door/airlock/glass_service{ + dir = 4; + name = "Kitchen"; + req_access = list(28) + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /obj/structure/cable/green{ icon_state = "4-8" }, -/turf/simulated/floor/carpet/rubber, -/area/tcommsat/entrance) +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/map_effect/door_helper/unres{ + dir = 4 + }, +/turf/simulated/floor/tiled/full, +/area/horizon/service/kitchen) "opE" = ( /obj/machinery/computer/pod{ dir = 1; @@ -100220,6 +100447,15 @@ icon_state = "white" }, /area/tdome/tdomeadmin) +"opG" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/horizon/rnd/hallway/secondary) "opH" = ( /obj/effect/floor_decal/corner/red{ dir = 8 @@ -100229,19 +100465,81 @@ }, /turf/unsimulated/floor, /area/centcom/evac) -"opJ" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, +"opI" = ( +/obj/structure/sign/directions/prop{ + dir = 4; + pixel_x = 32; + pixel_y = 24 + }, /obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor, -/area/maintenance/engineering_ladder) -"opY" = ( -/obj/effect/floor_decal/industrial/loading/yellow{ +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/aft) +"opV" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled, +/area/horizon/engineering/storage_eva) +"opW" = ( +/obj/effect/floor_decal/industrial/outline_door/service{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/outline_segment/service{ + dir = 6 + }, +/obj/machinery/ringer_button{ + pixel_y = -26; + pixel_x = 23; + id = "ringer_hydroponics"; + name = "hydroponics ringer button" + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_2/fore) +"opX" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/random/junk{ + pixel_y = -7; + pixel_x = -11 + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/starboard/nacelle) +"opZ" = ( +/obj/machinery/light/small{ dir = 8 }, +/obj/effect/floor_decal/corner/brown{ + dir = 9 + }, /turf/simulated/floor/tiled/dark, -/area/rnd/xenoarch_atrium) +/area/horizon/shuttle/intrepid/starboard_compartment) +"oqc" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/tiled/full, +/area/horizon/command/bridge/upperdeck) +"oqe" = ( +/obj/structure/grille, +/obj/machinery/door/firedoor, +/obj/structure/window/shuttle/scc_space_ship, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_3/aft/port/far) +"oqf" = ( +/turf/simulated/floor/wood, +/area/horizon/command/heads/chief) "oqh" = ( /turf/simulated/floor/exoplanet/water/shallow{ icon = 'icons/turf/flooring/exoplanet/konyang.dmi'; @@ -100249,15 +100547,25 @@ name = "coast" }, /area/horizon/holodeck/source_konyang) -"oqm" = ( -/obj/machinery/door/blast/shutters{ - dir = 8; - id = "r-ust_north"; - name = "INDRA Reactor Fore Storage Shutters" +"oqi" = ( +/obj/effect/floor_decal/spline/fancy{ + dir = 1 }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/engine_room/rust) +/obj/structure/platform, +/obj/machinery/hologram/holopad/long_range{ + pixel_y = -10 + }, +/turf/simulated/floor/carpet/rubber, +/area/horizon/command/bridge/controlroom) +"oqk" = ( +/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, +/obj/machinery/door/blast/shutters{ + dir = 4; + id = "shutters_deck1_morgue2"; + name = "Viewing Shutter" + }, +/turf/simulated/floor/tiled/full, +/area/horizon/medical/morgue) "oqn" = ( /obj/effect/decal/fake_object{ color = "#545c68"; @@ -100278,23 +100586,35 @@ density = 1 }, /area/antag/ninja) -"oqs" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 6 - }, -/obj/random/dirt_75, -/turf/simulated/floor/tiled/dark, -/area/maintenance/wing/port/far) -"oqB" = ( -/obj/effect/floor_decal/spline/plain/green, -/obj/effect/floor_decal/corner/dark_green{ +"oqq" = ( +/obj/machinery/door/firedoor, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/hallway) +"oqt" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/corner/brown{ dir = 5 }, -/obj/machinery/atmospherics/pipe/simple/hidden/universal{ - dir = 4 +/obj/structure/cable/green{ + icon_state = "2-8" }, /turf/simulated/floor/tiled, -/area/horizon/hydroponics/lower) +/area/horizon/operations/office) +"oqx" = ( +/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/maintenance/deck_2/wing/port/nacelle) +"oqy" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/corner/dark_green{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/horizon/hangar/intrepid) "oqC" = ( /obj/structure/cryofeed, /obj/structure/window/reinforced/crescent{ @@ -100302,42 +100622,67 @@ }, /turf/unsimulated/floor, /area/centcom/spawning) -"oqE" = ( -/obj/structure/cable{ - icon_state = "4-8" +"oqF" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 13 }, -/obj/structure/bed/stool/chair/padded/black{ - dir = 4 +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 }, -/turf/simulated/floor/tiled, -/area/hangar/intrepid) -"oqJ" = ( -/obj/structure/platform_deco{ +/obj/machinery/firealarm/east, +/turf/simulated/floor/tiled/dark, +/area/horizon/rnd/xenobiology/dissection) +"oqG" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/lattice/catwalk/indoor, +/obj/structure/railing/mapped{ dir = 8 }, -/obj/effect/floor_decal/spline/fancy/wood{ +/turf/simulated/open, +/area/horizon/operations/office) +"oqI" = ( +/obj/structure/bed/stool/chair/office/dark, +/obj/effect/floor_decal/corner/mauve/diagonal, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/lab) +"oqL" = ( +/obj/structure/closet/radiation, +/obj/machinery/firealarm/north, +/obj/machinery/alarm/east, +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/gravity_gen) +"oqN" = ( +/obj/effect/floor_decal/corner_wide/purple{ dir = 4 }, -/turf/simulated/floor/wood, -/area/crew_quarters/heads/hor) -"oqM" = ( -/obj/structure/bed/stool/bar/padded/red, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard) -"oqO" = ( -/obj/structure/cable{ +/obj/effect/floor_decal/corner_wide/purple{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 10 + }, +/obj/structure/cable/green{ icon_state = "4-8" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 +/obj/structure/platform_deco{ + dir = 1 }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/machinery/alarm/north, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard/deck1) +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/xenoarch/atrium) "oqS" = ( /obj/item/clothing/gloves/yellow/specialu, /obj/item/clothing/gloves/yellow/specialt, @@ -100352,6 +100697,65 @@ /obj/structure/table/reinforced/steel, /turf/unsimulated/floor, /area/centcom/legion/hangar5) +"oqU" = ( +/obj/structure/cable/orange{ + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/lattice/catwalk/indoor, +/turf/simulated/floor/plating, +/area/horizon/engineering/reactor/indra/mainchamber) +"oqW" = ( +/obj/structure/bed/handrail{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 1 + }, +/obj/effect/map_effect/marker/airlock/shuttle{ + cycle_to_external_air = 1; + master_tag = "airlock_shuttle_intrepid"; + name = "airlock_shuttle_intrepid"; + req_one_access = null; + shuttle_tag = "Intrepid" + }, +/obj/effect/map_effect/marker_helper/airlock/out, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/shuttle/intrepid/main_compartment) +"oqY" = ( +/obj/machinery/computer/ship/sensors/cockpit{ + pixel_x = -27 + }, +/obj/structure/bed/stool/chair/shuttle, +/obj/machinery/computer/ship/helm/cockpit{ + pixel_y = -24; + req_one_access = list(48,74) + }, +/obj/machinery/computer/shuttle_control/explore/mining_shuttle{ + dir = 8; + pixel_x = 27; + req_access = null; + req_one_access = list(48,74) + }, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/item/device/radio/intercom/expedition/west{ + pixel_y = -24; + pixel_x = -10 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/shuttle/mining) +"oqZ" = ( +/turf/simulated/wall, +/area/horizon/medical/equipment) "ora" = ( /obj/effect/floor_decal/spline/plain, /obj/effect/floor_decal/industrial/warning{ @@ -100359,6 +100763,43 @@ }, /turf/unsimulated/floor, /area/antag/mercenary) +"orc" = ( +/turf/simulated/wall/shuttle/scc, +/area/horizon/shuttle/quark/cargo_hold) +"ore" = ( +/obj/machinery/door/firedoor, +/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/machinery/door/airlock/glass_command{ + dir = 4; + id_tag = ""; + name = "Bridge Officer Preparation"; + req_access = list(19) + }, +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id = "bridge blast"; + name = "Bridge Blast Doors"; + opacity = 0 + }, +/turf/simulated/floor/tiled/full, +/area/horizon/command/bridge/supply) +"orh" = ( +/obj/machinery/door/firedoor, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/door/airlock/maintenance_hatch{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/wing/starboard) "orm" = ( /obj/effect/floor_decal/industrial/warning, /obj/effect/decal/fake_object{ @@ -100371,92 +100812,137 @@ /obj/machinery/portable_atmospherics/canister/oxygen, /turf/unsimulated/floor/plating, /area/centcom/specops) -"orn" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/corner/brown{ - dir = 9 +"oro" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 5 }, -/obj/structure/engineer_maintenance/pipe, -/obj/structure/engineer_maintenance/electric{ - dir = 8 +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 6 + }, +/obj/machinery/light{ + dir = 1 }, /turf/simulated/floor/tiled, -/area/operations/mail_room) -"orp" = ( -/obj/structure/punching_bag{ - pixel_y = 12 +/area/horizon/hallway/primary/deck_3/port/docks) +"ors" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 }, -/obj/effect/floor_decal/spline/plain/grey{ - dir = 9 - }, -/obj/random/dirt_75, -/obj/machinery/camera/network/third_deck{ - c_tag = "Third Deck - Gym"; +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/turf/simulated/floor/reinforced, -/area/horizon/crew_quarters/fitness/gym) -"orq" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/engineering/storage/lower) -"ort" = ( -/obj/machinery/fusion_fuel_injector/mapped{ - dir = 8; - initial_id_tag = "horizon_fusion" - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/simulated/floor/carpet/rubber, -/area/engineering/engine_room/rust) -"orv" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/clothing/glasses/sunglasses, -/obj/item/screwdriver, -/obj/structure/platform, -/obj/structure/table/reinforced, -/turf/simulated/floor/tiled/dark, -/area/maintenance/wing/port/far) -"orw" = ( -/turf/simulated/wall/shuttle/scc_space_ship/cardinal, -/area/engineering/rust_office) -"orQ" = ( -/obj/structure/bed/stool/chair/padded/black{ +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 1 }, +/obj/structure/engineer_maintenance/pipe/wall, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/reactor/supermatter/mainchamber) +"orE" = ( /obj/effect/floor_decal/corner/dark_green{ - dir = 9 + dir = 10 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_2/starboard) +"orH" = ( +/obj/machinery/chem_heater, +/obj/effect/floor_decal/corner/mauve/diagonal, +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/chemistry) +"orI" = ( +/obj/machinery/button/remote/blast_door{ + id = "mining_shuttle_trunk"; + name = "Mining Shuttle Exterior"; + pixel_x = 21; + pixel_y = -22; + req_one_access = list(48,74) }, /turf/simulated/floor/tiled, -/area/security/checkpoint2) -"osc" = ( -/obj/machinery/atmospherics/pipe/tank/carbon_dioxide/scc_shuttle{ - dir = 1 +/area/horizon/hangar/operations) +"orJ" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 10 }, -/obj/effect/floor_decal/industrial/warning/cee{ - dir = 1 +/obj/structure/extinguisher_cabinet/south, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_2/central) +"orO" = ( +/obj/machinery/door/airlock/vault/bolted{ + dir = 4; + id_tag = "Vault_Airlock"; + req_one_access = list(20,41) + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/sign/securearea{ + pixel_y = -32 + }, +/obj/machinery/turretid/lethal{ + dir = 4; + name = "Vault Turret Control"; + pixel_x = 6; + pixel_y = 32; + req_access = null; + req_one_access = list(20,41) + }, +/turf/simulated/floor/tiled/full, +/area/horizon/storage/secure) +"orS" = ( +/obj/machinery/bluespace_beacon, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/shuttle/quark/cockpit) +"orY" = ( +/obj/structure/window/shuttle/scc_space_ship, +/obj/structure/grille, +/obj/machinery/door/firedoor, +/obj/effect/landmark/entry_point/starboard{ + name = "starboard, medical break room" + }, +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 4; + icon_state = "shutter0"; + id = "LCKDshutters"; + name = "MedBay Lockdown Shutters"; + opacity = 0 + }, +/turf/simulated/floor/plating, +/area/horizon/medical/smoking) +"orZ" = ( +/obj/structure/table/stone/marble, +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/shutters{ + id = "shutters_deck2_kitchendesk"; + name = "Kitchen Desk Shutter" }, /turf/simulated/floor/tiled/dark, -/area/shuttle/mining) +/area/horizon/service/kitchen) +"osb" = ( +/obj/effect/floor_decal/corner_wide/purple/diagonal, +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/test_range) "osd" = ( /obj/structure/bed/stool/chair/padded/black{ dir = 4 }, /turf/simulated/floor/carpet, /area/horizon/security/investigators_office) -"osf" = ( -/obj/structure/closet/secure_closet/machinist, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled/dark/full, -/area/operations/lower/machinist/surgicalbay) "osg" = ( /obj/structure/window/reinforced/crescent{ dir = 4 @@ -100479,146 +100965,64 @@ /obj/effect/floor_decal/spline/fancy/wood, /turf/unsimulated/floor/carpet, /area/centcom/bar) -"osj" = ( -/obj/machinery/door/firedoor{ - req_one_access = list(24,11,67,73); +"osi" = ( +/obj/machinery/atmospherics/binary/circulator{ + anchored = 1; dir = 4 }, -/obj/machinery/door/airlock/maintenance{ - dir = 4; - name = "Library Maintenance"; - req_access = list(37) - }, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/library) -"osk" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 7 - }, -/turf/simulated/floor/wood, -/area/chapel/main) -"osr" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/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, -/area/medical/psych) -"osE" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 5 - }, -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/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, -/turf/simulated/open/airless, -/area/template_noop) -"osS" = ( -/obj/structure/bed/stool/chair/padded/red{ +/obj/effect/floor_decal/industrial/outline_corner/yellow{ dir = 1 }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 6 - }, -/obj/structure/platform{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/horizon/crew_quarters/lounge/bar) -"osW" = ( -/obj/machinery/shower{ - pixel_y = 24 - }, -/obj/random/soap, -/obj/structure/curtain/open/shower, -/obj/structure/window/reinforced, -/turf/simulated/floor/tiled/freezer, -/area/medical/washroom) -"osY" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ +/obj/effect/floor_decal/industrial/outline_segment/yellow{ dir = 4 }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 9 +/obj/effect/floor_decal/industrial/outline_segment/yellow{ + dir = 10 }, -/obj/structure/table/wood, -/obj/machinery/chemical_dispenser/coffee/full{ - pixel_y = 10 +/turf/simulated/floor/plating, +/area/horizon/engineering/atmos/turbine) +"osD" = ( +/obj/structure/flora/ausbushes/sparsegrass, +/obj/item/device/radio/intercom/west, +/obj/machinery/portable_atmospherics/hydroponics/soil, +/turf/simulated/floor/grass/no_edge, +/area/horizon/service/hydroponics/garden) +"osJ" = ( +/obj/effect/floor_decal/corner_wide/grey/diagonal, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/effect/floor_decal/spline/plain, +/turf/simulated/floor/tiled/white, +/area/horizon/operations/break_room) +"osL" = ( +/obj/structure/shuttle_part/scc/mining{ + icon_state = "1,10"; + outside_part = 0 }, -/obj/item/reagent_containers/food/drinks/drinkingglass/newglass/coffeecup{ - pixel_x = -6; - pixel_y = -4 +/obj/machinery/atmospherics/unary/engine/scc_shuttle, +/obj/effect/floor_decal/industrial/warning/cee{ + dir = 1 }, -/obj/item/reagent_containers/food/drinks/drinkingglass/newglass/coffeecup{ - pixel_x = 2; - pixel_y = -4 +/turf/simulated/floor/plating, +/area/horizon/shuttle/mining) +"osN" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 10 }, -/obj/item/reagent_containers/food/drinks/drinkingglass/newglass/coffeecup{ - pixel_x = 10; - pixel_y = -4 +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 }, -/turf/simulated/floor/wood, -/area/lawoffice/representative) -"otc" = ( -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 4; - icon_state = "shutter0"; - id = "LCKDshutters"; - name = "MedBay Lockdown Shutters"; - opacity = 0 +/obj/machinery/embedded_controller/radio/simple_docking_controller{ + dir = 1; + frequency = 1380; + id_tag = "mining_shuttle_dock"; + name = "\improper Spark docking port controller"; + pixel_x = 6; + pixel_y = -19; + req_one_access = list(31,48,67,74); + tag_door = "mining_shuttle_dock_doors" }, -/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, -/turf/simulated/floor/tiled/dark/full, -/area/medical/reception) +/turf/simulated/floor/tiled, +/area/horizon/hangar/operations) "otg" = ( /obj/effect/floor_decal/corner/yellow/full{ dir = 1 @@ -100640,30 +101044,39 @@ }, /turf/simulated/floor/tiled, /area/horizon/security/brig) -"oto" = ( -/obj/effect/floor_decal/industrial/warning{ +"otm" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning/corner{ dir = 8 }, -/obj/machinery/light/small{ - dir = 8 +/obj/machinery/light/spot, +/obj/effect/floor_decal/industrial/outline/firefighting_closet, +/turf/simulated/floor/plating, +/area/horizon/engineering/reactor/supermatter/mainchamber) +"otp" = ( +/obj/effect/map_effect/window_spawner/full/reinforced/polarized/grille/firedoor{ + id = "consularB" }, -/turf/simulated/floor/reinforced, -/area/horizon/grauwolf) +/obj/structure/cable/green{ + icon_state = "0-8" + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor, +/area/horizon/repoffice/consular_two) +"otq" = ( +/obj/machinery/atmospherics/pipe/tank/air/scc_shuttle, +/turf/simulated/floor/plating, +/area/horizon/shuttle/intrepid/engineering) "otr" = ( /obj/effect/floor_decal/corner/green{ dir = 10 }, /turf/simulated/floor/holofloor/tiled, /area/horizon/holodeck/source_thunderdomecourt) -"ots" = ( -/obj/structure/window/shuttle/scc_space_ship, -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/effect/landmark/entry_point/aft{ - name = "aft, deck 1 port maintenance, port side" - }, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard/deck1) "otv" = ( /obj/structure/window/reinforced/holowindow{ dir = 1 @@ -100673,24 +101086,16 @@ }, /turf/simulated/floor/holofloor/wood, /area/horizon/holodeck/source_courtroom) -"otA" = ( -/obj/structure/cable/green{ - icon_state = "1-8" +"otG" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 5 }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/carpet, -/area/lawoffice/consular_two) -"otE" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/effect/floor_decal/industrial/warning/corner, -/obj/machinery/floodlight, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ +/obj/structure/window/reinforced{ dir = 4 }, -/turf/simulated/floor/tiled/dark/full, -/area/shuttle/intrepid/port_storage) +/obj/structure/lattice/catwalk/indoor, +/turf/simulated/floor/plating, +/area/horizon/engineering/atmos/air) "otK" = ( /obj/machinery/portable_atmospherics/canister/oxygen, /obj/effect/floor_decal/industrial/outline/yellow, @@ -100699,155 +101104,104 @@ "otO" = ( /turf/unsimulated/wall/steel, /area/antag/raider) -"otX" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/corner/dark_green{ - dir = 5 +"otU" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 }, -/obj/structure/cable/green{ - icon_state = "4-8" +/obj/machinery/disposal/small/south, +/obj/structure/disposalpipe/trunk{ + dir = 4 }, -/obj/structure/cable/green{ - icon_state = "2-8" +/obj/effect/floor_decal/corner_wide/green/full{ + dir = 8 }, -/obj/structure/cable/green{ - icon_state = "1-8" +/obj/machinery/camera/network/medbay{ + c_tag = "Medical - Aft Treatment Room" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/hangar/intrepid/interstitial) -"oua" = ( /obj/effect/floor_decal/industrial/warning, -/obj/effect/floor_decal/industrial/warning{ - dir = 10 +/turf/simulated/floor/tiled/white, +/area/horizon/medical/icu) +"ouc" = ( +/obj/structure/table/wood, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 }, -/turf/simulated/floor/reinforced, -/area/rnd/xenobiology) -"oub" = ( -/obj/item/reagent_containers/glass/bucket{ - pixel_x = -11; - pixel_y = -5 +/obj/random/pottedplant_small{ + pixel_x = 9 + }, +/turf/simulated/floor/carpet, +/area/horizon/repoffice/representative_two) +"oup" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/structure/tank_wall/air{ + icon_state = "air10" + }, +/obj/machinery/atmospherics/pipe/manifold/visible, +/turf/simulated/floor/plating, +/area/horizon/engineering/atmos/air) +"our" = ( +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/effect/floor_decal/corner/black{ + dir = 6 + }, +/obj/effect/floor_decal/corner/dark_green{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/loading/yellow{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/hangar/intrepid) +"ouw" = ( +/obj/structure/cable/green{ + icon_state = "1-2" }, /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{ +/obj/machinery/camera/network/first_deck{ + c_tag = "First Deck - Hangar 6"; dir = 4 }, -/turf/simulated/floor/carpet/rubber, -/area/rnd/xenoarch_atrium) -"oud" = ( -/obj/machinery/door/airlock/external, -/obj/machinery/access_button{ - dir = 8; - pixel_x = 20; - pixel_y = 28 - }, -/obj/effect/map_effect/marker/airlock{ - frequency = 2001; - master_tag = "airlock_horizon_deck_2_starboard_aft"; - name = "airlock_horizon_deck_2_starboard_aft" - }, -/obj/effect/map_effect/marker_helper/airlock/exterior, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard) -"oue" = ( -/obj/effect/floor_decal/corner/mauve{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - icon_state = "pipe-c" - }, -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/rnd/hallway/secondary) -"oug" = ( -/obj/machinery/light/small/emergency, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard/far) -"ouj" = ( -/obj/effect/floor_decal/corner_wide/green{ - dir = 5 - }, -/obj/effect/floor_decal/corner_wide/green, -/obj/machinery/photocopier, -/obj/structure/sign/nosmoking_1{ - pixel_y = 32 - }, -/turf/simulated/floor/tiled/white, -/area/medical/exam) -"ouk" = ( -/obj/effect/floor_decal/corner/dark_blue/full{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge/meeting_room) -"ous" = ( /obj/effect/floor_decal/corner/dark_green{ - dir = 10 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/structure/table/standard, -/obj/item/paper_bin{ - pixel_x = 4; - pixel_y = 2 - }, -/obj/item/pen{ - pixel_x = 4; - pixel_y = 2 + dir = 9 }, /turf/simulated/floor/tiled, -/area/assembly/chargebay) +/area/horizon/hangar/intrepid) "ouy" = ( /obj/structure/lattice/catwalk/indoor, /turf/space/dynamic, /area/template_noop) -"ouz" = ( -/obj/structure/cable/green{ - icon_state = "1-2" +"ouD" = ( +/obj/structure/table/standard, +/obj/effect/floor_decal/corner/mauve{ + dir = 1 }, -/obj/effect/floor_decal/corner_wide/yellow/full, -/turf/simulated/floor/tiled, -/area/hallway/engineering/rust) -"ouE" = ( -/obj/structure/bed/stool/chair/office/light, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ +/obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 }, -/obj/effect/landmark{ - name = "borerstart" - }, -/turf/simulated/floor/tiled/dark, -/area/engineering/gravity_gen) +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/lab) "ouG" = ( /turf/simulated/wall/shuttle/unique/ert{ icon_state = "8,4" }, /area/shuttle/specops) +"ouI" = ( +/obj/effect/map_effect/window_spawner/full/borosilicate/reinforced/firedoor, +/obj/machinery/door/blast/shutters/open{ + id = "RnDShutters"; + dir = 4 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/rnd/lab) "ouL" = ( /obj/effect/floor_decal/corner/paleblue/diagonal{ dir = 8 @@ -100859,77 +101213,58 @@ /obj/item/mop, /turf/simulated/floor/tiled/white, /area/merchant_station) -"ouU" = ( +"ove" = ( +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/effect/floor_decal/corner/black{ + dir = 6 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/hangar/intrepid) +"ovl" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, /obj/structure/cable/green{ - icon_state = "1-4" + icon_state = "2-4" }, -/obj/structure/disposalpipe/junction/yjunction{ - dir = 1 +/obj/machinery/door/firedoor, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/airlock/glass{ + dir = 4 }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_3/central) +"ovm" = ( +/turf/simulated/wall/r_wall, +/area/horizon/engineering/reactor/indra/monitoring) +"ovn" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/lattice/catwalk/indoor/grate, /obj/structure/cable/green{ icon_state = "4-8" }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/turf/simulated/floor/tiled, -/area/bridge/controlroom) -"ouY" = ( -/obj/machinery/door/firedoor, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/machinery/door/airlock/atmos{ - dir = 1; - name = "Atmospherics Turbine"; - req_access = list(24) - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plating, -/area/engineering/engine_room/turbine) -"ouZ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/effect/floor_decal/corner/dark_blue, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/starboard/docks) -"ova" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 5 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor, -/area/horizon/maintenance/deck_three/aft/starboard) -"ovb" = ( -/obj/effect/floor_decal/corner/brown/full{ - dir = 4 - }, -/obj/machinery/portable_atmospherics/canister/carbon_dioxide, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled, -/area/hangar/operations) -"ovg" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 8 - }, -/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) +/area/horizon/hallway/primary/deck_2/central) "ovr" = ( /obj/effect/floor_decal/corner/beige/diagonal, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -100942,13 +101277,17 @@ }, /turf/simulated/floor/tiled/white, /area/horizon/security/forensic_laboratory) -"ovy" = ( -/obj/structure/flora/ausbushes/fullgrass, -/obj/machinery/light/small{ +"ovt" = ( +/obj/structure/railing/mapped{ dir = 8 }, -/turf/unsimulated/floor/grass, -/area/antag/actor) +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plating, +/area/horizon/engineering/reactor/supermatter/mainchamber) +"ovv" = ( +/turf/simulated/wall/r_wall, +/area/horizon/command/teleporter) "ovA" = ( /obj/structure/window/reinforced{ dir = 8 @@ -100962,32 +101301,29 @@ }, /turf/unsimulated/floor, /area/centcom/legion) -"ovD" = ( -/obj/effect/floor_decal/industrial/outline/grey, -/obj/structure/survey_probe/ground, +"ovB" = ( +/obj/structure/table/reinforced/wood, +/obj/machinery/photocopier/faxmachine{ + department = "Executive Officer's Office" + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 7 + }, +/turf/simulated/floor/wood, +/area/horizon/command/heads/xo) +"ovK" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/horizon/rnd/hallway) +"ovL" = ( +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/machinery/alarm/east, /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 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/aux{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark/full, -/area/bridge/aibunker) +/area/horizon/maintenance/substation/xenoarchaeology) "ovT" = ( /obj/effect/floor_decal/corner/green/diagonal, /obj/structure/mirror{ @@ -101025,42 +101361,17 @@ }, /turf/unsimulated/floor/rubber_carpet, /area/centcom/specops) -"ovW" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/visible, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, +"ovY" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/reagent_dispensers/watertank, -/obj/item/reagent_containers/glass/bucket, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology/xenoflora) -"ovZ" = ( -/obj/structure/closet/walllocker/emerglocker{ - pixel_y = -32 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ + icon_state = "1-2" }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/outline/emergency_closet, -/obj/machinery/camera/network/third_deck{ - c_tag = "Third Deck - Starboard Dock Port"; +/obj/effect/floor_decal/corner/dark_green{ dir = 1 }, /turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/port/docks) +/area/horizon/hangar/auxiliary) "owd" = ( /obj/machinery/door/airlock/centcom{ locked = 1; @@ -101069,18 +101380,17 @@ }, /turf/unsimulated/floor/plating, /area/centcom/holding) -"owi" = ( -/obj/effect/floor_decal/corner/mauve{ - dir = 10 +"owk" = ( +/obj/structure/cable/yellow{ + icon_state = "2-8" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 4 }, -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/turf/simulated/floor/tiled/white, -/area/rnd/telesci) +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plating, +/area/horizon/engineering/reactor/supermatter/mainchamber) "owm" = ( /obj/structure/table/standard, /obj/item/paper_bin{ @@ -101102,23 +101412,6 @@ }, /turf/simulated/floor/holofloor/tiled, /area/template_noop) -"owo" = ( -/obj/machinery/door/firedoor, -/obj/effect/floor_decal/corner/dark_green{ - dir = 1 - }, -/obj/effect/floor_decal/corner/grey, -/obj/machinery/door/window/desk/southleft{ - name = "Kitchen"; - req_access = list(28) - }, -/obj/machinery/door/window/desk/northleft{ - name = "Hydroponics"; - req_access = list(35) - }, -/obj/structure/table/reinforced, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/kitchen) "owr" = ( /obj/machinery/light{ dir = 8 @@ -101128,6 +101421,29 @@ }, /turf/unsimulated/floor, /area/centcom/control) +"ows" = ( +/obj/machinery/disposal/deliveryChute, +/obj/machinery/door/window/eastleft{ + dir = 2; + req_access = list(55) + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/blast/regular/open{ + dir = 8; + fail_secure = 1; + id = "xenobio_e"; + name = "Cell Containment Blast Door" + }, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/rnd/xenobiology) "owB" = ( /obj/structure/grille, /obj/machinery/door/firedoor, @@ -101149,79 +101465,62 @@ }, /turf/simulated/floor/tiled, /area/horizon/security/hallway) -"owH" = ( -/obj/effect/floor_decal/spline/plain, -/obj/effect/floor_decal/spline/fancy{ - dir = 1 - }, -/obj/structure/railing/mapped, -/obj/effect/floor_decal/corner_wide/white{ - dir = 10 - }, -/turf/simulated/floor/tiled/dark/full, -/area/hallway/primary/central_one) -"owI" = ( -/obj/structure/disposalpipe/segment{ +"owF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/emergency{ dir = 4 }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/random/junk, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/hangar/starboard) +"owG" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/outline/operations, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/suit_cycler/engineering/prepared/atmos, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/atmos/storage) +"owN" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 10 + }, +/obj/machinery/light, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_2/starboard) +"owQ" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/horizon/engineering/atmos/air) +"oxl" = ( +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/effect/floor_decal/corner/yellow/diagonal, /obj/structure/cable/green{ icon_state = "1-8" }, -/turf/simulated/floor/wood, -/area/bridge/minibar) -"owJ" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/effect/map_effect/marker/mapmanip/submap/insert/sccv_horizon/ops_warehouse_small_storage, /turf/simulated/floor/tiled, -/area/operations/storage) -"owP" = ( -/obj/effect/floor_decal/industrial/outline/red, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/plating, -/area/maintenance/operations) -"owS" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/hangar/intrepid) -"oxg" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 10 +/area/horizon/stairwell/engineering/deck_2) +"oxm" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/table/standard{ + no_cargo = 1 }, +/obj/random/gloves, /turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/starboard/docks) -"oxi" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/atmospherics/binary/pump{ - dir = 8; - name = "Connectors to Filtering" - }, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/atmos) -"oxo" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/closet/crate, -/obj/random/loot, -/obj/random/contraband, -/obj/machinery/alarm/north, -/turf/simulated/floor/tiled/dark/full, -/area/maintenance/wing/cargo_compartment) +/area/horizon/maintenance/deck_1/wing/starboard/far) "oxq" = ( /obj/structure/bed/stool/chair/shuttle, /obj/structure/window/reinforced{ @@ -101229,18 +101528,64 @@ }, /turf/simulated/floor/shuttle/black, /area/shuttle/specops) -"oxu" = ( -/obj/machinery/power/terminal{ +"oxs" = ( +/obj/machinery/door/blast/shutters{ + id = "shutters_deck2_workshopdesk"; + name = "Machinist Workshop Desk Shutter" + }, +/obj/structure/table/reinforced/steel, +/obj/machinery/door/window/desk/northright{ + name = "Machinist Workshop Desk"; + req_access = list(29) + }, +/turf/simulated/floor/tiled, +/area/horizon/operations/machinist) +"oxt" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_3/starboard/docks) +"oxx" = ( +/obj/effect/floor_decal/corner_wide/purple/full{ dir = 4 }, -/obj/structure/cable{ - icon_state = "0-8" +/obj/effect/floor_decal/industrial/warning{ + dir = 6 }, -/obj/machinery/camera/network/command{ - c_tag = "AI Core - Upload Airlock" +/obj/structure/cable/green{ + icon_state = "4-8" }, -/turf/simulated/floor, -/area/turret_protected/ai_upload_foyer) +/obj/machinery/button/remote/blast_door{ + id = "iso_a"; + name = "Blast Door Control"; + pixel_x = -10; + pixel_y = -22; + req_access = list(65) + }, +/obj/machinery/button/remote/blast_door{ + id = "iso_a_purge"; + name = "PURGE Atmosphere"; + pixel_y = -22; + req_access = list(65) + }, +/obj/machinery/button/remote/airlock{ + id = "riso1"; + name = "Door Bolt Control"; + pixel_x = 10; + pixel_y = -22; + req_access = list(65); + specialfunctions = 4 + }, +/obj/machinery/atmospherics/valve/digital/open{ + dir = 4; + name = "Isolation C" + }, +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/xenoarch/atrium) "oxB" = ( /obj/machinery/cryopod{ dir = 1 @@ -101253,116 +101598,115 @@ icon_state = "dark_preview" }, /area/centcom/holding) -"oxH" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 5 +"oxD" = ( +/obj/machinery/autolathe, +/turf/simulated/floor/carpet/rubber, +/area/horizon/rnd/lab) +"oxI" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 7 }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_two/fore) -"oxN" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/machinery/firealarm/west, -/obj/effect/floor_decal/industrial/outline/blue, -/turf/simulated/floor/tiled/dark, -/area/engineering/engine_waste) -"oxP" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "2-8" +/obj/random/pottedplant, +/turf/simulated/floor/wood, +/area/horizon/command/bridge/meeting_room) +"oxJ" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 }, /turf/simulated/floor/plating, -/area/maintenance/substation/supply) -"oxT" = ( -/obj/effect/floor_decal/corner/purple{ - dir = 10 +/area/horizon/maintenance/deck_1/hangar/starboard) +"oxM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/alarm/north, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/maintenance/substation/wing_port) +"oxQ" = ( +/obj/machinery/door/airlock/external, +/obj/effect/map_effect/marker/airlock{ + frequency = 2005; + master_tag = "airlock_horizon_deck_2_aft_sm"; + name = "airlock_horizon_deck_2_aft_sm" }, -/obj/structure/table/steel, -/obj/item/toy/figure/janitor, -/obj/machinery/atmospherics/pipe/simple/hidden/purple{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/horizon/custodial/disposals) -"oxU" = ( -/obj/effect/floor_decal/industrial/warning/corner, -/obj/effect/floor_decal/spline/plain/corner, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ +/obj/effect/map_effect/marker_helper/airlock/exterior, +/turf/simulated/floor/plating, +/area/horizon/engineering/reactor/supermatter/airlock) +"oxR" = ( +/obj/effect/floor_decal/industrial/hatch/red, +/obj/effect/floor_decal/industrial/warning{ dir = 4 }, -/turf/simulated/floor/tiled, -/area/engineering/atmos/storage) -"oxW" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/structure/window/shuttle/scc_space_ship/cardinal, -/obj/structure/disposalpipe/segment, -/obj/structure/cable/green{ - icon_state = "0-4" - }, -/obj/machinery/door/blast/regular/open{ - dir = 8; - id = "shutters_deck3_longbow"; - name = "Safety Blast Door" - }, /turf/simulated/floor/tiled/dark/full, -/area/horizon/longbow) +/area/horizon/service/custodial/disposals/deck_1) +"oxX" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/horizon/maintenance/deck_2/wing/port/nacelle) "oxZ" = ( /obj/structure/shuttle_part/mercenary/small{ icon_state = "5,1" }, /turf/unsimulated/floor/plating, /area/shuttle/syndicate_elite) -"oyk" = ( -/obj/machinery/shieldwallgen{ - req_access = list(55); - anchored = 1; - wrenched = 1 - }, -/obj/effect/floor_decal/corner/mauve/full, -/obj/machinery/camera/network/research{ - c_tag = "Xenobiology - Hazardous Specimen"; - dir = 1; - network = list("Research","Xeno_Bio") +"oya" = ( +/turf/simulated/floor/tiled/dark, +/area/horizon/service/hydroponics/garden) +"oyd" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, /obj/structure/cable/green{ - icon_state = "0-4" + icon_state = "1-8" + }, +/turf/simulated/floor/wood, +/area/horizon/command/bridge/minibar) +"oyl" = ( +/obj/machinery/atmospherics/valve/digital/open{ + dir = 4; + name = "Starboard Wing Main Supply Valve" }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology/hazardous) -"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{ +/turf/simulated/floor/tiled/dark, +/area/horizon/maintenance/deck_2/wing/starboard/auxatmos) +"oyn" = ( +/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/firedoor, +/obj/machinery/door/airlock/engineering{ + dir = 1; + name = "Gravity Generator Monitoring"; + req_access = list(11) + }, +/turf/simulated/floor/tiled/full, +/area/horizon/engineering/gravity_gen) +"oyq" = ( +/obj/effect/floor_decal/corner_wide/paleblue{ dir = 6 }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 +/obj/machinery/disposal/small/west{ + pixel_x = 15 }, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 8 +/obj/structure/disposalpipe/trunk, +/obj/machinery/light_switch{ + dir = 4; + pixel_x = 23; + pixel_y = 23 }, -/turf/simulated/floor/tiled, -/area/assembly/chargebay) +/obj/machinery/button/switch/windowtint{ + dir = 4; + id = "cmooffice"; + pixel_x = 23; + pixel_y = 33; + req_access = list(40) + }, +/turf/simulated/floor/tiled/white, +/area/horizon/command/heads/cmo) "oyt" = ( /obj/machinery/vending/snack{ name = "hacked Getmore Chocolate Corp"; @@ -101375,30 +101719,23 @@ }, /turf/unsimulated/floor/marble, /area/antag/wizard) -"oyv" = ( -/obj/machinery/light{ +"oyz" = ( +/obj/effect/floor_decal/corner_wide/lime/diagonal, +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/vending/zora, -/turf/simulated/floor/tiled/dark, -/area/horizon/hallway/deck_three/primary/port) -"oyx" = ( -/obj/structure/cable/orange{ - icon_state = "1-4" +/turf/simulated/floor/tiled/white, +/area/horizon/medical/reception) +"oyA" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 10 }, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"oyB" = ( -/obj/effect/decal/cleanable/cobweb2, -/obj/effect/floor_decal/corner/red/diagonal, -/obj/machinery/portable_atmospherics/powered/pump/filled, -/obj/effect/floor_decal/industrial/outline/blue, -/obj/machinery/light/small/emergency{ - dir = 1 +/obj/structure/bed/stool/chair/padded/black{ + dir = 4 }, -/turf/simulated/floor/tiled, -/area/storage/primary) +/obj/machinery/firealarm/west, +/turf/simulated/floor/wood, +/area/horizon/command/bridge/cciaroom/lounge) "oyC" = ( /obj/structure/flora/ausbushes/sparsegrass, /obj/effect/floor_decal/spline/fancy/wood/cee{ @@ -101406,6 +101743,28 @@ }, /turf/simulated/floor/holofloor/grass, /area/horizon/holodeck/source_picnicarea) +"oyG" = ( +/turf/simulated/floor/tiled/full, +/area/horizon/hallway/primary/deck_2/fore) +"oyO" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/turf/simulated/floor/plating, +/area/horizon/engineering/storage/lower) +"oyQ" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 9 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/closet/secure_closet/engineering_electrical, +/turf/simulated/floor/tiled, +/area/horizon/engineering/storage_eva) "oyW" = ( /obj/effect/floor_decal/corner/paleblue/full{ dir = 1 @@ -101424,54 +101783,74 @@ }, /turf/unsimulated/floor/dark_monotile, /area/antag/actor) -"oyY" = ( +"oza" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 10 + }, +/obj/machinery/disposal/small/north, +/obj/machinery/ai_status_display{ + pixel_y = -32 + }, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/horizon/crew/resdeck/living_quarters_lift) +"ozg" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/item/device/radio/intercom/west{ + dir = 2; + pixel_x = 0; + pixel_y = -4 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 7 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/obj/machinery/light/spot, +/obj/machinery/camera/network/command{ + c_tag = "Bridge - XO office"; + dir = 1 + }, +/turf/simulated/floor/wood, +/area/horizon/command/heads/xo) +"ozj" = ( +/obj/machinery/door/firedoor, +/obj/effect/floor_decal/corner/dark_green{ + dir = 6 + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/full, +/area/horizon/hallway/primary/deck_3/central) +"ozp" = ( /obj/effect/floor_decal/corner/dark_green{ dir = 9 }, -/turf/simulated/floor/tiled, -/area/operations/lobby) -"ozd" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/operations/lobby) -"ozh" = ( -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"ozm" = ( -/obj/effect/floor_decal/spline/fancy/wood/corner, -/turf/simulated/floor/wood, -/area/chapel/main) -"ozv" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_1/central) +"ozq" = ( +/obj/machinery/light/small/emergency, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/maintenance/deck_3/aft/port/far) +"ozt" = ( +/obj/effect/floor_decal/corner/dark_blue{ dir = 9 }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/spline/fancy/wood, -/turf/simulated/floor/wood, -/area/horizon/bar) -"ozx" = ( -/obj/effect/floor_decal/corner/purple{ - dir = 6 - }, /turf/simulated/floor/tiled/dark, -/area/horizon/custodial/disposals) +/area/horizon/weapons/grauwolf) "ozy" = ( /obj/item/device/radio/intercom/interrogation/broadcasting/south, /obj/effect/floor_decal/corner/red{ @@ -101479,65 +101858,128 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/security/interrogation) -"ozD" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 +"ozA" = ( +/obj/structure/cable/green{ + icon_state = "1-2" }, -/obj/structure/table/rack, -/obj/random/loot, -/turf/simulated/floor, -/area/maintenance/security_port) -"ozE" = ( -/turf/simulated/wall/shuttle/scc_space_ship/cardinal, -/area/rnd/test_range) +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/obj/machinery/light_switch{ + pixel_x = -26; + pixel_y = -19 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/equipment) +"ozB" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 5 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/turf/simulated/floor/tiled, +/area/horizon/rnd/hallway/secondary) "ozF" = ( /obj/machinery/atmospherics/pipe/simple/visible/fuel, /turf/space/dynamic, /area/horizon/exterior) -"ozJ" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/structure/cable{ - icon_state = "2-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/wing/port/far) -"ozO" = ( -/obj/machinery/atmospherics/binary/circulator{ - anchored = 1; +"ozK" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/wood, +/area/horizon/service/bar) +"ozN" = ( +/obj/effect/floor_decal/corner_wide/yellow/full{ dir = 8 }, -/obj/effect/floor_decal/industrial/outline_corner/yellow, -/obj/effect/floor_decal/industrial/outline_segment/yellow{ - dir = 8 +/obj/effect/floor_decal/corner_wide/yellow/diagonal, +/obj/effect/floor_decal/spline/plain{ + dir = 4 }, -/obj/effect/floor_decal/industrial/outline_segment/yellow{ - dir = 5 - }, -/turf/simulated/floor/plating, -/area/engineering/engine_room/turbine) +/obj/machinery/firealarm/west, +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/structure/engineer_maintenance/pipe/wall, +/turf/simulated/floor/tiled, +/area/horizon/engineering/break_room) "ozQ" = ( /obj/effect/map_effect/window_spawner/full/reinforced/indestructible, /turf/unsimulated/floor/plating, /area/centcom/legion/hangar5) -"ozV" = ( -/obj/effect/floor_decal/corner/white{ - dir = 5 +"ozR" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/table/rack, +/turf/unsimulated/floor/linoleum, +/area/antag/actor) +"ozS" = ( +/obj/machinery/bluespacerelay, +/turf/simulated/floor/bluegrid, +/area/horizon/tcommsat/chamber) +"ozU" = ( +/obj/structure/table/wood, +/obj/item/flame/candle{ + pixel_x = -9; + pixel_y = 8 + }, +/obj/machinery/power/outlet, +/turf/simulated/floor/wood, +/area/horizon/service/dining_hall) +"ozW" = ( +/obj/effect/floor_decal/spline/fancy/wood, +/obj/machinery/firealarm/west{ + dir = 2; + pixel_x = 0; + pixel_y = -22 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/machinery/disposal/small/north, +/turf/simulated/floor/wood, +/area/horizon/repoffice/consular_one) +"ozX" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/obj/effect/floor_decal/spline/fancy/wood, +/obj/machinery/light, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/horizon/command/heads/rd) +"oAe" = ( +/obj/machinery/hologram/holopad/long_range, +/turf/simulated/floor/carpet, +/area/horizon/command/heads/captain) +"oAg" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/light/spot{ + dir = 4 + }, +/obj/effect/floor_decal/corner/dark_green{ + dir = 6 }, /turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/central) -"oAi" = ( -/obj/structure/closet/secure_closet/engineering_electrical, -/turf/simulated/floor/plating, -/area/engineering/storage/lower) +/area/horizon/hangar/intrepid) "oAj" = ( /obj/item/aicard{ pixel_y = 4 @@ -101551,9 +101993,6 @@ /obj/structure/table/wood, /turf/unsimulated/floor/wood, /area/centcom/specops) -"oAm" = ( -/turf/simulated/wall, -/area/operations/break_room) "oAn" = ( /obj/effect/floor_decal/corner/dark_blue/full, /obj/effect/floor_decal/industrial/outline/security, @@ -101561,31 +102000,55 @@ /obj/structure/closet/secure_closet/contraband, /turf/simulated/floor/tiled, /area/horizon/security/warden) -"oAs" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 +"oAo" = ( +/obj/machinery/door/airlock/glass_engineering{ + dir = 4; + name = "Engineering Hallway"; + req_one_access = list(10) }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/cable/green{ - icon_state = "2-4" - }, -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/bluespace_drive) -"oAv" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 10 - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/firedoor{ - dir = 4 +/obj/machinery/door/firedoor, +/obj/effect/map_effect/door_helper/unres{ + dir = 8 }, /turf/simulated/floor/tiled/full, -/area/engineering/lobby) +/area/horizon/engineering/hallway/interior) +"oAp" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance_hatch{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/operations/starboard) +"oAq" = ( +/obj/structure/sink{ + pixel_y = 24 + }, +/obj/effect/floor_decal/industrial/outline/security, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/rnd/xenobiology) +"oAt" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/obj/machinery/power/sensor{ + name = "Powernet Sensor - Combustion Turbine Output"; + name_tag = "Combustion Turbine Output" + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/engineering/atmos/turbine) "oAy" = ( /obj/effect/floor_decal/corner/brown/diagonal, /obj/structure/closet/lasertag/blue, @@ -101627,11 +102090,6 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/security/brig) -"oAC" = ( -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/maintenance/wing/port/far) "oAE" = ( /obj/effect/floor_decal/spline/plain{ dir = 8 @@ -101645,160 +102103,118 @@ dir = 8 }, /area/antag/burglar) -"oAL" = ( -/obj/machinery/atmospherics/valve{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lime{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora) -"oAR" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/main_storage) -"oAS" = ( -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/reinforced, -/area/rnd/test_range) -"oAU" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/structure/closet/crate, -/obj/effect/floor_decal/corner/brown{ - dir = 9 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled, -/area/operations/storage) -"oAX" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 4 - }, -/obj/structure/platform_deco{ - dir = 8 - }, -/obj/structure/table/reinforced/steel, -/turf/simulated/floor/tiled/dark, -/area/bridge/controlroom) -"oAY" = ( -/obj/machinery/alarm/south, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/maintenance/aux_atmospherics/deck_2/starboard/wing) -"oBe" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 7 - }, -/obj/structure/disposalpipe/segment{ - icon_state = "pipe-c" - }, -/turf/simulated/floor/wood, -/area/rnd/hallway) -"oBf" = ( -/obj/effect/floor_decal/corner/white/diagonal, -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/obj/item/device/radio/intercom/south, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/medical/paramedic) -"oBn" = ( -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/random/junk{ - pixel_y = -7; - pixel_x = -11 - }, -/turf/simulated/floor/plating, -/area/maintenance/wing/port/far) -"oBo" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/carpet, -/area/crew_quarters/captain) -"oBs" = ( -/obj/effect/floor_decal/corner/dark_blue/full, -/obj/machinery/camera/network/command{ - c_tag = "Bridge - Kitchen Stairwell"; - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/horizon/stairwell/bridge) -"oBt" = ( -/obj/effect/floor_decal/corner_wide/blue{ - dir = 9 - }, -/obj/machinery/anti_bluespace, -/obj/effect/floor_decal/industrial/hatch/red, -/obj/machinery/camera/motion{ - c_tag = "Operations - Secure Storage"; - dir = 4; - network = list("Command","Security","Operations") - }, -/turf/simulated/floor/tiled/dark/full, -/area/storage/secure) -"oBv" = ( -/obj/structure/grille/diagonal{ - dir = 8 - }, -/obj/structure/window/shuttle/scc_space_ship, -/obj/effect/floor_decal/spline/plain{ +"oAJ" = ( +/turf/simulated/wall/shuttle/scc_space_ship/cardinal, +/area/horizon/engineering/bluespace_drive) +"oAW" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 1 }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/structure/cable/green{ + icon_state = "2-8"; + d1 = 2; + d2 = 8 + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/hangar/port) +"oBa" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/light/small/emergency, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/port) +"oBb" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/aux{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/item/device/radio/intercom/south, /turf/simulated/floor/tiled/dark, -/area/horizon/bar) +/area/horizon/command/bridge/aibunker) +"oBc" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 5 + }, +/turf/simulated/floor/plating, +/area/horizon/engineering/storage/lower) +"oBk" = ( +/obj/machinery/portable_atmospherics/canister/hydrogen, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/reinforced, +/area/horizon/rnd/xenoarch/atrium) +"oBl" = ( +/obj/structure/bed/stool/chair/office/light{ + dir = 8 + }, +/obj/effect/floor_decal/corner_wide/paleblue{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/command/heads/cmo) +"oBr" = ( +/obj/structure/cable/orange{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner_wide/yellow{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/horizon/engineering/bluespace_drive) +"oBu" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/power/apc/east, +/obj/structure/cable{ + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/starboard/far) +"oBx" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/atmospherics/binary/passive_gate{ + dir = 1; + name = "Oxygen to Thrusters" + }, +/turf/simulated/floor/plating, +/area/horizon/engineering/atmos/air) "oBy" = ( /turf/simulated/wall/shuttle/unique/tcfl{ icon_state = "4,0" }, /area/shuttle/legion) -"oBE" = ( -/obj/machinery/door/airlock/glass_research{ - name = "Research and Development"; - req_access = list(7); - dir = 4 +"oBD" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 5 }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/firedoor{ - dir = 4 - }, -/obj/effect/map_effect/door_helper/unres{ - dir = 8 - }, -/obj/machinery/door/blast/shutters/open{ - id = "RnDShutters"; - dir = 4 +/obj/structure/cable/green{ + icon_state = "0-2" }, +/obj/machinery/power/apc/north, /turf/simulated/floor/tiled, -/area/rnd/lab) +/area/horizon/hallway/primary/deck_3/starboard) "oBH" = ( /obj/effect/floor_decal/corner/lime{ dir = 6 @@ -101810,95 +102226,74 @@ icon_state = "dark_preview" }, /area/centcom/holding) -"oBL" = ( -/obj/effect/floor_decal/corner/dark_blue/diagonal, -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/airlock/security{ - dir = 4; - name = "Security Checkpoint"; - req_access = list(63) - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/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{ +"oBJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/floor_decal/industrial/warning{ dir = 8 }, -/obj/effect/floor_decal/industrial/warning{ - dir = 5 - }, -/obj/structure/lattice/catwalk/indoor/grate, /turf/simulated/floor/plating, -/area/security/checkpoint2) +/area/horizon/engineering/storage/lower) +"oBN" = ( +/obj/effect/floor_decal/corner/dark_green/full{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/horizon/engineering/hallway/fore) +"oBP" = ( +/obj/machinery/artifact_analyser, +/obj/effect/floor_decal/spline/plain{ + dir = 6 + }, +/turf/simulated/floor/bluegrid, +/area/horizon/rnd/xenoarch/isolation_a) "oBR" = ( /obj/effect/floor_decal/corner/full{ dir = 1 }, /turf/simulated/floor/marble/dark, /area/horizon/holodeck/source_tribunal) -"oBS" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 10 +"oBV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/mining{ + dir = 1; + req_one_access = list(26,29,31,48,67,70); + name = "Operations Bay" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/camera/network/third_deck{ - c_tag = "Third Deck - Port Dock Port"; - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/port/docks) -"oCd" = ( -/obj/effect/floor_decal/corner/beige/full{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/loading/yellow{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/medical/gen_treatment) +/turf/simulated/floor/tiled/full, +/area/horizon/operations/office_aux) "oCe" = ( /obj/effect/floor_decal/spline/fancy/wood/corner{ dir = 8 }, /turf/simulated/floor/wood/maple, /area/horizon/holodeck/source_cafe) -"oCk" = ( -/obj/machinery/camera/network/first_deck{ - c_tag = "First Deck - Hangar 15" +"oCg" = ( +/obj/structure/bed/stool/chair/padded/brown{ + dir = 4 }, -/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; - name = "Nitrogen to Connector" +/obj/effect/floor_decal/corner/dark_green/full, +/obj/machinery/firealarm/south, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_3/central) +"oCh" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/full, +/area/horizon/hallway/primary/deck_3/port) +"oCi" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 }, -/turf/simulated/floor/plating, -/area/engineering/atmos/air) +/obj/structure/table/rack, +/obj/random/loot, +/turf/simulated/floor, +/area/horizon/maintenance/deck_3/aft/starboard/far) "oCm" = ( /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -101917,97 +102312,72 @@ }, /turf/simulated/floor/tiled/full, /area/horizon/security/investigations_hallway) -"oCu" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ +"oCq" = ( +/obj/machinery/computer/rdservercontrol, +/turf/simulated/floor/carpet/rubber, +/area/horizon/rnd/server) +"oCz" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 +/turf/simulated/floor/tiled/dark, +/area/horizon/service/bar) +"oCC" = ( +/obj/machinery/power/breakerbox/activated{ + RCon_tag = "Engineering Lower Deck Substation" }, -/obj/machinery/newscaster/south, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/starboard/docks) -"oCB" = ( -/turf/simulated/wall/shuttle/scc_space_ship/cardinal, -/area/horizon/grauwolf) +/turf/simulated/floor/plating, +/area/horizon/maintenance/substation/engineering/lower) "oCI" = ( /turf/simulated/wall/shuttle/unique/tcfl{ icon_state = "7,0" }, /area/shuttle/legion) -"oCJ" = ( -/obj/effect/map_effect/window_spawner/full/reinforced/grille/firedoor, -/obj/structure/cable/green, -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/turf/simulated/floor/tiled/dark/full, -/area/tcommsat/chamber) "oCK" = ( /obj/effect/shuttle_landmark/horizon/exterior/deck_2/port_aft, /turf/template_noop, /area/template_noop) -"oCP" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable/green{ - icon_state = "1-2" +"oCN" = ( +/obj/machinery/alarm/south, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled/white, -/area/medical/gen_treatment) -"oCT" = ( -/obj/structure/shuttle/engine/propulsion/burst/left{ - dir = 8 +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 7 }, -/turf/simulated/floor/plating, -/area/shuttle/escape_pod/pod1) -"oCU" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 9 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/item/storage/toolbox/mechanical{ - pixel_y = 8 - }, -/obj/structure/table/rack, -/obj/item/device/spaceflare, -/obj/item/device/spaceflare, -/obj/item/device/spaceflare, -/obj/item/device/spaceflare, -/obj/item/device/spaceflare, -/obj/item/device/spaceflare, -/turf/simulated/floor/tiled/dark, -/area/hangar/control) -"oCY" = ( -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard) -"oDc" = ( /obj/structure/cable/green{ icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor, -/area/maintenance/security_port) -"oDd" = ( -/obj/structure/tank_wall{ - icon_state = "m-7" - }, -/obj/effect/floor_decal/industrial/warning{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/turf/simulated/floor/plating, -/area/engineering/atmos) +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/horizon/command/heads/captain) +"oCS" = ( +/turf/simulated/floor/marble/dark, +/area/horizon/command/bridge/minibar) +"oCX" = ( +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/turf/simulated/floor/carpet, +/area/horizon/repoffice/consular_one) +"oDf" = ( +/obj/structure/table/rack, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/tiled/freezer, +/area/horizon/crew/fitness/showers) "oDh" = ( /obj/effect/floor_decal/corner/black{ dir = 9 @@ -102037,18 +102407,39 @@ /obj/effect/floor_decal/industrial/loading/yellow, /turf/simulated/floor/tiled, /area/horizon/security/brig) -"oDq" = ( -/obj/effect/floor_decal/corner/lime{ - dir = 10 +"oDm" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/effect/floor_decal/industrial/hatch_tiny/yellow, +/obj/machinery/atmospherics/binary/pump/fuel{ + name = "Fuel Tank to Thrusters" }, -/turf/simulated/floor/tiled, -/area/engineering/lobby) -"oDr" = ( -/obj/structure/shuttle_part/scc/mining{ - icon_state = "1,3" +/obj/machinery/atmospherics/binary/pump{ + name = "Air Reserve to Airlock Reserve"; + dir = 4 }, /turf/simulated/floor/plating, -/area/shuttle/mining) +/area/horizon/shuttle/intrepid/engineering) +"oDn" = ( +/obj/machinery/door/firedoor, +/obj/effect/floor_decal/industrial/hatch_door/red{ + dir = 1 + }, +/obj/machinery/door/airlock/maintenance_hatch{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/maintenance/deck_2/wing/starboard/far) +"oDs" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 10 + }, +/obj/structure/extinguisher_cabinet/south, +/turf/simulated/floor/tiled, +/area/horizon/rnd/hallway) +"oDt" = ( +/turf/simulated/wall, +/area/horizon/maintenance/substation/xenoarchaeology) "oDw" = ( /obj/item/device/flashlight/lamp{ pixel_x = 6 @@ -102068,95 +102459,58 @@ /obj/effect/floor_decal/industrial/outline, /turf/simulated/floor/holofloor/carpet/rubber, /area/horizon/holodeck/source_gym) -"oDA" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/corner/brown/diagonal, -/turf/simulated/floor/tiled, -/area/operations/loading) -"oDB" = ( -/turf/simulated/wall/r_wall, -/area/engineering/atmos) "oDD" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/closet/emcloset/offworlder, /obj/structure/lattice/catwalk/indoor/grate/old, /turf/unsimulated/floor/plating, /area/antag/raider) -"oDE" = ( -/obj/structure/bed/stool/chair/shuttle/double{ - pixel_x = 8; +"oDH" = ( +/obj/machinery/firealarm/north, +/obj/effect/floor_decal/corner/mauve/full{ dir = 1 }, -/obj/structure/bed/stool/chair/shuttle/double{ - pixel_x = -8; +/obj/machinery/light_switch{ + dir = 4; + pixel_x = 23 + }, +/obj/structure/engineer_maintenance/pipe{ dir = 1 }, -/obj/effect/floor_decal/spline/plain/cee/black{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark/full, -/area/shuttle/intrepid/main_compartment) -"oDL" = ( -/turf/simulated/wall/shuttle/scc, -/area/shuttle/quark/cargo_hold) -"oDM" = ( -/obj/effect/floor_decal/industrial/warning{ +/obj/structure/engineer_maintenance/electric{ dir = 8 }, -/obj/structure/trash_pile, +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/conference) +"oDI" = ( +/obj/random/junk, +/obj/effect/floor_decal/industrial/warning, /turf/simulated/floor/plating, -/area/maintenance/wing/starboard) -"oDV" = ( -/obj/structure/cable{ +/area/horizon/maintenance/deck_1/main/port) +"oDN" = ( +/obj/structure/cable/green{ icon_state = "4-8" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ +/obj/structure/disposalpipe/segment{ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/machinery/door/firedoor, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/machinery/door/airlock/maintenance_hatch{ +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/turf/simulated/floor/plating, -/area/maintenance/wing/port/deck1) -"oDW" = ( /obj/effect/floor_decal/industrial/warning{ dir = 8 }, -/obj/random/dirt_75, -/turf/simulated/floor/tiled, -/area/maintenance/wing/port/far) -"oEd" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 5 - }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/rnd/xenoarch/atrium) +"oDT" = ( /obj/machinery/light/floor{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/bridge) -"oEg" = ( -/obj/effect/floor_decal/spline/fancy/wood{ dir = 4 }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/wood, -/area/crew_quarters/captain) +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/xenobiology) "oEh" = ( /obj/structure/flora/ausbushes/lavendergrass, /turf/unsimulated/floor/grass, @@ -102167,219 +102521,155 @@ }, /turf/unsimulated/floor, /area/centcom/bar) -"oEm" = ( -/obj/structure/disposalpipe/segment{ - icon_state = "pipe-c" +"oEo" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 }, -/obj/structure/cable{ - icon_state = "2-8" +/obj/effect/floor_decal/spline/fancy/wood/corner{ + dir = 8 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/maintenance/aft) +/turf/simulated/floor/wood, +/area/horizon/command/bridge/minibar) "oEq" = ( /turf/simulated/wall/shuttle/unique/ccia{ icon_state = "10,2" }, /area/shuttle/transport1) -"oEu" = ( -/obj/effect/floor_decal/corner/mauve{ - dir = 6 +"oEy" = ( +/obj/machinery/telecomms/bus/preset_two, +/turf/simulated/floor/bluegrid, +/area/horizon/tcommsat/chamber) +"oEF" = ( +/obj/structure/shuttle_part/scc_space_ship{ + icon_state = "d2-1-f" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/disposal/small/west, -/obj/structure/disposalpipe/trunk, -/turf/simulated/floor/tiled/white, -/area/rnd/conference) -"oEA" = ( -/obj/effect/floor_decal/corner/grey{ - dir = 10 +/turf/simulated/wall, +/area/horizon/maintenance/deck_2/wing/starboard) +"oEG" = ( +/obj/structure/platform_deco{ + dir = 4 }, -/obj/structure/weapon_rack/double{ - pixel_y = -32 +/obj/effect/floor_decal/corner/dark_blue{ + dir = 9 }, -/obj/machinery/light, -/turf/simulated/floor/lino, -/area/horizon/bar) -"oEL" = ( -/obj/effect/floor_decal/spline/plain/grey{ - dir = 6 +/turf/simulated/floor/tiled, +/area/horizon/command/bridge/upperdeck) +"oEJ" = ( +/obj/structure/ladder/up{ + pixel_y = 13 }, -/obj/random/dirt_75, -/turf/simulated/floor/reinforced, -/area/horizon/crew_quarters/fitness/gym) -"oEQ" = ( -/obj/effect/map_effect/window_spawner/full/borosilicate/reinforced/firedoor, -/turf/simulated/floor/reinforced, -/area/rnd/xenobiology/hazardous) +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/aft) +"oEP" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/shuttle/intrepid/main_compartment) "oER" = ( /turf/unsimulated/floor{ icon_state = "dark_preview" }, /area/centcom/ferry) -"oEZ" = ( -/obj/effect/map_effect/window_spawner/full/reinforced/polarized/grille/firedoor{ - id = "XO" +"oEY" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 6 }, -/turf/simulated/floor, -/area/crew_quarters/heads/hop/xo) -"oFc" = ( -/obj/structure/bookcase, -/obj/item/book/manual/stasis, -/obj/item/book/manual/psych, -/obj/item/book/manual/wiki/security_space_law, -/obj/item/book/manual/wiki/station_procedure, -/obj/machinery/camera/network/command{ - c_tag = "Bridge - Captain's Office Aft" - }, -/obj/item/book/manual/tcaf_pamphlet, -/turf/simulated/floor/carpet, -/area/crew_quarters/captain) -"oFg" = ( -/obj/machinery/door/firedoor, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/full, -/area/maintenance/security_port) +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_3/aft/port) "oFi" = ( /turf/simulated/floor/beach/sand{ dir = 6; icon_state = "beach" }, /area/centcom/shared_dream) -"oFl" = ( -/obj/effect/floor_decal/corner/mauve{ - dir = 6 - }, -/obj/machinery/hologram/holopad/long_range, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/white, -/area/rnd/conference) -"oFr" = ( -/obj/structure/table/wood, -/obj/random/pottedplant_small{ - pixel_x = 7; - pixel_y = 2 - }, -/obj/machinery/power/outlet{ - pixel_y = 9 - }, -/turf/simulated/floor/carpet/art, -/area/crew_quarters/lounge/secondary) -"oFx" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/maintenance/engineering) -"oFz" = ( -/obj/structure/flora/pottedplant{ - icon_state = "plant-33" - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/machinery/light_switch{ - dir = 4; - pixel_x = 22 - }, -/obj/effect/floor_decal/spline/fancy/wood/cee{ +"oFk" = ( +/obj/structure/bed/stool/chair, +/obj/effect/floor_decal/spline/fancy/wood{ dir = 1 }, -/obj/structure/extinguisher_cabinet/north, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 7 + }, /turf/simulated/floor/wood, -/area/chapel/main) -"oFA" = ( -/obj/structure/cable/green, -/obj/structure/cable/green{ - icon_state = "1-8" +/area/horizon/command/bridge/upperdeck) +"oFp" = ( +/obj/random/pottedplant, +/obj/effect/floor_decal/corner/dark_blue{ + dir = 9 }, -/obj/machinery/power/sensor{ - name = "Powernet Sensor - Deck 2 and 3 Security Subgrid"; - name_tag = "Deck 2 and 3 Security Subgrid" +/turf/simulated/floor/tiled, +/area/horizon/command/bridge/upperdeck) +"oFy" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/corner/dark_green/full{ + dir = 4 }, -/obj/machinery/power/apc/low/south, -/turf/simulated/floor/plating, -/area/maintenance/substation/security) +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_3/port) +"oFB" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/wood, +/area/horizon/repoffice/consular_one) "oFC" = ( /obj/effect/floor_decal/industrial/warning/corner{ dir = 4 }, /turf/simulated/floor/reinforced, /area/shuttle/mercenary) -"oFI" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 +"oFD" = ( +/obj/structure/platform{ + dir = 4 }, -/turf/simulated/floor/reinforced, -/area/rnd/test_range) -"oFL" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 5 - }, -/obj/machinery/alarm/north, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/starboard) -"oFN" = ( -/obj/effect/floor_decal/corner/black{ +/obj/structure/table/standard, +/obj/effect/floor_decal/spline/plain{ dir = 9 }, -/obj/structure/railing/mapped{ - dir = 8 +/obj/item/storage/toolbox/mechanical, +/turf/simulated/floor/carpet/rubber, +/area/horizon/operations/machinist) +"oFF" = ( +/obj/structure/cable/green{ + icon_state = "4-8" }, -/obj/effect/floor_decal/industrial/loading/yellow, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/hangar/intrepid) -"oFP" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 + dir = 4 }, -/obj/effect/floor_decal/corner/black{ - dir = 5 +/obj/machinery/door/airlock/multi_tile/glass{ + dir = 2; + name = "Hangar" + }, +/obj/machinery/door/firedoor/multi_tile{ + dir = 1 + }, +/obj/machinery/door/blast/regular/open{ + id = "hangarlockdown"; + name = "Hangar Lockdown" }, /turf/simulated/floor/tiled, -/area/operations/lower/machinist) -"oFV" = ( -/obj/structure/cable/green{ - icon_state = "1-2" +/area/horizon/hangar/intrepid) +"oFH" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 9 }, -/obj/machinery/door/airlock/maintenance{ - dir = 1; - name = "Hydroponics Maintenance"; - req_access = list(35) +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 }, -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/full, -/area/horizon/hydroponics) +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/xenobiology/hazardous) "oFW" = ( /obj/structure/table/reinforced/wood, /obj/effect/floor_decal/spline/fancy/wood, @@ -102389,20 +102679,44 @@ icon_state = "wood" }, /area/centcom/control) -"oFZ" = ( -/obj/effect/floor_decal/industrial/outline/grey, -/obj/random/dirt_75, -/turf/simulated/floor, -/area/maintenance/security_port) +"oGc" = ( +/obj/effect/floor_decal/corner_wide/yellow{ + dir = 6 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/horizon/engineering/hallway/interior) +"oGh" = ( +/obj/item/modular_computer/console/preset/command{ + dir = 4 + }, +/obj/machinery/keycard_auth{ + dir = 4; + pixel_x = -20 + }, +/turf/simulated/floor/carpet, +/area/horizon/command/heads/hos) "oGi" = ( /obj/effect/floor_decal/corner/dark_blue{ dir = 5 }, /turf/simulated/floor/tiled, /area/horizon/security/hallway) -"oGl" = ( -/turf/simulated/floor/reinforced, -/area/rnd/xenobiology) +"oGk" = ( +/obj/effect/floor_decal/corner/white/diagonal, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/machinery/air_sensor{ + frequency = 1441; + id_tag = "air_sensor" + }, +/obj/effect/decal/fake_object/light_source/invisible, +/obj/machinery/atmospherics/pipe/manifold/visible{ + dir = 8 + }, +/turf/simulated/floor/reinforced/airmix, +/area/horizon/engineering/atmos/air) "oGm" = ( /obj/structure/closet/secure_closet/security_cadet, /obj/effect/floor_decal/corner/dark_blue{ @@ -102411,43 +102725,86 @@ /obj/effect/floor_decal/industrial/outline/blue, /turf/simulated/floor/tiled, /area/horizon/security/equipment) -"oGp" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/corner/brown{ - dir = 5 - }, -/obj/machinery/power/apc/super/critical/north, -/obj/structure/cable/green{ - icon_state = "0-4" - }, +"oGo" = ( +/obj/effect/floor_decal/corner/black/full, +/obj/machinery/firealarm/south, /turf/simulated/floor/tiled, -/area/hangar/operations) -"oGu" = ( -/obj/structure/bed/stool/chair/padded/red, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 5 +/area/horizon/operations/machinist) +"oGv" = ( +/obj/effect/floor_decal/corner_wide/green/diagonal{ + dir = 4 }, -/obj/structure/platform{ - dir = 8 +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 }, -/turf/simulated/floor/wood, -/area/horizon/crew_quarters/lounge/bar) -"oGF" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/equipment) +"oGw" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 10 + }, +/obj/machinery/light, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_3/starboard) +"oGx" = ( +/obj/machinery/power/apc/east, +/obj/structure/cable/green{ + icon_state = "0-8" + }, +/obj/effect/floor_decal/corner/mauve{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/xenobiology/foyer) +"oGB" = ( +/obj/machinery/power/apc/east, +/obj/structure/cable/green{ + icon_state = "0-8" + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, /turf/simulated/floor/plating, -/area/maintenance/wing/port/far) -"oGK" = ( -/obj/structure/trash_pile, -/obj/effect/floor_decal/industrial/warning{ +/area/horizon/maintenance/deck_3/security/starboard) +"oGD" = ( +/obj/effect/floor_decal/corner/brown{ dir = 9 }, -/turf/simulated/floor/plating, -/area/maintenance/wing/port/deck1) +/obj/structure/engineer_maintenance/electric{ + dir = 8 + }, +/obj/structure/engineer_maintenance/pipe, +/turf/simulated/floor/tiled, +/area/horizon/operations/office) +"oGR" = ( +/obj/effect/floor_decal/industrial/outline/service, +/obj/structure/closet/crate/hydroponics/beekeeping, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/service/hydroponics/lower) +"oGS" = ( +/obj/effect/floor_decal/corner/green/diagonal, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/access_button{ + command = "cycle_interior"; + frequency = 1379; + master_tag = "processing_airlock_control"; + name = "Interior access button"; + pixel_x = 25; + pixel_y = -30; + req_access = list(5) + }, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/ward/isolation) "oGV" = ( /obj/machinery/portable_atmospherics/powered/pump/filled{ start_pressure = 15000 @@ -102455,52 +102812,23 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/unsimulated/floor, /area/centcom/legion/hangar5) -"oGX" = ( -/obj/machinery/chemical_dispenser/coffeemaster/full{ - pixel_x = -9; - pixel_y = 12 +"oHh" = ( +/obj/effect/floor_decal/corner/dark_green/full{ + dir = 8 }, -/obj/structure/table/stone/marble, -/obj/effect/decal/fake_object{ - desc = "A descriptive sign."; - icon = 'icons/effects/cafesign.dmi'; - icon_state = "cafesign"; - name = "cafe sign"; - pixel_y = 30 +/obj/effect/floor_decal/industrial/loading/yellow, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled, +/area/horizon/stairwell/port/deck_3) +"oHl" = ( +/obj/machinery/light/small{ + dir = 4 }, -/obj/item/reagent_containers/food/drinks/drinkingglass/newglass/coffeecup/idris{ - pixel_x = 9; - pixel_y = 8 - }, -/obj/item/reagent_containers/food/drinks/takeaway_cup_idris, -/obj/item/reagent_containers/food/drinks/drinkingglass/newglass/coffeecup/idris{ - pixel_x = 9; - pixel_y = 2 - }, -/obj/item/reagent_containers/food/drinks/drinkingglass/newglass/coffeecup/idris{ - pixel_x = 9; - pixel_y = -4 - }, -/obj/item/reagent_containers/food/drinks/takeaway_cup_idris, -/obj/item/reagent_containers/food/drinks/takeaway_cup_idris{ - pixel_x = -7 - }, -/obj/item/reagent_containers/food/drinks/takeaway_cup_idris{ - pixel_x = -7 - }, -/obj/effect/floor_decal/spline/fancy/wood{ +/obj/effect/floor_decal/industrial/warning{ dir = 5 }, -/turf/simulated/floor/wood, -/area/horizon/cafeteria) -"oGY" = ( -/obj/effect/floor_decal/corner/dark_blue/diagonal, -/turf/simulated/floor/tiled/dark, -/area/turret_protected/ai_upload_foyer) -"oHk" = ( -/obj/effect/floor_decal/corner/dark_blue/diagonal, -/turf/simulated/floor/tiled/dark, -/area/bridge/aibunker) +/turf/simulated/floor/reinforced, +/area/horizon/rnd/xenobiology) "oHq" = ( /obj/machinery/light{ dir = 1 @@ -102510,6 +102838,16 @@ }, /turf/unsimulated/floor, /area/centcom/ferry) +"oHs" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/floor_decal/corner/dark_green{ + dir = 5 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_3/port) "oHt" = ( /obj/machinery/photocopier, /obj/structure/sign/poster{ @@ -102517,11 +102855,6 @@ }, /turf/unsimulated/floor, /area/centcom/control) -"oHu" = ( -/obj/random/pottedplant, -/obj/effect/floor_decal/spline/fancy/wood/full, -/turf/simulated/floor/wood, -/area/horizon/hallway/deck_three/primary/central) "oHB" = ( /obj/machinery/recharger/wallcharger{ pixel_x = 4; @@ -102547,134 +102880,119 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/unsimulated/floor, /area/centcom/legion/hangar5) -"oHK" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 9 - }, -/obj/machinery/fusion_fuel_compressor, -/obj/machinery/light/spot, -/turf/simulated/floor/carpet/rubber, -/area/engineering/engine_room/rust) -"oHM" = ( -/obj/structure/platform_stairs/full{ +"oHF" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/closet/crate, +/obj/random/loot, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/starboard) +"oHG" = ( +/obj/structure/railing/mapped{ dir = 4 }, -/obj/structure/platform{ - dir = 1 +/obj/structure/platform/ledge, +/obj/structure/platform/ledge{ + dir = 8 + }, +/obj/structure/platform_deco/ledge{ + dir = 9 + }, +/turf/simulated/open, +/area/horizon/hallway/primary/deck_3/central) +"oHH" = ( +/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/storage/eva/expedition) +"oHJ" = ( +/obj/structure/disposalpipe/down, +/obj/structure/lattice/catwalk, +/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/zpipe/down/supply{ + dir = 8 + }, +/obj/structure/railing/mapped{ + dir = 8 }, /obj/structure/railing/mapped, -/turf/simulated/floor/tiled/full, -/area/bridge/upperdeck) -"oHR" = ( -/obj/structure/bed/stool/chair{ - dir = 1 +/obj/structure/cable{ + icon_state = "11-8" }, -/obj/effect/floor_decal/corner_wide/green{ - dir = 10 +/obj/structure/railing/mapped{ + dir = 4 }, -/turf/simulated/floor/tiled/white, -/area/hallway/medical) -"oIf" = ( -/obj/effect/floor_decal/corner/mauve{ - dir = 5 - }, -/obj/machinery/button/remote/blast_door{ - dir = 1; - id = "xenobio_e"; - name = "Cell Containment Blast Doors"; - pixel_x = -7; - req_access = list(47); - pixel_y = 29 - }, -/obj/machinery/button/remote/blast_door{ - dir = 1; - id = "xenobio_f"; - name = "Cell Containment Blast Doors"; - pixel_x = 7; - req_access = list(47); - pixel_y = 29 - }, -/obj/effect/floor_decal/corner/mauve{ - dir = 5 +/turf/simulated/open, +/area/horizon/maintenance/deck_3/aft/starboard) +"oHL" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 6 }, /obj/machinery/light/floor{ - dir = 1 + dir = 4 }, +/obj/structure/sign/science{ + pixel_x = 32; + pixel_y = -2 + }, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_2/central) +"oHO" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/fuel_port/phoron/scc{ + pixel_x = -5; + pixel_y = 23 + }, +/obj/structure/bed/handrail, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark, +/area/horizon/shuttle/mining) +"oHQ" = ( +/obj/machinery/door/window/southright{ + req_access = list(47); + name = "Secure Storage" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/carpet/rubber, +/area/horizon/rnd/lab) +"oIb" = ( +/obj/effect/floor_decal/corner_wide/lime/diagonal, +/obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/white, -/area/rnd/xenobiology) +/area/horizon/medical/reception) +"oIg" = ( +/obj/structure/window/shuttle/scc_space_ship, +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/horizon/engineering/reactor/supermatter/waste) "oIh" = ( /turf/simulated/wall/shuttle/dark/corner/underlay{ dir = 6 }, /area/centcom/legion) -"oIi" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/simulated/floor, -/area/maintenance/security_port) -"oIj" = ( -/obj/effect/floor_decal/industrial/hatch/red, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/machinery/button/remote/driver{ - dir = 8; - id = "enginecore"; - name = "Supermatter Reactor Emergency Crystal Ejection"; - pixel_x = 23; - req_access = list(10) - }, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/engine_room) -"oIk" = ( -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 4 - }, -/turf/simulated/wall/shuttle/scc_space_ship/cardinal, -/area/engineering/atmos/propulsion/starboard) "oIm" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 1 }, /turf/simulated/floor/holofloor/wood, /area/horizon/holodeck/source_sauna) -"oIv" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/r_n_d/protolathe, -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/structure/railing/mapped, -/turf/simulated/floor/carpet/rubber, -/area/operations/lower/machinist) "oIB" = ( /obj/machinery/recharge_station, /obj/effect/floor_decal/industrial/outline/yellow, /turf/unsimulated/floor/monotile, /area/antag/mercenary) -"oIG" = ( -/obj/structure/bed/stool/chair/office/light{ - dir = 4 +"oIF" = ( +/obj/item/material/shard{ + icon_state = "medium" }, /turf/simulated/floor/plating, -/area/engineering/rust_office) -"oII" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/turf/simulated/floor/tiled/dark, -/area/horizon/bar) +/area/horizon/maintenance/deck_1/wing/starboard/far) "oIL" = ( /obj/structure/table/fancy, /obj/item/flame/candle{ @@ -102687,16 +103005,19 @@ }, /turf/unsimulated/floor/wood, /area/antag/actor) -"oIO" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/structure/window/borosilicate/reinforced, -/obj/structure/window/borosilicate/reinforced{ +"oIM" = ( +/obj/machinery/computer/ship/targeting{ + dir = 8 + }, +/obj/structure/railing/mapped{ dir = 4 }, -/obj/item/clothing/glasses/safety/goggles, -/turf/simulated/floor/reinforced, -/area/rnd/test_range) +/obj/effect/floor_decal/corner/dark_blue/diagonal, +/obj/machinery/status_display{ + pixel_x = 32 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/command/bridge/aibunker) "oIP" = ( /obj/effect/decal/fake_object/light_source/invisible{ light_color = "#C46518"; @@ -102705,12 +103026,37 @@ }, /turf/simulated/floor/exoplanet/barren/raskara, /area/centcom/shared_dream) -"oIT" = ( -/obj/effect/landmark/entry_point/fore{ - name = "fore, civilian lounges, starboard" +"oIR" = ( +/obj/structure/table/reinforced/wood, +/obj/item/reagent_containers/food/drinks/drinkingglass/newglass/coffeecup{ + pixel_x = 11; + pixel_y = 4 }, -/turf/simulated/wall/shuttle/scc_space_ship/cardinal, -/area/crew_quarters/lounge) +/obj/machinery/chemical_dispenser/coffee/full{ + pixel_y = 8; + pixel_x = -3 + }, +/obj/item/reagent_containers/food/drinks/drinkingglass/newglass/coffeecup/one{ + pixel_y = -1; + pixel_x = 11 + }, +/turf/simulated/floor/carpet, +/area/horizon/command/heads/captain) +"oIV" = ( +/obj/item/modular_computer/console/preset/medical{ + dir = 8 + }, +/obj/effect/floor_decal/corner_wide/paleblue{ + dir = 5 + }, +/obj/structure/railing/mapped{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/hallway) +"oIY" = ( +/turf/simulated/wall/shuttle/scc, +/area/horizon/shuttle/escape_pod/pod4) "oIZ" = ( /obj/machinery/light{ dir = 8 @@ -102724,37 +103070,45 @@ }, /turf/simulated/floor/tiled, /area/horizon/security/investigations_hallway) -"oJc" = ( -/obj/effect/floor_decal/corner/brown{ - dir = 6 +"oJd" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 }, -/obj/structure/cable/green{ - icon_state = "1-2" +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 }, -/obj/structure/railing/mapped{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/operations/loading) +/turf/simulated/floor/tiled/dark, +/area/horizon/storage/eva) "oJe" = ( /turf/simulated/wall/r_wall, -/area/outpost/research/anomaly_storage) -"oJk" = ( -/turf/simulated/wall/r_wall, -/area/bridge/controlroom) -"oJq" = ( -/obj/effect/floor_decal/corner/red/diagonal, -/obj/structure/closet/walllocker/medical/firstaid{ - pixel_y = 32 +/area/horizon/rnd/xenoarch/anomaly_storage) +"oJg" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/gen_treatment) +"oJo" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner_wide/yellow{ + dir = 10 }, -/obj/effect/floor_decal/industrial/outline/medical, /turf/simulated/floor/tiled, -/area/storage/primary) -"oJu" = ( -/turf/simulated/wall/shuttle/unique/scc/mining{ - icon_state = "1,5" +/area/horizon/engineering/lobby) +"oJr" = ( +/obj/effect/floor_decal/industrial/outline/medical, +/obj/structure/table/standard, +/obj/structure/bedsheetbin{ + pixel_y = 5 }, -/area/shuttle/mining) +/obj/machinery/firealarm/east, +/turf/simulated/floor/tiled/full, +/area/horizon/medical/washroom) +"oJt" = ( +/turf/simulated/wall, +/area/horizon/rnd/chemistry) "oJx" = ( /obj/effect/decal/fake_object{ icon = 'icons/obj/doors/rapid_pdoor.dmi'; @@ -102770,32 +103124,87 @@ "oJA" = ( /turf/unsimulated/floor/stairs, /area/antag/ninja) -"oJJ" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 10 - }, -/obj/machinery/light, -/obj/structure/sign/emergency/evacuation{ - pixel_y = -32 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_two) -"oJL" = ( -/turf/simulated/wall/r_wall, -/area/crew_quarters/heads/chief) -"oJN" = ( -/obj/machinery/telecomms/processor/preset_four, -/turf/simulated/floor/bluegrid, -/area/tcommsat/chamber) -"oJS" = ( -/obj/effect/floor_decal/corner/dark_green{ +"oJB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/corner/yellow{ dir = 5 }, -/obj/structure/engineer_maintenance/electric{ +/turf/simulated/floor/tiled, +/area/horizon/engineering/storage_eva) +"oJC" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 8 }, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/central) +/obj/effect/decal/cleanable/dirt, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/engineering/storage/lower) +"oJI" = ( +/obj/machinery/door/firedoor/multi_tile, +/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/multi_tile/glass{ + name = "Deck 3 Port Stairwell" + }, +/turf/simulated/floor/tiled/full, +/area/horizon/stairwell/port/deck_3) +"oJM" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/port/near) +"oJQ" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/table/rack{ + dir = 8 + }, +/obj/item/stock_parts/matter_bin{ + pixel_y = 8 + }, +/obj/item/stock_parts/matter_bin{ + pixel_y = 8 + }, +/obj/item/stock_parts/manipulator, +/obj/item/stock_parts/manipulator, +/obj/item/stock_parts/capacitor{ + pixel_y = -4 + }, +/obj/item/stock_parts/capacitor{ + pixel_y = -4 + }, +/obj/item/stock_parts/scanning_module{ + pixel_y = -8 + }, +/obj/item/stock_parts/scanning_module{ + pixel_y = -8 + }, +/obj/effect/floor_decal/corner/yellow{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/storage/tech) +"oJR" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 5 + }, +/obj/structure/coatrack{ + pixel_x = 10; + pixel_y = 25 + }, +/turf/simulated/floor/wood, +/area/horizon/service/bar) "oJU" = ( /obj/structure/table/rack, /obj/item/clothing/under/color/red, @@ -102810,6 +103219,80 @@ }, /turf/unsimulated/floor, /area/centcom/distress_prep) +"oJX" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/filingcabinet/filingcabinet{ + pixel_x = 10; + pixel_y = 1 + }, +/obj/structure/filingcabinet/chestdrawer{ + pixel_x = -6; + pixel_y = 1 + }, +/obj/item/device/flashlight/lamp/lava/red{ + pixel_x = -7; + pixel_y = 14 + }, +/obj/effect/floor_decal/corner/beige/full{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/horizon/crew/vacantoffice) +"oJZ" = ( +/obj/effect/landmark/entry_point/starboard{ + name = "starboard, visiting docks" + }, +/obj/machinery/door/airlock/external{ + dir = 4 + }, +/obj/machinery/access_button{ + dir = 8; + pixel_x = -12; + pixel_y = 28 + }, +/obj/effect/map_effect/marker_helper/airlock/exterior, +/obj/effect/map_effect/marker/airlock/docking{ + landmark_tag = "nav_horizon_dock_deck_3_starboard_1"; + master_tag = "airlock_horizon_dock_deck_3_starboard_1"; + name = "airlock_horizon_dock_deck_3_starboard_1" + }, +/turf/simulated/floor/plating, +/area/horizon/hallway/primary/deck_3/port/docks) +"oKb" = ( +/obj/machinery/light/small/emergency{ + dir = 4 + }, +/obj/structure/platform, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/port/near) +"oKd" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/horizon/crew/chargebay) +"oKf" = ( +/obj/effect/floor_decal/corner_wide/purple{ + dir = 9 + }, +/obj/effect/floor_decal/corner_wide/purple{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible/yellow, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/platform{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/xenoarch/atrium) "oKh" = ( /obj/structure/railing/mapped, /obj/machinery/light{ @@ -102818,6 +103301,17 @@ /obj/structure/flora/ausbushes/lavendergrass, /turf/simulated/floor/grass/no_edge, /area/centcom/bar) +"oKj" = ( +/obj/effect/map_effect/window_spawner/full/reinforced/polarized/firedoor{ + id = "surgery1" + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/medical/surgery) +"oKl" = ( +/obj/structure/reagent_dispensers/lube, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/reinforced, +/area/horizon/maintenance/deck_1/wing/starboard/far) "oKn" = ( /turf/unsimulated/floor{ icon_state = "ramptop" @@ -102837,13 +103331,6 @@ /obj/structure/railing/mapped, /turf/simulated/floor/tiled/dark, /area/horizon/security/firing_range) -"oKp" = ( -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/structure/sign/nosmoking_1{ - pixel_y = 32 - }, -/turf/simulated/floor/plating, -/area/maintenance/research_port) "oKq" = ( /obj/structure/table/reinforced/steel, /obj/machinery/chemical_dispenser/bar_soft/full{ @@ -102857,6 +103344,11 @@ }, /turf/unsimulated/floor, /area/antag/mercenary) +"oKr" = ( +/obj/effect/floor_decal/industrial/outline/grey, +/obj/structure/survey_probe/magnet, +/turf/simulated/floor/plating, +/area/horizon/hangar/intrepid) "oKs" = ( /obj/effect/mist, /turf/simulated/floor/exoplanet/water/shallow{ @@ -102872,6 +103364,18 @@ /obj/effect/floor_decal/industrial/outline/emergency_closet, /turf/simulated/floor/tiled, /area/shuttle/merchant) +"oKy" = ( +/obj/item/material/stool/chair/folding{ + pixel_y = 4 + }, +/obj/item/material/stool/chair/folding{ + pixel_y = 10 + }, +/obj/item/material/stool/chair/folding{ + pixel_y = 16 + }, +/turf/simulated/floor/plating, +/area/horizon/engineering/reactor/indra/office) "oKD" = ( /turf/simulated/wall, /area/merchant_station) @@ -102881,45 +103385,15 @@ }, /turf/unsimulated/floor/plating, /area/shuttle/transport1) -"oKI" = ( -/obj/structure/bed/stool/chair/shuttle{ - dir = 4 - }, -/obj/machinery/light, -/turf/simulated/floor/shuttle/dark_blue, -/area/shuttle/escape_pod/pod1) -"oKJ" = ( -/obj/machinery/computer/ship/sensors/terminal{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/outline/security, -/obj/item/device/radio/intercom/expedition/west, -/turf/simulated/floor/tiled/dark/full, -/area/shuttle/intrepid/flight_deck) -"oKK" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/corner_wide/yellow{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/hallway/engineering/rust) "oKM" = ( /obj/effect/floor_decal/corner/dark_blue{ dir = 9 }, /turf/simulated/floor/tiled/dark, /area/shuttle/hapt) +"oKR" = ( +/turf/simulated/wall/r_wall, +/area/horizon/command/bridge/selfdestruct) "oKU" = ( /obj/structure/table/rack{ pixel_x = -3; @@ -102942,18 +103416,34 @@ }, /turf/unsimulated/floor/freezer, /area/centcom/distress_prep) +"oKV" = ( +/obj/machinery/door/airlock/external{ + dir = 4; + frequency = 1380; + icon_state = "door_locked"; + id_tag = "escape_pod_4_hatch"; + locked = 1; + name = "Escape Pod Hatch"; + req_access = list(13) + }, +/turf/simulated/floor/tiled, +/area/horizon/shuttle/escape_pod/pod3) "oKX" = ( /obj/structure/ship_weapon_dummy, /obj/effect/floor_decal/industrial/hatch/red, /obj/effect/floor_decal/industrial/warning, /turf/simulated/floor/reinforced/airless, /area/horizon/exterior) -"oLd" = ( -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 4 +"oLc" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 5 }, -/turf/simulated/floor/plating, -/area/rnd/xenoarch_atrium) +/obj/machinery/vending/tool{ + random_itemcount = 0 + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled, +/area/horizon/engineering/storage_eva) "oLe" = ( /obj/effect/floor_decal/corner/white/diagonal, /turf/unsimulated/floor, @@ -102975,194 +103465,145 @@ }, /turf/simulated/floor/shuttle/black, /area/shuttle/hapt) -"oLh" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +"oLg" = ( +/obj/structure/window/shuttle/scc_space_ship, +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/shutters/open{ + dir = 2; + id = "shutters_deck3_bridgesafety"; + name = "Safety Shutter" }, -/obj/structure/cable/green{ - icon_state = "4-8"; - d1 = 4; - d2 = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ +/obj/structure/grille/diagonal{ dir = 8 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/horizon/library) -"oLi" = ( -/obj/effect/landmark/entry_point/fore{ - name = "fore, cargo shuttle" - }, -/turf/unsimulated/wall/fakepdoor{ - dir = 4 - }, -/area/hangar/operations) +/turf/simulated/floor/plating, +/area/horizon/command/bridge/minibar) +"oLj" = ( +/obj/machinery/alarm/west, +/turf/simulated/floor/carpet/rubber, +/area/horizon/rnd/xenobiology/dissection) "oLk" = ( /turf/simulated/floor/holofloor/beach/sand{ icon_state = "beach" }, /area/horizon/holodeck/source_beach) -"oLx" = ( -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/structure/platform/ledge{ - dir = 1 - }, -/obj/structure/platform/ledge{ - dir = 8 - }, -/obj/structure/platform_deco/ledge{ - dir = 10 - }, -/obj/structure/platform_deco/ledge{ - dir = 6 - }, -/obj/structure/railing/mapped, -/obj/structure/platform/ledge{ - dir = 4 - }, -/turf/simulated/open, -/area/horizon/hallway/deck_three/primary/central) -"oLy" = ( -/obj/effect/floor_decal/corner_wide/green/full{ - dir = 1 - }, -/obj/effect/landmark/start{ - name = "Physician" - }, -/obj/structure/bed/stool/chair{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/hallway/medical/upper) -"oLz" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 9 - }, -/obj/machinery/power/apc/east, -/obj/structure/cable/green{ - icon_state = "0-8" - }, -/obj/structure/engineer_maintenance/electric{ - dir = 4 - }, -/obj/structure/engineer_maintenance/pipe{ - dir = 1 +"oLo" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled, -/area/medical/gen_treatment) -"oLD" = ( -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 4 +/area/horizon/engineering/storage_eva) +"oLv" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow, +/obj/structure/cable/yellow{ + icon_state = "4-8" }, /turf/simulated/floor/plating, -/area/maintenance/engineering) -"oLG" = ( -/obj/structure/cable/green, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 +/area/horizon/engineering/reactor/supermatter/mainchamber) +"oLw" = ( +/obj/structure/bed/stool/chair/office/bridge, +/obj/effect/floor_decal/corner/dark_blue{ + dir = 5 }, -/obj/effect/floor_decal/corner/lime{ - dir = 10 +/obj/effect/landmark/start{ + name = "Executive Officer" }, -/obj/machinery/power/apc/low/south, -/turf/simulated/floor/tiled, -/area/medical/emergency_storage) -"oLI" = ( -/obj/machinery/shower{ +/turf/simulated/floor/tiled/dark, +/area/horizon/command/bridge/meeting_room) +"oLC" = ( +/obj/structure/disposalpipe/junction{ dir = 4; - pixel_x = -1; - pixel_y = 1 - }, -/obj/machinery/light/floor{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/outline_corner/security{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology) -"oLJ" = ( -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 1 - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/structure/railing/mapped{ - dir = 1 + icon_state = "pipe-j2" }, /obj/structure/cable/green{ icon_state = "1-8" }, -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/turf/simulated/floor/tiled/dark/full/airless, -/area/bridge/controlroom) -"oLN" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/full, -/area/horizon/crew_quarters/lounge/bar) -"oLQ" = ( -/obj/effect/floor_decal/corner_wide/yellow{ - dir = 6 - }, -/obj/effect/floor_decal/spline/plain{ - dir = 8 - }, -/obj/machinery/status_display{ - pixel_x = 32 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/corner/dark_blue/full, /turf/simulated/floor/tiled, -/area/engineering/break_room) -"oLW" = ( -/obj/random/pottedplant, -/obj/structure/platform{ - dir = 4 +/area/horizon/command/bridge/upperdeck) +"oLX" = ( +/obj/structure/table/rack, +/obj/random/loot, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/starboard/nacelle) +"oMa" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 5 }, -/turf/simulated/floor/wood, -/area/horizon/crew_quarters/lounge/bar) -"oMc" = ( -/obj/machinery/camera/network/engineering{ - c_tag = "Engineering - Starboard Propulsion"; - dir = 1 - }, -/obj/effect/floor_decal/corner_wide/black{ +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_3/starboard) +"oMb" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 10 }, -/obj/effect/floor_decal/industrial/warning, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/wing/starboard) +"oMs" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/hallway/upper) +"oMt" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 + dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 + dir = 4 }, -/turf/simulated/floor/tiled/dark, -/area/engineering/atmos/propulsion/starboard) -"oMp" = ( -/obj/structure/foamedmetal, -/obj/structure/shuttle_part/scc_space_ship{ - icon_state = "d2-1" +/obj/structure/railing/mapped, +/obj/structure/cable{ + icon_state = "4-8" }, +/obj/structure/lattice/catwalk/indoor/grate/dark, /turf/simulated/floor/plating, -/area/maintenance/wing/starboard) +/area/horizon/maintenance/deck_2/wing/starboard/far) +"oMx" = ( +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 2; + icon_state = "shutter0"; + id = "LCKDshutters"; + name = "MedBay Lockdown Shutters"; + opacity = 0 + }, +/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, +/obj/structure/sign/greencross/small, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/medical/reception) +"oMy" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/corner/dark_green{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/horizon/engineering/hallway/fore) "oMK" = ( /obj/effect/decal/fake_object{ desc = "Ding."; @@ -103179,6 +103620,13 @@ /obj/machinery/light/small/floor, /turf/unsimulated/floor/wood, /area/antag/actor) +"oMV" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 9 + }, +/obj/machinery/light/small/floor, +/turf/simulated/floor/wood, +/area/horizon/service/cafeteria) "oMX" = ( /obj/machinery/door/airlock/highsecurity{ dir = 4; @@ -103187,24 +103635,13 @@ }, /turf/simulated/floor/tiled/dark/full, /area/shuttle/hapt) -"oMY" = ( -/obj/effect/floor_decal/industrial/outline/operations, -/obj/structure/table/rack, -/obj/item/device/price_scanner, -/obj/item/device/quikpay{ - destinationact = "Operations"; - pixel_y = 3 +"oNa" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 4 }, -/obj/machinery/alarm/east, -/obj/item/storage/box/plasticbag, -/obj/item/storage/toolbox/mechanical, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/commissary) -"oMZ" = ( -/obj/effect/floor_decal/industrial/outline/service, -/obj/structure/closet/crate/hydroponics/herbalism, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/hydroponics/lower) +/obj/machinery/meter, +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/atmos) "oNd" = ( /obj/effect/floor_decal/corner/dark_blue/full{ dir = 1 @@ -103237,51 +103674,32 @@ icon_state = "dark_preview" }, /area/centcom/spawning) -"oNv" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/reinforced, -/area/engineering/gravity_gen) -"oNw" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command{ - id_tag = "consular_office_b"; - name = "Consular Office B"; - req_access = list(72) - }, -/turf/simulated/floor/tiled, -/area/lawoffice/consular_two) -"oNB" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/cable/green{ - icon_state = "1-4" +"oNy" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 }, /obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" + dir = 4 }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology/foyer) -"oNG" = ( -/obj/machinery/light, -/obj/effect/floor_decal/corner/dark_green{ - dir = 10 +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 }, /turf/simulated/floor/tiled, -/area/engineering/lobby) +/area/horizon/command/bridge/controlroom) +"oNI" = ( +/obj/effect/floor_decal/corner_wide/paleblue/full, +/obj/structure/closet/secure_closet/CMO, +/obj/item/device/radio/intercom/west, +/obj/machinery/keycard_auth{ + dir = 4; + pixel_x = -27; + pixel_y = 7 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/command/heads/cmo) "oNK" = ( /obj/structure/coatrack{ pixel_x = 10; @@ -103299,18 +103717,23 @@ }, /turf/simulated/floor/tiled, /area/horizon/security/lobby) -"oNL" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard) "oNN" = ( /turf/simulated/floor/holofloor/wood, /area/horizon/holodeck/source_dininghall) +"oNT" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/full, +/area/horizon/hallway/primary/deck_3/central) "oNX" = ( /obj/machinery/door/blast/regular{ id = "thunderdome"; @@ -103318,6 +103741,18 @@ }, /turf/simulated/floor, /area/tdome/tdome2) +"oOg" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/horizon/crew/lounge) "oOj" = ( /obj/structure/bed/stool/chair{ dir = 1 @@ -103327,52 +103762,49 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/security/meeting_room) -"oOk" = ( -/turf/simulated/wall, -/area/outpost/mining_main/eva) -"oOv" = ( -/obj/structure/closet/crate, -/obj/random/loot, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard/far) -"oOB" = ( -/obj/structure/ladder{ - pixel_y = 8 - }, -/turf/simulated/open, -/area/maintenance/wing/port/far) -"oOC" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/effect/floor_decal/corner/yellow{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/tiled/dark, -/area/engineering/aft_airlock) -"oOI" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden{ +"oOn" = ( +/obj/machinery/firealarm/west, +/obj/effect/floor_decal/spline/fancy/wood{ dir = 8 }, -/obj/machinery/airlock_sensor{ - dir = 4; - pixel_x = -20 +/turf/simulated/floor/wood, +/area/horizon/crew/journalistoffice) +"oOp" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 }, -/obj/effect/map_effect/marker/airlock{ - frequency = 1004; - master_tag = "airlock_horizon_deck_1_fore_1"; - name = "airlock_horizon_deck_1_fore_1" +/obj/effect/floor_decal/corner/dark_green{ + dir = 6 }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/maintenance/hangar/starboard) +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/effect/floor_decal/spline/plain{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_2/fore) +"oOu" = ( +/obj/effect/floor_decal/corner_wide/green{ + dir = 5 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/hallway/upper) +"oOz" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/atmospherics/pipe/manifold4w/hidden, +/turf/simulated/floor, +/area/horizon/maintenance/deck_2/wing/starboard/far) +"oOF" = ( +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/structure/railing/mapped, +/turf/simulated/open, +/area/horizon/operations/office) "oOK" = ( /obj/effect/decal/cleanable/blood/oil, /obj/effect/decal/cleanable/dirt, @@ -103381,22 +103813,37 @@ }, /turf/unsimulated/floor, /area/centcom/legion/hangar5) -"oOP" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 +"oOR" = ( +/obj/structure/table/standard, +/obj/machinery/alarm/north, +/obj/item/device/destTagger{ + pixel_y = 7; + pixel_x = -3 }, -/obj/structure/sink{ - dir = 4; - pixel_x = 12 +/obj/item/stack/packageWrap, +/turf/simulated/floor/carpet/rubber, +/area/horizon/rnd/lab) +"oOT" = ( +/obj/effect/floor_decal/corner/red/diagonal, +/obj/effect/floor_decal/spline/plain{ + dir = 5 }, -/obj/machinery/shower{ - dir = 8; - pixel_y = 1 +/turf/simulated/floor/lino, +/area/horizon/service/cafeteria) +"oOU" = ( +/obj/structure/cable/green{ + icon_state = "1-2" }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/engine_monitoring/rust) +/obj/effect/floor_decal/corner/dark_blue/full, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/ai/upload) "oOW" = ( /obj/item/paper_bin{ pixel_x = -3; @@ -103419,6 +103866,21 @@ /obj/effect/decal/rolling_fog, /turf/simulated/floor/holofloor/reinforced, /area/horizon/holodeck/source_biesel) +"oPb" = ( +/obj/structure/railing/mapped, +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/effect/floor_decal/corner/dark_blue/full, +/obj/machinery/computer/ship/navigation, +/turf/simulated/floor/tiled/dark, +/area/horizon/command/bridge/controlroom) +"oPe" = ( +/obj/machinery/ammunition_loader/grauwolf{ + weapon_id = "Grauwolf Flak Battery" + }, +/turf/simulated/floor/reinforced, +/area/horizon/weapons/grauwolf) "oPh" = ( /obj/machinery/computer/security/telescreen{ name = "Observation Screen"; @@ -103441,14 +103903,11 @@ }, /area/centcom/legion) "oPk" = ( -/obj/effect/floor_decal/corner/dark_blue/full{ - dir = 4 +/obj/effect/map_effect/window_spawner/full/reinforced/polarized/firedoor{ + id = "library" }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/horizon/stairwell/bridge) +/turf/simulated/floor/tiled/dark/full, +/area/horizon/operations/commissary) "oPo" = ( /obj/effect/floor_decal/corner/teal{ dir = 1 @@ -103464,81 +103923,60 @@ }, /turf/unsimulated/floor/carpet, /area/antag/mercenary) -"oPw" = ( -/obj/structure/shuttle_part/scc/scout{ - icon_state = "6,8"; - opacity = 1; - outside_part = 0 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 9 - }, -/turf/simulated/floor/reinforced{ - blocks_air = 1; - density = 1; - name = "thruster mount"; - opacity = 1 - }, -/area/shuttle/canary) -"oPx" = ( -/obj/structure/closet/firecloset/full, -/obj/effect/floor_decal/industrial/outline/red, -/turf/simulated/floor/tiled/full, -/area/bridge/upperdeck) -"oPy" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/door/airlock/engineering{ - dir = 1; - name = "Deck 1, 2, and 3 Medical Substation"; - req_access = list(66) - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/maintenance/substation/medical) -"oPF" = ( -/obj/machinery/door/airlock/mining{ - dir = 1; - name = "Surgical Bay"; - req_access = list(29); - desc = "It opens and closes" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/door/firedoor, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled, -/area/operations/lower/machinist) -"oPG" = ( -/obj/machinery/atmospherics/portables_connector{ +"oPs" = ( +/turf/simulated/wall, +/area/horizon/maintenance/substation/operations) +"oPt" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 1 }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/dark, -/area/shuttle/mining) -"oPJ" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, /obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/effect/floor_decal/corner/brown{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/operations/office) -"oPL" = ( -/obj/structure/cable{ icon_state = "4-8" }, /turf/simulated/floor/tiled, -/area/hangar/intrepid) +/area/horizon/hallway/primary/deck_3/central) +"oPC" = ( +/obj/machinery/door/window/eastright{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor, +/area/horizon/hallway/primary/deck_3/starboard/docks) +"oPE" = ( +/obj/structure/table/standard{ + no_cargo = 1 + }, +/obj/random/loot{ + pixel_y = 14 + }, +/obj/random/loot{ + pixel_y = 8 + }, +/obj/random/loot{ + pixel_y = 2 + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/wing/starboard/far) +"oPK" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/random/junk, +/obj/machinery/light/small/emergency{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/cargo_compartment) +"oPO" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/starboard/nacelle) "oPX" = ( /obj/structure/cryofeed{ dir = 1 @@ -103548,62 +103986,69 @@ /obj/machinery/light, /turf/unsimulated/floor/plating, /area/centcom/holding) -"oPZ" = ( -/obj/machinery/atmospherics/pipe/simple/visible{ +"oPY" = ( +/obj/machinery/firealarm/west, +/obj/structure/bed/stool/chair/padded/brown{ dir = 4 }, -/obj/structure/table/standard, +/obj/effect/floor_decal/corner/dark_green{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/horizon/engineering/hallway/fore) +"oQq" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/random/loot, +/obj/structure/table/rack, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/research) +"oQr" = ( +/obj/random/loot, +/obj/structure/closet, /turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology/xenoflora) -"oQa" = ( -/obj/random/pottedplant, -/obj/effect/floor_decal/spline/fancy/wood/full, -/obj/machinery/alarm/east, -/turf/simulated/floor/grass/no_edge, -/area/hallway/primary/aft) -"oQh" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 10 +/area/horizon/maintenance/deck_2/wing/port/far) +"oQs" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 6 }, /obj/structure/cable/green{ - icon_state = "1-2" + icon_state = "4-8" }, -/obj/machinery/disposal/small/east, -/obj/structure/disposalpipe/trunk{ +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/turf/simulated/floor/wood, -/area/rnd/hallway) -"oQi" = ( -/obj/effect/floor_decal/corner/green/diagonal, -/obj/structure/cable/green{ - icon_state = "1-2" +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/item/device/radio/intercom/west{ - pixel_y = -2 +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/storage/tech) +"oQv" = ( +/obj/structure/grille, +/obj/machinery/door/firedoor, +/obj/structure/window/shuttle/scc_space_ship/cardinal, +/obj/effect/landmark/entry_point/aft{ + name = "aft, deck 3 port docks" }, -/turf/simulated/floor/tiled/white, -/area/medical/ward/isolation) +/turf/simulated/floor/plating, +/area/horizon/hallway/primary/deck_3/starboard/docks) +"oQz" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/structure/tank_wall/phoron{ + icon_state = "ph7" + }, +/turf/simulated/floor/airless, +/area/horizon/engineering/atmos) "oQD" = ( /turf/unsimulated/mineral/asteroid, /area/template_noop) -"oQL" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/floor_decal/corner_wide/green{ - dir = 6 - }, -/obj/effect/landmark/start{ - name = "Surgeon" - }, -/obj/structure/bed/stool/chair{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/hallway/medical/upper) +"oQF" = ( +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled/dark/airless, +/area/horizon/exterior) "oQO" = ( /obj/machinery/atmospherics/pipe/simple/heat_exchanging{ dir = 4 @@ -103611,37 +104056,18 @@ /obj/structure/lattice/catwalk/indoor, /turf/simulated/open/airless, /area/horizon/exterior) -"oQP" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 8 +"oQQ" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_mining{ + dir = 1; + name = "Operations Bay"; + req_one_access = list(26,29,31,48,67,70) }, -/obj/machinery/airlock_sensor{ - dir = 8; - pixel_x = 20 - }, -/obj/effect/map_effect/marker/airlock{ - frequency = 1002; - master_tag = "airlock_horizon_deck_3_fore_starboard_1"; - name = "airlock_horizon_deck_3_fore_starboard_1" - }, -/turf/simulated/floor, -/area/maintenance/bridge) -"oQT" = ( -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ +/obj/effect/map_effect/door_helper/unres{ dir = 1 }, -/turf/simulated/floor/tiled/full, -/area/hallway/engineering/rust) +/turf/simulated/floor/tiled, +/area/horizon/operations/office) "oQY" = ( /obj/structure/table/wood, /obj/effect/decal/fake_object{ @@ -103657,39 +104083,27 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/holodeck/source_biesel) -"oQZ" = ( -/obj/machinery/atmospherics/unary/vent_pump/siphon/on/atmos{ - dir = 8; - id_tag = "air_out" - }, -/turf/simulated/floor/reinforced/airmix, -/area/engineering/atmos/air) -"oRa" = ( -/obj/machinery/light/floor, -/turf/simulated/floor/carpet/rubber, -/area/rnd/telesci) -"oRb" = ( -/obj/machinery/door/firedoor{ - dir = 4 - }, -/obj/machinery/door/airlock/glass{ - dir = 4 - }, -/turf/simulated/floor/tiled/full, -/area/hallway/primary/central_two) "oRd" = ( /obj/effect/floor_decal/carpet{ dir = 1 }, /turf/simulated/floor/holofloor/carpet, /area/horizon/holodeck/source_dininghall) -"oRg" = ( -/obj/structure/bed/stool/chair/office/light{ - dir = 8 +"oRe" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance_hatch{ + dir = 1 }, -/obj/effect/floor_decal/corner_wide/purple/diagonal, -/turf/simulated/floor/tiled/white, -/area/rnd/test_range) +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/port) +"oRf" = ( +/obj/machinery/porta_turret, +/obj/effect/floor_decal/industrial/warning/full, +/turf/simulated/floor/bluegrid{ + name = "cooled mainframe floor"; + temperature = 278 + }, +/area/horizon/ai/chamber) "oRi" = ( /obj/effect/floor_decal/corner/red{ dir = 5 @@ -103699,40 +104113,6 @@ }, /turf/unsimulated/floor, /area/centcom/spawning) -"oRj" = ( -/obj/effect/floor_decal/corner/mauve/diagonal, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/light/floor{ - dir = 8 - }, -/obj/machinery/firealarm/west, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/white, -/area/rnd/lab) -"oRk" = ( -/obj/machinery/door/airlock/glass_research{ - dir = 4; - name = "Research Directors Lobby" - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/firedoor{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark/full, -/area/crew_quarters/heads/hor) "oRm" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 1 @@ -103745,36 +104125,28 @@ icon_state = "wood" }, /area/centcom/bar) -"oRs" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/aux, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/dark, -/area/bridge/aibunker) -"oRt" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/effect/floor_decal/spline/fancy/wood{ +"oRq" = ( +/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/structure/bed/stool/bar/padded/red{ +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ dir = 4 }, -/turf/simulated/floor/wood, -/area/horizon/bar) +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/atmos) "oRv" = ( /turf/simulated/wall, /area/horizon/security/investigators_office) -"oRA" = ( -/obj/machinery/firealarm/west, -/turf/simulated/floor/tiled, -/area/hangar/operations) +"oRz" = ( +/obj/machinery/atmospherics/pipe/manifold/visible{ + dir = 1 + }, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/atmos) "oRD" = ( /obj/effect/floor_decal/industrial/warning{ dir = 1 @@ -103787,12 +104159,19 @@ }, /turf/unsimulated/floor/wood, /area/antag/raider) -"oRF" = ( -/obj/effect/floor_decal/corner/mauve{ - dir = 9 +"oRG" = ( +/obj/effect/floor_decal/corner/grey{ + dir = 10 }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology/xenological) +/obj/machinery/camera/network/service{ + c_tag = "Service - Deck 2 - Bar Preparation Room"; + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/lino, +/area/horizon/service/bar) "oRH" = ( /obj/machinery/light/spot{ dir = 1; @@ -103800,6 +104179,41 @@ }, /turf/unsimulated/floor, /area/centcom/legion/hangar5) +"oRK" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/filingcabinet/chestdrawer, +/turf/simulated/floor/tiled/dark, +/area/horizon/rnd/xenoarch/atrium) +"oRL" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 5 + }, +/obj/effect/floor_decal/corner/black{ + dir = 5 + }, +/obj/machinery/ringer_button{ + id = "robo_ringer"; + pixel_x = -2; + pixel_y = 32 + }, +/obj/effect/floor_decal/corner/brown{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_2/central) +"oRO" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/obj/machinery/camera/network/third_deck{ + c_tag = "Third Deck - Crew Lounge Port"; + dir = 8 + }, +/turf/simulated/floor/wood, +/area/horizon/crew/lounge) "oRS" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 1 @@ -103809,50 +104223,6 @@ }, /turf/unsimulated/floor/wood, /area/centcom/bar) -"oRV" = ( -/obj/machinery/newscaster/east, -/obj/effect/floor_decal/corner/teal/diagonal, -/obj/machinery/smartfridge/drinks{ - opacity = 1 - }, -/obj/effect/floor_decal/spline/plain{ - dir = 5 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/lino, -/area/horizon/cafeteria) -"oRY" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/effect/floor_decal/spline/plain{ - dir = 1 - }, -/obj/effect/floor_decal/spline/plain, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/horizon/kitchen) -"oSa" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 10 - }, -/obj/machinery/door/firedoor{ - dir = 4 - }, -/obj/machinery/door/airlock/glass{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_two) -"oSe" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/effect/floor_decal/corner/dark_green{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_two) "oSf" = ( /turf/unsimulated/wall/fakeairlock{ icon = 'icons/obj/doors/Doorext.dmi'; @@ -103860,6 +104230,17 @@ name = "service airlock" }, /area/centcom/specops) +"oSi" = ( +/obj/machinery/light, +/obj/machinery/camera/network/command{ + c_tag = "Bridge - Atrium Aft"; + dir = 1 + }, +/obj/effect/floor_decal/corner/dark_blue/full{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/horizon/command/bridge/upperdeck) "oSk" = ( /obj/effect/decal/fake_object{ dir = 4; @@ -103884,6 +104265,26 @@ name = "shallow water" }, /area/horizon/holodeck/source_konyang) +"oSl" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/obj/structure/disposalpipe/junction{ + dir = 8 + }, +/turf/simulated/floor/tiled/full, +/area/horizon/hallway/primary/deck_2/central) +"oSn" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 5 + }, +/obj/structure/engineer_maintenance/pipe{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_3/central) "oSp" = ( /obj/machinery/acting/changer, /obj/effect/floor_decal/spline/fancy/wood{ @@ -103892,52 +104293,65 @@ /obj/effect/decal/cleanable/dirt, /turf/unsimulated/floor/wood, /area/antag/burglar) -"oSv" = ( -/obj/effect/floor_decal/industrial/warning{ +"oSt" = ( +/obj/effect/floor_decal/spline/plain/corner{ dir = 8 }, +/obj/effect/floor_decal/corner/brown/full{ + dir = 4 + }, /obj/effect/floor_decal/industrial/warning{ dir = 4 }, -/obj/structure/shuttle_part/scc/scout{ - icon_state = "6,3"; - outside_part = 0 +/turf/simulated/floor/tiled, +/area/horizon/operations/loading) +"oSw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 }, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel, -/obj/machinery/camera/network/canary{ - c_tag = "Canary - Fore External" - }, -/turf/simulated/floor/reinforced, -/area/shuttle/canary) +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/full, +/area/horizon/command/bridge/upperdeck) "oSx" = ( /obj/structure/shuttle_part/tcfl{ icon_state = "15,5" }, /turf/unsimulated/floor/plating, /area/shuttle/legion) -"oSy" = ( -/obj/effect/floor_decal/industrial/outline/operations, -/obj/machinery/pipedispenser, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/atmos/storage) "oSz" = ( /obj/machinery/light{ dir = 4 }, /turf/simulated/floor/shuttle/dark_blue, /area/shuttle/transport1) -"oSA" = ( -/obj/structure/shuttle_part/scc/mining{ - icon_state = "7,2" +"oSD" = ( +/obj/machinery/atmospherics/binary/pump, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark, +/area/horizon/maintenance/deck_2/wing/starboard/auxatmos) +"oSH" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/simulated/floor/plating, -/area/shuttle/mining) +/obj/machinery/door/airlock/maintenance{ + dir = 4; + name = "Security Maintenance"; + req_access = list(63) + }, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 2; + icon_state = "pdoor0"; + id = "Security Lockdown"; + name = "Security Blast Door"; + opacity = 0 + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/turf/simulated/floor/tiled/full, +/area/horizon/maintenance/deck_2/research) "oSI" = ( /obj/structure/table/standard, /obj/machinery/vending/wallmed1{ @@ -103968,6 +104382,20 @@ icon_state = "white" }, /area/centcom/holding) +"oSL" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/structure/tank_wall/nitrous_oxide{ + icon_state = "n2o15" + }, +/obj/machinery/atmospherics/pipe/simple/visible/red, +/turf/simulated/floor/plating, +/area/horizon/engineering/atmos/air) +"oSN" = ( +/obj/effect/floor_decal/industrial/loading/yellow{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/port/far) "oSR" = ( /obj/effect/floor_decal/spline/plain/cee{ dir = 1 @@ -103983,21 +104411,6 @@ }, /turf/unsimulated/floor, /area/centcom/bar) -"oSZ" = ( -/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/disposalpipe/junction{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/medical/gen_treatment) "oTa" = ( /obj/machinery/door/blast/regular{ density = 0; @@ -104015,34 +104428,43 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/security/office) -"oTd" = ( -/obj/machinery/atmospherics/portables_connector, -/obj/machinery/door/window/southright{ - name = "Canister Access" +"oTe" = ( +/obj/effect/floor_decal/corner/black{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/hangar/intrepid) +"oTf" = ( +/obj/effect/map_effect/window_spawner/full/shuttle/scc{ + spawn_firedoor = 1; + spawn_grille = 1 + }, +/obj/machinery/door/blast/shutters/open{ + dir = 8; + id = "intrepid_bay_windows"; + name = "Intrepid Shutter" }, -/obj/machinery/portable_atmospherics/canister/air/airlock, -/obj/effect/decal/cleanable/cobweb2, -/turf/simulated/floor, -/area/maintenance/bridge) -"oTl" = ( -/obj/structure/foamedmetal, /turf/simulated/floor/plating, -/area/maintenance/wing/starboard) +/area/horizon/shuttle/intrepid/buffet) +"oTk" = ( +/obj/structure/table/standard{ + no_cargo = 1 + }, +/obj/random/lavalamp, +/obj/machinery/light/small/emergency{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/wing/starboard/far) "oTp" = ( /turf/simulated/floor/wood, /area/merchant_station) -"oTz" = ( -/obj/effect/map_effect/window_spawner/full/reinforced/polarized/firedoor{ - id = "rep" +"oTq" = ( +/obj/effect/landmark/entry_point/starboard{ + name = "engineering, hard storage" }, -/turf/simulated/floor/tiled, -/area/lawoffice/representative_two) -"oTA" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/yellow{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/engineering/atmos) +/turf/simulated/wall/shuttle/scc_space_ship/cardinal, +/area/horizon/engineering/storage_hard) "oTC" = ( /obj/effect/floor_decal/industrial/outline/blue, /obj/structure/table/rack, @@ -104052,12 +104474,17 @@ /obj/item/clothing/head/cone, /turf/simulated/floor/tiled/dark, /area/horizon/holodeck/source_pool) -"oTK" = ( -/obj/effect/floor_decal/corner/white{ - dir = 5 +"oTJ" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 10 }, -/turf/simulated/floor/tiled, -/area/rnd/hallway) +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/machinery/r_n_d/destructive_analyzer, +/turf/simulated/floor/carpet/rubber, +/area/horizon/rnd/lab) "oTM" = ( /obj/effect/floor_decal/corner/white{ dir = 4 @@ -104072,41 +104499,16 @@ dir = 4 }, /area/horizon/holodeck/source_chapel) -"oTU" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/structure/disposalpipe/junction{ - dir = 8 +"oUb" = ( +/obj/structure/table/stone/marble, +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/shutters{ + dir = 8; + id = "shutters_deck2_kitchendesk"; + name = "Kitchen Desk Shutter" }, -/turf/simulated/floor/tiled/white, -/area/horizon/kitchen) -"oTW" = ( -/obj/structure/table/reinforced/wood, -/obj/item/reagent_containers/food/drinks/drinkingglass/newglass/coffeecup{ - pixel_x = 11; - pixel_y = 4 - }, -/obj/machinery/chemical_dispenser/coffee/full{ - pixel_y = 8; - pixel_x = -3 - }, -/obj/item/reagent_containers/food/drinks/drinkingglass/newglass/coffeecup/one{ - pixel_y = -1; - pixel_x = 11 - }, -/turf/simulated/floor/carpet, -/area/crew_quarters/captain) -"oTX" = ( -/obj/machinery/light/small/emergency{ - dir = 1 - }, -/obj/machinery/atmospherics/unary/vent_pump/high_volume, -/obj/effect/map_effect/marker/airlock{ - frequency = 1003; - master_tag = "airlock_horizon_deck_1_aft_port_1"; - name = "airlock_horizon_deck_1_aft_port_1" - }, -/turf/simulated/floor/plating, -/area/maintenance/research_port) +/turf/simulated/floor/tiled/dark, +/area/horizon/service/kitchen) "oUd" = ( /obj/machinery/porta_turret/crescent, /obj/effect/floor_decal/industrial/warning/full, @@ -104130,56 +104532,41 @@ }, /turf/unsimulated/floor/blue_circuit, /area/centcom/control) -"oUs" = ( -/obj/structure/railing/mapped{ +"oUp" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 8 }, -/turf/simulated/open, -/area/horizon/custodial/disposals) -"oUt" = ( -/obj/structure/cable/green{ - icon_state = "0-2" +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 }, -/obj/machinery/power/apc/north{ - is_critical = 1 +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/smes) +"oUq" = ( +/obj/structure/cable{ + icon_state = "4-8" }, -/obj/structure/coatrack{ - pixel_x = -10; - pixel_y = 24 - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 9 +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 + dir = 4 }, -/obj/structure/closet/secure_closet/xo, -/turf/simulated/floor/wood, -/area/crew_quarters/heads/hop/xo) -"oUw" = ( -/obj/structure/cable/green, -/obj/effect/map_effect/window_spawner/full/reinforced/polarized/grille/firedoor{ - id = "bridgeconf" - }, -/turf/simulated/floor, -/area/bridge/meeting_room) -"oUx" = ( -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/structure/cable{ - icon_state = "2-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/wing/port/far) -"oUA" = ( -/obj/effect/floor_decal/corner/green/diagonal{ - dir = 8 - }, -/obj/machinery/hologram/holopad, +/obj/effect/decal/cleanable/dirt, /obj/structure/disposalpipe/segment{ - icon_state = "pipe-c" + dir = 4 }, -/turf/simulated/floor/tiled/white, -/area/medical/ward) +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/wing/starboard) "oUB" = ( /obj/structure/disposalpipe/segment{ dir = 8; @@ -104225,34 +104612,48 @@ }, /turf/unsimulated/floor, /area/centcom/bar) -"oUU" = ( -/obj/effect/floor_decal/corner/dark_green/full{ +"oUR" = ( +/obj/machinery/alarm/east, +/turf/simulated/floor, +/area/horizon/maintenance/deck_3/aft/port/far) +"oUW" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/gravity_gen) +"oUX" = ( +/obj/effect/floor_decal/corner/brown{ dir = 1 }, -/turf/simulated/floor/tiled, -/area/horizon/stairwell/central) -"oUZ" = ( -/obj/effect/floor_decal/corner_wide/lime/diagonal, -/obj/structure/disposalpipe/junction{ - dir = 1 +/obj/structure/cable/green{ + icon_state = "1-2" }, -/turf/simulated/floor/tiled/white, -/area/medical/reception) -"oVe" = ( -/obj/structure/sign/fire{ - desc = "A caution sign which reads 'PORT PROPULSION'."; - name = "\improper PORT PROPULSION sign"; - pixel_y = 32 - }, -/obj/machinery/atmospherics/pipe/simple/visible/green{ +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 6 }, -/obj/machinery/alarm/west, -/obj/machinery/camera/network/engineering{ - c_tag = "Engineering - Atmospherics Tanks 3" +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/horizon/operations/lobby) +"oUY" = ( +/turf/simulated/floor/tiled/full, +/area/horizon/hallway/primary/deck_2/central) +"oVi" = ( +/turf/simulated/wall, +/area/horizon/storage/eva/expedition) +"oVj" = ( +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 2; + icon_state = "shutter0"; + id = "LCKDshutters"; + name = "MedBay Lockdown Shutters"; + opacity = 0 }, -/turf/simulated/floor/plating, -/area/engineering/atmos/air) +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/full, +/area/horizon/medical/reception) "oVk" = ( /obj/structure/bed/stool/chair/shuttle{ dir = 8 @@ -104276,9 +104677,51 @@ }, /turf/simulated/floor/shuttle/black, /area/shuttle/distress) -"oVl" = ( -/turf/simulated/wall/r_wall, -/area/rnd/test_range) +"oVn" = ( +/turf/simulated/wall, +/area/horizon/service/cafeteria) +"oVq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/hangar/intrepid) +"oVr" = ( +/turf/simulated/wall, +/area/horizon/engineering/locker_room) +"oVs" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/horizon/engineering/locker_room) +"oVv" = ( +/obj/machinery/disposal/small/west, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/horizon/crew/lounge) +"oVx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security{ + dir = 4; + name = "Security Checkpoint"; + req_access = list(63) + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/full, +/area/horizon/security/checkpoint) "oVy" = ( /obj/structure/closet/secure_closet/kitchen_cabinet/standard, /obj/structure/sign/poster{ @@ -104290,6 +104733,18 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/unsimulated/floor, /area/antag/mercenary) +"oVC" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/corner/dark_blue{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/horizon/command/bridge/controlroom) "oVE" = ( /obj/structure/sign/double/barsign{ pixel_y = 32 @@ -104311,6 +104766,15 @@ }, /turf/simulated/floor/tiled/white, /area/centcom/shared_dream) +"oVK" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/atmos) +"oVL" = ( +/turf/simulated/wall/r_wall, +/area/horizon/stairwell/bridge) "oVM" = ( /obj/machinery/atmospherics/pipe/simple/visible/red{ dir = 10 @@ -104324,6 +104788,15 @@ /obj/machinery/vending/generic_clothing, /turf/unsimulated/floor/linoleum, /area/antag/actor) +"oVP" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 6 + }, +/obj/effect/floor_decal/corner/yellow{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/reactor/supermatter/waste) "oVQ" = ( /obj/effect/floor_decal/spline/plain/corner{ dir = 1 @@ -104332,58 +104805,15 @@ density = 1 }, /area/centcom/shared_dream) -"oVR" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/aux{ - dir = 4 - }, -/obj/machinery/alarm/south, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 +"oVY" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 }, /turf/simulated/floor/tiled/dark/full, -/area/bridge/aibunker) -"oVW" = ( -/obj/structure/bed/stool/chair/sofa/corner/concave/orange, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/carpet/red, -/area/horizon/bar) -"oVX" = ( -/obj/effect/floor_decal/corner/green{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/medical/gen_treatment) +/area/horizon/rnd/xenoarch/atrium) "oVZ" = ( /turf/simulated/wall, /area/horizon/holodeck_control) -"oWe" = ( -/obj/machinery/firealarm/north, -/obj/machinery/atmospherics/pipe/simple/visible/purple{ - dir = 4 - }, -/obj/effect/floor_decal/corner_wide/black{ - dir = 5 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/engineering/atmos/propulsion) -"oWg" = ( -/obj/effect/floor_decal/industrial/hatch/red, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/custodial/disposals) "oWk" = ( /obj/item/storage/bag/money{ pixel_x = -11; @@ -104399,21 +104829,56 @@ }, /turf/unsimulated/floor/wood, /area/antag/burglar) -"oWu" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 +"oWt" = ( +/obj/effect/landmark/entry_point/starboard{ + name = "starboard, warehouse" }, -/turf/simulated/floor/plating, -/area/hangar/intrepid) -"oWG" = ( -/obj/structure/cable{ +/turf/simulated/wall/shuttle/scc_space_ship/cardinal, +/area/horizon/maintenance/deck_1/operations/starboard/far) +"oWx" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/glass_engineering{ + dir = 4; + name = "Engineering Locker Room"; + req_access = list(11) + }, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/obj/effect/map_effect/door_helper/unres{ + dir = 8 + }, +/turf/simulated/floor/tiled/full, +/area/horizon/engineering/storage_eva) +"oWz" = ( +/obj/effect/map_effect/window_spawner/full/reinforced/polarized/grille/firedoor{ + id = "cap" + }, +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id = "bridge blast"; + name = "Bridge Blast Doors"; + opacity = 0 + }, +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/turf/simulated/floor, +/area/horizon/command/heads/captain) +"oWH" = ( +/obj/structure/cable/green{ icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, /obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/atmospherics/pipe/simple/hidden/yellow, /turf/simulated/floor/plating, -/area/maintenance/wing/port/far) +/area/horizon/maintenance/deck_1/main/interstitial) "oWI" = ( /obj/structure/closet/walllocker/firecloset{ pixel_y = 30 @@ -104421,74 +104886,177 @@ /obj/structure/bed/stool/chair/shuttle, /turf/simulated/floor/shuttle/dark_blue, /area/shuttle/transport1) -"oWN" = ( -/obj/effect/floor_decal/corner/green/diagonal{ +"oWL" = ( +/obj/structure/cable/green{ + icon_state = "4-8"; + d1 = 4; + d2 = 8 + }, +/obj/machinery/door/firedoor{ + req_one_access = list(24,11,67,73); + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 8 }, -/obj/structure/bed/stool/chair/plastic{ - dir = 8 +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 }, -/turf/simulated/floor/tiled/white, -/area/medical/ward) -"oWT" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 8 +/obj/machinery/door/airlock/glass_service{ + dir = 8; + name = "Library" }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/camera/network/engineering{ - c_tag = "Engineering - Atmospherics Tanks 1"; - dir = 1 - }, -/obj/effect/floor_decal/industrial/outline/service, +/turf/simulated/floor/tiled/full, +/area/horizon/service/library) +"oWM" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, /turf/simulated/floor/plating, -/area/engineering/atmos/air) -"oWU" = ( -/obj/effect/floor_decal/corner/mauve/full{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/structure/disposalpipe/junction{ - icon_state = "pipe-j2" +/area/horizon/maintenance/deck_1/hangar/port) +"oWQ" = ( +/obj/structure/cable/green{ + icon_state = "4-8" }, /obj/structure/cable/green{ - icon_state = "1-2" + icon_state = "1-8" }, -/turf/simulated/floor/tiled, -/area/rnd/hallway/secondary) +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/hangar/port) +"oWS" = ( +/obj/structure/bed/stool/chair/padded/beige{ + dir = 4 + }, +/turf/simulated/floor/carpet, +/area/horizon/hallway/primary/deck_2/starboard) "oWV" = ( /obj/effect/floor_decal/corner/red{ dir = 9 }, /turf/unsimulated/floor, /area/antag/mercenary) +"oWW" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/hatch{ + dir = 4; + name = "Propulsion"; + req_one_access = list(11,24) + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/atmos/propulsion) "oWX" = ( /obj/effect/floor_decal/corner/red, /turf/unsimulated/floor, /area/centcom/control) -"oXh" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 10 +"oXc" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 9 }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 +/obj/random/dirt_75, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/port) +"oXd" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 + dir = 9 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor, +/area/horizon/maintenance/deck_3/aft/port) +"oXi" = ( +/obj/effect/floor_decal/industrial/hatch_door/red, +/obj/machinery/door/airlock/external{ + dir = 8 + }, +/obj/effect/map_effect/marker_helper/airlock/exterior, +/obj/machinery/access_button{ + pixel_y = -29; + pixel_x = -7; + dir = 8 + }, +/obj/machinery/door/blast/shutters/open{ + dir = 8; + id = "intrepid_bay_outer"; + name = "Intrepid Shutter" + }, +/obj/effect/map_effect/marker/airlock{ + master_tag = "sccv_intrepid_starboard"; + name = "sccv_intrepid_starboard"; + req_one_access = null + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/shuttle/intrepid/starboard_compartment) +"oXk" = ( +/obj/structure/weightlifter, +/obj/random/dirt_75, +/obj/machinery/alarm/north, +/turf/simulated/floor/carpet/rubber, +/area/horizon/crew/fitness/gym) +"oXr" = ( +/obj/machinery/telecomms/server/presets/service, +/turf/simulated/floor/bluegrid, +/area/horizon/tcommsat/chamber) +"oXs" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/cyan{ dir = 4 }, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/starboard/docks) -"oXj" = ( -/obj/structure/sign/flag/scc, -/turf/simulated/floor/tiled, -/area/bridge/controlroom) +/turf/simulated/floor/plating, +/area/horizon/engineering/reactor/supermatter/mainchamber) +"oXt" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/structure/tank_wall/oxygen{ + icon_state = "o2-10" + }, +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/horizon/engineering/atmos/air) +"oXx" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/corner_wide/green{ + dir = 6 + }, +/obj/structure/disposalpipe/sortjunction/flipped{ + dir = 1; + name = "CMO Office"; + sortType = "CMO Office" + }, +/obj/structure/railing/mapped{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/hallway/upper) "oXC" = ( /obj/effect/floor_decal/spline/plain/corner{ dir = 1 @@ -104498,75 +105066,82 @@ /obj/structure/flora/ausbushes/brflowers, /turf/simulated/floor/exoplanet/grass/grove, /area/centcom/shared_dream) -"oXD" = ( -/obj/effect/floor_decal/corner/brown{ - dir = 10 +"oXL" = ( +/obj/structure/railing/mapped{ + dir = 4 }, -/turf/simulated/floor/tiled, -/area/hangar/operations) -"oXH" = ( -/obj/structure/platform, -/obj/structure/platform{ +/obj/structure/platform/ledge{ dir = 8 }, -/obj/structure/platform_deco{ - dir = 9 +/turf/simulated/open, +/area/horizon/hallway/primary/deck_3/central) +"oXM" = ( +/obj/machinery/light/small/emergency{ + dir = 4 }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/carpet/rubber, +/area/horizon/maintenance/deck_1/workshop) +"oXX" = ( +/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/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/floor_decal/corner/brown{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/horizon/operations/loading) +"oYa" = ( +/obj/random/dirt_75, +/obj/random/dirt_75, /turf/simulated/floor/plating, -/area/maintenance/wing/starboard/far) -"oXQ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 6 +/area/horizon/maintenance/deck_2/wing/starboard/far) +"oYb" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 }, -/obj/effect/map_effect/marker/airlock{ - frequency = 1001; - master_tag = "airlock_horizon_deck_3_aft_1"; - name = "airlock_horizon_deck_3_aft_1" - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor, -/area/horizon/maintenance/deck_three/aft/starboard) -"oXV" = ( -/obj/machinery/r_n_d/server/advanced/core, -/turf/simulated/floor/bluegrid/server, -/area/server) -"oYd" = ( +/turf/simulated/floor/lino, +/area/horizon/service/chapel/main) +"oYg" = ( +/obj/structure/bed/roller, /obj/effect/floor_decal/industrial/warning{ dir = 1 }, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/engine_monitoring/rust) +/obj/effect/floor_decal/industrial/outline/medical, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/gen_treatment) "oYh" = ( /obj/structure/table/standard, /obj/item/trash/liquidfood, /turf/unsimulated/floor, /area/centcom/legion) -"oYl" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 4 +"oYj" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + icon_state = "1-2" }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 8 - }, -/obj/effect/floor_decal/corner/yellow{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/visible/purple{ - dir = 6 - }, -/obj/machinery/computer/general_air_control/large_tank_control/wall{ - input_tag = "turbine_fuel_in"; - name = "Combustion Fuel Control"; - output_tag = "turbine_fuel_out"; - sensors = list("turbine_sensor"="Turbine Combustion Sensor"); - pixel_y = 28; - frequency = 1443 - }, -/turf/simulated/floor/tiled/dark, -/area/engineering/engine_room/turbine) +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/corner/dark_green, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_3/port) "oYm" = ( /obj/machinery/light{ dir = 1 @@ -104585,125 +105160,82 @@ /obj/item/material/ashtray/bronze, /turf/simulated/floor/tiled/dark, /area/shuttle/merchant) -"oYp" = ( +"oYo" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 1 + }, /obj/structure/cable/green{ - icon_state = "1-2" + icon_state = "4-8" }, -/obj/effect/floor_decal/corner/purple{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 +/obj/structure/disposalpipe/segment{ + dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 + dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/green, -/turf/simulated/floor/tiled/dark, -/area/horizon/custodial/disposals) +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/horizon/command/bridge/controlroom) "oYq" = ( /obj/effect/map_effect/window_spawner/full/reinforced/polarized/indestructible{ id = "CCIABS" }, /turf/unsimulated/floor/plating, /area/centcom/control) -"oYs" = ( -/obj/machinery/power/apc/super/west, -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/machinery/power/sensor{ - name = "Powernet Sensor - Master Grid"; - name_tag = "Master Grid" - }, -/obj/effect/floor_decal/corner/yellow/full, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/dark, -/area/engineering/engine_waste) -"oYB" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 5 - }, +"oYt" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 + dir = 4 }, -/obj/machinery/power/apc/north, -/obj/structure/cable/green{ - icon_state = "0-4" +/obj/machinery/light{ + dir = 1 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 + dir = 4 }, -/turf/simulated/floor/wood, -/area/bridge/cciaroom/lounge) -"oYC" = ( -/obj/effect/floor_decal/corner/dark_blue{ +/obj/effect/floor_decal/corner/dark_green{ dir = 5 }, -/turf/simulated/floor/tiled/dark, -/area/storage/eva) -"oYG" = ( -/obj/effect/floor_decal/corner/purple, -/obj/machinery/atmospherics/pipe/simple/hidden/purple{ - dir = 6 +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_3/central) +"oYv" = ( +/obj/structure/table/wood, +/obj/machinery/photocopier/faxmachine{ + department = "Operations Manager's Office" }, -/turf/simulated/floor/tiled/dark, -/area/horizon/custodial/disposals) +/obj/machinery/firealarm/south, +/turf/simulated/floor/carpet, +/area/horizon/command/heads/om) +"oYw" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/wood, +/area/horizon/service/dining_hall) "oYJ" = ( /obj/structure/holostool, /turf/simulated/floor/tiled/dark, /area/horizon/holodeck/source_pool) -"oYL" = ( -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"oYP" = ( -/obj/effect/floor_decal/corner_wide/purple{ - dir = 8 +"oYK" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/structure/railing/mapped, +/obj/structure/sign/greencross/small{ + pixel_x = -32; + pixel_y = -32 }, -/obj/structure/cable/green{ - icon_state = "4-8" +/turf/simulated/floor/tiled/dark/full, +/area/horizon/hallway/primary/deck_2/central) +"oYM" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/corner/dark_green{ + dir = 5 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/corner_wide/purple, -/obj/effect/floor_decal/corner_wide/purple{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenoarch_atrium) -"oYQ" = ( -/turf/simulated/wall/shuttle/scc, -/area/shuttle/escape_pod/pod4) -"oYR" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "2-4" - }, -/turf/simulated/floor/tiled/full, -/area/bridge) -"oYV" = ( -/obj/structure/sink{ - pixel_y = 1; - dir = 8; - pixel_x = -15 - }, -/turf/simulated/floor/tiled/white, -/area/operations/lower/machinist/surgicalbay) +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_2/starboard) "oYW" = ( /obj/machinery/door/window/southleft{ name = "CCIAP Penny" @@ -104714,44 +105246,40 @@ /mob/living/simple_animal/cat/penny, /turf/unsimulated/floor/carpet, /area/centcom/control) -"oZd" = ( -/obj/machinery/alarm/west, -/turf/simulated/floor/carpet/rubber, -/area/rnd/xenobiology/dissection) -"oZi" = ( -/obj/structure/railing/mapped{ +"oYX" = ( +/obj/machinery/door/firedoor, +/obj/structure/grille/diagonal{ dir = 4 }, -/obj/structure/platform/ledge{ - dir = 8 +/obj/structure/window/shuttle/scc_space_ship, +/turf/simulated/floor/reinforced, +/area/horizon/service/dining_hall) +"oZc" = ( +/obj/structure/shuttle_part/scc/scout{ + icon_state = "1,5" }, -/obj/structure/platform/ledge{ - dir = 1 - }, -/obj/structure/platform_deco/ledge{ - dir = 6 - }, -/obj/machinery/light, -/turf/simulated/open, -/area/hallway/primary/central_one) -"oZj" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/simulated/floor/plating, +/area/horizon/shuttle/canary) +"oZe" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/airlock/glass_engineering{ + dir = 1; + name = "Engineering EVA Storage"; + req_one_access = list(11,24) }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/full, +/area/horizon/engineering/storage_eva) +"oZk" = ( /obj/effect/floor_decal/corner/dark_green{ - dir = 6 + dir = 10 }, -/obj/structure/cable{ - icon_state = "1-4" +/obj/effect/floor_decal/industrial/warning{ + dir = 4 }, -/turf/simulated/floor/tiled, -/area/hallway/primary/aft) +/turf/simulated/floor/tiled/dark, +/area/horizon/security/checkpoint) "oZl" = ( /obj/structure/lattice/catwalk/indoor, /obj/machinery/light/small/emergency{ @@ -104759,19 +105287,6 @@ }, /turf/unsimulated/floor/plating, /area/centcom/legion) -"oZo" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/machinery/alarm/west, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 4 - }, -/obj/machinery/light/small/emergency, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor, -/area/maintenance/engineering_ladder) "oZr" = ( /obj/item/rig_module/chem_dispenser/injector, /obj/item/rig_module/chem_dispenser/combat, @@ -104792,446 +105307,338 @@ }, /turf/unsimulated/floor/wood, /area/centcom/specops) +"oZx" = ( +/obj/machinery/atmospherics/binary/pump{ + dir = 4; + name = "Nitrogen to Connector" + }, +/turf/simulated/floor/plating, +/area/horizon/engineering/atmos/air) +"oZA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/railing/mapped, +/turf/simulated/floor/wood, +/area/horizon/crew/lounge) "oZF" = ( /obj/structure/sign/flag/nanotrasen/large/north, /obj/effect/floor_decal/industrial/warning/full, /obj/machinery/porta_turret/crescent, /turf/unsimulated/floor, /area/centcom/holding) -"oZG" = ( -/obj/structure/table/steel, -/obj/item/device/flashlight/lamp, -/turf/simulated/floor/reinforced, -/area/rnd/isolation_b) -"oZJ" = ( -/obj/effect/floor_decal/corner_wide/purple{ - dir = 9 - }, -/obj/effect/floor_decal/corner_wide/purple{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/visible/yellow{ +"oZK" = ( +/obj/effect/floor_decal/industrial/warning{ dir = 4 }, +/obj/effect/decal/cleanable/dirt, /obj/structure/cable/green{ - icon_state = "1-2" + icon_state = "0-4" }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenoarch_atrium) -"oZM" = ( -/obj/structure/table/wood/gamblingtable, -/obj/machinery/light/small/emergency, -/turf/simulated/floor/wood, -/area/maintenance/wing/starboard) -"oZP" = ( -/obj/machinery/door/blast/shutters/open{ +/obj/machinery/power/apc/west, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/main/interstitial) +"oZS" = ( +/obj/machinery/sparker{ + id = "starboard_prop_igni"; + pixel_x = 19 + }, +/obj/machinery/atmospherics/unary/outlet_injector{ dir = 4; - id = "seconddeckdocksaf"; - name = "Security Checkpoint Shutter" + frequency = 1442; + id = "starboard_prop_in"; + tag = "starboard_prop_in"; + name = "fuel injector" }, -/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, -/turf/simulated/floor/tiled/dark/full, -/area/security/checkpoint2) -"oZZ" = ( -/obj/structure/lattice, -/obj/structure/ladder{ - pixel_y = 10 - }, -/turf/simulated/open, -/area/engineering/atmos/storage) -"pad" = ( -/obj/machinery/door/airlock/glass_research{ - name = "Research and Development"; - req_access = list(7); - dir = 1 - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/effect/map_effect/door_helper/unres{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/blast/shutters/open{ - id = "RnDShutters" +/turf/simulated/floor/reinforced/airless, +/area/horizon/engineering/atmos/propulsion) +"oZU" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, /turf/simulated/floor/tiled, -/area/rnd/lab) -"pag" = ( -/turf/simulated/wall/r_wall, -/area/rnd/xenobiology/xenoflora) -"pah" = ( -/obj/structure/table/rack{ - dir = 8 +/area/horizon/command/bridge/upperdeck) +"oZW" = ( +/obj/structure/trash_pile, +/obj/machinery/light/small/emergency{ + dir = 4 }, -/obj/random/glowstick, -/obj/random/glowstick, -/obj/random/hardhat, -/obj/random/tool, -/obj/random/tool, -/obj/random/tech_supply, -/obj/random/tech_supply, -/turf/simulated/floor/plating, -/area/engineering/storage/lower) -"pal" = ( -/obj/structure/cable{ - icon_state = "11-2" - }, -/obj/machinery/atmospherics/pipe/zpipe/down/supply, -/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers, -/obj/structure/lattice/catwalk/indoor, -/turf/simulated/open, -/area/maintenance/wing/port/far) -"pau" = ( -/obj/effect/floor_decal/corner_wide/purple{ - dir = 8 - }, -/obj/effect/floor_decal/corner_wide/purple{ - dir = 6 - }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/platform_deco{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenoarch_atrium) -"pav" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/industrial/warning, +/obj/random/dirt_75, +/obj/effect/floor_decal/industrial/outline/grey, /turf/simulated/floor/tiled/dark, -/area/engineering/gravity_gen) -"pay" = ( -/obj/machinery/door/firedoor, +/area/horizon/maintenance/deck_2/wing/starboard/nacelle) +"pai" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /obj/structure/cable/green{ icon_state = "4-8" }, -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/obj/structure/grille, -/obj/structure/window/shuttle/scc_space_ship/cardinal, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "bridge blast"; - name = "Bridge Blast Doors"; - opacity = 0 - }, -/obj/machinery/door/blast/shutters{ - dir = 4; - id = "shutters_deck3_captain"; - name = "Safety Shutter" - }, -/turf/simulated/floor/plating, -/area/crew_quarters/captain) -"paB" = ( -/obj/effect/floor_decal/industrial/warning{ +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 1 }, -/turf/simulated/floor/plating, -/area/hangar/operations) -"paC" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 +/obj/structure/cable/green{ + icon_state = "1-4" }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 8 - }, -/obj/effect/floor_decal/corner/yellow, -/obj/machinery/camera/network/engineering{ - c_tag = "Engineering - Combustion Turbine Room"; - dir = 1; - pixel_x = -11 - }, -/turf/simulated/floor/tiled/dark, -/area/engineering/engine_room/turbine) -"paE" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 5 - }, -/obj/machinery/atmospherics/unary/vent_pump/on, /turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/port/docks) -"paF" = ( -/obj/structure/cable/green{ - icon_state = "1-2" +/area/horizon/crew/fitness/changing) +"pat" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/maintenance{ - dir = 1; - req_one_access = list(12,63) - }, -/turf/simulated/floor/tiled/full, -/area/maintenance/security_port) -"paL" = ( -/obj/structure/lattice/catwalk/indoor/grate/dark, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard/deck1) -"paT" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/corner_wide/green{ + dir = 5 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/junction{ + dir = 8; + icon_state = "pipe-j2" + }, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/hallway/upper) +"paw" = ( +/obj/machinery/computer/security/engineering/terminal, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/reactor/indra/monitoring) +"paI" = ( +/obj/structure/disposalpipe/junction{ + dir = 1 + }, /obj/structure/cable/green{ icon_state = "1-2" }, /obj/structure/cable/green{ icon_state = "1-4" }, -/turf/simulated/floor/tiled/full, -/area/horizon/hallway/deck_two/fore) +/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/horizon/hangar/intrepid/interstitial) +"paJ" = ( +/obj/effect/floor_decal/spline/fancy/wood, +/turf/simulated/floor/wood, +/area/horizon/service/cafeteria) +"paK" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/closet/crate, +/obj/random/loot, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/starboard/far) +"paN" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/wall, +/area/horizon/maintenance/deck_1/main/port) +"paR" = ( +/obj/effect/floor_decal/corner/dark_green/diagonal, +/obj/structure/table/standard, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_3/port) "paV" = ( /obj/effect/decal/rolling_fog, /turf/simulated/floor/holofloor/reinforced, /area/horizon/holodeck/source_jupiter) -"paY" = ( -/obj/machinery/atmospherics/valve{ - dir = 4; - name = "Propellant Line to Heat Exchangers" +"pbb" = ( +/obj/structure/railing/mapped, +/obj/structure/ladder{ + pixel_y = 16 }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/dark, -/area/engineering/atmos/propulsion/starboard) -"pbd" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 10 +/turf/simulated/open, +/area/horizon/maintenance/deck_2/research) +"pbc" = ( +/obj/structure/cable/green{ + icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/platform_stairs/full{ - dir = 8 - }, -/obj/structure/platform/cutout{ - dir = 8 + dir = 9 }, /obj/machinery/light{ + dir = 4 + }, +/obj/effect/floor_decal/spline/plain{ + dir = 4 + }, +/obj/structure/table/reinforced/steel, +/obj/item/storage/box/snack{ + desc = "A box full of snack foods. A label is attached that reads, 'Sorry about the microwaves.'"; + name = "corporate care package" + }, +/turf/simulated/floor/carpet/rubber, +/area/horizon/engineering/bluespace_drive/monitoring) +"pbk" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/engineer_maintenance/pipe{ + dir = 8 + }, +/obj/structure/engineer_maintenance/electric{ dir = 1 }, -/obj/machinery/ringer_button{ - pixel_y = 29; - id = "consular_b_ringer" - }, +/obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, -/area/bridge) +/area/horizon/service/hydroponics/lower) "pbn" = ( /obj/effect/floor_decal/corner/red{ dir = 5 }, /turf/simulated/floor/holofloor/tiled, /area/horizon/holodeck/source_emptycourt) -"pbr" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +"pbq" = ( +/obj/machinery/computer/fusion/core_control/terminal{ + initial_id_tag = "horizon_fusion" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/reactor/indra/monitoring) +"pbt" = ( +/obj/machinery/door/airlock/medical{ + dir = 1; + id_tag = "deck2_medicaltoilet"; + name = "Washroom Stall"; + req_access = list(5) }, /obj/machinery/door/firedoor, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/machinery/door/airlock/maintenance_hatch{ - dir = 4; - req_one_access = list(12,19) - }, -/turf/simulated/floor, -/area/maintenance/security_port) -"pbA" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor, -/area/horizon/maintenance/deck_three/aft/starboard) -"pbJ" = ( -/turf/simulated/floor/shuttle/dark_blue, -/area/shuttle/escape_pod/pod4) -"pbK" = ( -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/engineering/engine_room) +/turf/simulated/floor/tiled/full, +/area/horizon/medical/washroom) +"pbE" = ( +/obj/machinery/firealarm/south, +/obj/structure/table/standard, +/obj/item/device/hand_labeler, +/obj/item/stamp/denied, +/obj/effect/floor_decal/corner/beige/full, +/turf/simulated/floor/tiled, +/area/horizon/crew/vacantoffice) +"pbN" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/machinery/disposal/small/east, +/obj/structure/disposalpipe/trunk, +/turf/simulated/floor/wood, +/area/horizon/command/heads/chief) "pbO" = ( /obj/machinery/vending/security, /turf/simulated/floor/shuttle/black, /area/shuttle/hapt) -"pbQ" = ( -/obj/effect/floor_decal/corner/lime{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ +"pbP" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/suit_cycler/engineering/prepared, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/storage_eva) +"pcd" = ( +/obj/effect/floor_decal/industrial/warning{ dir = 8 }, +/turf/simulated/floor, +/area/horizon/maintenance/deck_3/security/port) +"pcf" = ( /obj/structure/disposalpipe/segment{ - dir = 8; + dir = 1; icon_state = "pipe-c" }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora) -"pbX" = ( -/obj/effect/landmark/entry_point/starboard{ - name = "starboard, atmospherics" +/turf/simulated/floor, +/area/horizon/maintenance/substation/command) +"pcg" = ( +/obj/structure/cable/green{ + icon_state = "1-8" }, -/turf/simulated/wall/shuttle/scc, -/area/shuttle/intrepid/engineering) -"pbY" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/machinery/atmospherics/pipe/simple/visible/universal{ +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/obj/machinery/meter, -/turf/simulated/floor/plating, -/area/rnd/xenoarch_atrium) -"pca" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/light{ - dir = 8 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 }, -/turf/simulated/floor/tiled, -/area/rnd/xenoarch_atrium) +/obj/effect/floor_decal/corner/dark_blue{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/storage/eva) "pcj" = ( /obj/effect/decal/cleanable/dirt, /mob/living/heavy_vehicle/premade/combatripley, /turf/unsimulated/floor/plating, /area/centcom/legion/hangar5) -"pcl" = ( -/obj/effect/floor_decal/industrial/warning{ +"pcn" = ( +/obj/structure/bed/stool/chair/office/dark{ dir = 4 }, -/obj/structure/table/rack, -/obj/random/loot, -/turf/simulated/floor, -/area/horizon/maintenance/deck_three/aft/starboard) -"pcw" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/portable_atmospherics/canister/oxygen, -/turf/simulated/floor/tiled/dark/full, -/area/storage/eva) -"pcy" = ( -/obj/structure/window/shuttle/scc_space_ship, -/obj/structure/grille, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "bridge blast"; - name = "Bridge Blast Doors"; - opacity = 0 - }, -/obj/machinery/door/firedoor, -/obj/structure/cable/green{ - icon_state = "0-8" - }, -/obj/machinery/door/blast/shutters/open{ - dir = 2; - id = "shutters_deck3_bridgesafety"; - name = "Safety Shutter" - }, -/obj/machinery/door/blast/shutters/open{ - dir = 2; - id = "conferencesafetyshutters"; - name = "Safety Shutter" - }, -/turf/simulated/floor/plating, -/area/bridge/meeting_room) -"pcB" = ( -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 9 - }, -/turf/simulated/floor/plating, -/area/engineering/atmos/air) -"pcF" = ( -/obj/structure/closet, -/obj/random/junk, -/turf/simulated/floor, -/area/maintenance/engineering_ladder) -"pcG" = ( -/obj/machinery/light{ - dir = 8 +/obj/effect/floor_decal/corner/purple/full{ + dir = 1 }, /turf/simulated/floor/tiled, -/area/medical/washroom) -"pcL" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - dir = 1; - frequency = 1379; - id_tag = "engine_airlock_interior"; - locked = 1; - name = "Supermatter Reactor Airlock Interior"; - req_one_access = list(11,24) - }, -/obj/machinery/access_button{ - command = "cycle_interior"; - frequency = 1379; - master_tag = "engine_airlock_control"; - name = "Supermatter Reactor Airlock Access"; - pixel_x = 23; - req_one_access = list(11,24) +/area/horizon/service/custodial) +"pct" = ( +/mob/living/simple_animal/chicken, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 }, +/turf/simulated/floor/grass/no_edge, +/area/horizon/service/hydroponics/lower) +"pcz" = ( /obj/machinery/door/firedoor, -/obj/machinery/embedded_controller/radio/airlock/access_controller{ - id_tag = "engine_airlock_control"; - name = "Supermatter Reactor Airlock Access Console"; - pixel_x = 38; - tag_exterior_door = "engine_airlock_exterior"; - tag_interior_door = "engine_airlock_interior" - }, -/turf/simulated/floor/tiled/full, -/area/engineering/engine_airlock) -"pcN" = ( /obj/effect/floor_decal/corner/dark_green{ - dir = 5 + dir = 10 + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/full, +/area/horizon/hallway/primary/deck_3/central) +"pcE" = ( +/obj/structure/railing/mapped{ + dir = 1 + }, +/turf/simulated/open, +/area/horizon/maintenance/deck_2/wing/port/near) +"pcK" = ( +/obj/structure/sign/securearea{ + name = "\improper WARNING: MUNITIONS BAY sign"; + pixel_x = -32 + }, +/obj/effect/floor_decal/corner/dark_green/full, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/machinery/light, +/obj/structure/flora/pottedplant{ + icon_state = "plant-33" }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/tiled, -/area/horizon/crew_quarters/fitness/changing) +/area/horizon/operations/lobby) "pcP" = ( /obj/machinery/light/small, /turf/unsimulated/floor, /area/centcom/legion/hangar5) -"pcQ" = ( -/obj/machinery/light/floor{ - dir = 4 +"pcS" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/plating, +/area/horizon/hangar/intrepid) +"pcT" = ( +/obj/structure/closet/crate, +/obj/effect/floor_decal/corner/brown{ + dir = 6 }, -/obj/structure/bed/handrail{ - dir = 8 +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled, +/area/horizon/operations/warehouse) +"pcW" = ( +/obj/machinery/atmospherics/omni/filter{ + name = "nitrogen filter"; + tag_east = 2; + tag_north = 4; + tag_west = 1 }, -/obj/structure/closet/walllocker/firecloset{ - pixel_x = 32 - }, -/obj/item/storage/bag/inflatable/emergency, -/turf/simulated/floor/tiled/dark/full, -/area/shuttle/intrepid/main_compartment) +/turf/simulated/floor/plating, +/area/horizon/engineering/atmos/air) "pcX" = ( /obj/structure/window/shuttle/unique/mercenary/small{ icon_state = "2,13"; @@ -105239,12 +105646,26 @@ }, /turf/unsimulated/floor/plating, /area/shuttle/syndicate_elite) -"pda" = ( -/obj/structure/cable/green{ - icon_state = "2-8" +"pcY" = ( +/obj/effect/floor_decal/industrial/warning/cee{ + dir = 4 }, -/turf/simulated/floor/carpet, -/area/lawoffice/consular_two) +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/service/port) +"pdb" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/horizon/operations/warehouse) +"pdc" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_3/central) "pdd" = ( /obj/effect/floor_decal/corner/beige{ dir = 5 @@ -105253,121 +105674,110 @@ /obj/machinery/microscope, /turf/simulated/floor/tiled/white, /area/horizon/security/forensic_laboratory) -"pdp" = ( -/obj/structure/sink/kitchen{ - dir = 4; - name = "sink"; - pixel_x = -20 +"pdj" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" }, -/obj/effect/floor_decal/corner/dark_green/diagonal, -/obj/effect/floor_decal/spline/plain, /obj/effect/floor_decal/spline/plain/purple{ - dir = 1 + dir = 8 }, -/obj/machinery/atmospherics/unary/vent_pump/on{ +/obj/effect/floor_decal/spline/plain{ dir = 4 }, +/obj/structure/engineer_maintenance/pipe{ + dir = 8 + }, +/obj/structure/engineer_maintenance/electric{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, -/area/horizon/hydroponics) -"pdt" = ( -/obj/structure/closet/wardrobe/mixed, -/obj/effect/floor_decal/corner/dark_green{ - dir = 10 +/area/horizon/service/hydroponics) +"pdq" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/shuttle/intrepid/port_compartment) +"pdr" = ( +/obj/structure/window/shuttle/scc_space_ship, +/obj/structure/grille, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/visible/black, +/turf/simulated/floor/plating, +/area/horizon/engineering/atmos) +"pdw" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/corner/purple{ + dir = 9 }, /turf/simulated/floor/tiled, -/area/horizon/crew_quarters/fitness/changing) -"pdA" = ( -/obj/structure/railing/mapped, -/obj/structure/filingcabinet/chestdrawer, -/turf/simulated/floor/tiled/dark, -/area/rnd/lab) +/area/horizon/hallway/primary/deck_1/central) "pdD" = ( /obj/structure/bed/stool/chair/office/dark, /turf/unsimulated/floor{ icon_state = "dark_preview" }, /area/centcom/control) -"pdF" = ( -/obj/effect/floor_decal/corner/mauve/diagonal, -/obj/structure/platform_stairs/full{ - dir = 1 +"pdE" = ( +/obj/effect/floor_decal/corner/dark_blue/diagonal, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/dark, +/area/horizon/security/checkpoint) +"pdJ" = ( +/obj/structure/bed/stool/chair/shuttle{ + dir = 4 }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora) -"pdH" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - icon_state = "1-2" +/obj/item/device/radio/intercom/south, +/turf/simulated/floor/shuttle/dark_blue, +/area/horizon/shuttle/escape_pod/pod2) +"pdN" = ( +/obj/structure/flora/ausbushes/sparsegrass, +/obj/item/bikehorn/rubberducky{ + pixel_x = -9; + pixel_y = -8 }, -/obj/machinery/light/small/emergency{ - dir = 8 +/obj/machinery/camera/network/service{ + c_tag = "Service - Hydroponics Lower 3"; + dir = 4 }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/maintenance/wing/port) -"pdM" = ( -/obj/effect/floor_decal/corner/mauve{ - dir = 10 +/turf/simulated/floor/grass/no_edge, +/area/horizon/service/hydroponics/lower) +"pdP" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 }, -/obj/structure/platform{ - dir = 1 +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 }, -/turf/simulated/floor/tiled, -/area/rnd/hallway) -"pdQ" = ( -/obj/machinery/disposal/small/south, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/effect/floor_decal/spline/fancy/wood{ +/obj/effect/floor_decal/corner/brown{ dir = 5 }, -/obj/machinery/alarm/east, -/turf/simulated/floor/wood, -/area/crew_quarters/lounge/secondary) -"pdW" = ( -/obj/structure/railing/mapped{ - dir = 4 +/turf/simulated/floor/tiled, +/area/horizon/operations/warehouse) +"pdR" = ( +/obj/machinery/door/airlock/multi_tile/glass{ + name = "Deck 2 Elevator" }, -/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 - }, -/obj/effect/floor_decal/corner_wide/purple{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/visible/yellow{ +/obj/machinery/door/firedoor/multi_tile, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/full, +/area/horizon/hallway/primary/deck_2/central) +"pea" = ( +/obj/effect/floor_decal/industrial/outline_straight/service{ dir = 8 }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/obj/structure/platform{ +/obj/effect/floor_decal/industrial/outline_straight/service{ dir = 4 }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenoarch_atrium) -"peb" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 8 - }, -/obj/effect/map_effect/marker/airlock{ - frequency = 1002; - master_tag = "airlock_horizon_deck_3_fore_starboard_1"; - name = "airlock_horizon_deck_3_fore_starboard_1" - }, -/turf/simulated/floor, -/area/maintenance/bridge) +/obj/machinery/atmospherics/pipe/manifold4w/hidden, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/service/hydroponics/lower) "ped" = ( /obj/structure/table/rack, /obj/machinery/light, @@ -105375,79 +105785,85 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/unsimulated/floor, /area/antag/mercenary) -"pej" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/cyan{ - dir = 1 - }, -/obj/structure/cable/yellow{ +"peg" = ( +/obj/structure/cable{ icon_state = "4-8" }, -/obj/machinery/meter, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"pem" = ( -/obj/structure/curtain/black{ - icon_state = "open"; - opacity = 0 - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 6 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/wood, -/area/horizon/crew_quarters/lounge/bar) -"peo" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/maintenance_hatch{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/wing/port/far) -"pep" = ( -/obj/effect/floor_decal/corner/purple/full, -/obj/structure/sign/emergency/exit{ - pixel_y = -32 - }, -/obj/machinery/firealarm/west, -/obj/machinery/atmospherics/unary/vent_pump/on{ +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/turf/simulated/floor/tiled/dark, -/area/horizon/custodial/disposals) -"per" = ( -/obj/structure/grille/diagonal{ - dir = 4 - }, -/obj/structure/window/shuttle/scc_space_ship, -/obj/machinery/door/blast/shutters/open{ - dir = 8; - id = "bar_viewing_shutters"; - name = "Bar Viewing Shutters" - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/reinforced, -/area/horizon/bar) -"pes" = ( -/obj/machinery/light/spot{ - dir = 1 - }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 + dir = 4 }, -/obj/effect/floor_decal/corner/brown{ - dir = 5 +/obj/machinery/door/firedoor, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/door/airlock/maintenance_hatch{ + dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/wing/starboard) +"pel" = ( +/obj/machinery/power/breakerbox/activated{ + RCon_tag = "Research Substation" }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/substation/research) +"pen" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/corner/dark_green{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/alarm/west, /turf/simulated/floor/tiled, -/area/hangar/operations) +/area/horizon/crew/chargebay) +"peq" = ( +/obj/machinery/light/small/emergency{ + dir = 1 + }, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/horizon/maintenance/substation/wing_port) "pet" = ( /obj/effect/floor_decal/corner/grey{ dir = 8 }, /turf/unsimulated/floor/dark, /area/antag/actor) +"pew" = ( +/obj/machinery/air_sensor{ + id_tag = "supermatter_sensor"; + output = 63 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/reinforced/reactor, +/area/horizon/engineering/reactor/supermatter/mainchamber) +"pex" = ( +/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/brown{ + dir = 5 + }, +/obj/machinery/camera/network/supply{ + c_tag = "Operations - Mining Entrance" + }, +/turf/simulated/floor/tiled, +/area/horizon/hangar/operations) "peB" = ( /obj/structure/bed/stool/padded/brown{ dir = 8 @@ -105462,6 +105878,14 @@ }, /turf/unsimulated/floor/rubber_carpet, /area/antag/jockey) +"peE" = ( +/obj/structure/closet/emcloset, +/obj/effect/floor_decal/corner/brown{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/outline/emergency_closet, +/turf/simulated/floor/tiled, +/area/horizon/operations/office) "peF" = ( /obj/item/hullbeacon/red, /obj/effect/floor_decal/industrial/warning, @@ -105470,6 +105894,28 @@ }, /turf/simulated/floor/reinforced/airless, /area/horizon/exterior) +"peH" = ( +/obj/structure/bed/stool/chair/sofa/right/red{ + dir = 4 + }, +/turf/simulated/floor/carpet/red, +/area/horizon/service/library) +"peI" = ( +/obj/effect/floor_decal/corner_wide/lime/diagonal, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/reception) +"peK" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'WARNING: EQUIPMENT RADIOACTIVE DURING OPERATION'."; + icon_state = "radiation"; + name = "WARNING: EQUIPMENT RADIOACTIVE DURING OPERATION sign" + }, +/turf/simulated/wall/r_wall, +/area/horizon/rnd/xenoarch/spectrometry) "peL" = ( /obj/effect/floor_decal/corner/dark_blue/full{ dir = 1 @@ -105495,6 +105941,57 @@ /obj/item/wrench, /turf/simulated/floor/tiled, /area/horizon/security/brig) +"peM" = ( +/obj/machinery/portable_atmospherics/canister/carbon_dioxide, +/obj/machinery/door/window/northleft{ + name = "Canister Storage Access"; + req_access = list(65) + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/reinforced, +/area/horizon/rnd/xenoarch/atrium) +"peO" = ( +/obj/machinery/camera/network/research{ + c_tag = "Research - EVA Preparation Entrance" + }, +/obj/effect/floor_decal/corner/dark_blue{ + dir = 5 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/horizon/rnd/eva) +"peQ" = ( +/obj/structure/shuttle_part/scc_space_ship{ + icon_state = "d2-2-f" + }, +/turf/simulated/wall, +/area/horizon/maintenance/deck_2/wing/starboard) +"peT" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/black{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/atmos/turbine) +"peU" = ( +/obj/machinery/firealarm/west, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/obj/machinery/door/window, +/turf/simulated/floor/tiled/freezer{ + name = "cooled tiles"; + temperature = 253.15 + }, +/area/horizon/service/kitchen/freezer) "peY" = ( /obj/structure/railing/mapped{ dir = 8 @@ -105515,14 +106012,25 @@ }, /turf/simulated/floor/tiled/dark, /area/shuttle/legion) -"pfb" = ( -/obj/vehicle/train/cargo/trolley, -/obj/effect/floor_decal/corner/brown{ - dir = 10 +"pfa" = ( +/obj/structure/table/rack/retail_shelf, +/turf/simulated/floor/tiled/full, +/area/horizon/operations/commissary) +"pfc" = ( +/obj/structure/grille, +/obj/machinery/door/firedoor, +/obj/structure/window/shuttle/scc_space_ship/cardinal, +/obj/effect/landmark/entry_point/fore{ + name = "fore, longbow compartment" }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled, -/area/operations/storage) +/obj/structure/cable/green, +/obj/machinery/door/blast/regular/open{ + dir = 8; + id = "shutters_deck3_longbow"; + name = "Safety Blast Door" + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/weapons/longbow) "pfh" = ( /obj/structure/window/reinforced/crescent{ dir = 8 @@ -105530,19 +106038,29 @@ /obj/structure/flora/ausbushes/lavendergrass, /turf/simulated/floor/grass/no_edge, /area/centcom/bar) -"pfk" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 6 +"pfi" = ( +/obj/structure/cable/yellow{ + icon_state = "0-4" }, -/obj/machinery/light/floor{ +/obj/machinery/power/terminal{ + dir = 1 + }, +/obj/machinery/light, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/effect/floor_decal/industrial/warning{ dir = 4 }, -/obj/structure/sign/science{ - pixel_x = 32; - pixel_y = -2 +/turf/simulated/floor/plating, +/area/horizon/engineering/smes) +"pfn" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/rnd/xenoarch/atrium) "pfp" = ( /obj/effect/floor_decal/corner/yellow{ dir = 1 @@ -105552,12 +106070,14 @@ }, /turf/simulated/floor/marble/dark, /area/horizon/holodeck/source_trinary) -"pfs" = ( -/obj/structure/shuttle_part/scc/mining{ - icon_state = "4,0" +"pfq" = ( +/obj/structure/railing/mapped{ + dir = 8 }, -/turf/simulated/floor/plating, -/area/shuttle/mining) +/obj/effect/floor_decal/corner/dark_blue/full, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/dark, +/area/horizon/weapons/longbow) "pfv" = ( /obj/effect/floor_decal/industrial/warning{ dir = 4 @@ -105584,36 +106104,6 @@ }, /turf/unsimulated/floor/plating, /area/centcom/specops) -"pfx" = ( -/obj/machinery/atmospherics/pipe/manifold/visible, -/obj/machinery/light, -/obj/effect/floor_decal/corner/yellow, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 8 - }, -/obj/structure/sign/nosmoking_1{ - pixel_y = -32 - }, -/turf/simulated/floor/tiled/dark, -/area/engineering/atmos) -"pfy" = ( -/obj/structure/table/wood, -/turf/simulated/floor/carpet, -/area/bridge/cciaroom) -"pfA" = ( -/obj/effect/floor_decal/corner/brown{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/operations/lobby) -"pfE" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/carpet/rubber, -/area/rnd/lab) "pfG" = ( /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled/dark/full, @@ -105629,21 +106119,20 @@ /obj/item/hullbeacon/red, /turf/simulated/open/airless, /area/horizon/exterior) -"pfM" = ( -/obj/effect/floor_decal/corner_wide/green{ - dir = 9 +"pfJ" = ( +/obj/structure/cable{ + icon_state = "1-2" }, -/obj/effect/floor_decal/corner_wide/green, -/obj/machinery/atmospherics/unary/vent_pump/on{ +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/corner/dark_green{ + dir = 6 + }, +/obj/machinery/light/floor{ dir = 4 }, -/obj/machinery/requests_console/west{ - department = "Medical Examination"; - departmentType = 2; - name = "Medical Examination Requests Console" - }, -/turf/simulated/floor/tiled/white, -/area/medical/exam) +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_3/central) "pfN" = ( /obj/machinery/door/window/northright{ name = "display case"; @@ -105652,15 +106141,21 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled/dark, /area/shuttle/merchant) -"pfQ" = ( -/obj/structure/cable/green{ - icon_state = "1-4" - }, +"pfO" = ( /obj/effect/floor_decal/industrial/warning{ - dir = 8 + dir = 1 }, /turf/simulated/floor/plating, -/area/engineering/storage/lower) +/area/horizon/maintenance/deck_2/wing/port/nacelle) +"pfP" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 10 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/hangar/intrepid) "pfT" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/floor_decal/corner_wide/dark_green{ @@ -105668,21 +106163,6 @@ }, /turf/simulated/floor/tiled/dark, /area/shuttle/skipjack) -"pfU" = ( -/obj/effect/floor_decal/corner/dark_green, -/obj/effect/floor_decal/spline/plain/corner, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_two/fore) -"pfV" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/decal/cleanable/dirt, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard/deck1) "pfX" = ( /obj/effect/floor_decal/corner/lime{ dir = 6 @@ -105691,160 +106171,113 @@ icon_state = "dark_preview" }, /area/centcom/holding) -"pfY" = ( -/obj/structure/platform, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/vending/zora, -/turf/simulated/floor/tiled/full, -/area/bridge) -"pgb" = ( -/obj/structure/table/standard{ - no_cargo = 1 +"pga" = ( +/obj/machinery/atmospherics/unary/vent_pump{ + external_pressure_bound = 0; + external_pressure_bound_default = 0; + icon_state = "map_vent_in"; + initialize_directions = 1; + internal_pressure_bound = 4000; + internal_pressure_bound_default = 4000; + pressure_checks = 2; + pressure_checks_default = 2; + pump_direction = 0; + use_power = 1 }, -/obj/random/loot{ - pixel_y = 14 - }, -/obj/random/loot{ - pixel_y = 8 - }, -/obj/random/loot{ - pixel_y = 2 - }, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard/deck1) -"pgf" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass{ +/turf/simulated/floor/bluegrid/server, +/area/horizon/rnd/server) +"pgc" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/turf/simulated/floor/tiled/full, -/area/horizon/hallway/deck_three/primary/starboard) -"pgp" = ( -/obj/structure/cable/green{ - icon_state = "1-2" +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/engineering/aft_airlock) -"pgx" = ( -/obj/machinery/alarm/south, -/obj/effect/floor_decal/corner/mauve{ +/turf/simulated/floor/tiled, +/area/horizon/hangar/auxiliary) +"pgi" = ( +/obj/effect/map_effect/window_spawner/full/borosilicate/reinforced/firedoor, +/turf/simulated/floor/reinforced, +/area/horizon/rnd/xenobiology/hazardous) +"pgj" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 10 }, -/obj/structure/table/standard, -/obj/machinery/reagentgrinder{ - pixel_x = -6; - pixel_y = 7 - }, -/obj/item/stack/material/phoron{ - pixel_y = 8 - }, -/obj/item/stack/material/phoron{ - pixel_y = 8 - }, -/obj/item/stack/material/phoron{ - pixel_y = 8 - }, -/obj/item/stack/material/phoron{ - pixel_y = 8 - }, -/obj/item/stack/material/phoron{ - pixel_y = 8 - }, -/obj/item/storage/box/fancy/vials{ - pixel_x = 10 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology) -"pgy" = ( -/obj/effect/floor_decal/corner/brown{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/rnd/hallway) -"pgz" = ( +/turf/simulated/floor/carpet/rubber, +/area/horizon/rnd/lab) +"pgn" = ( +/mob/living/carbon/slime, /obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/outlet_injector{ - dir = 1; - use_power = 1; - name = "emergency outlet injector"; - volume_rate = 700 - }, -/obj/structure/sign/securearea{ - name = "\improper DANGER: HOT GAS sign"; - pixel_y = 29; - desc = "A warning sign which reads \"DANGER: HOT GAS\"." - }, -/turf/simulated/floor/reinforced/airless, -/area/engineering/atmos/propulsion) -"pgA" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden{ - dir = 8 - }, -/obj/effect/map_effect/marker/airlock{ - frequency = 3002; - master_tag = "airlock_horizon_deck_2_port_1"; - name = "airlock_horizon_deck_2_port_1" - }, -/turf/simulated/floor, -/area/maintenance/wing/port/far) -"pgI" = ( -/obj/machinery/button/switch/crematorium{ - _wifi_id = "xenobio_crema"; - dir = 8; - pixel_x = -20; - pixel_y = 34; - req_access = null - }, -/obj/effect/floor_decal/corner/mauve{ - dir = 9 - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology) -"pgO" = ( -/obj/structure/bed/stool/chair/office/dark{ dir = 1 }, -/obj/machinery/button/remote/blast_door{ - dir = 10; - id = "vacant_office"; - name = "Public Office Shutter"; - pixel_x = -25; - pixel_y = 8 +/turf/simulated/floor/reinforced, +/area/horizon/rnd/xenobiology) +"pgr" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 }, -/obj/effect/floor_decal/corner/beige{ - dir = 5 +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/full, +/area/horizon/hallway/primary/deck_2/central) +"pgv" = ( +/obj/machinery/computer/fusion/gyrotron/terminal{ + initial_id_tag = "horizon_fusion" + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/reactor/indra/monitoring) +"pgw" = ( +/obj/random/pottedplant, +/obj/structure/railing/mapped, +/obj/effect/floor_decal/corner/dark_blue/full{ + dir = 4 + }, +/obj/machinery/light/floor{ + dir = 4 }, /turf/simulated/floor/tiled, -/area/security/vacantoffice) -"pgU" = ( -/obj/effect/landmark/entry_point/port{ - name = "port, ballast middle" +/area/horizon/command/bridge/upperdeck) +"pgD" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 }, -/turf/simulated/wall/shuttle/scc_space_ship/cardinal, -/area/maintenance/wing/port/far) +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor/plating, +/area/horizon/hangar/auxiliary) +"pgH" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 5 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/horizon/service/hydroponics/garden) +"pgQ" = ( +/obj/structure/closet/walllocker/firecloset{ + pixel_y = 32 + }, +/obj/effect/floor_decal/corner/red/diagonal, +/obj/effect/floor_decal/industrial/hatch/red, +/obj/machinery/alarm/west, +/turf/simulated/floor/tiled, +/area/horizon/maintenance/deck_3/aft/holodeck) "pgV" = ( /turf/simulated/wall/shuttle/unique/mercenary/small{ icon_state = "1,3" }, /area/shuttle/syndicate_elite) -"pgW" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/airless, -/area/hangar/operations) "pgY" = ( /obj/effect/floor_decal/corner/red{ dir = 9 @@ -105852,118 +106285,54 @@ /obj/effect/floor_decal/corner/red, /turf/simulated/floor/holofloor/tiled, /area/horizon/holodeck/source_lasertag) -"pgZ" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/structure/window/shuttle/scc_space_ship/cardinal, -/obj/effect/landmark/entry_point/fore{ - name = "fore, longbow compartment" - }, -/obj/structure/cable/green, -/obj/machinery/door/blast/regular/open{ - dir = 8; - id = "shutters_deck3_longbow"; - name = "Safety Blast Door" - }, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/longbow) "phb" = ( /turf/simulated/floor/holofloor/reinforced, /area/horizon/holodeck/alphadeck) -"phd" = ( -/obj/machinery/fusion_fuel_injector/mapped{ - dir = 4; - initial_id_tag = "horizon_fusion" +"phi" = ( +/obj/structure/platform/ledge, +/obj/structure/platform_deco/ledge{ + dir = 5 }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/carpet/rubber, -/area/engineering/engine_room/rust) -"phe" = ( -/obj/machinery/camera/network/third_deck{ - c_tag = "Third Deck - Vacant Office"; - dir = 8 - }, -/obj/machinery/photocopier, -/obj/effect/floor_decal/corner/beige{ - dir = 6 +/turf/simulated/open, +/area/horizon/operations/office) +"pho" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 5 }, /turf/simulated/floor/tiled, -/area/security/vacantoffice) -"phf" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, +/area/horizon/hallway/primary/deck_3/port) +"phr" = ( /obj/effect/floor_decal/spline/fancy/wood{ - dir = 1 + dir = 4 }, /turf/simulated/floor/wood, -/area/bridge/minibar) -"phj" = ( -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"phk" = ( -/obj/structure/closet/radiation, -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/floor_decal/corner_wide/yellow/full{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/sign/radiation{ - pixel_y = 32 +/area/horizon/rnd/hallway/secondary) +"phu" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 5 }, /turf/simulated/floor/tiled, -/area/hallway/engineering) -"phs" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ +/area/horizon/operations/commissary) +"phA" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/obj/item/reagent_containers/glass/bucket, +/obj/structure/railing/mapped{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/service/custodial) +"phH" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ icon_state = "2-4" }, -/turf/simulated/floor/tiled/full, -/area/hallway/primary/aft) -"phv" = ( -/obj/structure/table/reinforced/glass, /obj/structure/cable/green{ icon_state = "1-2" }, -/obj/item/clipboard, /turf/simulated/floor/wood, -/area/rnd/conference) -"phE" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/structure/window/shuttle/scc_space_ship/cardinal, -/obj/machinery/door/blast/shutters/open{ - dir = 2; - id = "kitchen_window_shutters"; - name = "Viewing Shutter" - }, -/turf/simulated/floor/plating, -/area/horizon/kitchen) -"phG" = ( -/obj/effect/floor_decal/industrial/outline_straight/yellow{ - dir = 8 - }, -/obj/effect/floor_decal/corner/yellow{ - dir = 6 - }, -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/manifold/hidden{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/horizon/hydroponics/lower) +/area/horizon/repoffice/consular_one) "phI" = ( /obj/effect/decal/fake_object{ color = "#545c68"; @@ -105985,115 +106354,47 @@ density = 1 }, /area/antag/ninja) -"phJ" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/junction{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, -/turf/simulated/floor/tiled/full, -/area/hallway/engineering) -"phO" = ( -/obj/structure/reagent_dispensers/lube, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/reinforced, -/area/maintenance/wing/starboard/deck1) -"phV" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 10 - }, -/obj/structure/cable{ +"phR" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/structure/cable/green{ icon_state = "1-2" }, -/obj/machinery/meter{ - name = "Air Reserve" - }, -/obj/machinery/vending/wallmed1{ - pixel_x = -42; - pixel_y = 27; - req_access = null - }, -/obj/structure/fuel_port/phoron/scc{ - pixel_x = -26; - pixel_y = 27 - }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 5 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark/full, -/area/shuttle/canary) +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/storage/tech) "phY" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 1 }, /turf/unsimulated/floor/carpet, /area/centcom/bar) -"pia" = ( -/obj/machinery/button/remote/blast_door{ - dir = 4; - id = "r-ust_north"; - name = "INDRA Reactor Storage Shutters"; - pixel_x = 24; - pixel_y = 7 +"pie" = ( +/obj/structure/grille, +/obj/structure/window/shuttle/scc_space_ship, +/obj/machinery/door/blast/shutters/open{ + dir = 8; + id = "bar_viewing_shutters"; + name = "Bar Viewing Shutters" }, -/obj/effect/floor_decal/corner_wide/yellow{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/engineering/engine_room/rust) -"pic" = ( +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/horizon/service/bar) +"pig" = ( /obj/structure/cable/green{ icon_state = "4-8" }, -/obj/structure/disposalpipe/junction/yjunction{ - dir = 1 +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 }, -/turf/simulated/floor/tiled, -/area/operations/lobby) -"pid" = ( -/turf/simulated/floor/reinforced, -/area/rnd/isolation_b) +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/full, +/area/horizon/hallway/primary/deck_2/starboard) "pij" = ( /obj/effect/spider/stickyweb, /obj/effect/spider/stickyweb, /turf/simulated/floor/exoplanet/barren/raskara, /area/centcom/shared_dream) -"pik" = ( -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/table/wood, -/obj/item/stamp{ - name = "consular stamp" - }, -/obj/item/stamp/denied{ - pixel_x = -9 - }, -/obj/machinery/recharger{ - pixel_y = 10 - }, -/turf/simulated/floor/carpet, -/area/lawoffice/consular_two) -"pim" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/airlock/glass_engineering{ - dir = 1; - name = "Engineering EVA Storage"; - req_one_access = list(11,24) - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/full, -/area/engineering/storage_eva) "pin" = ( /obj/item/banhammer, /obj/structure/table/rack, @@ -106114,93 +106415,117 @@ }, /turf/unsimulated/floor/wood, /area/centcom/evac) -"piy" = ( -/obj/machinery/atmospherics/pipe/manifold4w/hidden, -/obj/effect/map_effect/marker/airlock{ - frequency = 1001; - master_tag = "airlock_horizon_deck_3_aft_1"; - name = "airlock_horizon_deck_3_aft_1" +"pir" = ( +/obj/structure/cable/green{ + icon_state = "1-2" }, -/turf/simulated/floor, -/area/horizon/maintenance/deck_three/aft/starboard) -"piD" = ( -/obj/machinery/access_button{ - pixel_x = -7; - pixel_y = 22 +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 }, -/obj/machinery/airlock_sensor/airlock_interior{ - pixel_x = -8; - pixel_y = 28 +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 }, -/obj/machinery/button/remote/blast_door{ - dir = 1; - id = "intrepid_bay_outer"; - name = "Airlock Shutters"; - pixel_x = 6; - pixel_y = 25 +/obj/structure/cable/green{ + icon_state = "2-4" }, -/obj/structure/bed/stool/chair/shuttle/double{ - pixel_x = 8 +/turf/simulated/floor/tiled/full, +/area/horizon/command/bridge/upperdeck) +"pix" = ( +/obj/machinery/atmospherics/pipe/simple/visible/purple{ + dir = 4 }, -/obj/structure/bed/stool/chair/shuttle/double{ - pixel_x = -8 +/obj/effect/floor_decal/corner_wide/black{ + dir = 5 }, -/obj/effect/floor_decal/spline/plain/cee/black, -/obj/effect/map_effect/marker/airlock/shuttle{ - cycle_to_external_air = 1; - master_tag = "airlock_shuttle_intrepid"; - name = "airlock_shuttle_intrepid"; - req_one_access = null; - shuttle_tag = "Intrepid" - }, -/obj/effect/map_effect/marker_helper/airlock/interior, -/turf/simulated/floor/tiled/dark/full, -/area/shuttle/intrepid/main_compartment) -"piF" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" +/obj/effect/floor_decal/industrial/warning{ + dir = 1 }, +/obj/machinery/meter, +/obj/machinery/alarm/north, +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/atmos/propulsion/starboard) +"piz" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, +/obj/machinery/door/airlock{ + dir = 4; + name = "Showers" + }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, +/obj/machinery/door/firedoor, /obj/structure/cable/green{ icon_state = "4-8" }, -/obj/effect/floor_decal/corner/red/diagonal, -/obj/machinery/light/small/emergency, -/turf/simulated/floor/tiled, -/area/storage/primary) -"piR" = ( -/obj/effect/floor_decal/corner_wide/lime{ - dir = 10 +/turf/simulated/floor/tiled/full, +/area/horizon/crew/fitness/showers) +"piA" = ( +/obj/structure/shuttle_part/scc_space_ship{ + icon_state = "d2-2-f" }, -/obj/machinery/alarm/south, -/obj/machinery/camera/network/medbay{ - c_tag = "Medical - Lobby"; - dir = 1 +/turf/simulated/wall, +/area/horizon/maintenance/deck_2/wing/starboard/far) +"piE" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 9 }, -/obj/machinery/light/floor, -/turf/simulated/floor/tiled/white, -/area/medical/reception) -"piS" = ( -/obj/effect/floor_decal/corner_wide/purple{ - dir = 6 - }, -/obj/effect/floor_decal/corner_wide/purple{ +/obj/machinery/alarm/west, +/obj/structure/engineer_maintenance/electric, +/obj/structure/engineer_maintenance/pipe{ dir = 8 }, +/turf/simulated/floor/tiled/dark, +/area/horizon/storage/eva) +"piI" = ( +/obj/machinery/power/smes/buildable/horizon_shuttle{ + RCon_tag = "Canary" + }, /obj/structure/cable/green{ - icon_state = "1-8" + icon_state = "0-4" }, -/obj/structure/platform{ - dir = 8 +/obj/effect/floor_decal/corner/dark_blue{ + dir = 9 }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenoarch_atrium) +/obj/structure/closet/walllocker/emerglocker/west{ + pixel_x = -25 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/shuttle/canary) +"piU" = ( +/obj/effect/floor_decal/industrial/outline/engineering, +/obj/machinery/atmospherics/pipe/manifold/hidden/fuel{ + dir = 4 + }, +/obj/machinery/atmospherics/binary/pump{ + dir = 8; + name = "Emergency Airlock Air Feed" + }, +/obj/effect/floor_decal/industrial/outline/operations, +/turf/simulated/floor/plating, +/area/horizon/shuttle/mining) +"piX" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/service/bar) +"pjb" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/table/rack, +/obj/item/stack/material/deuterium/full, +/obj/item/stack/material/deuterium/full, +/turf/simulated/floor/carpet/rubber, +/area/horizon/engineering/reactor/indra/mainchamber) "pjd" = ( /obj/machinery/embedded_controller/radio/simple_docking_controller{ frequency = 1337; @@ -106221,84 +106546,78 @@ /obj/effect/floor_decal/corner/red/diagonal, /turf/simulated/floor/tiled/dark, /area/shuttle/syndicate_elite) -"pjh" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +"pjf" = ( +/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/horizon/maintenance/deck_1/wing/starboard) +"pjj" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 8 }, -/obj/effect/floor_decal/industrial/warning, -/obj/machinery/camera/network/research{ - dir = 1; - c_tag = "Xenobio - Cell D"; - network = list("Xeno_Bio") +/obj/machinery/light_switch{ + dir = 8; + pixel_x = -22; + pixel_y = 5 }, -/turf/simulated/floor/reinforced, -/area/rnd/xenobiology) +/turf/simulated/floor/carpet/rubber, +/area/horizon/engineering/bluespace_drive/monitoring) "pjn" = ( /obj/machinery/hologram/holopad, /turf/unsimulated/floor{ icon_state = "wood" }, /area/centcom/specops) -"pjq" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 6 +"pjo" = ( +/turf/simulated/open, +/area/horizon/service/custodial/disposals/deck_2) +"pjt" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/medical{ + dir = 4; + name = "Psychiatric Office"; + req_access = list(64) }, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/starboard) -"pjr" = ( -/obj/effect/decal/cleanable/cobweb2{ - icon_state = "cobweb1" - }, -/obj/structure/railing/mapped{ +/obj/effect/map_effect/door_helper/unres{ dir = 4 }, -/obj/structure/cable{ - icon_state = "0-4" +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 2; + icon_state = "shutter0"; + id = "LCKDshutters"; + name = "Medical Lockdown Shutters"; + opacity = 0 }, -/obj/structure/cable{ - icon_state = "12-0" - }, -/obj/machinery/atmospherics/pipe/zpipe/up/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard/deck1) +/turf/simulated/floor/tiled/full, +/area/horizon/medical/psych) "pjw" = ( /obj/structure/holostool, /turf/simulated/floor/holofloor/beach/sand, /area/horizon/holodeck/source_picnicarea) -"pjy" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 8 +"pjx" = ( +/obj/effect/floor_decal/industrial/outline/grey, +/obj/structure/closet/crate/plastic{ + name = "camping crate" }, -/turf/simulated/floor/tiled/dark, -/area/hangar/intrepid) -"pjF" = ( -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/corner/mauve{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/chemistry) -"pjG" = ( -/obj/effect/floor_decal/corner_wide/yellow, -/turf/simulated/floor/tiled, -/area/hallway/engineering/rust) +/obj/item/sleeping_bag, +/obj/item/sleeping_bag, +/obj/item/sleeping_bag, +/obj/item/sleeping_bag, +/obj/item/sleeping_bag, +/obj/item/sleeping_bag, +/obj/item/tent, +/obj/item/tent, +/turf/simulated/floor/plating, +/area/horizon/hangar/intrepid) +"pjB" = ( +/turf/simulated/wall/shuttle/scc_space_ship/cardinal, +/area/horizon/service/kitchen) +"pjD" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/reinforced, +/area/horizon/rnd/xenoarch/isolation_b) "pjI" = ( /obj/machinery/door/airlock/highsecurity{ dir = 4; @@ -106311,43 +106630,53 @@ }, /turf/simulated/floor/tiled/dark/full, /area/shuttle/mercenary) -"pjM" = ( -/obj/item/device/radio/intercom/expedition/north, -/obj/machinery/computer/ship/engines/terminal{ - dir = 4 +"pjR" = ( +/obj/structure/cable/green{ + icon_state = "1-2" }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/quark/cockpit) -"pjP" = ( -/obj/machinery/atmospherics/pipe/manifold/visible, -/obj/effect/floor_decal/corner/lime{ - dir = 5 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/sign/emergency/evacuation{ + pixel_x = -32 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora) -"pjQ" = ( -/obj/effect/floor_decal/corner_wide/paleblue/full{ - dir = 8 - }, -/obj/structure/table/glass{ - table_reinf = "glass" - }, -/obj/machinery/photocopier/faxmachine{ - department = "Chief Medical Officer's Office" - }, -/obj/machinery/newscaster/north, +/obj/effect/floor_decal/corner/dark_green/full, /obj/machinery/light{ dir = 8 }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/heads/cmo) +/turf/simulated/floor/tiled, +/area/horizon/hangar/intrepid) +"pjV" = ( +/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, +/obj/machinery/door/blast/shutters{ + dir = 4; + id = "shutters_deck2_auxcustwindow"; + name = "Window Shutter" + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/service/custodial/auxiliary) +"pjY" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/floor_decal/corner/dark_green{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/horizon/engineering/hallway/fore) +"pka" = ( +/obj/machinery/hologram/holopad, +/obj/effect/floor_decal/corner/dark_blue/diagonal, +/turf/simulated/floor/tiled/dark, +/area/horizon/security/checkpoint2) "pkc" = ( /obj/structure/bed/stool/chair/shuttle, /turf/simulated/floor/tiled/dark, /area/shuttle/syndicate_elite) +"pke" = ( +/obj/machinery/door/firedoor, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/full, +/area/horizon/maintenance/deck_2/security_port) "pkh" = ( /obj/item/aiModule/conglomerate, /obj/item/aiModule/reset, @@ -106362,19 +106691,38 @@ icon_state = "dark_preview" }, /area/centcom/control) -"pkm" = ( -/obj/effect/floor_decal/corner/brown{ - dir = 5 +"pkj" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/red{ + dir = 10 }, -/turf/simulated/floor/tiled, -/area/operations/break_room) +/turf/simulated/wall/shuttle/unique/scc/mining{ + icon_state = "7,7" + }, +/area/horizon/shuttle/mining) "pkn" = ( /obj/structure/computerframe, /turf/simulated/floor/tiled/dark, /area/centcom/bar) +"pkr" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 5 + }, +/obj/machinery/computer/ship/navigation, +/obj/machinery/alarm/north, +/turf/simulated/floor/tiled/dark, +/area/horizon/hangar/control) "pkt" = ( /turf/simulated/floor/holofloor/grass, /area/horizon/holodeck/source_wildlife) +"pkD" = ( +/obj/machinery/door/airlock/freezer{ + dir = 1; + id_tag = "main_unit_1"; + name = "Unit 1" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/white, +/area/horizon/crew/fitness/changing) "pkF" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 10 @@ -106382,76 +106730,49 @@ /obj/structure/railing/mapped, /turf/simulated/floor/holofloor/wood, /area/horizon/holodeck/source_chapel) -"pkG" = ( -/obj/machinery/power/smes/buildable/substation{ - RCon_tag = "Substation - Security" - }, -/obj/structure/cable, -/obj/structure/cable/green{ - icon_state = "0-2" +"pkJ" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 6 }, /turf/simulated/floor/plating, -/area/maintenance/substation/security) -"pkK" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/machinery/atmospherics/pipe/simple/hidden/yellow, -/turf/simulated/floor/plating, -/area/engineering/storage/lower) -"pkP" = ( -/obj/effect/floor_decal/spline/fancy/wood{ +/area/horizon/maintenance/deck_1/main/starboard) +"pkN" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden{ dir = 4 }, -/obj/effect/floor_decal/spline/fancy/wood/corner{ - dir = 8 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/simulated/floor/wood, -/area/chapel/office) +/turf/simulated/floor/bluegrid/server, +/area/horizon/rnd/server) "pkT" = ( /obj/effect/floor_decal/industrial/warning{ dir = 4 }, /turf/simulated/floor/reinforced, /area/shuttle/mercenary) -"pkU" = ( -/obj/effect/floor_decal/corner_wide/yellow{ - dir = 10 - }, +"pla" = ( /obj/structure/cable/green{ - icon_state = "4-8" + icon_state = "2-8" }, -/turf/simulated/floor/tiled, -/area/hallway/engineering/rust) +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/main_storage) "plc" = ( /obj/machinery/light{ dir = 1 }, /obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/tiled, -/area/outpost/research/anomaly_harvest) +/area/horizon/rnd/xenoarch/anomaly_harvest) +"plg" = ( +/obj/machinery/door/firedoor, +/obj/structure/grille, +/obj/structure/window/shuttle/scc_space_ship, +/turf/simulated/floor/plating, +/area/horizon/crew/lounge) "plh" = ( /obj/machinery/door/airlock/centcom{ name = "Red Backstage"; @@ -106459,16 +106780,6 @@ }, /turf/unsimulated/floor, /area/tdome/tdomeadmin) -"pll" = ( -/obj/structure/coatrack{ - pixel_x = 14 - }, -/obj/machinery/photocopier, -/obj/machinery/camera/network/research{ - c_tag = "Research - Research Director's Office" - }, -/turf/simulated/floor/carpet/purple, -/area/crew_quarters/heads/hor) "plo" = ( /obj/machinery/light{ dir = 4 @@ -106481,106 +106792,67 @@ }, /turf/unsimulated/floor/plating, /area/antag/mercenary) -"plp" = ( -/obj/machinery/embedded_controller/radio/simple_docking_controller/escape_pod{ - frequency = 1380; - id_tag = "escape_pod_1"; - pixel_x = -9; - pixel_y = 25; - tag_door = "escape_pod_1_hatch" - }, -/obj/item/modular_computer/console/preset/civilian{ - dir = 8; - pixel_x = 5 - }, -/turf/simulated/floor/shuttle/dark_blue, -/area/shuttle/escape_pod/pod1) -"plu" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 1 - }, -/obj/machinery/portable_atmospherics/canister/air/airlock, -/turf/simulated/floor, -/area/turret_protected/ai_upload_foyer) "plv" = ( /obj/effect/floor_decal/industrial/warning{ dir = 10 }, /turf/simulated/floor/tiled/dark/full, /area/turbolift/scc_ship/morgue_lift) -"plw" = ( -/turf/simulated/wall/r_wall, -/area/maintenance/substation/engineering) "plx" = ( /turf/simulated/wall, /area/horizon/holodeck_control/beta) -"ply" = ( -/obj/machinery/camera/network/service{ - c_tag = "Service - Chapel Port"; - dir = 1 +"plz" = ( +/obj/machinery/computer/message_monitor, +/obj/machinery/light{ + dir = 8 }, -/obj/structure/engineer_maintenance/electric, -/turf/simulated/floor/lino, -/area/chapel/main) -"plD" = ( -/obj/machinery/camera/network/reactor{ - c_tag = "Engineering - INDRA Room 4"; - dir = 1 - }, -/obj/structure/cable/yellow{ +/turf/simulated/floor/tiled/dark/full, +/area/horizon/tcommsat/entrance) +"plB" = ( +/obj/structure/cable{ icon_state = "4-8" }, -/obj/effect/floor_decal/corner_wide/yellow{ - dir = 10 +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 }, -/turf/simulated/floor/tiled, -/area/engineering/engine_room/rust) -"plI" = ( -/obj/effect/floor_decal/corner_wide/green/full{ - dir = 8 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 }, -/obj/structure/filingcabinet/medical{ - pixel_x = -8 +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/structure/filingcabinet/chestdrawer{ - pixel_x = 7 - }, -/obj/machinery/light{ +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/alarm/north, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/wing/starboard) +"plE" = ( +/obj/effect/floor_decal/industrial/warning{ dir = 1 }, -/turf/simulated/floor/tiled/white, -/area/medical/exam) -"plO" = ( -/obj/structure/railing/mapped{ +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/structure/engineer_maintenance/electric/wall, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/reactor/supermatter/mainchamber) +"plL" = ( +/obj/machinery/disposal/small/north, +/obj/structure/disposalpipe/trunk{ dir = 8 }, -/obj/structure/table/reinforced/steel, -/obj/machinery/atmospherics/unary/vent_pump/aux, -/obj/random/pottedplant_small{ - pixel_x = 6; - pixel_y = 1 +/obj/effect/floor_decal/corner/brown{ + dir = 10 }, -/obj/machinery/recharger{ - pixel_y = 8; - pixel_x = -5 +/obj/structure/closet/walllocker/medical/firstaid{ + pixel_y = -32 }, -/turf/simulated/floor/tiled/dark/full, -/area/bridge/aibunker) -"plR" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard) -"pmb" = ( -/obj/machinery/ammunition_loader/longbow{ - weapon_id = "Longbow Cannon" +/turf/simulated/floor/tiled, +/area/horizon/operations/office) +"plN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 9 }, -/obj/effect/floor_decal/industrial/hatch/red, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/longbow) -"pme" = ( -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/green{ @@ -106588,27 +106860,60 @@ d2 = 2; icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 5 - }, -/turf/simulated/floor/plating, -/area/shuttle/intrepid/starboard_compartment) -"pmk" = ( -/obj/structure/disposalpipe/segment{ +/obj/structure/bed/handrail{ dir = 4 }, -/obj/structure/cable/green{ - icon_state = "4-8" +/turf/simulated/floor/tiled/dark/full, +/area/horizon/shuttle/intrepid/port_compartment) +"plW" = ( +/obj/machinery/disposal/small/west, +/obj/structure/disposalpipe/trunk{ + dir = 8 }, +/turf/simulated/floor/tiled/dark, +/area/horizon/rnd/lab) +"pma" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 + dir = 9 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 }, -/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor/tiled, +/area/horizon/rnd/xenobiology/xenoflora) +"pmf" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/obj/effect/decal/cleanable/dirt, /turf/simulated/floor, -/area/horizon/hallway/deck_three/primary/starboard) +/area/horizon/maintenance/deck_3/aft/holodeck) +"pmg" = ( +/obj/effect/floor_decal/corner/brown/diagonal, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/effect/floor_decal/industrial/warning, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/door/airlock/multi_tile/glass{ + autoclose = 0; + name = "Warehouse Elevator"; + req_one_access = list(26,29,31,48,67,70) + }, +/obj/machinery/door/firedoor/multi_tile, +/turf/simulated/floor/tiled/dark, +/area/horizon/operations/office) +"pmh" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 5 + }, +/obj/structure/sign/emergency/evacuation/stairs, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/effect/floor_decal/industrial/loading/yellow{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/horizon/stairwell/starboard/deck_2) "pml" = ( /obj/random/pottedplant, /obj/effect/floor_decal/spline/fancy/wood{ @@ -106617,24 +106922,40 @@ /obj/effect/decal/cleanable/dirt, /turf/unsimulated/floor/wood, /area/antag/burglar) -"pmq" = ( -/obj/structure/bed/stool/chair{ - dir = 1 +"pmo" = ( +/obj/structure/cable{ + icon_state = "4-8" }, -/obj/effect/floor_decal/corner/dark_green/diagonal, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/starboard) -"pmu" = ( -/obj/machinery/portable_atmospherics/hydroponics, -/obj/machinery/atmospherics/portables_connector, -/obj/machinery/light{ - dir = 1 +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor, +/area/horizon/maintenance/deck_3/aft/starboard) +"pmr" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 }, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology/xenoflora) -"pmy" = ( -/turf/simulated/floor/grass/no_edge, -/area/rnd/xenobiology/xenoflora) +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/port) +"pms" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor/plating, +/area/horizon/hallway/primary/deck_2/fore) +"pmx" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/camera/network/service{ + c_tag = "Service - Hydroponics 1" + }, +/obj/structure/closet/walllocker/medical/firstaid{ + pixel_y = 32 + }, +/turf/simulated/open, +/area/horizon/service/hydroponics) "pmB" = ( /obj/structure/table/rack, /obj/item/stack/liquidbags/half_full{ @@ -106665,23 +106986,25 @@ /obj/structure/lattice/catwalk/indoor, /turf/unsimulated/floor, /area/centcom/checkpoint/aft) -"pmI" = ( -/obj/machinery/atmospherics/binary/pump{ - dir = 8; - name = "Connector to Cold Loop" - }, -/obj/effect/floor_decal/corner/dark_blue{ +"pmJ" = ( +/obj/structure/bed/stool/chair/sofa/pew/left{ dir = 8 }, -/obj/effect/floor_decal/corner/yellow, -/turf/simulated/floor/tiled/dark, -/area/engineering/engine_room/turbine) +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 9 + }, +/turf/simulated/floor/wood, +/area/horizon/service/chapel/main) "pmK" = ( /obj/structure/railing/mapped{ dir = 8 }, /turf/simulated/open, /area/horizon/security/investigations_hallway) +"pmL" = ( +/obj/structure/shuttle_part/scc/mining, +/turf/simulated/floor/plating, +/area/horizon/shuttle/mining) "pmM" = ( /obj/effect/floor_decal/corner/paleblue{ dir = 5 @@ -106693,63 +107016,72 @@ }, /turf/unsimulated/floor, /area/centcom/holding) -"pmO" = ( -/obj/structure/bed/stool/chair/office/light{ - dir = 1 - }, -/obj/effect/floor_decal/corner/mauve{ - dir = 5 - }, -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/turf/simulated/floor/tiled/white, -/area/rnd/chemistry) -"pmS" = ( -/obj/effect/floor_decal/corner/dark_green/full{ +"pmR" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/railing/mapped{ dir = 8 }, -/obj/random/pottedplant, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/central) -"pmT" = ( -/turf/simulated/floor/tiled/dark, -/area/maintenance/wing/port) -"pmX" = ( -/obj/machinery/light/small, +/turf/simulated/floor/plating, +/area/horizon/engineering/reactor/supermatter/mainchamber) +"pmW" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/tiled/full, +/area/horizon/engineering/storage_hard) +"pnb" = ( +/turf/simulated/wall/shuttle/unique/scc/mining{ + icon_state = "3,1" + }, +/area/horizon/shuttle/mining) +"pnh" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/floor_decal/corner/mauve{ + dir = 6 + }, +/obj/machinery/power/apc/east, +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/turf/simulated/floor/tiled/white, +/area/horizon/storage/eva/expedition) +"pnm" = ( +/obj/machinery/atmospherics/pipe/simple/visible/green{ + dir = 5 + }, +/turf/simulated/floor/reinforced/nitrogen, +/area/horizon/engineering/atmos/air) +"pns" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/turf/simulated/floor/tiled, -/area/maintenance/aux_atmospherics/deck_2/starboard/wing) -"pmZ" = ( -/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/locker_room) -"png" = ( -/obj/machinery/atmospherics/omni/filter{ - name = "nitrous oxide filter"; - tag_north = 2; - tag_south = 1; - tag_west = 7 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 }, -/turf/simulated/floor/plating, -/area/engineering/atmos/air) -"pnn" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/ladder/up{ - pixel_y = 13 +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/random/junk, +/obj/structure/railing/mapped{ + dir = 8 }, -/obj/effect/floor_decal/industrial/warning{ - dir = 10 - }, -/turf/simulated/floor/tiled/dark, -/area/maintenance/wing/starboard) -"pnq" = ( -/obj/structure/grille, -/obj/structure/railing/mapped, /turf/simulated/floor/plating, -/area/maintenance/wing/starboard/far) +/area/horizon/maintenance/deck_2/service/port) "pnv" = ( /obj/item/gun/energy/rifle/laser, /obj/item/gun/energy/rifle/laser, @@ -106763,27 +107095,6 @@ /obj/effect/floor_decal/industrial/outline/red, /turf/simulated/floor/tiled/dark/full, /area/horizon/security/armoury) -"pnw" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/maintenance{ - dir = 1; - req_one_access = list(11,24) - }, -/turf/simulated/floor, -/area/engineering/break_room) -"pnz" = ( -/obj/machinery/recharge_station, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/full, -/area/medical/washroom) "pnD" = ( /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -106795,17 +107106,9 @@ /obj/structure/grille, /turf/unsimulated/floor/plating, /area/centcom/legion/hangar5) -"pnH" = ( -/obj/structure/cable/yellow{ - d2 = 4; - icon_state = "0-4" - }, -/obj/machinery/power/terminal{ - dir = 8 - }, -/obj/effect/decal/cleanable/generic, -/turf/simulated/floor/carpet/rubber, -/area/maintenance/engineering/auxillary) +"pnF" = ( +/turf/simulated/wall/r_wall, +/area/horizon/hangar/auxiliary) "pnI" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/green{ @@ -106814,12 +107117,16 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled, -/area/horizon/security/lobby) +/area/space) "pnK" = ( /obj/effect/decal/fake_object/light_source/invisible, /obj/structure/lattice/catwalk/indoor/grate/dark, /turf/unsimulated/floor/blue_circuit, /area/antag/ninja) +"pnM" = ( +/obj/machinery/hologram/holopad, +/turf/simulated/floor/wood, +/area/horizon/crew/lounge) "pnO" = ( /obj/machinery/door/airlock/glass_security{ desc = "It opens and closes. Hazardous lifeforms ahead. Caution advised!"; @@ -106839,6 +107146,20 @@ }, /turf/simulated/floor/tiled/full, /area/horizon/security/investigations_hallway) +"pnR" = ( +/obj/structure/grille, +/obj/structure/window/shuttle/scc_space_ship, +/obj/machinery/door/blast/shutters/open{ + dir = 2; + id = "bar_viewing_shutters"; + name = "Bar Viewing Shutters" + }, +/obj/machinery/door/firedoor, +/obj/effect/landmark/entry_point/fore{ + name = "fore, bar" + }, +/turf/simulated/floor/plating, +/area/horizon/service/bar) "pnU" = ( /obj/structure/window/shuttle/scc_space_ship, /obj/machinery/door/firedoor, @@ -106851,129 +107172,134 @@ }, /turf/simulated/floor/reinforced/airless, /area/shuttle/merchant) -"pnX" = ( -/turf/simulated/wall, -/area/engineering/gravity_gen) -"pnY" = ( -/obj/effect/floor_decal/corner/green/diagonal, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, +"pob" = ( /obj/structure/cable/green{ icon_state = "4-8" }, -/obj/machinery/light, -/turf/simulated/floor/tiled/white, -/area/medical/ward/isolation) -"pnZ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/effect/floor_decal/corner/lime{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/medical/morgue/lower) -"poe" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 6 - }, -/obj/structure/railing/mapped{ dir = 4 }, -/obj/structure/cable/green{ - icon_state = "1-8" +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 }, -/obj/structure/cable/green, -/obj/structure/grille, -/obj/machinery/light, -/turf/simulated/floor/tiled/dark/full/airless, -/area/bridge/controlroom) +/turf/simulated/floor/lino, +/area/horizon/service/chapel/main) +"pof" = ( +/obj/structure/table/wood, +/obj/item/modular_computer/laptop/preset/representative{ + pixel_x = -1; + pixel_y = 5 + }, +/turf/simulated/floor/carpet, +/area/horizon/repoffice/consular_one) "poh" = ( /turf/unsimulated/floor{ icon_state = "wood" }, /area/centcom/evac) -"poj" = ( -/turf/simulated/wall, -/area/hallway/primary/central_one) -"pol" = ( -/obj/machinery/light, -/obj/effect/floor_decal/spline/plain{ - dir = 10 - }, -/obj/machinery/computer/slot_machine, -/turf/simulated/floor/tiled/dark, -/area/horizon/bar) -"pom" = ( -/turf/simulated/wall, -/area/maintenance/research_port) -"poq" = ( -/obj/machinery/door/airlock/external{ +"poi" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 }, -/obj/effect/map_effect/marker/airlock{ - master_tag = "airlock_horizon_bunker"; - name = "airlock_horizon_bunker"; - frequency = 1109; - req_one_access = list(19) - }, -/obj/effect/map_effect/marker_helper/airlock/exterior, -/obj/machinery/access_button{ - pixel_x = 6; - pixel_y = 35; - dir = 4 - }, -/turf/simulated/floor/reinforced/airless, -/area/turret_protected/ai_upload_foyer) -"pos" = ( -/obj/structure/grille, -/obj/structure/window/shuttle/scc_space_ship, -/turf/simulated/floor/plating, -/area/shuttle/escape_pod/pod3) +/turf/simulated/floor/tiled, +/area/horizon/command/bridge/upperdeck) "pov" = ( /turf/simulated/floor/beach/sand{ dir = 1; icon_state = "beach" }, /area/centcom/shared_dream) -"poE" = ( +"pox" = ( +/obj/machinery/light/small/emergency{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/main/starboard) +"poD" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/floor_decal/corner_wide/green{ + dir = 9 + }, +/obj/machinery/alarm/west, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/hallway/upper) +"poF" = ( +/obj/structure/platform, +/obj/structure/closet/secure_closet/scientist, +/obj/structure/window/borosilicate{ + dir = 4 + }, /obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/structure/sign/flag/scc{ - pixel_y = 32 +/obj/machinery/light{ + dir = 1 }, +/turf/simulated/floor/tiled/dark, +/area/horizon/rnd/lab) +"poK" = ( +/turf/simulated/wall/shuttle/scc_space_ship/cardinal, +/area/horizon/maintenance/deck_2/wing/port/nacelle) +"poM" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/portable_atmospherics/canister/helium, /turf/simulated/floor/tiled/dark/full, -/area/bridge/aibunker) -"poG" = ( -/obj/structure/morgue/crematorium{ - _wifi_id = "chapel_crema" +/area/horizon/engineering/storage_hard) +"poP" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 10 }, -/obj/machinery/button/switch/crematorium{ - _wifi_id = "chapel_crema"; - dir = 4; - pixel_x = 20; - pixel_y = 8; - req_access = null +/obj/structure/table/standard, +/obj/item/storage/box/lights/mixed, +/obj/item/storage/box/lights/tubes, +/obj/item/device/lightreplacer, +/turf/simulated/floor/tiled, +/area/horizon/command/bridge/supply) +"poS" = ( +/obj/structure/shuttle_part/scc_space_ship{ + icon_state = "d3-4" }, -/obj/effect/floor_decal/industrial/outline/red, -/turf/simulated/floor/tiled/dark/full, -/area/chapel/office) -"poO" = ( -/obj/machinery/suit_storage_unit/standard_unit, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/dark/full, -/area/storage/eva) +/turf/simulated/wall/r_wall, +/area/horizon/rnd/xenobiology/xenoflora) +"poW" = ( +/obj/machinery/photocopier, +/obj/effect/floor_decal/corner/dark_blue/diagonal, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/light, +/turf/simulated/floor/tiled/dark, +/area/horizon/security/checkpoint) "poZ" = ( /obj/structure/shuttle/engine/propulsion/burst/right, /turf/simulated/floor/plating, /area/shuttle/mercenary) +"ppd" = ( +/obj/structure/flora/ausbushes/lavendergrass, +/turf/simulated/floor/grass/no_edge, +/area/horizon/service/cafeteria) +"ppf" = ( +/obj/structure/curtain/black{ + icon_state = "open"; + opacity = 0 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/horizon/service/bar) "ppg" = ( /obj/machinery/light/small{ brightness_power = 0.5; @@ -106982,61 +107308,13 @@ }, /turf/unsimulated/floor/plating, /area/centcom/spawning) -"ppi" = ( -/obj/effect/floor_decal/corner/dark_blue/diagonal, -/obj/effect/floor_decal/spline/plain/black{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/intrepid/junction_compartment) +"ppk" = ( +/turf/simulated/wall/shuttle/scc_space_ship/cardinal, +/area/horizon/maintenance/deck_2/wing/port/near) "ppl" = ( /obj/effect/step_trigger/thrower/shuttle/southeast, /turf/template_noop, /area/template_noop) -"ppm" = ( -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/effect/floor_decal/corner/black{ - dir = 9 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/turf/simulated/floor/tiled/dark, -/area/hangar/intrepid) -"ppo" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 5 - }, -/obj/structure/sign/directions/tcom{ - dir = 8; - pixel_x = -32 - }, -/turf/simulated/floor/plating, -/area/maintenance/engineering_ladder) -"pps" = ( -/turf/simulated/floor/reinforced/airless, -/area/engineering/engine_room/rust) -"ppu" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/structure/tank_wall/oxygen{ - icon_state = "o2-8" - }, -/turf/simulated/floor/plating, -/area/engineering/atmos/air) -"ppv" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard) "ppx" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 4 @@ -107047,94 +107325,47 @@ /obj/structure/flora/ausbushes/sparsegrass, /turf/simulated/floor/holofloor/grass, /area/horizon/holodeck/source_battlemonsters) -"ppA" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 6 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/dark/full, -/area/storage/eva) -"ppH" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/cable{ - d2 = 4; - icon_state = "0-4" - }, -/obj/machinery/power/terminal{ - dir = 1 - }, -/obj/structure/bed/handrail{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/shuttle/intrepid/port_compartment) -"ppI" = ( -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor, -/area/maintenance/engineering_ladder) -"ppR" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/computer/general_air_control/large_tank_control/wall{ - input_tag = "air_in"; - name = "Air Supply Monitor"; - output_tag = "air_out"; - pixel_x = 32; - sensors = list("air_sensor"="Tank") - }, -/obj/machinery/atmospherics/pipe/simple/visible/cyan, -/obj/structure/lattice/catwalk/indoor, -/turf/simulated/floor/plating, -/area/engineering/atmos/air) -"ppS" = ( -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 4 - }, -/obj/machinery/airlock_sensor{ - pixel_y = -24; - dir = 1 - }, -/obj/effect/map_effect/marker/airlock{ - master_tag = "sccv_intrepid_starboard"; - name = "sccv_intrepid_starboard"; - req_one_access = null - }, -/turf/simulated/floor/plating, -/area/shuttle/intrepid/starboard_compartment) -"ppU" = ( -/obj/structure/ladder/up{ - pixel_y = 13 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/horizon/maintenance/deck_two/fore/starboard) -"pqh" = ( -/obj/machinery/power/sensor{ - name = "Powernet Sensor - Operations Subgrid"; - name_tag = "Operations Subgrid" - }, -/obj/structure/cable/green, -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/obj/machinery/alarm/east, -/obj/machinery/power/apc/low/south, -/turf/simulated/floor/plating, -/area/maintenance/substation/supply) -"pqt" = ( +"ppQ" = ( /obj/structure/railing/mapped{ dir = 4 }, -/obj/effect/floor_decal/corner/dark_green/full{ +/obj/effect/floor_decal/corner/black{ + dir = 6 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/effect/floor_decal/corner/dark_green{ dir = 1 }, -/obj/structure/closet/emcloset, -/obj/effect/floor_decal/industrial/outline/emergency_closet, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/port) +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/hangar/intrepid) +"ppV" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 8 + }, +/obj/machinery/camera/network/service{ + c_tag = "Service - Deck 2 - Bar Port"; + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/service/bar) +"pqi" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 5 + }, +/obj/machinery/power/apc/west, +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/turf/simulated/floor/carpet/rubber, +/area/horizon/rnd/server) +"pqm" = ( +/turf/simulated/floor/reinforced, +/area/horizon/command/bridge/selfdestruct) "pqv" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, @@ -107144,144 +107375,148 @@ /obj/structure/lattice/catwalk/indoor/grate/dark, /turf/simulated/floor/plating, /area/shuttle/skipjack) -"pqw" = ( -/obj/effect/floor_decal/corner_wide/yellow{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/engineering/lobby) -"pqE" = ( -/obj/structure/table/stone/marble, -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/shutters{ - dir = 8; - id = "shutters_deck2_kitchendesk"; - name = "Kitchen Desk Shutter" - }, -/obj/machinery/power/outlet, -/turf/simulated/floor/tiled/dark, -/area/horizon/kitchen) -"pqJ" = ( -/obj/effect/floor_decal/corner/dark_green/full{ - dir = 1 - }, -/obj/structure/engineer_maintenance/electric{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_two/fore) "pqK" = ( /obj/structure/flora/ausbushes/fullgrass, /obj/effect/floor_decal/spline/plain, /turf/simulated/floor/exoplanet/grass/grove, /area/centcom/shared_dream) -"pqL" = ( -/obj/effect/floor_decal/spline/fancy/wood, +"pqR" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/effect/floor_decal/corner/dark_blue{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/storage/eva) +"prc" = ( +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, /obj/structure/railing/mapped, -/turf/simulated/floor/wood, -/area/horizon/cafeteria) -"prb" = ( -/obj/machinery/light/small{ +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/port/near) +"prd" = ( +/obj/structure/railing/mapped{ dir = 8 }, -/obj/effect/floor_decal/corner/purple{ - dir = 9 +/obj/effect/floor_decal/corner/dark_blue/full, +/obj/item/modular_computer/console/preset/medical{ + dir = 1 }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/trash_pile, /obj/structure/railing/mapped, -/obj/random/loot, /turf/simulated/floor/tiled/dark, -/area/horizon/custodial/disposals) -"pre" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/reception) -"pri" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 4 - }, -/obj/effect/floor_decal/corner/yellow, -/obj/effect/floor_decal/corner/yellow{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 1 - }, -/obj/machinery/computer/general_air_control/large_tank_control/wall{ - input_tag = "turbine_hot_in"; - name = "Turbine Hot Loop Control"; - output_tag = "turbine_hot_out"; - sensors = list("turbine_sensor"="Turbine Combustion Sensor"); - pixel_y = 28; - frequency = 1443 - }, -/turf/simulated/floor/tiled/dark, -/area/engineering/engine_room/turbine) -"prj" = ( -/obj/effect/floor_decal/corner/dark_green/diagonal, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) +/area/horizon/command/bridge/controlroom) "prm" = ( /obj/effect/floor_decal/spline/fancy/wood/corner{ dir = 1 }, /turf/unsimulated/floor/wood, /area/centcom/bar) -"prw" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 6 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"prE" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/corner_wide/green/diagonal, -/obj/structure/bed/stool/chair/office/dark{ - dir = 8 - }, +"pro" = ( +/obj/effect/floor_decal/corner/paleblue/diagonal, /turf/simulated/floor/tiled/white, -/area/medical/exam) -"prF" = ( -/obj/effect/floor_decal/corner/lime/full{ +/area/horizon/command/heads/cmo) +"prs" = ( +/obj/effect/floor_decal/corner/mauve/full{ + dir = 4 + }, +/obj/effect/floor_decal/corner/white{ dir = 1 }, -/obj/structure/platform_deco, -/turf/simulated/floor/tiled/white{ - name = "cooled white floor"; - temperature = 278.15 +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 }, -/area/medical/morgue/lower) -"prN" = ( -/obj/machinery/door/airlock/maintenance{ - dir = 4; - req_access = list(12) +/turf/simulated/floor/tiled/dark, +/area/horizon/rnd/xenobiology/xenoflora) +"prv" = ( +/obj/effect/floor_decal/corner_wide/blue{ + dir = 6 }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/full, -/area/hallway/primary/central_one) +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/storage/tech) +"prI" = ( +/obj/structure/table/standard, +/obj/machinery/light{ + dir = 8 + }, +/obj/item/storage/box/sharps{ + pixel_y = 9 + }, +/obj/item/vitals_monitor, +/obj/item/vitals_monitor, +/obj/item/vitals_monitor, +/obj/item/vitals_monitor, +/obj/effect/floor_decal/corner_wide/green/full, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/gen_treatment) +"prJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 8 + }, +/obj/structure/bed/stool/chair/shuttle/double{ + pixel_x = 8 + }, +/obj/effect/floor_decal/corner/brown{ + dir = 9 + }, +/obj/effect/floor_decal/spline/plain/black{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/shuttle/intrepid/main_compartment) +"prK" = ( +/obj/effect/floor_decal/industrial/warning/cee{ + dir = 4 + }, +/obj/machinery/light/small/emergency{ + dir = 8; + pixel_x = 16 + }, +/turf/simulated/floor, +/area/horizon/maintenance/deck_3/aft/port) +"prO" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 10 + }, +/obj/machinery/button/remote/airlock{ + name = "Emergency Escape Bolts"; + specialfunctions = 4; + id = "cap_escape"; + pixel_x = -21; + dir = 8; + pixel_y = -5 + }, +/obj/machinery/button/remote/blast_door{ + desc = "A remote control-switch for engine core."; + id = "cap_escape_blast"; + name = "Emergency Exit Blast Door"; + pixel_x = -21; + req_access = list(20); + dir = 8; + pixel_y = 8 + }, +/turf/simulated/floor/wood, +/area/horizon/command/heads/captain) "prQ" = ( /obj/machinery/mech_recharger, /obj/effect/decal/cleanable/dirt, /turf/unsimulated/floor/plating, /area/centcom/legion/hangar5) -"prU" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 10 - }, -/obj/machinery/light/small/floor, -/turf/simulated/floor/wood, -/area/horizon/cafeteria) "prX" = ( /obj/machinery/light/small{ dir = 4; @@ -107293,75 +107528,67 @@ }, /turf/unsimulated/floor/linoleum, /area/antag/actor) -"prY" = ( -/obj/machinery/firealarm/north, -/obj/structure/engineer_maintenance/pipe{ - dir = 8 +"psh" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 }, -/turf/simulated/floor/lino, -/area/chapel/main) -"psc" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/table/steel, -/obj/item/storage/box/flares{ - pixel_x = -6; - pixel_y = 11 +/obj/structure/bed/stool/chair/office/bridge/generic{ + dir = 1 }, -/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 - }, -/turf/simulated/floor/plating, -/area/hangar/intrepid) -"psd" = ( -/obj/structure/lattice/catwalk/indoor/grate/dark, /obj/structure/cable/green{ - icon_state = "1-4" + icon_state = "2-4" }, -/turf/simulated/floor/plating, -/area/maintenance/wing/cargo_compartment) -"pse" = ( -/obj/structure/cable/green{ - icon_state = "4-8" +/obj/machinery/button/remote/blast_door{ + desc = "A remote control-switch for shutters."; + dir = 1; + id = "hop_office_desk"; + name = "Desk Privacy Shutter"; + pixel_x = -26; + pixel_y = 8 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 +/obj/machinery/button/switch/windowtint{ + dir = 1; + id = "XO"; + pixel_x = -41; + pixel_y = -5 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 +/obj/machinery/light_switch{ + dir = 1; + pixel_x = -32; + pixel_y = -5 }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" +/obj/machinery/button/remote/airlock{ + desc = "A remote control-switch for the command foyer doors."; + dir = 1; + id = "command_foyer"; + name = "Bridge Door Control"; + pixel_x = -39; + pixel_y = 8; + req_access = list(57) }, -/obj/effect/floor_decal/corner/brown/full, -/turf/simulated/floor/tiled, -/area/operations/mail_room) -"psi" = ( -/obj/machinery/power/apc/south, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/maintenance/aux_atmospherics/deck_2/starboard/wing) -"psk" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/structure/bed/stool/chair/padded/brown{ - dir = 4 +/obj/machinery/computer/security/telescreen{ + name = "Access Monitor"; + network = list("XO_Office"); + pixel_y = 24; + pixel_x = -32 }, /turf/simulated/floor/wood, -/area/crew_quarters/heads/chief) +/area/horizon/command/heads/xo) +"psm" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/corner/dark_green{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_3/central) "psn" = ( /obj/effect/decal/fake_object{ dir = 4; @@ -107409,43 +107636,30 @@ name = "shallow water" }, /area/horizon/holodeck/source_konyang) -"psp" = ( -/obj/structure/table/wood, -/obj/item/storage/box/beanbags, -/obj/item/wrench, -/obj/item/paper{ - info = "This permit signifies that the Bartender is permitted to posess this firearm in the bar, and ONLY the bar. Failure to adhere to this permit will result in confiscation of the weapon and possibly arrest."; - name = "Shotgun permit" - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/machinery/alarm/west, -/turf/simulated/floor/tiled/dark, -/area/horizon/bar/backroom) -"psv" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ +"pso" = ( +/obj/effect/floor_decal/corner/brown/diagonal, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/effect/floor_decal/industrial/warning{ dir = 8 }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ +/obj/effect/floor_decal/industrial/warning{ dir = 4 }, +/turf/simulated/floor/tiled/dark, +/area/horizon/operations/office) +"psx" = ( /obj/structure/lattice/catwalk/indoor, -/turf/simulated/floor/plating, -/area/engineering/atmos/air) -"psB" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ +/obj/machinery/light{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, /turf/simulated/floor/plating, -/area/maintenance/hangar/starboard) +/area/horizon/hangar/intrepid) +"psz" = ( +/obj/effect/floor_decal/corner/black/full{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/horizon/operations/machinist) "psD" = ( /obj/machinery/door/airlock/external{ dir = 4; @@ -107459,34 +107673,6 @@ /obj/effect/floor_decal/industrial/hatch/yellow, /turf/unsimulated/floor, /area/centcom/evac) -"psF" = ( -/obj/structure/table/standard, -/obj/effect/floor_decal/corner_wide/green/full{ - dir = 1 - }, -/obj/machinery/camera/network/medbay{ - c_tag = "Medical - Main Storage"; - dir = 8 - }, -/obj/machinery/firealarm/east, -/obj/item/storage/box/syringes{ - pixel_x = -4; - pixel_y = 15 - }, -/obj/item/storage/box/syringes{ - pixel_x = 5; - pixel_y = 15 - }, -/obj/item/storage/box/bloodpacks{ - pixel_x = -4; - pixel_y = 5 - }, -/obj/item/storage/box/bloodpacks{ - pixel_x = 5; - pixel_y = 5 - }, -/turf/simulated/floor/tiled/white, -/area/medical/main_storage) "psH" = ( /obj/structure/railing/mapped{ name = "adjusted railing" @@ -107496,17 +107682,6 @@ }, /turf/unsimulated/floor/wood, /area/centcom/evac) -"psI" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/starboard/docks) "psK" = ( /obj/structure/table/steel, /obj/effect/floor_decal/industrial/warning, @@ -107520,6 +107695,33 @@ icon_state = "dark_preview" }, /area/centcom/specops) +"psO" = ( +/obj/structure/tank_wall{ + density = 0; + icon_state = "m-5"; + opacity = 0 + }, +/turf/simulated/floor/reinforced/airless, +/area/horizon/engineering/atmos) +"psQ" = ( +/obj/structure/bed/stool/padded/red{ + dir = 4 + }, +/turf/simulated/floor/lino, +/area/horizon/service/dining_hall) +"psT" = ( +/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/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/port/near) "psU" = ( /obj/machinery/door/airlock/centcom{ name = "Commander's Office"; @@ -107540,80 +107742,52 @@ icon_state = "dark_preview" }, /area/centcom/specops) -"ptc" = ( -/obj/effect/floor_decal/corner_wide/yellow{ - dir = 9 +"psZ" = ( +/obj/structure/railing/mapped{ + dir = 4 }, -/obj/structure/sign/radiation{ - pixel_x = -32 - }, -/turf/simulated/floor/tiled, -/area/engineering/engine_room/rust) -"pth" = ( +/obj/structure/railing/mapped, +/turf/simulated/floor/tiled/white, +/area/horizon/operations/machinist/surgicalbay) +"pta" = ( +/obj/effect/floor_decal/corner_wide/green/full, /obj/machinery/light, -/obj/effect/floor_decal/corner/mauve/diagonal, -/turf/simulated/floor/tiled/dark, -/area/storage/eva) -"ptk" = ( -/obj/structure/cable{ - icon_state = "4-8" +/turf/simulated/floor/tiled/white, +/area/horizon/medical/hallway/upper) +"ptf" = ( +/obj/machinery/chem_master, +/obj/effect/floor_decal/spline/plain/cee{ + dir = 8 }, +/turf/simulated/floor/carpet/rubber, +/area/horizon/rnd/xenobiology/xenoflora) +"pti" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, /obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/full, -/area/engineering/storage_hard) -"ptt" = ( -/obj/effect/floor_decal/spline/fancy/wood, -/turf/simulated/floor/wood, -/area/horizon/cafeteria) -"ptx" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/engineering/smes) -"pty" = ( -/obj/structure/table/wood, -/obj/random/pottedplant_small{ - pixel_x = -3; - pixel_y = 12 - }, -/obj/machinery/button/switch/windowtint{ - id = "library"; - pixel_x = 7; - pixel_y = -1; dir = 1 }, -/obj/item/material/ashtray/bronze{ - pixel_x = 6; - pixel_y = 8 +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/door/airlock/multi_tile/glass{ + name = "Deck 2 Port Stairwell Auxiliary Hangar Elevator" }, -/obj/machinery/light_switch{ +/obj/machinery/door/firedoor/multi_tile{ + dir = 8 + }, +/obj/structure/sign/crush{ + pixel_x = -32; + pixel_y = -32 + }, +/turf/simulated/floor/tiled/full, +/area/horizon/stairwell/port/deck_2) +"ptv" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command{ dir = 1; - pixel_y = -1; - pixel_x = -2 + name = "Chief Engineer's Office"; + req_access = list(56) }, -/turf/simulated/floor/carpet/red, -/area/horizon/library) +/turf/simulated/floor/tiled, +/area/horizon/engineering/lobby) "ptz" = ( /obj/structure/table/holotable, /obj/item/clothing/head/helmet/thunderdome, @@ -107625,110 +107799,44 @@ }, /turf/simulated/floor/holofloor/tiled, /area/horizon/holodeck/source_thunderdomecourt) -"ptA" = ( -/obj/structure/cable/green, -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/obj/machinery/power/apc/hyper/south, -/obj/effect/floor_decal/industrial/warning/cee{ - dir = 1 - }, -/obj/structure/railing/mapped{ - dir = 4 - }, -/turf/simulated/floor, -/area/maintenance/substation/command) -"ptG" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/effect/floor_decal/corner_wide/yellow{ - dir = 10 - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/full, -/area/hallway/engineering/rust) -"ptI" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/aux{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/effect/floor_decal/corner/black/full{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 9 - }, -/obj/machinery/alarm/north, -/turf/simulated/floor/tiled, -/area/hangar/intrepid) -"ptJ" = ( -/obj/structure/grille, -/obj/structure/window/shuttle/scc_space_ship, -/obj/machinery/door/blast/shutters/open{ - dir = 2; - id = "bar_viewing_shutters"; - name = "Bar Viewing Shutters" - }, -/obj/machinery/door/firedoor, -/obj/effect/landmark/entry_point/fore{ - name = "fore, bar" - }, -/turf/simulated/floor/plating, -/area/horizon/bar) -"ptL" = ( -/obj/effect/floor_decal/corner_wide/yellow{ - dir = 9 - }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/hallway/engineering/rust) -"ptP" = ( +"ptB" = ( /obj/effect/floor_decal/industrial/warning{ dir = 8 }, /turf/simulated/floor, -/area/horizon/maintenance/deck_three/aft/starboard) -"pua" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 +/area/horizon/maintenance/deck_3/aft/starboard/far) +"ptC" = ( +/obj/structure/table/stone/marble, +/obj/item/reagent_containers/glass/bucket{ + pixel_y = 6; + pixel_x = 7 }, -/obj/structure/cable{ - icon_state = "1-2" +/obj/item/reagent_containers/glass/bucket{ + pixel_y = 2; + pixel_x = -6 }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/random/dirt_75, -/turf/simulated/floor/plating, -/area/maintenance/wing/port/far) -"pud" = ( -/obj/structure/trash_pile, -/turf/simulated/floor, -/area/maintenance/security_port) -"pue" = ( -/obj/effect/floor_decal/corner/mauve{ - dir = 9 +/obj/effect/floor_decal/spline/plain/lime, +/turf/simulated/floor/tiled/dark, +/area/horizon/service/hydroponics/garden) +"ptF" = ( +/obj/effect/floor_decal/corner_wide/purple{ + dir = 6 }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ +/obj/effect/floor_decal/corner_wide/purple{ + dir = 8 + }, +/obj/machinery/light{ dir = 4 }, +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/xenoarch/atrium) +"puh" = ( +/obj/structure/table/standard, +/obj/effect/floor_decal/corner/beige{ + dir = 9 + }, /turf/simulated/floor/tiled, -/area/rnd/hallway/secondary) -"puf" = ( -/turf/simulated/wall, -/area/crew_quarters/lounge) +/area/horizon/crew/vacantoffice) "pul" = ( /obj/structure/bed/stool/chair/padded/black{ dir = 8 @@ -107748,6 +107856,14 @@ }, /turf/simulated/floor/shuttle/black, /area/shuttle/specops) +"pup" = ( +/obj/effect/floor_decal/industrial/outline/operations, +/obj/structure/closet/secure_closet/atmos_personal, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/atmos/storage) "puq" = ( /obj/structure/closet/crate/internals{ name = "emergency equipment" @@ -107769,16 +107885,20 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/unsimulated/floor/plating, /area/centcom/distress_prep) -"put" = ( -/obj/structure/platform/ledge, -/obj/structure/platform/ledge{ - dir = 4 +"pur" = ( +/obj/structure/railing/mapped{ + dir = 8 }, -/obj/structure/platform_deco/ledge{ - dir = 5 +/obj/structure/table/reinforced/steel, +/obj/machinery/atmospherics/unary/vent_pump/aux{ + dir = 1 }, -/turf/simulated/open, -/area/hallway/primary/central_one) +/obj/item/device/flashlight/lamp{ + pixel_y = 5; + pixel_x = -5 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/command/bridge/aibunker) "puw" = ( /obj/effect/floor_decal/corner/grey{ dir = 6 @@ -107789,6 +107909,14 @@ }, /turf/unsimulated/floor/dark, /area/antag/actor) +"puA" = ( +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/structure/table/wood, +/obj/random/contraband, +/turf/simulated/floor/tiled/dark, +/area/horizon/maintenance/deck_2/wing/starboard) "puG" = ( /obj/effect/floor_decal/corner_wide/paleblue/diagonal{ dir = 8 @@ -107807,254 +107935,160 @@ /obj/item/reagent_containers/hypospray/autoinjector/survival, /turf/simulated/floor/tiled/dark, /area/shuttle/mercenary) -"puN" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ +"puI" = ( +/obj/effect/floor_decal/corner/grey/diagonal, +/obj/effect/floor_decal/spline/plain, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/white, +/area/horizon/service/kitchen) +"puJ" = ( +/obj/effect/floor_decal/corner_wide/yellow{ + dir = 6 + }, +/obj/effect/floor_decal/spline/plain{ dir = 8 }, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/horizon/engineering/break_room) +"pve" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/random/junk, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/service/port) +"pvo" = ( +/obj/machinery/portable_atmospherics/canister/empty/carbon_dioxide, +/turf/simulated/floor/plating, +/area/horizon/engineering/reactor/indra/office) +"pvs" = ( +/obj/machinery/atmospherics/unary/vent_pump/aux{ + dir = 8 + }, +/turf/simulated/floor/reinforced, +/area/horizon/command/bridge/selfdestruct) +"pvt" = ( +/obj/effect/floor_decal/industrial/outline/operations, +/obj/machinery/pipedispenser/disposal, +/obj/machinery/power/apc/north, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/atmos/storage) +"pvw" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/reinforced, +/area/horizon/weapons/grauwolf) +"pvD" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/industrial/loading/engineering, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/bluespace_drive) +"pvE" = ( +/obj/structure/table/standard, +/obj/effect/floor_decal/corner/mauve{ + dir = 9 + }, +/obj/machinery/power/apc/west, +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/lab) +"pvH" = ( +/obj/machinery/hologram/holopad, +/obj/effect/overmap/visitable/ship/sccv_horizon, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/obj/structure/lattice/catwalk/indoor, -/obj/structure/cable/green{ - icon_state = "4-8" +/turf/simulated/floor/tiled/dark, +/area/horizon/command/bridge/controlroom) +"pvV" = ( +/obj/machinery/atmospherics/pipe/manifold4w/hidden, +/obj/effect/map_effect/marker/airlock{ + frequency = 1003; + master_tag = "airlock_horizon_deck_1_aft_port_1"; + name = "airlock_horizon_deck_1_aft_port_1" }, /turf/simulated/floor/plating, -/area/engineering/bluespace_drive) -"puP" = ( -/obj/machinery/door/window/eastleft, -/obj/structure/platform/ledge, -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/effect/floor_decal/industrial/outline/emergency_closet, -/turf/simulated/floor/tiled/dark/full, -/area/rnd/telesci) -"puY" = ( -/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology/xenological) -"puZ" = ( +/area/horizon/maintenance/deck_1/auxatmos) +"pvW" = ( +/obj/structure/bed/stool/chair/padded/black{ + dir = 1 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 6 + }, +/turf/simulated/floor/carpet, +/area/horizon/repoffice/representative_two) +"pwg" = ( +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/starboard/nacelle) +"pwj" = ( +/obj/effect/floor_decal/corner/dark_green/full{ + dir = 8 + }, +/obj/machinery/lapvend, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled, +/area/horizon/storage/primary) +"pwq" = ( /obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 4 + }, +/obj/structure/window/shuttle/scc_space_ship/cardinal, +/turf/simulated/floor/plating, +/area/horizon/engineering/atmos/turbine) +"pwv" = ( +/obj/effect/floor_decal/corner_wide/purple{ + dir = 5 + }, +/obj/effect/floor_decal/corner_wide/purple{ + dir = 8 + }, /obj/structure/cable/green{ - icon_state = "4-8" + icon_state = "0-2" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 +/obj/machinery/power/apc/north, +/obj/structure/engineer_maintenance/pipe{ + dir = 8 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/door/airlock/glass_command{ - dir = 4; - id_tag = ""; - name = "Bridge Officer Preparation"; - req_access = list(19) +/obj/structure/engineer_maintenance/electric{ + dir = 1 }, +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/xenoarch/atrium) +"pwy" = ( +/obj/structure/window/shuttle/scc_space_ship, +/obj/structure/grille, /obj/machinery/door/blast/regular{ density = 0; + dir = 4; icon_state = "pdoor0"; id = "bridge blast"; name = "Bridge Blast Doors"; opacity = 0 }, -/turf/simulated/floor/tiled/full, -/area/bridge/bridge_crew) -"pva" = ( -/obj/structure/dispenser/oxygen, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled, -/area/engineering/storage_eva) -"pvh" = ( -/obj/machinery/power/emitter/gyrotron/anchored{ - dir = 1; - initial_id_tag = "horizon_fusion"; - state = 2 - }, -/obj/structure/cable/orange{ - icon_state = "0-2" - }, -/obj/effect/floor_decal/industrial/hatch/red, -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/structure/railing/mapped, -/turf/simulated/floor/carpet/rubber, -/area/engineering/engine_room/rust) -"pvn" = ( -/obj/structure/lattice/catwalk/indoor, -/turf/simulated/floor/plating, -/area/hangar/intrepid) -"pvA" = ( -/obj/structure/bed/stool/chair/padded/brown{ - dir = 4 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/floor_decal/corner/white/diagonal, -/obj/effect/floor_decal/spline/plain{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/horizon/hallway/deck_three/primary/central) -"pvB" = ( -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 8 - }, -/obj/structure/bed/stool/padded/black, -/turf/simulated/floor, -/area/maintenance/security_port) -"pvG" = ( -/obj/structure/table/reinforced/steel, -/obj/machinery/recharger{ - pixel_y = 5; - pixel_x = -4 - }, -/obj/machinery/power/outlet{ - pixel_y = 4; - pixel_x = 7 - }, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/bluespace_drive/monitoring) -"pvJ" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/wood, -/area/crew_quarters/captain) -"pvO" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/purple{ - dir = 8 - }, -/turf/simulated/wall/shuttle/scc_space_ship/cardinal, -/area/engineering/atmos) -"pvQ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 5 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/firealarm/west{ - dir = 1; - pixel_x = 0; - pixel_y = 26 - }, -/turf/simulated/floor/wood, -/area/lawoffice/representative_two) -"pvR" = ( -/obj/machinery/door/blast/shutters/open{ - id = "CHE2shutters"; - name = "Window Shutter" - }, -/obj/effect/map_effect/window_spawner/full/borosilicate/reinforced/firedoor, -/turf/simulated/floor/tiled/dark/full, -/area/medical/pharmacy) -"pvX" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 8 - }, -/obj/effect/map_effect/marker/airlock/docking{ - landmark_tag = "nav_horizon_dock_deck_3_port_5"; - master_tag = "airlock_horizon_dock_deck_3_port_5"; - name = "airlock_horizon_dock_deck_3_port_5" - }, -/turf/simulated/floor/plating, -/area/horizon/hallway/deck_three/primary/port/docks) -"pwa" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 5 - }, -/obj/machinery/light_switch{ - dir = 1; - pixel_y = 28 - }, -/turf/simulated/floor/tiled, -/area/bridge/controlroom) -"pwb" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/machinery/conveyor_switch/oneway{ - desc = "A conveyor control switch. It appears to only go in one direction. Controls the components conveyor belt."; - id = "rnd"; - pixel_x = -13; - pixel_y = 21 - }, -/obj/effect/floor_decal/industrial/loading/yellow{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark/full, -/area/rnd/lab) -"pwd" = ( -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/engineering) -"pwi" = ( -/turf/simulated/wall, -/area/operations/mail_room) -"pwk" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/door/airlock/maintenance{ - dir = 4; - name = "Chaplain Office's Maintenance"; - req_access = list(22) - }, /obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/full, -/area/chapel/office) -"pwl" = ( -/obj/machinery/optable, -/turf/simulated/floor/tiled/white, -/area/operations/lower/machinist/surgicalbay) -"pws" = ( -/turf/simulated/wall/r_wall, -/area/operations/lower/machinist/surgicalbay) -"pww" = ( -/turf/simulated/floor/carpet, -/area/medical/psych) -"pwx" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 +/obj/structure/cable/green{ + icon_state = "0-4" }, -/turf/simulated/floor/tiled, -/area/maintenance/aux_atmospherics/deck_2/starboard/wing) -"pwA" = ( -/obj/effect/floor_decal/corner_wide/purple{ - dir = 6 +/obj/machinery/door/blast/shutters/open{ + dir = 2; + id = "shutters_deck3_bridgesafety"; + name = "Safety Shutter" }, -/obj/effect/floor_decal/corner_wide/purple{ - dir = 8 - }, -/obj/effect/floor_decal/sign/c, -/turf/simulated/floor/tiled/white, -/area/rnd/xenoarch_atrium) +/turf/simulated/floor/plating, +/area/horizon/command/bridge/controlroom) "pwC" = ( /obj/effect/floor_decal/industrial/outline/grey, /obj/structure/closet/crate/drop{ @@ -108062,13 +108096,25 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/security/evidence_storage) -"pwD" = ( -/obj/machinery/light{ - dir = 4 +"pwE" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 6 }, -/obj/effect/floor_decal/spline/plain, -/turf/simulated/floor/tiled/dark, -/area/horizon/hallway/deck_three/primary/central) +/obj/structure/disposalpipe/segment{ + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/machinery/newscaster/security_unit/east, +/turf/simulated/floor/tiled, +/area/horizon/command/bridge/controlroom) "pwF" = ( /obj/machinery/door/airlock/hatch{ dir = 4; @@ -108090,103 +108136,53 @@ icon_state = "dark_preview" }, /area/centcom/holding) -"pwH" = ( -/obj/structure/cable{ - icon_state = "1-2" +"pwJ" = ( +/obj/machinery/door/airlock/service{ + dir = 1; + name = "Chapel Storage"; + req_access = list(22) }, -/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/maintenance/aft) -"pwP" = ( -/obj/machinery/telecomms/server/presets/command, -/turf/simulated/floor/bluegrid, -/area/tcommsat/chamber) -"pwQ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/obj/machinery/door/airlock/external{ - dir = 4 - }, -/obj/machinery/access_button{ - dir = 4; - pixel_x = 12; - pixel_y = 28 - }, -/obj/effect/map_effect/marker/airlock{ - frequency = 1003; - master_tag = "airlock_horizon_deck_1_aft_propulsion_2"; - name = "airlock_horizon_deck_1_aft_propulsion_2" - }, -/obj/effect/map_effect/marker_helper/airlock/interior, -/turf/simulated/floor/plating, -/area/engineering/atmos/propulsion) -"pwY" = ( -/obj/random/loot, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/structure/closet, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard) -"pxa" = ( -/obj/structure/table/standard, -/obj/item/folder/purple, -/obj/item/stamp/rd{ - pixel_x = -8; - pixel_y = 10 - }, -/obj/item/device/eftpos{ - eftpos_name = "Research EFTPOS scanner" - }, -/obj/machinery/light/floor{ - dir = 4 - }, -/obj/item/paper/monitorkey{ - pixel_y = -6; - pixel_x = 9 - }, -/turf/simulated/floor/carpet/purple, -/area/crew_quarters/heads/hor) -"pxf" = ( -/obj/machinery/light, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/random/pottedplant, +/obj/effect/map_effect/door_helper/unres, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/full, +/area/horizon/service/chapel/main) +"pwV" = ( /obj/effect/floor_decal/corner/dark_blue{ dir = 10 }, -/turf/simulated/floor/reinforced, -/area/bridge/controlroom) -"pxl" = ( -/turf/simulated/floor/tiled/freezer{ - name = "cooled tiles"; - temperature = 253.15 - }, -/area/horizon/kitchen/freezer) -"pxm" = ( -/obj/machinery/firealarm/south, -/obj/effect/floor_decal/corner_wide/yellow/full{ +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/obj/structure/cable/yellow{ - icon_state = "4-8" +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /turf/simulated/floor/tiled, -/area/engineering/engine_room/rust) -"pxp" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume, -/obj/effect/map_effect/marker/airlock/docking{ - landmark_tag = "nav_horizon_dock_deck_3_port_5"; - master_tag = "airlock_horizon_dock_deck_3_port_5"; - name = "airlock_horizon_dock_deck_3_port_5" +/area/horizon/hallway/primary/deck_3/starboard/docks) +"pwX" = ( +/obj/random/pottedplant, +/obj/machinery/power/apc/west, +/obj/effect/floor_decal/corner_wide/lime{ + dir = 9 }, -/turf/simulated/floor/plating, -/area/horizon/hallway/deck_three/primary/port/docks) +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/reception) +"pxb" = ( +/turf/simulated/wall/r_wall, +/area/horizon/engineering/reactor/supermatter/monitoring) +"pxi" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/corner/mauve/diagonal, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/junction, +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/lab) "pxr" = ( /obj/structure/bed/stool/chair{ dir = 4 @@ -108199,6 +108195,26 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/security/interrogation) +"pxs" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/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/maintenance{ + dir = 4; + req_one_access = list(12,47) + }, +/turf/simulated/floor/tiled/full, +/area/horizon/crew/resdeck/living_quarters_lift) "pxv" = ( /obj/item/beach_ball, /turf/simulated/floor/beach/sand{ @@ -108206,47 +108222,35 @@ icon_state = "beach" }, /area/centcom/shared_dream) -"pxx" = ( -/obj/structure/table/standard, -/obj/item/storage/box/fancy/vials{ - pixel_x = -10; - pixel_y = -10 +"pxw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 }, -/obj/item/reagent_containers/dropper/electronic_pipette{ - pixel_x = -8 +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 }, -/obj/item/reagent_containers/glass/beaker/large, -/obj/machinery/requests_console/west{ - department = "Pharmacy"; - departmentType = 2; - name = "Pharmacy Requests Console" - }, -/obj/effect/floor_decal/corner_wide/orange{ +/obj/effect/floor_decal/corner/dark_blue, +/turf/simulated/floor/tiled, +/area/horizon/command/bridge/upperdeck) +"pxB" = ( +/obj/effect/floor_decal/industrial/warning{ dir = 9 }, -/turf/simulated/floor/tiled/white, -/area/medical/pharmacy) -"pxy" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/airlock/maintenance_hatch{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard/far) -"pxC" = ( -/obj/effect/floor_decal/corner_wide/yellow{ - dir = 5 +/obj/structure/railing/mapped{ + dir = 8 }, /obj/structure/cable/green{ icon_state = "4-8" }, -/turf/simulated/floor/tiled, -/area/hallway/engineering) +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/structure/cable/green{ + icon_state = "0-8" + }, +/obj/structure/grille, +/turf/simulated/floor/tiled/dark/full/airless, +/area/horizon/command/bridge/controlroom) "pxD" = ( /obj/effect/floor_decal/corner/blue{ dir = 9 @@ -108268,7 +108272,35 @@ }, /obj/effect/floor_decal/industrial/outline/red, /turf/simulated/floor/reinforced/airless, -/area/template_noop) +/area/horizon/exterior) +"pxK" = ( +/obj/structure/railing/mapped, +/obj/machinery/firealarm/east, +/obj/machinery/camera/network/service{ + c_tag = "Service - Deck 2 - Dining Hall 3"; + dir = 8 + }, +/obj/random/pottedplant, +/turf/simulated/floor/lino, +/area/horizon/service/dining_hall) +"pxM" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/gen_treatment) +"pxO" = ( +/obj/structure/railing/mapped{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/maintenance/deck_2/wing/starboard/far) "pxP" = ( /obj/machinery/light{ dir = 1 @@ -108299,25 +108331,15 @@ /obj/structure/lattice/catwalk/indoor, /turf/unsimulated/floor/plating, /area/centcom/checkpoint/fore) -"pxV" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 +"pxS" = ( +/obj/effect/floor_decal/corner/purple{ + dir = 6 }, /obj/structure/cable{ - icon_state = "2-4" + icon_state = "1-8" }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard/far) -"pxW" = ( -/obj/structure/railing/mapped, -/obj/structure/table/standard, -/obj/machinery/cell_charger, -/turf/simulated/floor/tiled/dark, -/area/rnd/lab) +/turf/simulated/floor/tiled, +/area/horizon/shuttle/quark/cargo_hold) "pxX" = ( /obj/effect/floor_decal/corner/paleblue{ dir = 5 @@ -108330,105 +108352,44 @@ }, /turf/unsimulated/floor, /area/centcom/spawning) -"pxY" = ( -/obj/structure/table/reinforced/steel, -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/shutters{ - dir = 4; - id = "shutters_custodialdesk"; - name = "Custodial Desk Shutter" - }, -/obj/item/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/pen, -/obj/machinery/door/window/desk/westright{ - name = "Custodial Closet Desk Internal"; - req_access = list(26) - }, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/custodial) -"pxZ" = ( -/obj/structure/table/standard, -/obj/effect/floor_decal/corner/brown/full{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/alarm/north, -/obj/item/stack/material/steel/full{ - pixel_x = 1; - pixel_y = 5 - }, -/turf/simulated/floor/tiled, -/area/operations/office_aux) -"pya" = ( -/obj/machinery/light/small/emergency{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"pyh" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/loading/yellow{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenoarch_atrium) -"pyk" = ( -/obj/structure/cable/green{ - icon_state = "0-8" - }, -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/obj/effect/map_effect/window_spawner/full/reinforced/polarized/grille/firedoor{ - id = "bridgeconf" - }, -/turf/simulated/floor, -/area/bridge/meeting_room) "pym" = ( /obj/structure/shuttle/engine/propulsion/burst, /turf/unsimulated/floor/plating, /area/shuttle/skipjack) -"pyp" = ( -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/structure/railing/mapped, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"pyr" = ( -/obj/random/loot, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 +"pyv" = ( +/obj/structure/cable{ + icon_state = "4-8" }, -/obj/random/junk, -/turf/simulated/floor, -/area/maintenance/security_port) -"pyy" = ( -/obj/structure/bed/stool/chair/shuttle{ +/obj/structure/disposalpipe/junction{ dir = 4 }, -/obj/item/device/radio/intercom/south, -/turf/simulated/floor/shuttle/dark_blue, -/area/shuttle/escape_pod/pod2) -"pyB" = ( -/obj/effect/floor_decal/corner/dark_green/full{ +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/turf/simulated/floor/tiled/full, +/area/horizon/engineering/hallway/interior) +"pyx" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/effect/floor_decal/corner/brown/full{ dir = 1 }, -/obj/machinery/camera/network/third_deck{ - c_tag = "Third Deck - Starboard Lounge Port Entrance"; - dir = 8 +/obj/machinery/computer/shuttle_control/multi/lift/wall/operations{ + dir = 8; + pixel_x = 24; + pixel_y = 24 }, /turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/starboard) +/area/horizon/operations/office) +"pyz" = ( +/obj/machinery/door/blast/shutters/open{ + id = "shutters_deck3_cafewindows"; + name = "Cafe Window Shutter" + }, +/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/service/cafeteria) "pyC" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 1 @@ -108436,65 +108397,10 @@ /obj/effect/floor_decal/spline/fancy/wood, /turf/simulated/floor/wood/yew, /area/centcom/shared_dream) -"pyQ" = ( -/obj/effect/floor_decal/corner_wide/purple/full{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 6 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/button/remote/blast_door{ - id = "iso_a"; - name = "Blast Door Control"; - pixel_x = -10; - pixel_y = -22; - req_access = list(65) - }, -/obj/machinery/button/remote/blast_door{ - id = "iso_a_purge"; - name = "PURGE Atmosphere"; - pixel_y = -22; - req_access = list(65) - }, -/obj/machinery/button/remote/airlock{ - id = "riso1"; - name = "Door Bolt Control"; - pixel_x = 10; - pixel_y = -22; - req_access = list(65); - specialfunctions = 4 - }, -/obj/machinery/atmospherics/valve/digital/open{ - dir = 4; - name = "Isolation C" - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenoarch_atrium) -"pyW" = ( -/obj/item/rig/medical/equipped{ - pixel_x = 4; - pixel_y = 5 - }, -/obj/item/rig/medical/equipped{ - pixel_x = -5; - pixel_y = 5 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/table/rack{ - pixel_y = 5 - }, -/obj/machinery/door/window/southleft, -/turf/simulated/floor/tiled, -/area/medical/paramedic) -"pze" = ( +"pyI" = ( +/turf/simulated/wall/shuttle/scc_space_ship/cardinal, +/area/horizon/service/bar) +"pyR" = ( /obj/structure/grille, /obj/machinery/door/firedoor, /obj/machinery/door/blast/shutters/open{ @@ -108509,10 +108415,32 @@ name = "Viewing Shutter" }, /turf/simulated/floor/plating, -/area/horizon/hydroponics) -"pzg" = ( -/turf/simulated/wall, -/area/maintenance/substation/hangar) +/area/horizon/service/hydroponics) +"pyY" = ( +/obj/effect/floor_decal/industrial/outline/red, +/obj/structure/table/rack, +/obj/item/warhead/longbow/bunker, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/operations/secure_ammunition_storage) +"pza" = ( +/obj/effect/floor_decal/corner_wide/green/full{ + dir = 1 + }, +/obj/effect/landmark/start{ + name = "Physician" + }, +/obj/structure/bed/stool/chair{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/hallway/upper) +"pzf" = ( +/obj/effect/floor_decal/industrial/outline/grey, +/turf/simulated/floor/plating, +/area/horizon/hangar/auxiliary) "pzh" = ( /turf/unsimulated/floor, /area/antag/raider) @@ -108535,6 +108463,27 @@ icon_state = "dark_preview" }, /area/centcom/control) +"pzy" = ( +/obj/machinery/light, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 7 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/wood, +/area/horizon/command/heads/captain) +"pzB" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/purple, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/engineering/atmos/propulsion/starboard) +"pzD" = ( +/obj/structure/bed/stool/chair/padded/brown{ + dir = 4 + }, +/turf/simulated/floor/carpet/art, +/area/horizon/crew/lounge) "pzE" = ( /obj/structure/lattice/catwalk, /obj/structure/railing/mapped{ @@ -108557,27 +108506,6 @@ }, /turf/unsimulated/floor/wood, /area/centcom/holding) -"pzL" = ( -/obj/machinery/door/airlock/glass_engineering{ - dir = 4; - name = "INDRA Reactor Bay"; - req_access = list(11) - }, -/obj/machinery/door/firedoor{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/engineering/engine_room/rust) -"pzN" = ( -/turf/simulated/wall/r_wall, -/area/maintenance/security_port) -"pzO" = ( -/obj/structure/foamedmetal, -/turf/simulated/floor/plating, -/area/chapel/office) "pzW" = ( /obj/effect/floor_decal/industrial/warning{ dir = 8 @@ -108587,91 +108515,145 @@ }, /turf/simulated/floor/tiled/dark, /area/shuttle/legion) -"pAa" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 +"pzX" = ( +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/storage/tech) +"pzZ" = ( +/obj/machinery/door/airlock/glass_command{ + dir = 1; + id_tag = "server_door_lock"; + name = "Server Room"; + req_access = list(30) }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor, /obj/structure/cable/green{ - icon_state = "1-8" + icon_state = "1-2" }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 6 - }, -/obj/structure/bed/stool/bar/padded/red, -/obj/machinery/alarm/east, -/turf/simulated/floor/wood, -/area/horizon/bar) -"pAd" = ( -/obj/structure/platform_stairs/south_north_solo{ +/turf/simulated/floor/tiled/dark, +/area/horizon/rnd/server) +"pAb" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/effect/floor_decal/industrial/warning, +/obj/effect/floor_decal/industrial/warning{ dir = 1 }, -/obj/structure/platform{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard/far) +/turf/simulated/floor/tiled/dark, +/area/horizon/operations/loading) "pAl" = ( /turf/unsimulated/floor/wood, /area/centcom/specops) -"pAp" = ( -/obj/structure/tank_wall/oxygen{ - density = 0; - icon_state = "o2-5"; - opacity = 0 +"pAo" = ( +/obj/machinery/vending/coffee, +/obj/effect/floor_decal/industrial/hatch/grey, +/turf/simulated/floor/tiled/full, +/area/horizon/hallway/primary/deck_3/port) +"pAr" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/machinery/door/airlock/external, +/obj/machinery/access_button{ + dir = 1; + pixel_x = -28; + pixel_y = 12 }, -/turf/simulated/floor/reinforced/oxygen, -/area/engineering/atmos/air) -"pAB" = ( -/obj/structure/cable{ - icon_state = "0-8" +/obj/effect/map_effect/marker/airlock{ + frequency = 3002; + master_tag = "airlock_horizon_deck_2_port_1"; + name = "airlock_horizon_deck_2_port_1" }, -/obj/structure/cable{ - icon_state = "12-0" +/obj/effect/map_effect/marker_helper/airlock/interior, +/turf/simulated/floor, +/area/horizon/maintenance/deck_2/wing/starboard/far) +"pAA" = ( +/obj/machinery/access_button{ + pixel_x = -7; + pixel_y = 22 }, -/obj/machinery/atmospherics/pipe/zpipe/up/supply{ +/obj/machinery/airlock_sensor/airlock_interior{ + pixel_x = -8; + pixel_y = 28 + }, +/obj/machinery/button/remote/blast_door{ + dir = 1; + id = "intrepid_bay_outer"; + name = "Airlock Shutters"; + pixel_x = 6; + pixel_y = 25 + }, +/obj/structure/bed/stool/chair/shuttle/double{ + pixel_x = 8 + }, +/obj/structure/bed/stool/chair/shuttle/double{ + pixel_x = -8 + }, +/obj/effect/floor_decal/spline/plain/cee/black, +/obj/effect/map_effect/marker/airlock/shuttle{ + cycle_to_external_air = 1; + master_tag = "airlock_shuttle_intrepid"; + name = "airlock_shuttle_intrepid"; + req_one_access = null; + shuttle_tag = "Intrepid" + }, +/obj/effect/map_effect/marker_helper/airlock/interior, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/shuttle/intrepid/main_compartment) +"pAI" = ( +/obj/effect/floor_decal/spline/plain{ dir = 8 }, -/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers{ - dir = 8 +/obj/effect/floor_decal/spline/plain{ + dir = 4 }, +/obj/machinery/atmospherics/pipe/simple/hidden/black, +/turf/simulated/floor/carpet/rubber, +/area/horizon/tcommsat/chamber) +"pAJ" = ( /obj/effect/floor_decal/industrial/warning{ - dir = 9 + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/structure/railing/mapped{ + dir = 1; + pixel_y = 8 }, /turf/simulated/floor/plating, -/area/maintenance/wing/port/deck1) -"pAD" = ( -/obj/effect/floor_decal/spline/plain/corner{ +/area/horizon/hangar/intrepid) +"pAL" = ( +/obj/structure/shuttle/engine/propulsion/burst/left{ dir = 8 }, -/turf/simulated/wall, -/area/maintenance/substation/security) -"pAH" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 9 - }, -/turf/simulated/floor/carpet/rubber, -/area/engineering/engine_monitoring/rust) -"pAK" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/maintenance/deck_three/aft/starboard) +/turf/simulated/floor/plating, +/area/horizon/shuttle/escape_pod/pod1) "pAN" = ( /obj/effect/floor_decal/spline/plain/corner, /turf/simulated/floor/exoplanet/snow, /area/centcom/shared_dream) -"pAT" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 5 +"pAO" = ( +/obj/machinery/firealarm/west, +/obj/structure/closet/secure_closet/xenoarchaeologist{ + req_access = null; + req_one_access = list(7,47) }, -/turf/simulated/floor/reinforced/reactor, -/area/engineering/engine_room) +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark, +/area/horizon/rnd/xenoarch/storage) +"pAQ" = ( +/obj/structure/dispenser/oxygen, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/command/bridge/aibunker) +"pAU" = ( +/obj/structure/bed/stool/chair/office/bridge/pilot{ + dir = 8 + }, +/turf/simulated/floor/shuttle/dark_blue, +/area/horizon/shuttle/escape_pod/pod4) +"pAV" = ( +/obj/random/junk, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/starboard/far) "pAX" = ( /obj/effect/map_effect/window_spawner/full/reinforced/indestructible, /obj/structure/sign/greencross{ @@ -108679,13 +108661,54 @@ }, /turf/unsimulated/floor/plating, /area/centcom/holding) -"pBg" = ( -/obj/effect/floor_decal/corner/brown/full{ - dir = 4 +"pAY" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 }, -/obj/machinery/firealarm/south, +/turf/simulated/floor/carpet/rubber, +/area/horizon/maintenance/deck_1/workshop) +"pBb" = ( +/obj/effect/floor_decal/corner/mauve/full{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/rnd/xenobiology/xenoflora) +"pBj" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/atmos/propulsion/starboard) +"pBk" = ( +/obj/structure/platform_deco/ledge{ + dir = 1 + }, +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, -/area/operations/break_room) +/area/horizon/operations/machinist/surgicalbay) +"pBl" = ( +/obj/random/pottedplant, +/obj/effect/floor_decal/corner/dark_blue/full{ + dir = 1 + }, +/obj/machinery/firealarm/west{ + dir = 4; + pixel_x = 22 + }, +/turf/simulated/floor/tiled, +/area/horizon/command/bridge/bridge_crew) "pBn" = ( /obj/effect/floor_decal/corner/grey{ dir = 6 @@ -108703,107 +108726,133 @@ }, /turf/simulated/floor/marble, /area/horizon/holodeck/source_trinary) -"pBp" = ( -/obj/machinery/firealarm/south, -/obj/effect/floor_decal/corner/dark_green/full, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/starboard) +"pBo" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/door/airlock/engineering{ + name = "C-Goliath Drive Control Room"; + req_one_access = list(11,24); + dir = 4 + }, +/turf/simulated/floor/plating, +/area/horizon/engineering/bluespace_drive/monitoring) +"pBt" = ( +/obj/structure/window/shuttle/unique/scc/scout{ + icon_state = "3,3" + }, +/obj/structure/window/shuttle/unique/scc/scout/over{ + icon_state = "3,3" + }, +/turf/simulated/floor/plating, +/area/horizon/shuttle/canary) "pBv" = ( /turf/unsimulated/floor, /area/centcom/legion/hangar5) -"pBy" = ( -/obj/effect/floor_decal/corner/mauve{ +"pBw" = ( +/obj/effect/floor_decal/spline/fancy/wood/corner{ + dir = 4 + }, +/obj/effect/floor_decal/spline/fancy/wood{ dir = 6 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 +/turf/simulated/floor/wood, +/area/horizon/command/bridge/cciaroom) +"pBz" = ( +/obj/structure/railing/mapped, +/obj/structure/flora/ausbushes/ywflowers, +/obj/structure/flora/ausbushes/brflowers, +/turf/simulated/floor/grass/no_edge, +/area/horizon/rnd/hallway) +"pBA" = ( +/obj/machinery/button/remote/blast_door{ + id = "shutters_deck1_morgue2"; + name = "Viewing Shutters"; + dir = 4; + pixel_x = 20 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lime{ + dir = 10 + }, +/turf/simulated/floor/tiled/white{ + name = "cooled white floor"; + temperature = 278.15 + }, +/area/horizon/medical/morgue) +"pBE" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 5 + }, +/obj/machinery/light/small{ + dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology/xenoflora) -"pBF" = ( -/obj/machinery/shieldgen, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/light, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/storage_hard) -"pBJ" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/machinery/pipedispenser/disposal, -/turf/simulated/floor/plating, -/area/maintenance/engineering) -"pBM" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/mining{ - dir = 1; - req_one_access = list(26,29,31,48,67,70); - name = "Operations Bay" - }, -/turf/simulated/floor/tiled/full, -/area/operations/office_aux) -"pBP" = ( -/turf/simulated/wall/shuttle/scc, -/area/shuttle/intrepid/starboard_compartment) +/area/horizon/weapons/grauwolf) "pBR" = ( /turf/unsimulated/floor/wood, /area/centcom/evac) -"pCa" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" +"pBT" = ( +/obj/machinery/computer/telescience{ + starting_crystals = 4 + }, +/obj/effect/floor_decal/corner/mauve{ + dir = 10 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/telesci) +"pBU" = ( +/obj/effect/floor_decal/corner/yellow/diagonal, +/obj/machinery/light/small{ + dir = 1 }, /obj/structure/cable/green{ - icon_state = "1-8" + icon_state = "0-4" }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 5 +/obj/machinery/power/apc/south, +/turf/simulated/floor/tiled, +/area/horizon/stairwell/engineering/deck_2) +"pBZ" = ( +/obj/structure/grille, +/obj/structure/window/shuttle/scc_space_ship, +/obj/machinery/door/blast/shutters/open{ + id = "shutters_deck3_engibreakwindows"; + name = "Viewing Shutter" }, -/turf/simulated/floor/wood, -/area/horizon/crew_quarters/lounge/bar) -"pCf" = ( -/obj/effect/floor_decal/corner_wide/blue/full, -/obj/structure/table/reinforced/steel, -/obj/random/rig_module{ - pixel_x = -6 +/turf/simulated/floor/plating, +/area/horizon/engineering/break_room) +"pCe" = ( +/obj/machinery/door/airlock/external, +/obj/machinery/access_button{ + dir = 8; + pixel_x = 20; + pixel_y = 28 }, -/obj/random/rig_module{ - pixel_x = 6 +/obj/effect/map_effect/marker/airlock{ + frequency = 2001; + master_tag = "airlock_horizon_deck_2_starboard_aft"; + name = "airlock_horizon_deck_2_starboard_aft" }, -/obj/random/rig_module{ - pixel_x = 1; - pixel_y = 5 +/obj/effect/map_effect/marker_helper/airlock/exterior, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/port/near) +"pCj" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 }, -/obj/random/vault_rig{ - pixel_x = -10 +/obj/effect/floor_decal/corner/black/full{ + dir = 8 }, -/obj/random/vault_rig{ - pixel_x = 10 - }, -/obj/random/vault_rig{ - pixel_y = 10; - pixel_x = 10 - }, -/obj/machinery/door/window/northleft{ - name = "Storage"; - req_access = list(20) - }, -/obj/random/vault_rig{ - pixel_x = -10; - pixel_y = 10 - }, -/turf/simulated/floor/tiled/dark/full, -/area/storage/secure) +/turf/simulated/floor/tiled, +/area/horizon/operations/machinist) "pCm" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -108834,6 +108883,19 @@ /obj/effect/decal/cleanable/dirt, /turf/unsimulated/floor, /area/antag/burglar) +"pCp" = ( +/obj/structure/table/standard, +/obj/machinery/power/apc/north, +/obj/item/hoist_kit, +/obj/effect/floor_decal/corner/dark_blue{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/weapons/longbow) "pCq" = ( /obj/effect/decal/cleanable/dirt, /turf/unsimulated/floor{ @@ -108841,12 +108903,6 @@ icon_state = "carpet" }, /area/antag/raider) -"pCs" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/research_port) "pCt" = ( /obj/machinery/button/switch/crematorium{ _wifi_id = "actor_disposals"; @@ -108856,6 +108912,28 @@ }, /turf/unsimulated/floor/linoleum, /area/antag/actor) +"pCv" = ( +/obj/machinery/alarm/tcom/north, +/obj/machinery/camera/motion{ + network = list("Command","Security","Tcomsat"); + dir = 8; + c_tag = "Telecommunications - Entrance" + }, +/obj/item/device/multitool, +/obj/item/device/multitool, +/obj/structure/table/rack, +/obj/effect/floor_decal/spline/plain{ + dir = 5 + }, +/obj/item/stack/nanopaste, +/turf/simulated/floor/carpet/rubber, +/area/horizon/tcommsat/entrance) +"pCw" = ( +/obj/structure/window/shuttle/scc_space_ship/cardinal, +/obj/structure/grille, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/rnd/xenobiology/xenoflora) "pCA" = ( /obj/machinery/vending/zora, /obj/machinery/light{ @@ -108876,20 +108954,61 @@ /obj/item/hullbeacon/red, /turf/simulated/open/airless, /area/horizon/exterior) -"pCU" = ( -/obj/effect/floor_decal/corner_wide/green{ - dir = 6 +"pCH" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 }, -/obj/structure/disposalpipe/trunk{ - dir = 8 +/obj/structure/cable/orange{ + icon_state = "4-8" }, -/obj/machinery/camera/network/medbay{ - c_tag = "Medical - Entrance"; - dir = 8 +/obj/effect/floor_decal/corner_wide/yellow{ + dir = 10 }, -/obj/machinery/disposal/small/north, -/turf/simulated/floor/tiled/white, -/area/medical/gen_treatment) +/turf/simulated/floor/tiled, +/area/horizon/engineering/bluespace_drive) +"pCI" = ( +/obj/machinery/light/floor{ + dir = 1 + }, +/obj/structure/platform/ledge, +/turf/simulated/floor/carpet/rubber, +/area/horizon/rnd/telesci) +"pCJ" = ( +/obj/machinery/camera/network/engineering{ + c_tag = "Engineering - Deck 2 - Starboard Pod Substation"; + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/maintenance/substation/wing_port) +"pCL" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume, +/obj/effect/map_effect/marker/airlock{ + frequency = 2005; + master_tag = "airlock_horizon_deck_2_aft_sm"; + name = "airlock_horizon_deck_2_aft_sm" + }, +/turf/simulated/floor/plating, +/area/horizon/engineering/reactor/supermatter/airlock) +"pCQ" = ( +/obj/machinery/atmospherics/binary/pump{ + dir = 8; + name = "Nitrous Oxide to Connector" + }, +/turf/simulated/floor/plating, +/area/horizon/engineering/atmos/air) +"pCS" = ( +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/effect/floor_decal/corner/dark_blue{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/command/bridge/controlroom) "pCY" = ( /obj/effect/floor_decal/industrial/warning, /obj/effect/floor_decal/industrial/warning/corner{ @@ -108976,6 +109095,39 @@ }, /turf/unsimulated/floor, /area/centcom/spawning) +"pDk" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Xenobotany Maintenance"; + req_access = list(52) + }, +/obj/machinery/door/firedoor, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/structure/plasticflaps/airtight, +/turf/simulated/floor/tiled, +/area/horizon/rnd/xenobiology/xenoflora) +"pDl" = ( +/obj/machinery/atmospherics/pipe/simple/visible/universal{ + dir = 8 + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/wing/starboard/far) +"pDm" = ( +/obj/machinery/washing_machine, +/obj/effect/floor_decal/corner/dark_green{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/horizon/crew/fitness/changing) +"pDo" = ( +/obj/machinery/hologram/holopad, +/obj/effect/floor_decal/corner/mauve/diagonal, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/lab) "pDq" = ( /obj/machinery/button/remote/blast_door{ dir = 4; @@ -108994,131 +109146,40 @@ }, /turf/unsimulated/floor, /area/centcom/legion/hangar5) -"pDs" = ( -/obj/machinery/atmospherics/unary/outlet_injector{ - dir = 4; - frequency = 1439; - id = "cooling_in"; - name = "Reactor Coolant Injector"; - pixel_y = 1; - power_rating = 30000; - use_power = 1; - volume_rate = 700 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/reinforced/reactor, -/area/engineering/engine_room) -"pDw" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 8 - }, -/obj/machinery/embedded_controller/radio/airlock/airlock_controller{ - dir = 8; - pixel_x = 20 - }, -/obj/effect/map_effect/marker/airlock{ - frequency = 2001; - master_tag = "airlock_horizon_deck_2_starboard_aft"; - name = "airlock_horizon_deck_2_starboard_aft" - }, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard) -"pDC" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/effect/floor_decal/spline/plain/lime{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/horizon/hydroponics/garden) -"pDD" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, +"pDv" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/corner/dark_green{ - dir = 8 - }, -/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 - }, +/obj/structure/lattice/catwalk/indoor/grate/dark, /turf/simulated/floor/plating, -/area/shuttle/mining) -"pDH" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/area/horizon/maintenance/deck_1/hangar/starboard) +"pDx" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 }, -/turf/simulated/floor/tiled/dark/full, -/area/operations/lower/machinist) -"pDI" = ( -/obj/structure/disposalpipe/junction{ - dir = 8; - icon_state = "pipe-j2" +/obj/machinery/door/blast/regular{ + dir = 4; + id = "r-ust_vent"; + name = "INDRA Reactor Vent" }, -/turf/simulated/floor/tiled/full, -/area/bridge/upperdeck) -"pDJ" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 +/turf/simulated/floor/reinforced/airless, +/area/horizon/engineering/reactor/indra/mainchamber) +"pDA" = ( +/obj/structure/cable/green{ + icon_state = "2-4" }, -/obj/effect/floor_decal/corner_wide/green{ - dir = 9 - }, -/obj/machinery/alarm/west, -/turf/simulated/floor/tiled/white, -/area/hallway/medical/upper) -"pDK" = ( -/obj/effect/floor_decal/corner/dark_blue{ +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 10 }, -/obj/structure/platform{ - dir = 4 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 }, -/obj/structure/platform, -/obj/structure/platform_deco{ - dir = 5; - pixel_y = -1 - }, -/obj/machinery/camera/network/command{ - c_tag = "Bridge - Atrium Center"; - dir = 4 - }, -/obj/machinery/disposal/small/south{ - pixel_y = 3 - }, -/obj/structure/disposalpipe/trunk, -/turf/simulated/floor/tiled, -/area/bridge) +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled/full, +/area/horizon/engineering/reactor/supermatter/airlock) +"pDK" = ( +/turf/simulated/wall/r_wall, +/area/horizon/stairwell/starboard/deck_3) "pDL" = ( /obj/machinery/vending/hydronutrients, /obj/effect/floor_decal/corner/dark_blue{ @@ -109127,92 +109188,83 @@ /obj/effect/floor_decal/industrial/hatch/grey, /turf/simulated/floor/tiled, /area/horizon/security/brig) -"pDP" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 1 +"pDQ" = ( +/obj/effect/floor_decal/industrial/warning/cee{ + dir = 8 }, -/obj/structure/bed/stool/chair/office/bridge/generic{ - dir = 1 +/obj/machinery/atmospherics/pipe/simple/visible/universal{ + dir = 4 + }, +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor/plating, +/area/horizon/hallway/primary/deck_3/starboard/docks) +"pDS" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/lattice/catwalk/indoor/grate/damaged{ + color = "#4c535b" + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/wing/starboard) +"pDU" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" }, /obj/structure/cable/green{ icon_state = "2-4" }, -/obj/machinery/button/remote/blast_door{ - desc = "A remote control-switch for shutters."; - dir = 1; - id = "hop_office_desk"; - name = "Desk Privacy Shutter"; - pixel_x = -26; - pixel_y = 8 +/turf/simulated/floor/tiled/full, +/area/horizon/hallway/primary/deck_2/starboard) +"pDY" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 }, -/obj/machinery/button/switch/windowtint{ - dir = 1; - id = "XO"; - pixel_x = -41; - pixel_y = -5 - }, -/obj/machinery/light_switch{ - dir = 1; - pixel_x = -32; - pixel_y = -5 - }, -/obj/machinery/button/remote/airlock{ - desc = "A remote control-switch for the command foyer doors."; - dir = 1; - id = "command_foyer"; - name = "Bridge Door Control"; - pixel_x = -39; - pixel_y = 8; - req_access = list(57) - }, -/obj/machinery/computer/security/telescreen{ - name = "Access Monitor"; - network = list("XO_Office"); - pixel_y = 24; - pixel_x = -32 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/heads/hop/xo) -"pDT" = ( -/obj/effect/floor_decal/corner/brown{ - dir = 10 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 }, /obj/structure/cable/green{ - icon_state = "1-2" + icon_state = "2-4" }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/sortjunction/flipped{ - name = "Operations"; - sortType = "Cargo" +/obj/effect/floor_decal/corner/dark_green/diagonal, +/obj/effect/floor_decal/spline/plain, +/obj/effect/floor_decal/spline/plain/purple{ + dir = 1 }, /turf/simulated/floor/tiled, -/area/operations/office) -"pDV" = ( -/obj/machinery/door/airlock/maintenance{ - dir = 4; - name = "Xenobotany Maintenance"; - req_access = list(52) - }, -/obj/machinery/door/firedoor{ +/area/horizon/service/hydroponics) +"pDZ" = ( +/obj/item/modular_computer/console/preset/command{ dir = 4 }, /obj/effect/floor_decal/industrial/hatch/yellow, -/obj/structure/plasticflaps/airtight{ - dir = 4 +/obj/machinery/requests_console/west{ + announcementConsole = 1; + department = "Operations Manager"; + departmentType = 5; + name = "Operations Manager Request Console" }, -/turf/simulated/floor/tiled/dark/full, -/area/rnd/xenobiology/xenoflora) -"pDW" = ( -/obj/machinery/door/blast/shutters{ - dir = 2; - id = "cargo_desk" +/turf/simulated/floor/tiled/full, +/area/horizon/command/heads/om) +"pEa" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 1 }, -/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, -/turf/simulated/floor/tiled/dark/full, -/area/operations/office) +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/dark, +/area/horizon/shuttle/mining) "pEb" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -109220,37 +109272,51 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled/dark, -/area/outpost/research/anomaly_storage) -"pEl" = ( -/obj/effect/floor_decal/corner/white{ - dir = 5 +/area/horizon/rnd/xenoarch/anomaly_storage) +"pEc" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 9 }, +/obj/machinery/alarm/west, /turf/simulated/floor/tiled/dark, -/area/storage/eva) -"pEo" = ( -/obj/machinery/light/small/emergency{ +/area/horizon/storage/eva) +"pEd" = ( +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/starboard) +"pEr" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/railing/mapped{ dir = 8 }, -/obj/machinery/atmospherics/unary/vent_pump/high_volume, -/obj/effect/map_effect/marker/airlock/docking{ - landmark_tag = "nav_horizon_dock_deck_3_port_2"; - master_tag = "airlock_horizon_dock_deck_3_port_2"; - name = "airlock_horizon_dock_deck_3_port_2" +/obj/structure/railing/mapped{ + dir = 1 }, /turf/simulated/floor/plating, -/area/horizon/hallway/deck_three/primary/port/docks) -"pEv" = ( -/obj/structure/table/wood, -/obj/item/reagent_containers/glass/beaker/teapot{ - pixel_x = 2; - pixel_y = 7 - }, -/turf/simulated/floor/wood, -/area/maintenance/wing/starboard) +/area/horizon/maintenance/deck_2/wing/port/near) "pEz" = ( /obj/effect/shuttle_landmark/horizon/exterior/deck_2/fore, /turf/template_noop, /area/template_noop) +"pEA" = ( +/obj/structure/closet/crate/software_backup, +/obj/effect/floor_decal/corner_wide/blue{ + dir = 9 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/sign/nosmoking_1{ + pixel_x = -32 + }, +/obj/machinery/camera/motion{ + c_tag = "Secure Technical Storage"; + dir = 4; + network = list("Command","Security","Engineering") + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/storage/tech) "pEB" = ( /obj/effect/floor_decal/corner/beige/diagonal, /obj/machinery/atmospherics/unary/vent_pump/on{ @@ -109258,64 +109324,38 @@ }, /turf/simulated/floor/tiled/white, /area/horizon/security/forensic_laboratory) -"pEF" = ( -/obj/machinery/space_heater, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenoarch_storage) +"pED" = ( +/obj/machinery/button/switch/crematorium{ + _wifi_id = "xenobio_crema"; + dir = 8; + pixel_x = -20; + pixel_y = 34; + req_access = null + }, +/obj/effect/floor_decal/corner/mauve{ + dir = 9 + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled, +/area/horizon/rnd/xenobiology) "pEG" = ( /obj/machinery/vending/cola, /turf/unsimulated/floor{ icon_state = "dark_preview" }, /area/centcom/holding) -"pEH" = ( -/obj/structure/shuttle_part/scc/scout{ - icon_state = "7,7" +"pEK" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction{ + dir = 4 }, -/obj/structure/shuttle_part/scc/scout{ - icon_state = "8,7"; - pixel_x = 32 - }, -/obj/item/hullbeacon/red{ - pixel_x = 10; - pixel_y = 8 - }, -/turf/simulated/floor/plating, -/area/shuttle/canary) +/turf/simulated/floor/reinforced/airless, +/area/horizon/engineering/atmos/propulsion/starboard) "pEM" = ( /obj/structure/table/wood, /turf/simulated/floor/holofloor/beach/sand{ icon_state = "desert4" }, /area/horizon/holodeck/source_beach) -"pEO" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/effect/floor_decal/corner/black{ - dir = 6 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/hangar/intrepid) -"pEQ" = ( -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/engine_room) -"pET" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/closet/crate, -/turf/simulated/floor/plating, -/area/maintenance/wing/port) "pEY" = ( /obj/machinery/light{ dir = 4 @@ -109332,44 +109372,64 @@ }, /turf/simulated/floor/tiled, /area/horizon/security/brig) -"pFa" = ( -/obj/machinery/door/airlock/glass_command{ - dir = 1; - id_tag = "bridge_foyer"; - name = "Bridge"; - req_one_access = list(19) +"pFb" = ( +/obj/machinery/chemical_dispenser/coffeemaster/full{ + pixel_x = -18; + pixel_y = 16 }, -/obj/effect/map_effect/door_helper/unres, -/obj/machinery/door/firedoor{ - dir = 4 +/obj/machinery/vending/dinnerware/bar{ + pixel_y = 16; + pixel_x = 4 }, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "bridge blast"; - name = "Bridge Blast Doors"; - opacity = 0 - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled, -/area/bridge/controlroom) -"pFc" = ( -/obj/effect/floor_decal/corner/brown/full{ +/obj/structure/table/stone/marble, +/turf/simulated/floor/tiled/dark, +/area/horizon/service/bar) +"pFj" = ( +/obj/machinery/light{ dir = 1 }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/horizon/commissary) -"pFp" = ( -/obj/effect/floor_decal/industrial/warning{ +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/corner_wide/purple/full{ + dir = 8 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/xenoarch/atrium) +"pFs" = ( +/turf/simulated/floor/wood, +/area/horizon/maintenance/deck_2/wing/port) +"pFt" = ( +/obj/machinery/firealarm/east, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ dir = 9 }, -/obj/random/junk, -/turf/simulated/floor/plating, -/area/maintenance/research_port) +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/structure/bed/handrail{ + dir = 8 + }, +/obj/machinery/alarm/south{ + req_one_access = list(11, 24, 47, 65) + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/shuttle/intrepid/engineering) "pFx" = ( /obj/structure/window/reinforced/crescent{ dir = 1 @@ -109382,18 +109442,22 @@ }, /turf/simulated/floor/grass/no_edge, /area/centcom/spawning) -"pFA" = ( -/obj/effect/floor_decal/spline/plain, -/obj/effect/floor_decal/spline/plain/corner{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/black, -/obj/effect/floor_decal/spline/plain/corner{ +"pFz" = ( +/obj/structure/table/wood, +/obj/effect/floor_decal/corner/white/diagonal, +/obj/effect/floor_decal/spline/plain{ dir = 4 }, -/obj/machinery/light, -/turf/simulated/floor/carpet/rubber, -/area/tcommsat/chamber) +/obj/random/pottedplant_small{ + pixel_x = -5; + pixel_y = 6 + }, +/obj/machinery/power/outlet{ + pixel_y = 3; + pixel_x = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/hallway/primary/deck_3/central) "pFH" = ( /obj/machinery/ringer_button{ id = "investigation_ringer"; @@ -109419,136 +109483,81 @@ }, /turf/simulated/floor/holofloor/wood, /area/horizon/holodeck/source_battlemonsters) -"pFK" = ( -/obj/structure/window/shuttle/scc_space_ship, -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/visible/purple, -/turf/simulated/floor/plating, -/area/engineering/atmos) -"pFP" = ( -/obj/structure/lattice/catwalk, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/machinery/disposal/deliveryChute{ - dir = 4 - }, -/turf/template_noop, -/area/template_noop) -"pFR" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/effect/floor_decal/corner/brown{ - dir = 9 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/intrepid/starboard_compartment) -"pFT" = ( -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/structure/railing/mapped, -/obj/structure/railing/mapped{ - dir = 4 - }, -/turf/simulated/open, -/area/maintenance/wing/starboard) -"pFX" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/lattice/catwalk/indoor/grate, -/turf/simulated/floor/plating, -/area/hallway/primary/central_two) -"pFY" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/horizon/maintenance/deck_two/fore/port) -"pGc" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, +"pFL" = ( /obj/structure/cable{ - icon_state = "4-8" + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/lattice/catwalk/indoor/grate/damaged{ + color = "#4c535b" + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/starboard/near) +"pGe" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/port/nacelle) +"pGf" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/reactor/indra/mainchamber) +"pGg" = ( +/obj/item/paper_bin, +/obj/item/pen, +/obj/item/book/manual/wiki/ntsl2, +/obj/item/clothing/suit/storage/hooded/wintercoat/engineering/atmos, +/obj/item/clothing/suit/storage/hooded/wintercoat/engineering/atmos, +/obj/effect/floor_decal/spline/plain{ + dir = 10 + }, +/obj/structure/table/standard, +/turf/simulated/floor/carpet/rubber, +/area/horizon/tcommsat/entrance) +"pGm" = ( +/obj/structure/tank_wall{ + icon_state = "m-3" }, /obj/effect/floor_decal/industrial/warning{ dir = 1 }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - icon_state = "pipe-c" - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, /turf/simulated/floor/plating, -/area/maintenance/wing/starboard/deck1) -"pGn" = ( -/obj/structure/foamedmetal, -/obj/structure/shuttle_part/scc_space_ship{ - icon_state = "d2-1-f" +/area/horizon/engineering/atmos) +"pGq" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 }, -/turf/simulated/floor/plating, -/area/maintenance/wing/port) -"pGs" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/button/remote/blast_door{ - dir = 8; - id = "warehouse1"; - name = "Warehouse Shutter"; - pixel_x = -22; - pixel_y = -28 - }, -/obj/effect/floor_decal/corner/brown{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/operations/storage) +/obj/structure/railing/mapped, +/obj/structure/table/reinforced/steel, +/turf/simulated/floor/carpet/rubber, +/area/horizon/command/bridge/controlroom) "pGu" = ( /obj/effect/floor_decal/carpet, /turf/simulated/floor/holofloor/carpet, /area/horizon/holodeck/source_biesel) -"pGy" = ( -/obj/structure/anomaly_container, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/reinforced, -/area/rnd/isolation_a) -"pGA" = ( -/obj/effect/floor_decal/corner_wide/yellow/full{ - dir = 1 - }, -/obj/machinery/alarm/north, +"pGB" = ( /obj/structure/cable/green{ - icon_state = "2-4" + icon_state = "1-2" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/corner/dark_blue{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled, -/area/engineering/bluespace_drive) -"pGC" = ( -/obj/structure/stairs/west, -/obj/structure/railing/mapped, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard/deck1) +/area/horizon/hangar/intrepid) "pGG" = ( /obj/machinery/door/airlock/hatch{ dir = 4; @@ -109572,21 +109581,46 @@ /obj/effect/floor_decal/industrial/warning, /turf/simulated/floor/tiled/dark, /area/shuttle/mercenary) -"pGP" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 9 +"pGO" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 }, -/turf/simulated/wall/shuttle/scc, -/area/shuttle/intrepid/port_storage) -"pGU" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 10 +/obj/structure/cable/green{ + icon_state = "4-8" }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 +/turf/simulated/floor/wood, +/area/horizon/medical/psych) +"pGS" = ( +/obj/effect/map_effect/window_spawner/full/reinforced/polarized/grille/firedoor{ + id = "cap" }, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/port/docks) +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id = "bridge blast"; + name = "Bridge Blast Doors"; + opacity = 0 + }, +/obj/structure/cable/green{ + icon_state = "0-8" + }, +/turf/simulated/floor, +/area/horizon/command/heads/captain) +"pGX" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/storage/eva/expedition) +"pHa" = ( +/obj/machinery/suit_storage_unit/standard_unit, +/obj/effect/floor_decal/corner/dark_blue/full{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/dark, +/area/horizon/command/teleporter) "pHb" = ( /obj/effect/floor_decal/corner/brown{ dir = 10 @@ -109595,10 +109629,21 @@ /obj/machinery/light/floor, /turf/simulated/floor/tiled/dark, /area/horizon/holodeck_control) -"pHg" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/carpet/rubber, -/area/rnd/lab) +"pHc" = ( +/obj/machinery/door/firedoor, +/obj/structure/table/reinforced{ + req_access = list(33) + }, +/obj/machinery/door/blast/shutters{ + id = "CHE3shutters"; + name = "Pharmacy Desk Shutter" + }, +/obj/machinery/door/window/desk/southright{ + name = "Pharmacy Desk"; + req_access = list(33) + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/medical/pharmacy) "pHk" = ( /obj/structure/table/wood, /obj/item/paper_bin{ @@ -109609,17 +109654,13 @@ }, /turf/simulated/floor/carpet, /area/horizon/security/investigators_office) -"pHm" = ( -/obj/structure/table/reinforced/steel, -/obj/machinery/door/window/westright{ - req_one_access = list(26,29,31,48,67,35,25,28,37) +"pHl" = ( +/obj/structure/cable/green{ + icon_state = "0-8" }, -/obj/machinery/door/blast/shutters{ - dir = 4; - id = "horizon_commissary_desk" - }, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/commissary) +/obj/machinery/power/apc/north, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/operations/starboard) "pHq" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -109630,6 +109671,14 @@ /obj/machinery/alarm/south, /turf/simulated/floor/tiled, /area/horizon/security/hallway) +"pHv" = ( +/obj/machinery/door/firedoor, +/obj/effect/floor_decal/corner_wide/green{ + dir = 9 + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/icu) "pHx" = ( /obj/effect/floor_decal/corner/red{ dir = 6 @@ -109642,43 +109691,41 @@ icon_state = "dark_preview" }, /area/centcom/holding) -"pHy" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/effect/floor_decal/industrial/loading/grey, -/obj/effect/shuttle_landmark/supply/horizon/dock{ - dir = 1 +"pHz" = ( +/obj/structure/table/reinforced/steel, +/obj/machinery/button/remote/blast_door{ + dir = 1; + id = "r_ust_core_blast"; + name = "INDRA Reactor Core Blast Doors"; + pixel_x = -6; + pixel_y = 7 }, -/turf/simulated/floor/tiled, -/area/hangar/operations) +/obj/machinery/button/remote/blast_door{ + dir = 1; + id = "r-ust_monitoring_blast"; + name = "INDRA Reactor Monitoring Blast Doors"; + pixel_x = 6; + pixel_y = 7 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/reactor/indra/monitoring) +"pHE" = ( +/obj/effect/floor_decal/spline/plain, +/obj/structure/table/reinforced/steel, +/obj/item/storage/toolbox/electrical{ + pixel_y = 8 + }, +/obj/item/storage/toolbox/mechanical{ + pixel_y = 1 + }, +/turf/simulated/floor/carpet/rubber, +/area/horizon/engineering/bluespace_drive/monitoring) "pHF" = ( /turf/unsimulated/floor/wood, /area/centcom/holding) -"pHI" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/aux, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/maintenance/engineering) -"pHJ" = ( -/obj/structure/cable/orange{ - icon_state = "0-4" - }, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 8 - }, -/obj/machinery/power/apc/super/critical/south, -/obj/machinery/power/sensor{ - name = "Powernet Sensor - SM Reactor Containment"; - name_tag = "SM Reactor Containment" - }, -/turf/simulated/floor/plating, -/area/engineering/engine_room) +"pHG" = ( +/turf/simulated/wall/shuttle/scc_space_ship/cardinal, +/area/horizon/maintenance/deck_3/aft/port/far) "pHO" = ( /obj/machinery/door/airlock/highsecurity{ dir = 1; @@ -109691,102 +109738,79 @@ }, /turf/simulated/floor/tiled/dark/full, /area/shuttle/mercenary) -"pHU" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/item/clothing/glasses/safety/goggles, -/obj/structure/window/borosilicate/reinforced{ - dir = 1 - }, -/obj/structure/window/borosilicate/reinforced{ +"pHQ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/turf/simulated/floor/reinforced, -/area/rnd/test_range) -"pHW" = ( -/obj/effect/floor_decal/spline/fancy/wood/cee, -/obj/structure/engineer_maintenance/pipe{ - dir = 4 - }, -/obj/structure/engineer_maintenance/electric, -/turf/simulated/floor/wood, -/area/horizon/security/head_of_security) -"pHZ" = ( -/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, -/turf/simulated/floor/tiled/dark/full, -/area/crew_quarters/heads/hor) -"pIe" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 5 - }, -/obj/structure/cable/green{ - icon_state = "2-4" - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/bluespace_drive) -"pIm" = ( +/turf/simulated/floor/tiled/dark, +/area/horizon/hangar/intrepid) +"pHV" = ( /obj/structure/cable{ icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/hidden/aux, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel, /obj/structure/lattice/catwalk/indoor/grate/dark, /turf/simulated/floor/plating, -/area/maintenance/operations) +/area/horizon/maintenance/deck_1/operations/starboard/far) +"pHY" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/floor_decal/spline/plain{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/carpet/rubber, +/area/horizon/tcommsat/entrance) +"pIb" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/wood, +/area/horizon/repoffice/representative_two) +"pIi" = ( +/obj/structure/bed/stool/chair/padded/brown{ + dir = 8 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/horizon/repoffice/consular_one) "pIp" = ( /obj/effect/floor_decal/spline/plain{ dir = 9 }, /turf/unsimulated/floor, /area/antag/mercenary) -"pIr" = ( -/obj/machinery/atmospherics/pipe/simple/visible/black{ +"pIv" = ( +/obj/effect/floor_decal/industrial/outline/medical, +/obj/structure/closet/secure_closet/personal, +/obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 }, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"pIu" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, +/turf/simulated/floor/tiled/full, +/area/horizon/medical/washroom) +"pIx" = ( +/turf/simulated/wall/r_wall, +/area/horizon/engineering/lobby) +"pIz" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/corner/brown{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/operations/office) -"pIy" = ( -/obj/machinery/camera/network/first_deck{ - c_tag = "First Deck - Hangar Entrance"; - dir = 1 - }, -/obj/structure/bed/stool/chair/padded/brown{ - dir = 8 - }, -/obj/effect/floor_decal/spline/fancy/wood/cee{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/hallway/primary/aft) -"pIC" = ( -/obj/structure/cable/green{ +/obj/structure/cable{ icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/corner/brown/diagonal, -/turf/simulated/floor/tiled/dark, -/area/outpost/mining_main/eva) +/obj/random/junk, +/obj/machinery/atmospherics/pipe/simple/hidden/aux, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/operations/starboard/amidships) +"pIF" = ( +/turf/simulated/wall, +/area/horizon/service/chapel/main) "pIG" = ( /obj/structure/bed, /obj/item/bedsheet/black, @@ -109795,6 +109819,55 @@ icon_state = "wood" }, /area/centcom/distress_prep) +"pIM" = ( +/obj/effect/floor_decal/spline/fancy/wood, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/horizon/command/bridge/cciaroom) +"pIO" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor/plating, +/area/horizon/engineering/hallway/fore) +"pIT" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/hydroponics, +/obj/machinery/atmospherics/portables_connector{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark, +/area/horizon/rnd/xenobiology/xenoflora) +"pIV" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/door/airlock/engineering{ + dir = 1; + name = "Deck 2 Research Substation"; + req_one_access = list(11,24) + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/horizon/maintenance/substation/research) +"pIW" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/obj/machinery/alarm/east, +/turf/simulated/floor, +/area/horizon/maintenance/deck_3/aft/starboard/far) "pJc" = ( /obj/item/toy/stressball{ pixel_x = -8 @@ -109804,77 +109877,86 @@ }, /turf/simulated/floor/carpet/magenta, /area/horizon/holodeck/source_cafe) -"pJd" = ( -/obj/effect/floor_decal/corner_wide/blue{ - dir = 1 - }, -/obj/effect/floor_decal/spline/plain/corner{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/engineering/atmos/storage) -"pJm" = ( -/obj/effect/floor_decal/corner/purple{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/horizon/custodial) -"pJx" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 +"pJi" = ( +/obj/structure/cable{ + icon_state = "1-2" }, /obj/structure/cable/green{ icon_state = "4-8" }, -/obj/machinery/atmospherics/pipe/manifold/visible/yellow, -/turf/simulated/floor/tiled/white, -/area/rnd/isolation_c) -"pJB" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/white, -/area/medical/ors) -"pJC" = ( -/obj/effect/floor_decal/corner/purple/full{ - dir = 1 - }, -/obj/machinery/light_switch{ - dir = 1; - pixel_x = -7; - pixel_y = 24 - }, -/obj/item/reagent_containers/glass/bucket, -/obj/structure/sink{ - dir = 1; - pixel_x = 8; - pixel_y = 26 - }, -/obj/effect/floor_decal/industrial/outline/custodial, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/firealarm/east, -/obj/structure/janitorialcart{ - dir = 4 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor/plating, +/area/horizon/engineering/hallway/interior) +"pJn" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 5 }, /turf/simulated/floor/tiled, -/area/horizon/custodial/auxiliary) -"pJF" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume, -/obj/effect/map_effect/marker/airlock{ - frequency = 2005; - master_tag = "airlock_horizon_deck_2_aft_sm"; - name = "airlock_horizon_deck_2_aft_sm" +/area/horizon/hallway/primary/deck_3/starboard/docks) +"pJo" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/horizon/rnd/xenobiology/xenoflora) +"pJs" = ( +/obj/effect/floor_decal/industrial/hatch/red, +/obj/machinery/portable_atmospherics/canister/phoron, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/bluespace_drive) +"pJt" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/black{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/reactor/supermatter/waste) +"pJz" = ( +/obj/effect/floor_decal/industrial/warning/full, +/obj/machinery/porta_turret, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/storage/secure) +"pJA" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/obj/structure/trash_pile, /turf/simulated/floor/plating, -/area/engineering/engine_room) +/area/horizon/maintenance/deck_2/cargo_compartment) +"pJD" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 9 + }, +/obj/machinery/button/remote/blast_door{ + desc = "A remote control-switch for the engine control room blast doors."; + dir = 8; + id = "EngineEmitterPortWest"; + name = "Supermatter Reactor Room Blast Doors"; + pixel_x = -24; + req_one_access = list(11,24) + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/reactor/supermatter/waste) +"pJG" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor, +/area/horizon/maintenance/deck_3/aft/port/far) "pJI" = ( /obj/effect/floor_decal/corner/red{ dir = 9 @@ -109883,46 +109965,45 @@ /obj/item/device/versebook/tribunal, /turf/simulated/floor/marble/dark, /area/horizon/holodeck/source_tribunal) -"pJO" = ( -/turf/simulated/wall, -/area/maintenance/wing/port/far) -"pJV" = ( -/obj/machinery/door/firedoor, -/obj/effect/floor_decal/industrial/hatch_door/red{ - dir = 1 +"pJL" = ( +/obj/machinery/atmospherics/binary/pump{ + dir = 4; + name = "Air to Mix" }, -/obj/machinery/door/airlock/maintenance_hatch{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/maintenance/wing/port/far) -"pJW" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ +/turf/simulated/floor/plating, +/area/horizon/engineering/atmos/air) +"pJS" = ( +/obj/effect/floor_decal/corner_wide/purple{ dir = 5 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/engineering/storage_eva) -"pJX" = ( -/obj/structure/cable/green{ - icon_state = "0-8" +/obj/effect/floor_decal/corner_wide/purple{ + dir = 8 }, -/obj/machinery/shieldwallgen, -/obj/effect/floor_decal/industrial/outline/security, -/turf/simulated/floor/plating, -/area/engineering/bluespace_drive) -"pKc" = ( -/obj/effect/floor_decal/corner/yellow{ +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/xenoarch/atrium) +"pKe" = ( +/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/horizon/rnd/xenoarch/spectrometry) +"pKf" = ( +/obj/effect/floor_decal/corner/dark_green{ dir = 9 }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/atmospherics/omni/filter{ - tag_east = 2; - tag_north = 1; - tag_south = 8 +/obj/structure/cable/green{ + icon_state = "1-2" }, -/turf/simulated/floor/tiled/dark, -/area/engineering/engine_waste) +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_3/central) "pKg" = ( /obj/effect/decal/fake_object{ icon = 'icons/obj/doors/rapid_pdoor.dmi'; @@ -109932,28 +110013,68 @@ /obj/effect/floor_decal/industrial/hatch/yellow, /turf/unsimulated/floor, /area/antag/mercenary) -"pKi" = ( -/obj/effect/floor_decal/corner/red/diagonal, -/obj/effect/floor_decal/industrial/warning{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/maintenance/wing/port) -"pKl" = ( +"pKj" = ( +/obj/structure/disposalpipe/segment, /obj/structure/cable/green{ icon_state = "1-2" }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/corner/dark_green{ + dir = 5 }, /turf/simulated/floor/tiled, -/area/bridge/upperdeck) +/area/horizon/hangar/intrepid) +"pKm" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 7 + }, +/obj/structure/bed/stool/chair/padded/beige, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/wood, +/area/horizon/command/heads/captain) +"pKn" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_3/port) "pKo" = ( /obj/structure/shuttle_part/mercenary/small{ icon_state = "8,4" }, /turf/unsimulated/floor/plating, /area/shuttle/syndicate_elite) +"pKp" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/blast/shutters{ + dir = 4; + id = "engineering_storage"; + name = "Engineering Hard Storage" + }, +/turf/simulated/floor/tiled/full, +/area/horizon/engineering/storage_hard) +"pKq" = ( +/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/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/horizon/hangar/intrepid) "pKx" = ( /turf/simulated/wall/shuttle/unique/tcfl{ icon_state = "1,6" @@ -109969,75 +110090,156 @@ }, /turf/simulated/floor/exoplanet/snow, /area/centcom/shared_dream) -"pKI" = ( +"pKB" = ( +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/effect/floor_decal/corner/black{ + dir = 9 + }, /obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/loading/yellow{ dir = 1 }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/camera/network/research{ - c_tag = "Research - Isolation C"; - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ +/turf/simulated/floor/tiled/dark, +/area/horizon/hangar/intrepid) +"pKF" = ( +/obj/effect/floor_decal/corner/mauve/diagonal, +/obj/machinery/light{ dir = 4 }, -/obj/machinery/alarm/south{ - alarm_id = 1501; - breach_detection = 0; - name = "Isolation A"; - rcon_setting = 3; - report_danger_level = 0; - req_one_access = list(7,47,24,11) - }, -/turf/simulated/floor/tiled/white, -/area/rnd/isolation_a) +/turf/simulated/floor/tiled, +/area/horizon/rnd/xenobiology) "pKK" = ( /obj/structure/lattice/catwalk, /turf/simulated/floor/reinforced/airless, /area/horizon/exterior) -"pKT" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 1 +"pKO" = ( +/obj/effect/floor_decal/corner_wide/green{ + dir = 6 }, -/obj/effect/floor_decal/spline/fancy/wood/corner{ +/obj/structure/closet/crate, +/obj/item/cane/crutch, +/obj/item/cane/crutch, +/obj/item/cane/crutch, +/obj/item/cane/crutch, +/obj/item/cane, +/obj/item/cane, +/obj/item/storage/box/rxglasses, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/main_storage) +"pKQ" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/turf/simulated/floor/plating, +/area/horizon/hangar/auxiliary) +"pKR" = ( +/obj/effect/floor_decal/corner/yellow, +/obj/effect/floor_decal/corner/dark_blue{ dir = 8 }, +/obj/structure/dispenser, +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/atmos) +"pKU" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/turf/simulated/floor/plating, +/area/horizon/hangar/auxiliary) +"pKW" = ( /obj/structure/cable/green{ icon_state = "1-2" }, -/obj/structure/cable/green{ - icon_state = "1-4" +/turf/simulated/floor/tiled, +/area/horizon/engineering/lobby) +"pLa" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/wood, -/area/bridge/meeting_room) -"pLc" = ( -/obj/effect/floor_decal/industrial/hatch/red, /obj/effect/floor_decal/industrial/warning{ - dir = 6 + dir = 4 }, /turf/simulated/floor/tiled/dark/full, -/area/horizon/custodial/disposals) -"pLq" = ( -/obj/structure/shuttle_part/scc/scout{ - icon_state = "3,11" +/area/horizon/engineering/reactor/indra/mainchamber) +"pLk" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/simulated/floor/plating, -/area/shuttle/canary) -"pLA" = ( -/obj/structure/sign/staff_only{ - pixel_x = -32 +/obj/machinery/vending/dinnerware/plastic{ + density = 0; + pixel_x = 10; + pixel_y = 24 }, -/obj/effect/floor_decal/industrial/warning{ - dir = 6 +/obj/machinery/camera/network/service{ + c_tag = "Dinner - Kitchen Service"; + pixel_x = 5 }, -/obj/random/loot, -/obj/structure/reagent_dispensers/watertank, -/turf/simulated/floor, -/area/horizon/maintenance/deck_three/aft/starboard) +/turf/simulated/floor/lino, +/area/horizon/service/dining_hall) +"pLr" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/full, +/area/horizon/hallway/primary/deck_3/port) +"pLs" = ( +/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_wide/green{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/hallway) +"pLx" = ( +/obj/effect/floor_decal/corner_wide/yellow{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/horizon/engineering/hallway/interior) +"pLy" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 1 + }, +/obj/effect/floor_decal/corner/dark_green/full, +/turf/simulated/floor/tiled, +/area/horizon/security/checkpoint2) +"pLB" = ( +/obj/effect/floor_decal/corner_wide/yellow{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/horizon/engineering/hallway/aft) +"pLH" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/obj/structure/bed/stool/chair/padded/beige{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/horizon/service/bar) "pLN" = ( /obj/machinery/door/airlock/glass_security{ dir = 1; @@ -110047,166 +110249,74 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/tiled/full, /area/horizon/security/evidence_storage) -"pLR" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" +"pLQ" = ( +/obj/effect/floor_decal/corner/lime/full{ + dir = 8 }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/simulated/floor/lino, -/area/horizon/crew_quarters/lounge/bar) -"pLU" = ( -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/maintenance/wing/port/deck1) -"pLV" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/fuel, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/shuttle/intrepid/port_compartment) -"pMd" = ( -/obj/structure/table/standard, -/obj/item/autopsy_scanner{ - pixel_x = -11 - }, -/obj/item/device/mass_spectrometer{ - pixel_x = 10 - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology/dissection) -"pMj" = ( -/obj/effect/floor_decal/corner/dark_green{ +/obj/structure/platform_deco{ dir = 1 }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"pMl" = ( -/obj/effect/floor_decal/corner/yellow{ - dir = 10 +/turf/simulated/floor/tiled/white{ + name = "cooled white floor"; + temperature = 278.15 }, -/turf/simulated/floor/tiled, -/area/engineering/rust_office) -"pMm" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/corner/dark_green{ - dir = 10 +/area/horizon/medical/morgue) +"pLW" = ( +/obj/structure/table/reinforced/steel, +/obj/random/pottedplant_small{ + pixel_x = -9; + pixel_y = 11 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - icon_state = "1-2" +/obj/machinery/reagentgrinder{ + pixel_x = 4; + pixel_y = 11 }, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/port) -"pMn" = ( -/obj/structure/bed/stool/chair/padded/brown{ +/turf/simulated/floor/tiled/dark/full, +/area/horizon/service/hydroponics/lower) +"pLX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/machinery/ringer/north{ - department = "XO office"; - id = "xo_ringer"; - pixel_y = 30; - req_access = null; - req_one_access = list(57) +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 }, -/turf/simulated/floor/carpet, -/area/crew_quarters/heads/hop/xo) -"pMo" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/structure/platform, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/obj/structure/engineer_maintenance/electric/wall, +/turf/simulated/floor/tiled, +/area/horizon/command/bridge/upperdeck) +"pMi" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/table/standard, +/turf/simulated/floor/tiled/dark, +/area/horizon/rnd/xenobiology/xenoflora) +"pMv" = ( /obj/effect/floor_decal/industrial/warning{ dir = 1 }, -/obj/structure/tank_wall/nitrous_oxide{ - icon_state = "h3" - }, /turf/simulated/floor/plating, -/area/engineering/atmos/air) -"pMp" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/cable/green{ - icon_state = "2-4" - }, -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/obj/structure/engineer_maintenance/electric{ - dir = 1 - }, -/obj/structure/engineer_maintenance/pipe{ +/area/horizon/maintenance/deck_2/wing/starboard/far) +"pMw" = ( +/obj/effect/floor_decal/industrial/warning{ dir = 8 }, -/turf/simulated/floor/wood, -/area/lawoffice/consular) -"pMq" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/light/small{ +/obj/machinery/light{ dir = 8 }, -/obj/structure/lattice/catwalk/indoor/grate/dark, /turf/simulated/floor/plating, -/area/engineering/storage/lower) -"pMA" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/hangar/intrepid) -"pME" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, +/area/horizon/hangar/intrepid) +"pMC" = ( /obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/corner/dark_green/full{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/railing/mapped{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/horizon/stairwell/central) -"pMF" = ( -/obj/effect/floor_decal/corner/brown{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/operations/office) +/turf/simulated/floor/tiled/white, +/area/horizon/medical/hallway/upper) "pMH" = ( /obj/effect/floor_decal/corner/dark_blue{ dir = 6 @@ -110225,50 +110335,19 @@ }, /turf/simulated/floor/tiled, /area/horizon/security/hallway) -"pMI" = ( -/obj/machinery/atmospherics/pipe/simple/visible/black{ - dir = 4 +"pMY" = ( +/obj/machinery/door/airlock/external{ + dir = 4; + frequency = 1380; + icon_state = "door_locked"; + id_tag = "escape_pod_2_berth_hatch"; + locked = 1; + name = "Escape Pod"; + req_access = list(13) }, -/obj/effect/map_effect/window_spawner/full/borosilicate/reinforced/firedoor, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/engine_room) -"pMO" = ( -/obj/machinery/firealarm/west, -/obj/structure/closet/secure_closet/xenoarchaeologist{ - req_access = null; - req_one_access = list(7,47) - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenoarch_storage) -"pMR" = ( -/obj/structure/lattice, -/obj/structure/platform/ledge, -/turf/simulated/open, -/area/hallway/primary/central_one) -"pMW" = ( -/obj/random/pottedplant, -/turf/simulated/floor/wood/walnut, -/area/medical/smoking) -"pMX" = ( -/obj/effect/floor_decal/corner/red/diagonal, -/obj/effect/floor_decal/industrial/outline/grey, -/obj/machinery/air_sensor{ - frequency = 1441; - id_tag = "h_sensor" - }, -/obj/effect/decal/fake_object/light_source/invisible, -/turf/simulated/floor/reinforced/hydrogen, -/area/engineering/atmos) -"pMZ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/wood, -/area/medical/psych) +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled, +/area/horizon/hangar/auxiliary) "pNc" = ( /obj/machinery/light/small{ dir = 4 @@ -110290,27 +110369,6 @@ /obj/item/stack/liquidbags/half_full, /turf/simulated/floor/tiled/dark/full, /area/shuttle/skipjack) -"pNf" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/hatch{ - dir = 4; - icon_state = "door_locked"; - id_tag = "compactor_access"; - locked = 1; - name = "Compactor Access"; - req_one_access = list(26,67); - secured_wires = 1 - }, -/obj/effect/floor_decal/industrial/hatch/red, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/custodial/disposals) -"pNg" = ( -/obj/structure/bed/stool/chair{ - dir = 4 - }, -/obj/effect/floor_decal/spline/fancy/wood/cee, -/turf/simulated/floor/wood, -/area/bridge/upperdeck) "pNh" = ( /obj/structure/cable/green{ icon_state = "1-2" @@ -110332,70 +110390,38 @@ }, /turf/simulated/floor/tiled, /area/horizon/security/office) +"pNi" = ( +/turf/simulated/wall, +/area/horizon/service/hydroponics/lower) "pNk" = ( /obj/effect/floor_decal/spline/fancy/wood/corner{ dir = 4 }, /turf/unsimulated/floor/wood, /area/centcom/bar) -"pNl" = ( +"pNs" = ( /obj/effect/floor_decal/corner/mauve{ - dir = 10 - }, -/obj/machinery/light/floor, -/obj/machinery/alarm/south, -/turf/simulated/floor/tiled/white, -/area/rnd/conference) -"pNv" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/door/airlock/engineering{ - dir = 4; - name = "Deck 2 and 3 Security Substation"; - req_one_access = list(11,24) - }, -/turf/simulated/floor/tiled/full, -/area/maintenance/substation/security) -"pNw" = ( -/obj/effect/floor_decal/corner_wide/green/full, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8" + dir = 5 }, /turf/simulated/floor/tiled/white, -/area/hallway/medical) -"pNy" = ( -/obj/effect/floor_decal/corner/green/diagonal, -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/table/standard, -/obj/item/device/radio/intercom/south, -/turf/simulated/floor/tiled/white, -/area/medical/ward/isolation) -"pND" = ( -/obj/structure/cable/green{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/secure_ammunition_storage) +/area/horizon/rnd/xenobiology/hazardous) +"pNG" = ( +/turf/simulated/wall/shuttle/scc_space_ship/cardinal, +/area/horizon/weapons/longbow) "pNN" = ( /obj/turbolift_map_holder/scc_ship/research, /turf/simulated/floor/plating, /area/turbolift/research/deck_1) +"pNO" = ( +/obj/effect/floor_decal/corner_wide/yellow/full{ + dir = 1 + }, +/obj/machinery/camera/network/engineering{ + c_tag = "Engineering - Hallway 6"; + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/horizon/engineering/hallway/aft) "pNR" = ( /obj/effect/floor_decal/carpet{ dir = 10 @@ -110415,18 +110441,32 @@ }, /turf/unsimulated/floor, /area/centcom/spawning) -"pNU" = ( -/obj/machinery/chemical_dispenser, -/obj/effect/floor_decal/spline/plain/cee{ - dir = 4 +"pNY" = ( +/obj/structure/window/reinforced{ + dir = 4; + maxhealth = 140 }, -/turf/simulated/floor/carpet/rubber, -/area/rnd/xenobiology/xenoflora) -"pOh" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard) +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 5 + }, +/obj/structure/bed/stool/bar/padded/brown, +/turf/simulated/floor/wood, +/area/horizon/command/bridge/upperdeck) +"pOb" = ( +/obj/effect/landmark/entry_point/fore{ + name = "fore, starboard ballast" + }, +/obj/effect/shuttle_landmark/horizon/exterior/sneaky/starboard_nacelle_2{ + dir = 1 + }, +/turf/simulated/wall/shuttle/scc_space_ship/cardinal, +/area/horizon/maintenance/deck_2/wing/port/nacelle) +"pOj" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/full, +/area/horizon/operations/mining_main/refinery) "pOm" = ( /obj/machinery/body_scanconsole{ dir = 4 @@ -110436,23 +110476,6 @@ icon_state = "dark_preview" }, /area/centcom/holding) -"pOp" = ( -/obj/machinery/atmospherics/unary/vent_pump/siphon/on/atmos{ - id_tag = "CO2_out_fuelbay" - }, -/turf/simulated/floor/reinforced/carbon_dioxide, -/area/engineering/atmos) -"pOr" = ( -/obj/random/pottedplant, -/obj/machinery/light{ - dir = 4 - }, -/obj/item/device/radio/intercom/east, -/obj/effect/floor_decal/corner_wide/green/full{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/hallway/medical) "pOs" = ( /obj/effect/floor_decal/industrial/warning{ dir = 4 @@ -110467,6 +110490,23 @@ }, /turf/unsimulated/floor/plating, /area/centcom/specops) +"pOt" = ( +/obj/machinery/light, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/reactor/indra/monitoring) +"pOA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/xenobiology) "pOB" = ( /obj/machinery/light, /obj/effect/floor_decal/corner/paleblue{ @@ -110474,64 +110514,82 @@ }, /turf/unsimulated/floor, /area/centcom/distress_prep) -"pOE" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/structure/cable{ - icon_state = "2-8" +"pOF" = ( +/obj/structure/cable/green{ + icon_state = "4-8" }, -/turf/simulated/floor, -/area/maintenance/engineering_ladder) +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/tiled/full, +/area/horizon/hallway/primary/deck_3/port) "pOG" = ( /turf/simulated/wall/shuttle/unique/mercenary/small{ icon_state = "2,9" }, /area/shuttle/syndicate_elite) -"pOJ" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 1 +"pOK" = ( +/obj/effect/floor_decal/corner_wide/yellow{ + dir = 5 }, -/obj/effect/floor_decal/spline/fancy/wood, -/turf/simulated/floor/wood, -/area/bridge/cciaroom) -"pON" = ( -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/structure/platform/ledge, -/obj/structure/platform/ledge{ - dir = 8 - }, -/obj/structure/platform_deco/ledge{ - dir = 9 - }, -/turf/simulated/open, -/area/hallway/primary/central_one) -"pOO" = ( +/obj/machinery/power/apc/north, /obj/structure/cable/green{ - icon_state = "1-2" + icon_state = "0-4" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/corner/dark_green{ - dir = 6 - }, -/obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled, -/area/hangar/intrepid) +/area/horizon/engineering/hallway/aft) +"pOM" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow, +/turf/simulated/floor/plating, +/area/horizon/engineering/reactor/supermatter/mainchamber) "pOP" = ( /obj/effect/floor_decal/spline/fancy/wood/corner{ dir = 1 }, /turf/simulated/floor/wood/maple, /area/horizon/holodeck/source_cafe) -"pPc" = ( +"pOU" = ( +/obj/structure/cable/green{ + icon_state = "1-4" + }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/bluespace_drive) +"pOX" = ( /obj/structure/cable/green{ - icon_state = "2-4" + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/corner/dark_green{ + dir = 9 }, /turf/simulated/floor/tiled, -/area/storage/primary) +/area/horizon/hangar/intrepid) +"pOZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/platform_stairs/full/south_north_cap, +/obj/structure/platform{ + dir = 4 + }, +/obj/structure/platform{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/command/bridge/controlroom) +"pPa" = ( +/obj/structure/platform, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/vending/zora, +/turf/simulated/floor/tiled/full, +/area/horizon/command/bridge/upperdeck) "pPj" = ( /obj/item/wrench, /obj/item/crowbar, @@ -110547,38 +110605,36 @@ /obj/structure/table/rack, /turf/unsimulated/floor/rubber_carpet, /area/antag/jockey) -"pPp" = ( +"pPv" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/obj/effect/floor_decal/spline/fancy/wood/corner{ + dir = 8 + }, /obj/structure/cable/green{ icon_state = "4-8" }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/obj/effect/floor_decal/corner_wide/green{ - dir = 10 +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 }, -/obj/machinery/light/floor, -/obj/structure/railing/mapped, -/turf/simulated/floor/tiled/white, -/area/hallway/medical/upper) -"pPz" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/vending/zora, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/lobby) -"pPD" = ( -/obj/structure/table/standard, -/obj/item/storage/slimes, -/obj/machinery/recharger, -/obj/item/net_container, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology) +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/wood, +/area/horizon/service/chapel/office) +"pPw" = ( +/obj/structure/kitchenspike, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/freezer{ + name = "cooled tiles"; + temperature = 253.15 + }, +/area/horizon/service/kitchen/freezer) "pPF" = ( /obj/structure/window/reinforced/crescent{ dir = 8 @@ -110605,78 +110661,17 @@ /obj/effect/decal/cleanable/dirt, /turf/unsimulated/floor/wood, /area/antag/burglar) -"pPJ" = ( -/obj/effect/floor_decal/industrial/hatch/red, -/obj/effect/floor_decal/industrial/warning, -/obj/machinery/button/remote/blast_door{ - dir = 1; - id = "r-ust_vent"; - name = "INDRA Core Vent"; - pixel_y = 28 - }, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/engine_room/rust) -"pPL" = ( -/obj/effect/floor_decal/corner_wide/blue/full{ - dir = 8 - }, -/obj/structure/table/reinforced/steel, -/obj/random/finances{ - pixel_y = -10 - }, -/obj/random/finances{ - pixel_y = -5 - }, -/obj/random/finances, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/window/southleft{ - name = "Storage"; - req_access = list(20) - }, -/turf/simulated/floor/tiled/dark/full, -/area/storage/secure) -"pPN" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/effect/floor_decal/corner/dark_blue/full{ - dir = 4 +"pPK" = ( +/obj/machinery/firealarm/south, +/turf/simulated/floor/tiled/dark, +/area/horizon/service/bar/backroom) +"pPM" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/corner/dark_blue{ + dir = 5 }, /turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/port/docks) -"pPO" = ( -/obj/effect/floor_decal/corner/yellow/full{ - dir = 1 - }, -/obj/structure/sign/nosmoking_1{ - pixel_y = 32 - }, -/obj/machinery/vending/engivend, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/dark, -/area/engineering/storage/tech) -"pPU" = ( -/obj/structure/table/steel, -/obj/item/storage/box/bodybags, -/obj/effect/floor_decal/corner/lime/full, -/obj/item/storage/box/gloves{ - pixel_y = 11 - }, -/turf/simulated/floor/tiled/white{ - name = "cooled white floor"; - temperature = 278.15 - }, -/area/medical/morgue/lower) -"pPW" = ( -/obj/machinery/light/small/emergency{ - dir = 8 - }, -/obj/random/dirt_75, -/turf/simulated/floor/tiled/dark, -/area/maintenance/wing/port/far) +/area/horizon/hallway/primary/deck_3/starboard) "pPZ" = ( /obj/structure/bed/stool/padded, /obj/effect/ghostspawpoint{ @@ -110694,86 +110689,58 @@ icon_state = "desert" }, /area/centcom/shared_dream) -"pQe" = ( -/obj/machinery/nuclearbomb/station, -/obj/effect/floor_decal/industrial/warning/full, -/turf/simulated/floor/reinforced, -/area/bridge/selfdestruct) -"pQj" = ( -/obj/effect/floor_decal/corner/mauve{ - dir = 5 +"pQc" = ( +/obj/effect/floor_decal/corner/lime/diagonal, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/white, +/area/horizon/shuttle/intrepid/medical) +"pQf" = ( +/obj/machinery/firealarm/north, +/obj/effect/floor_decal/spline/plain/yellow{ + dir = 1 }, -/obj/structure/disposalpipe/segment{ +/obj/effect/floor_decal/industrial/warning{ dir = 4 }, -/obj/effect/landmark{ - name = "Revenant" +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/reactor/indra/smes) +"pQh" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 }, -/turf/simulated/floor/tiled/white, -/area/rnd/telesci) -"pQl" = ( -/obj/effect/floor_decal/corner/grey{ - dir = 5 +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 }, -/obj/machinery/requests_console/north{ - department = "Bar"; - departmentType = 1; - name = "Bar Requests Console" +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 }, -/obj/structure/closet/crate/drinks, -/obj/item/storage/box/fancy/yoke/grape_juice, -/obj/item/storage/box/fancy/yoke/beetle_milk, -/turf/simulated/floor/lino, -/area/horizon/bar) -"pQn" = ( -/obj/effect/floor_decal/industrial/warning/corner, -/obj/structure/lattice/catwalk/indoor/grate/dark, /turf/simulated/floor/plating, -/area/maintenance/wing/starboard) -"pQr" = ( -/obj/item/paper_bin, -/obj/item/pen, -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/shutters{ - id = "vacant_office"; - name = "Public Office Desk Shutter" +/area/horizon/maintenance/deck_1/main/port) +"pQu" = ( +/obj/structure/cable/green{ + icon_state = "1-2" }, -/obj/structure/table/reinforced, -/obj/machinery/door/window/desk/southleft{ - name = "Desk Access" - }, -/turf/simulated/floor/tiled, -/area/security/vacantoffice) -"pQv" = ( -/obj/effect/floor_decal/corner/purple{ - dir = 5 +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/horizon/custodial/disposals) -"pQD" = ( -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor, -/area/maintenance/engineering_ladder) +/area/horizon/engineering/gravity_gen) +"pQy" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/canister/air, +/turf/simulated/floor/tiled/full, +/area/horizon/hangar/intrepid) "pQM" = ( /obj/effect/floor_decal/spline/plain, /turf/unsimulated/floor, /area/centcom/checkpoint/fore) -"pQN" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/freezer{ - name = "cooled tiles"; - temperature = 253.15 - }, -/area/horizon/kitchen/freezer) "pQO" = ( /obj/effect/floor_decal/corner/grey/full, /obj/structure/bed/stool/chair/padded/black{ @@ -110797,41 +110764,43 @@ icon_state = "wood" }, /area/centcom/distress_prep) +"pQQ" = ( +/obj/effect/floor_decal/corner/mauve/full{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/light/floor{ + dir = 4 + }, +/obj/machinery/alarm/east, +/turf/simulated/floor/tiled, +/area/horizon/rnd/hallway/secondary) "pQU" = ( /obj/effect/floor_decal/corner/paleblue{ dir = 9 }, /turf/unsimulated/floor, /area/centcom/distress_prep) -"pQV" = ( -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/binary/pump/aux/on{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 5 - }, -/obj/machinery/power/sensor{ - name = "Powernet Sensor - Deck 3 Command Bunker"; - name_tag = "Deck 3 Command Bunker Grid" - }, -/obj/structure/cable/green{ - icon_state = "0-8" - }, -/turf/simulated/floor, -/area/bridge/aibunker) "pQZ" = ( /turf/simulated/floor/tiled, /area/shuttle/merchant) -"pRb" = ( -/obj/machinery/light/small/emergency{ - dir = 1 +"pRa" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance{ + req_one_access = list(12,26,29,31,48,67) }, -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/plating, -/area/maintenance/engineering) +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/full, +/area/horizon/maintenance/deck_2/cargo_compartment) "pRd" = ( /obj/effect/floor_decal/corner/paleblue{ dir = 9 @@ -110841,115 +110810,134 @@ }, /turf/unsimulated/floor, /area/centcom/holding) -"pRi" = ( -/obj/structure/cable/green{ - icon_state = "2-4" - }, +"pRe" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black, /turf/simulated/wall/shuttle/scc_space_ship/cardinal, -/area/crew_quarters/captain) -"pRl" = ( -/obj/machinery/atmospherics/portables_connector{ +/area/horizon/engineering/atmos/propulsion/starboard) +"pRv" = ( +/obj/structure/table/steel, +/obj/effect/floor_decal/corner/dark_blue{ + dir = 6 + }, +/obj/machinery/firealarm/east, +/obj/item/device/radio/off, +/obj/item/device/radio/off, +/obj/item/device/radio/off, +/obj/item/device/radio/off, +/turf/simulated/floor/tiled/dark, +/area/horizon/storage/eva) +"pRx" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/airlock/multi_tile/glass{ + name = "Deck 2 Central Stairwell" + }, +/obj/machinery/door/firedoor/multi_tile, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/full, +/area/horizon/stairwell/starboard/deck_2) +"pRA" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/reactor/indra/mainchamber) +"pRB" = ( +/obj/effect/floor_decal/corner/grey/diagonal, +/obj/effect/floor_decal/spline/plain{ dir = 4 }, -/obj/effect/floor_decal/industrial/outline/firefighting_closet, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"pRs" = ( -/obj/structure/bed/stool/chair{ - dir = 4 +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 }, -/turf/simulated/floor/tiled, -/area/operations/break_room) -"pRw" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 }, /obj/structure/cable/green{ - icon_state = "4-8" + icon_state = "2-8" }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ +/obj/machinery/disposal/small/south, +/obj/structure/disposalpipe/trunk, +/obj/effect/floor_decal/spline/plain{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/service/kitchen) +"pRF" = ( +/obj/machinery/firealarm/east, +/obj/machinery/atmospherics/pipe/simple/visible/black, +/turf/simulated/floor/plating, +/area/horizon/engineering/atmos/air) +"pRK" = ( +/obj/machinery/door/airlock/maintenance{ + dir = 1; + name = "Cryogenics Control Room"; + req_access = list(66) + }, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/horizon/medical/cryo) +"pRN" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/full, +/area/horizon/engineering/reactor/supermatter/airlock) +"pRR" = ( +/obj/effect/floor_decal/corner/green/diagonal, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/white, +/area/horizon/crew/fitness/changing) +"pRU" = ( +/obj/machinery/light, +/obj/machinery/ringer/south{ + department = "Pharmacy Frontdesk"; + id = "pharmacy_ringer"; + req_access = list(33) + }, +/obj/machinery/camera/network/medbay{ + c_tag = "Medical - Chemistry Lab Alpha"; dir = 1 }, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/central) -"pRz" = ( -/obj/structure/sign/securearea{ - pixel_y = 32 +/obj/effect/floor_decal/corner_wide/orange{ + dir = 10 }, -/obj/structure/lattice/catwalk, -/obj/item/hullbeacon/red, -/turf/space/dynamic, -/area/template_noop) -"pRD" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/structure/disposalpipe/junction{ - icon_state = "pipe-j2" - }, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/smes/rust) -"pRI" = ( -/obj/effect/floor_decal/corner/green/diagonal, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/power/apc/low/west, -/obj/structure/cable/green, -/obj/structure/closet/secure_closet/personal/patient, +/obj/effect/floor_decal/industrial/outline/medical, +/obj/structure/closet/secure_closet/chemical, /turf/simulated/floor/tiled/white, -/area/medical/ward/isolation) -"pRM" = ( -/obj/structure/platform/cutout, -/obj/structure/platform_stairs/full/east_west_cap{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge/controlroom) -"pRO" = ( +/area/horizon/medical/pharmacy) +"pSa" = ( +/obj/effect/floor_decal/industrial/warning, /obj/structure/cable{ - icon_state = "4-8" + icon_state = "2-8" }, -/obj/effect/floor_decal/corner_wide/yellow{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/hallway/engineering) -"pRQ" = ( -/obj/structure/closet/secure_closet/freezer, -/obj/item/reagent_containers/food/condiment/flour, -/obj/item/reagent_containers/food/condiment/flour, -/obj/item/reagent_containers/food/condiment/rice, -/obj/item/reagent_containers/food/condiment/rice, -/obj/effect/floor_decal/industrial/outline/grey, -/obj/machinery/light{ +/turf/simulated/floor, +/area/horizon/maintenance/deck_3/aft/starboard) +"pSc" = ( +/obj/machinery/light, +/obj/effect/floor_decal/industrial/outline/red, +/obj/structure/table/rack, +/obj/structure/railing/mapped{ dir = 4 }, -/obj/structure/engineer_maintenance/pipe/wall, +/obj/item/ship_ammunition/grauwolf_bundle, +/obj/item/ship_ammunition/grauwolf_bundle, +/obj/item/ship_ammunition/grauwolf_bundle, +/obj/item/ship_ammunition/grauwolf_bundle, +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, /turf/simulated/floor/tiled/dark/full, -/area/horizon/kitchen) -"pSb" = ( -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/structure/disposalpipe/down{ - dir = 4 - }, -/obj/structure/lattice/catwalk, -/obj/structure/railing/mapped, -/turf/simulated/open, -/area/maintenance/engineering_ladder) +/area/horizon/operations/secure_ammunition_storage) "pSd" = ( /obj/effect/decal/fake_object{ color = "#545c68"; @@ -110966,32 +110954,38 @@ }, /turf/unsimulated/floor, /area/centcom/evac) +"pSf" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/effect/map_effect/window_spawner/full/reinforced/polarized/grille/firedoor{ + id = "cap" + }, +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id = "bridge blast"; + name = "Bridge Blast Doors"; + opacity = 0 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/turf/simulated/floor, +/area/horizon/command/heads/captain) "pSg" = ( /turf/simulated/floor/tiled/ramp, /area/merchant_station) -"pSh" = ( -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" +"pSi" = ( +/obj/structure/morgue{ + dir = 8 }, -/obj/machinery/power/apc/north, -/obj/effect/floor_decal/industrial/outline/service, -/obj/machinery/portable_atmospherics/hydroponics, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/hydroponics) -"pSk" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, /obj/machinery/light{ - dir = 1 + dir = 4 }, -/obj/machinery/computer/general_air_control/large_tank_control/terminal{ - name = "Hydrogen Supply Monitor"; - output_tag = "H2_out_portthruster"; - sensors = list("h_sensor"="Tank") - }, -/obj/effect/floor_decal/industrial/outline/firefighting_closet, /turf/simulated/floor/tiled/dark, -/area/engineering/atmos/propulsion) +/area/horizon/rnd/xenobiology) "pSm" = ( /obj/structure/extinguisher_cabinet/east{ pixel_y = 1 @@ -111002,6 +110996,19 @@ /obj/effect/floor_decal/corner/black/diagonal, /turf/simulated/floor/tiled/dark, /area/shuttle/burglar) +"pSn" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_3/aft/port) "pSp" = ( /obj/effect/floor_decal/industrial/warning{ dir = 5 @@ -111016,86 +111023,20 @@ }, /turf/unsimulated/floor/plating, /area/centcom/specops) -"pSr" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/horizon/maintenance/deck_two/fore/port) -"pSx" = ( -/obj/structure/table/standard, -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/tiled/dark, -/area/engineering/gravity_gen) -"pSy" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 5 - }, -/turf/simulated/floor/reinforced, -/area/horizon/grauwolf) -"pSA" = ( -/obj/effect/floor_decal/corner/brown/full{ - dir = 8 - }, -/obj/structure/railing/mapped{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/operations/loading) -"pSE" = ( -/obj/effect/floor_decal/corner/paleblue/diagonal, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/heads/cmo) -"pSH" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/corner/dark_blue/diagonal, -/turf/simulated/floor/tiled/dark, -/area/security/checkpoint) -"pSI" = ( -/obj/machinery/computer/message_monitor, -/obj/machinery/light{ - dir = 8 - }, +"pSs" = ( +/obj/item/modular_computer/console/preset/engineering, +/obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled/dark/full, -/area/tcommsat/entrance) -"pSJ" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/operations/storage) -"pSK" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 5 - }, -/obj/structure/sign/directions/dock{ - dir = 8; - pixel_y = 28 - }, -/obj/structure/sign/directions/dock{ - dir = 4; - pixel_y = 36 - }, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/starboard) +/area/horizon/engineering/reactor/supermatter/monitoring) +"pSw" = ( +/obj/effect/floor_decal/industrial/outline/firefighting_closet, +/obj/structure/closet/firecloset, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/hallway/interior) +"pSL" = ( +/obj/structure/table/wood, +/turf/simulated/floor/carpet, +/area/horizon/command/heads/hos) "pSY" = ( /obj/effect/floor_decal/corner/yellow{ dir = 4 @@ -111114,55 +111055,50 @@ /obj/structure/window/reinforced/holowindow, /turf/simulated/floor/holofloor/tiled, /area/horizon/holodeck/source_gym) -"pTj" = ( -/obj/effect/floor_decal/corner/purple/diagonal, -/obj/effect/floor_decal/industrial/outline/grey, -/obj/machinery/air_sensor{ - frequency = 1441; - id_tag = "ph_sensor" +"pTl" = ( +/obj/structure/table/wood, +/obj/item/folder/purple{ + pixel_x = -3 }, -/obj/effect/decal/fake_object/light_source/invisible, -/turf/simulated/floor/reinforced/phoron, -/area/engineering/atmos) -"pTp" = ( -/obj/effect/map_effect/marker/airlock/shuttle{ - cycle_to_external_air = 1; - master_tag = "airlock_shuttle_intrepid"; - name = "airlock_shuttle_intrepid"; - req_one_access = null; - shuttle_tag = "Intrepid" +/obj/item/folder/red{ + pixel_x = 3; + pixel_y = 2 }, -/obj/machinery/atmospherics/unary/vent_pump/high_volume, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/shuttle/intrepid/main_compartment) +/obj/item/device/radio/intercom/west, +/turf/simulated/floor/carpet/red, +/area/horizon/service/library) +"pTo" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor, +/area/horizon/maintenance/deck_3/aft/port/far) "pTq" = ( /turf/simulated/wall/shuttle/unique/tcfl{ icon_state = "3,2" }, /area/shuttle/legion) -"pTs" = ( -/obj/effect/floor_decal/industrial/warning{ +"pTr" = ( +/obj/effect/floor_decal/corner/dark_blue{ dir = 1 }, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard/far) -"pTw" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/aux{ - dir = 10 +/turf/simulated/floor/tiled/dark, +/area/horizon/storage/eva) +"pTv" = ( +/obj/structure/cable/green{ + icon_state = "4-8" }, -/obj/machinery/firealarm/north, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/effect/floor_decal/corner/black/full{ - dir = 1 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 }, -/obj/effect/floor_decal/industrial/warning{ - dir = 5 +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 }, -/turf/simulated/floor/tiled, -/area/hangar/intrepid) +/turf/simulated/floor/tiled/full, +/area/horizon/hallway/primary/deck_3/port) "pTx" = ( /obj/structure/flora/ausbushes/sparsegrass, /obj/effect/floor_decal/spline/fancy/wood{ @@ -111171,6 +111107,26 @@ /obj/effect/floor_decal/spline/fancy/wood, /turf/simulated/floor/holofloor/grass, /area/horizon/holodeck/source_meetinghall) +"pTz" = ( +/turf/simulated/wall/shuttle/scc_space_ship/cardinal, +/area/horizon/maintenance/deck_2/wing/starboard/nacelle) +"pTA" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/platform_stairs/full/east_west_cap, +/obj/structure/platform/cutout{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/horizon/engineering/hallway/interior) +"pTC" = ( +/obj/structure/platform, +/obj/structure/platform_deco{ + dir = 1 + }, +/turf/simulated/floor/reinforced, +/area/horizon/command/bridge/controlroom) "pTF" = ( /obj/machinery/atmospherics/pipe/simple/visible/purple{ dir = 5 @@ -111178,55 +111134,23 @@ /obj/structure/lattice/catwalk/indoor, /turf/space/dynamic, /area/horizon/exterior) -"pTP" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 +"pTL" = ( +/obj/effect/landmark/entry_point/aft{ + name = "aft engines, port 1" }, -/obj/structure/cable/green{ - icon_state = "1-2" +/turf/space/dynamic, +/area/horizon/engineering/atmos/propulsion/starboard) +"pTN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/aux{ + dir = 4 }, -/turf/simulated/floor/tiled/dark, -/area/teleporter) +/turf/simulated/floor/reinforced, +/area/horizon/command/bridge/selfdestruct) "pTQ" = ( /obj/structure/lattice, /obj/machinery/atmospherics/pipe/manifold/visible/red, /turf/space/dynamic, /area/horizon/exterior) -"pTR" = ( -/turf/simulated/wall/r_wall, -/area/rnd/telesci) -"pTT" = ( -/obj/effect/map_effect/window_spawner/full/borosilicate/reinforced/firedoor, -/obj/machinery/door/blast/regular{ - dir = 4; - id = "gravgen"; - name = "Gravity Generator Blast Doors" - }, -/turf/simulated/floor/reinforced, -/area/engineering/gravity_gen) -"pTV" = ( -/obj/machinery/door/blast/shutters/open{ - dir = 8; - id = "shutters_deck3_cafewindows"; - name = "Cafe Window Shutter" - }, -/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/cafeteria) -"pTY" = ( -/obj/effect/floor_decal/industrial/outline_door/medical/dark_green, -/obj/effect/floor_decal/industrial/outline_segment/medical/dark_green{ - dir = 10 - }, -/obj/effect/floor_decal/spline/plain/corner/blue{ - dir = 1 - }, -/obj/effect/floor_decal/corner/dark_green/full, -/obj/machinery/atmospherics/pipe/manifold/hidden{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/horizon/hydroponics/lower) "pTZ" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/light/small/emergency{ @@ -111234,29 +111158,24 @@ }, /turf/unsimulated/floor, /area/centcom/legion) -"pUa" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/effect/floor_decal/corner/white{ - dir = 10 - }, -/turf/simulated/floor/tiled/dark, -/area/storage/eva) -"pUi" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 9 - }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/light{ +"pUc" = ( +/turf/simulated/wall, +/area/horizon/medical/ward) +"pUe" = ( +/obj/effect/floor_decal/industrial/warning{ dir = 8 }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/central) +/turf/simulated/floor, +/area/horizon/maintenance/deck_3/aft/holodeck) +"pUg" = ( +/obj/structure/table/standard, +/obj/item/device/hand_labeler, +/obj/item/tape_roll{ + pixel_x = -14; + pixel_y = 10 + }, +/turf/simulated/floor/carpet/rubber, +/area/horizon/rnd/lab) "pUk" = ( /obj/machinery/door/window/northright{ health = 2000; @@ -111271,137 +111190,116 @@ }, /turf/unsimulated/floor, /area/centcom/spawning) -"pUo" = ( -/obj/machinery/photocopier, -/obj/machinery/light/small{ - dir = 8 +"pUl" = ( +/obj/structure/tank_wall{ + icon_state = "m-2" }, -/turf/unsimulated/floor/marble, -/area/antag/wizard) +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/horizon/engineering/atmos) +"pUn" = ( +/obj/structure/window/shuttle/unique/scc/scout{ + icon_state = "3,5" + }, +/obj/structure/window/shuttle/unique/scc/scout/over{ + icon_state = "3,5" + }, +/turf/simulated/floor/plating, +/area/horizon/shuttle/canary) "pUq" = ( /obj/structure/closet/secure_closet/custodial, /turf/unsimulated/floor{ icon_state = "dark_preview" }, /area/centcom/holding) -"pUE" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 +"pUv" = ( +/obj/structure/lattice/catwalk/indoor, +/obj/effect/floor_decal/industrial/outline/red, +/obj/item/hullbeacon/green, +/obj/structure/bed/handrail{ + dir = 8 }, +/turf/simulated/floor/plating, +/area/horizon/shuttle/intrepid/starboard_compartment) +"pUD" = ( +/obj/machinery/vending/zora, +/obj/machinery/alarm/east, +/obj/effect/floor_decal/industrial/outline/grey, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/service/cafeteria) +"pUG" = ( +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 4; + icon_state = "shutter0"; + id = "LCKDshutters"; + name = "MedBay Lockdown Shutters"; + opacity = 0 + }, +/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/medical/reception) +"pUH" = ( +/obj/machinery/bluespace_beacon, +/turf/simulated/floor/tiled/dark, +/area/horizon/rnd/xenoarch/atrium) +"pUN" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/obj/structure/railing/mapped, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/maintenance/wing/port/far) -"pUK" = ( -/obj/machinery/artifact_analyser, -/obj/effect/floor_decal/spline/plain{ - dir = 6 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/greengrid, -/area/rnd/xenoarch_atrium) -"pUM" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/full, -/area/maintenance/wing/starboard) -"pUQ" = ( -/obj/structure/window/shuttle/scc_space_ship, -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "bridge blast"; - name = "Bridge Blast Doors"; - opacity = 0 - }, -/obj/machinery/door/blast/shutters/open{ - dir = 2; - id = "shutters_deck3_bridgesafety"; - name = "Safety Shutter" - }, -/obj/structure/cable/green{ - icon_state = "0-8" - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/door/blast/shutters/open{ - dir = 2; - id = "conferencesafetyshutters"; - name = "Safety Shutter" - }, -/turf/simulated/floor/plating, -/area/bridge/meeting_room) -"pUR" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/portable_atmospherics/canister/hydrogen, -/obj/machinery/light/small/emergency{ +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/engine_room/rust) +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/horizon/hangar/auxiliary) +"pUT" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/main/interstitial) +"pUU" = ( +/obj/effect/floor_decal/corner_wide/purple{ + dir = 6 + }, +/obj/effect/floor_decal/corner_wide/purple{ + dir = 8 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/xenoarch/atrium) +"pUW" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/horizon/command/bridge/controlroom) "pUY" = ( /obj/structure/sign/directions/dock, /turf/unsimulated/wall/darkshuttlewall, /area/centcom/holding) -"pVa" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/industrial/warning/corner, -/turf/simulated/floor/tiled/white, -/area/medical/gen_treatment) -"pVi" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ +"pUZ" = ( +/obj/structure/bed/stool/bar/padded/red{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/full, -/area/hallway/primary/central_one) -"pVn" = ( -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard/far) -"pVo" = ( -/obj/structure/closet/emcloset, -/obj/effect/floor_decal/corner/dark_blue/full, -/obj/effect/floor_decal/industrial/outline/emergency_closet, -/turf/simulated/floor/tiled, -/area/bridge/supply) -"pVp" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/maintenance{ - dir = 4; - req_access = list(12) - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/door/blast/regular/open{ - id = "hangarlockdown"; - name = "Hangar Lockdown" - }, -/turf/simulated/floor/tiled/full, -/area/maintenance/hangar/starboard) +/turf/simulated/floor/lino, +/area/horizon/service/bar) "pVw" = ( /obj/structure/bed/stool/chair/office/dark{ dir = 1 @@ -111413,103 +111311,27 @@ icon_state = "dark_preview" }, /area/centcom/control) -"pVx" = ( -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"pVz" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/obj/structure/plasticflaps/airtight{ - dir = 8 - }, -/obj/machinery/door/window/westleft{ - name = "Server Room" - }, -/obj/machinery/door/window/eastleft{ - name = "Server Room" - }, -/turf/simulated/floor/bluegrid/server, -/area/server) "pVA" = ( /obj/structure/bed/stool/chair/office/light{ dir = 4 }, /turf/unsimulated/floor/plating, /area/centcom/specops) -"pVD" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 5 +"pVE" = ( +/obj/structure/cable/green{ + icon_state = "4-8" }, -/obj/item/clipboard{ - pixel_y = 2; - pixel_x = -22 - }, -/obj/item/stack/packageWrap, -/obj/item/device/hand_labeler, -/obj/item/stack/wrapping_paper, -/obj/structure/table/reinforced/steel, -/obj/item/folder/sec{ - pixel_y = 3 - }, -/turf/simulated/floor/tiled, -/area/bridge/controlroom) -"pVF" = ( -/obj/machinery/atmospherics/pipe/manifold/visible, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/aux{ +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"pVG" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 5 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 }, -/turf/simulated/floor/tiled, -/area/operations/lobby) -"pVH" = ( -/obj/structure/table/wood, -/obj/machinery/recharger{ - pixel_x = -3; - pixel_y = 2 - }, -/obj/item/deck/cards{ - pixel_x = 12; - pixel_y = 1 - }, -/obj/random/pottedplant_small{ - pixel_x = 7; - pixel_y = 9 - }, -/turf/simulated/floor/wood, -/area/horizon/library) -"pVI" = ( -/obj/effect/floor_decal/corner_wide/green{ - dir = 6 - }, -/obj/effect/landmark/start{ - name = "Medical Intern" - }, -/obj/structure/bed/stool/chair{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/hallway/medical/upper) -"pVJ" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/lattice/catwalk/indoor/grate, -/turf/simulated/floor, -/area/bridge/upperdeck) +/turf/simulated/floor/tiled/full, +/area/horizon/hallway/primary/deck_2/central) "pVS" = ( /obj/structure/table/reinforced/steel, /obj/machinery/light{ @@ -111523,42 +111345,37 @@ }, /turf/simulated/floor/tiled/dark, /area/shuttle/mercenary) -"pVU" = ( -/obj/effect/floor_decal/corner_wide/purple{ - dir = 9 - }, -/obj/effect/floor_decal/corner_wide/purple{ +"pVZ" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ dir = 4 }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/white, -/area/rnd/xenoarch_atrium) -"pWd" = ( -/obj/machinery/door/airlock/glass_research{ - dir = 4; - id_tag = "xeno_entrance_int_b"; - name = "Xenobiology"; - req_access = list(55); - locked = 1 - }, -/obj/effect/map_effect/door_helper/unres{ +/obj/structure/closet/emcloset, +/obj/effect/floor_decal/industrial/outline/emergency_closet, +/turf/simulated/floor/tiled, +/area/horizon/rnd/xenoarch/atrium) +"pWa" = ( +/obj/effect/floor_decal/industrial/warning{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/firedoor{ +/obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/reactor/indra/mainchamber) +"pWc" = ( +/obj/machinery/door/firedoor, /obj/structure/cable/green{ - icon_state = "4-8" + icon_state = "1-2" }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology) +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/door/airlock/maintenance{ + dir = 1; + req_one_access = list(5,12) + }, +/turf/simulated/floor, +/area/horizon/maintenance/deck_3/aft/holodeck) "pWf" = ( /obj/structure/flora/pottedplant{ icon_state = "plant-22" @@ -111568,38 +111385,32 @@ }, /turf/unsimulated/floor, /area/centcom/ferry) -"pWm" = ( -/obj/structure/cable{ +"pWh" = ( +/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/firedoor, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/aux, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/machinery/door/airlock/maintenance_hatch{ - dir = 1; - req_one_access = list(12) +/obj/machinery/firealarm/east, +/obj/effect/floor_decal/spline/plain{ + dir = 4 }, -/turf/simulated/floor/plating, -/area/maintenance/engineering) -"pWu" = ( -/obj/structure/closet/crate/freezer/rations, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/unsimulated/floor{ - icon_state = "dark_preview" +/turf/simulated/floor/carpet/rubber, +/area/horizon/engineering/bluespace_drive/monitoring) +"pWj" = ( +/obj/structure/cable{ + icon_state = "0-8" }, -/area/centcom/specops) -"pWw" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/machinery/camera/network/security{ - c_tag = "Security - Firing Range Starboard" +/obj/machinery/power/apc/super/east, +/obj/machinery/computer/security/engineering/terminal{ + dir = 8 }, -/turf/simulated/floor/tiled/dark, -/area/horizon/security/firing_range) -"pWx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/red{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/outline/operations, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/atmos/propulsion) +"pWr" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -111609,66 +111420,159 @@ /obj/structure/cable/green{ icon_state = "4-8" }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor, -/area/horizon/maintenance/deck_three/aft/starboard) -"pWy" = ( -/obj/structure/cable/green{ - icon_state = "4-8" +/turf/simulated/floor/tiled/full, +/area/horizon/hallway/primary/deck_2/starboard) +"pWu" = ( +/obj/structure/closet/crate/freezer/rations, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/unsimulated/floor{ + icon_state = "dark_preview" }, -/obj/effect/floor_decal/industrial/warning{ - dir = 5 +/area/centcom/specops) +"pWv" = ( +/obj/structure/bed/stool/chair/padded/brown{ + dir = 4 }, -/obj/machinery/light/small/emergency, -/turf/simulated/floor/plating, -/area/maintenance/hangar/port) +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/floor_decal/corner/white/diagonal, +/obj/effect/floor_decal/spline/plain{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/hallway/primary/deck_3/central) +"pWw" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/camera/network/security{ + c_tag = "Security - Firing Range Starboard" + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/security/firing_range) "pWB" = ( /obj/effect/floor_decal/industrial/warning/corner, /turf/simulated/floor/reinforced/airless, /area/horizon/exterior) +"pWC" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lime{ + dir = 5 + }, +/turf/simulated/floor/tiled{ + name = "cooled floor"; + temperature = 278 + }, +/area/horizon/medical/morgue) +"pWG" = ( +/obj/effect/floor_decal/industrial/outline/grey, +/obj/structure/closet/crate/tool, +/obj/random/tool, +/obj/random/tool, +/obj/random/tool, +/obj/random/tool, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/random/tool, +/obj/random/tool, +/obj/item/cell, +/turf/simulated/floor/plating, +/area/horizon/hangar/intrepid) +"pWH" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/wood, +/area/horizon/command/heads/rd) +"pWL" = ( +/obj/machinery/atmospherics/valve{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lime{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/horizon/rnd/xenobiology/xenoflora) "pWM" = ( /obj/structure/shuttle_part/ccia{ icon_state = "11,0" }, /turf/unsimulated/floor/plating, /area/shuttle/transport1) +"pWU" = ( +/obj/structure/lattice, +/obj/structure/platform/ledge{ + dir = 4 + }, +/turf/simulated/open, +/area/horizon/hallway/primary/deck_2/central) "pWW" = ( /obj/effect/floor_decal/spline/plain, /turf/simulated/floor/holofloor/tiled, /area/horizon/holodeck/source_gym) -"pXd" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable/green{ - icon_state = "11-2" +"pWY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/effect/floor_decal/corner/lime/diagonal, +/turf/simulated/floor/tiled/white{ + name = "cooled white floor"; + temperature = 278.15 + }, +/area/horizon/medical/morgue) +"pXc" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/horizon/rnd/eva) +"pXh" = ( +/obj/machinery/power/terminal{ + dir = 8 }, -/obj/structure/disposalpipe/down, -/turf/simulated/open, -/area/maintenance/wing/starboard) -"pXg" = ( -/obj/effect/floor_decal/corner/brown/diagonal, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/effect/floor_decal/industrial/warning, /obj/effect/floor_decal/industrial/warning{ dir = 1 }, -/obj/machinery/door/airlock/multi_tile/glass{ - autoclose = 0; - name = "Warehouse Elevator"; - req_one_access = list(26,29,31,48,67,70) +/obj/structure/cable{ + icon_state = "0-4" }, -/obj/machinery/door/firedoor/multi_tile, -/turf/simulated/floor/tiled/dark, -/area/operations/office) -"pXj" = ( -/obj/effect/floor_decal/industrial/hatch/red, -/obj/effect/floor_decal/industrial/warning{ +/turf/simulated/floor/plating, +/area/horizon/shuttle/quark/cargo_hold) +"pXk" = ( +/obj/structure/bed/stool/chair/office/dark{ dir = 4 }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 +/obj/effect/landmark/start{ + name = "Engineering Apprentice" }, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/secure_ammunition_storage) +/obj/effect/floor_decal/corner_wide/yellow{ + dir = 9 + }, +/obj/effect/floor_decal/spline/plain/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/horizon/engineering/break_room) "pXm" = ( /obj/structure/closet/gimmick{ name = "emergency response team wardrobe" @@ -111684,26 +111588,6 @@ icon_state = "dark_preview" }, /area/centcom/specops) -"pXo" = ( -/obj/machinery/light, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 7 - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 1 - }, -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/turf/simulated/floor/wood, -/area/crew_quarters/captain) -"pXr" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 6 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/reinforced, -/area/rnd/xenobiology) "pXu" = ( /obj/structure/plasticflaps{ opacity = 1 @@ -111719,20 +111603,37 @@ }, /turf/simulated/floor/plating, /area/merchant_station/warehouse) -"pXv" = ( -/obj/machinery/light{ - dir = 4 +"pXz" = ( +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/main/port) +"pXI" = ( +/obj/structure/window/shuttle/scc_space_ship, +/obj/structure/grille, +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/shutters/open{ + id = "shutters_deck3_engibreakwindows"; + name = "Viewing Shutter" }, -/obj/effect/floor_decal/industrial/warning{ +/obj/effect/landmark/entry_point/aft{ + name = "aft, engineering break room" + }, +/turf/simulated/floor/plating, +/area/horizon/engineering/break_room) +"pXJ" = ( +/obj/effect/floor_decal/spline/fancy/wood, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/disposal/small/north, +/obj/structure/disposalpipe/trunk{ dir = 8 }, -/obj/effect/landmark/latejoincyborg, -/turf/simulated/floor/tiled, -/area/assembly/chargebay) -"pXP" = ( -/obj/machinery/atmospherics/pipe/simple/visible/cyan, -/turf/simulated/floor/reinforced/airless, -/area/engineering/engine_room/turbine) +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/wood, +/area/horizon/command/heads/captain) "pXQ" = ( /obj/structure/table/holotable, /obj/item/clothing/gloves/boxing/hologlove{ @@ -111749,20 +111650,23 @@ }, /turf/simulated/floor/holofloor/tiled, /area/horizon/holodeck/source_boxingcourt) -"pYa" = ( -/obj/structure/sign/flag/scc, -/turf/simulated/wall, -/area/hangar/intrepid/interstitial) -"pYc" = ( -/obj/machinery/power/apc/low/north, -/obj/structure/cable/green{ - icon_state = "0-4" +"pXR" = ( +/obj/structure/cable{ + icon_state = "1-2" }, -/obj/effect/floor_decal/spline/fancy/wood{ +/obj/effect/floor_decal/industrial/warning{ dir = 1 }, -/turf/simulated/floor/wood, -/area/crew_quarters/lounge/secondary) +/obj/random/dirt_75, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/starboard/nacelle) +"pXW" = ( +/obj/machinery/door/blast/regular{ + id = "iso_b_purge"; + name = "Exterior Blast Door" + }, +/turf/simulated/floor/reinforced, +/area/horizon/rnd/xenoarch/isolation_b) "pYd" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/table/steel, @@ -111772,124 +111676,135 @@ }, /turf/simulated/floor/tiled/dark/full, /area/shuttle/skipjack) -"pYf" = ( -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/structure/railing/mapped{ +"pYg" = ( +/obj/effect/map_effect/window_spawner/full/borosilicate/reinforced, +/obj/machinery/door/blast/regular/open{ + dir = 4; + id = "r_ust_core_blast"; + name = "INDRA Reactor Blast Doors" + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/reactor/indra/mainchamber) +"pYr" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/horizon/hangar/intrepid) +"pYs" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/full, +/area/horizon/engineering/hallway/aft) +"pYv" = ( +/obj/effect/floor_decal/spline/fancy/wood{ dir = 8 }, -/turf/simulated/floor/tiled/dark/full/airless, -/area/bridge/controlroom) -"pYu" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 5 +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 }, -/obj/structure/cable/green{ - icon_state = "1-8" +/obj/structure/flora/ausbushes/ppflowers, +/obj/machinery/door/firedoor, +/obj/structure/window/reinforced{ + dir = 4; + pixel_y = -10 }, -/turf/simulated/floor/tiled/dark, -/area/hangar/control) -"pYy" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 5 +/obj/structure/window/reinforced{ + dir = 8; + pixel_y = -10 }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hangar/auxiliary) +/turf/simulated/floor/grass/no_edge, +/area/horizon/hallway/primary/deck_3/port) "pYB" = ( /obj/structure/lattice, /turf/space/dynamic, /area/horizon/exterior) -"pYD" = ( -/obj/effect/floor_decal/industrial/hatch_door/yellow, -/obj/machinery/door/firedoor{ - req_one_access = list(24,11,67,73); +"pYQ" = ( +/obj/effect/floor_decal/corner_wide/purple{ + dir = 9 + }, +/obj/effect/floor_decal/corner_wide/purple{ dir = 4 }, -/turf/simulated/floor/tiled/dark/full, -/area/shuttle/intrepid/port_compartment) -"pYG" = ( -/obj/effect/floor_decal/corner/mauve/full{ +/obj/structure/disposalpipe/segment, +/obj/machinery/camera/network/research{ + c_tag = "Research - Xenoarchaeology 3"; dir = 4 }, -/obj/structure/platform{ - dir = 1 +/obj/machinery/requests_console/west{ + department = "Xenoarchaeology"; + departmentType = 2; + name = "Xenoarchaeology Requests Console" }, -/turf/simulated/floor/tiled, -/area/rnd/hallway) -"pYH" = ( -/obj/effect/floor_decal/industrial/outline/service, -/obj/machinery/portable_atmospherics/hydroponics, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/hydroponics) -"pYP" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - icon_state = "1-2" +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/xenoarch/atrium) +"pYS" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/machinery/door/airlock/external, +/obj/machinery/access_button{ + pixel_x = -28 }, -/turf/simulated/floor/wood, -/area/lawoffice/consular) -"pYT" = ( -/obj/machinery/atmospherics/pipe/manifold4w/hidden, /obj/effect/map_effect/marker/airlock{ frequency = 2001; master_tag = "airlock_horizon_deck_2_starboard_aft"; name = "airlock_horizon_deck_2_starboard_aft" }, +/obj/effect/map_effect/marker_helper/airlock/interior, /turf/simulated/floor/plating, -/area/maintenance/wing/starboard) -"pYU" = ( -/obj/structure/railing/mapped, -/obj/structure/railing/mapped{ +/area/horizon/maintenance/deck_2/wing/port/near) +"pYW" = ( +/obj/effect/floor_decal/corner/lime/diagonal, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/white, +/area/horizon/shuttle/intrepid/medical) +"pZe" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/structure/platform/ledge{ - dir = 1 - }, -/obj/structure/platform/ledge{ +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 8 }, -/turf/simulated/open, -/area/hallway/medical/upper) -"pZd" = ( -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/engineering/atmos) +/area/horizon/shuttle/intrepid/main_compartment) "pZf" = ( /obj/effect/floor_decal/industrial/warning{ dir = 9 }, /turf/simulated/floor/tiled/dark/full, /area/turbolift/scc_ship/robotics_lift) -"pZh" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/door/airlock/command{ - dir = 1; - id_tag = "hopdoor"; - name = "Executive Officer's Office"; - req_access = list(57) - }, -/obj/machinery/door/firedoor, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "bridge blast"; - name = "Bridge Blast Doors"; - opacity = 0 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/bridge/meeting_room) "pZl" = ( /obj/machinery/door/airlock/hatch{ dir = 4; @@ -111899,37 +111814,26 @@ /obj/effect/floor_decal/industrial/hatch_door/yellow, /turf/simulated/floor/tiled/dark/full, /area/shuttle/mercenary) -"pZm" = ( -/obj/effect/floor_decal/corner/paleblue/diagonal, -/obj/effect/floor_decal/industrial/outline/grey, -/obj/machinery/air_sensor{ - frequency = 1441; - id_tag = "o2_sensor" +"pZq" = ( +/obj/structure/cable/green{ + icon_state = "4-8" }, -/obj/effect/decal/fake_object/light_source/invisible, -/turf/simulated/floor/reinforced/oxygen, -/area/engineering/atmos/air) -"pZv" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" }, /obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard/deck1) -"pZB" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 1 +/turf/simulated/floor, +/area/horizon/maintenance/deck_3/security/port) +"pZz" = ( +/obj/effect/floor_decal/corner_wide/purple{ + dir = 8 }, -/obj/effect/floor_decal/spline/plain{ - dir = 1 +/obj/effect/floor_decal/corner_wide/white{ + dir = 5 }, -/obj/effect/floor_decal/spline/plain, -/obj/structure/engineer_maintenance/electric/wall, -/turf/simulated/floor/carpet/rubber, -/area/tcommsat/chamber) +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/xenoarch/atrium) "pZC" = ( /obj/effect/floor_decal/corner/dark_blue/full{ dir = 8 @@ -111945,50 +111849,73 @@ }, /turf/simulated/floor/tiled, /area/horizon/security/equipment) -"pZD" = ( -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" +"pZK" = ( +/obj/machinery/chem_master, +/obj/effect/floor_decal/spline/plain{ + dir = 10 }, -/turf/simulated/floor/plating, -/area/maintenance/wing/cargo_compartment) -"pZG" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 5 +/obj/structure/extinguisher_cabinet/west, +/turf/simulated/floor/carpet/rubber, +/area/horizon/medical/pharmacy) +"pZM" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 10 }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/starboard/docks) -"pZT" = ( -/obj/structure/railing/mapped, -/obj/structure/platform/ledge{ +/obj/machinery/disposal/small/north, +/obj/structure/disposalpipe/trunk{ dir = 1 }, -/obj/structure/platform_deco/ledge{ +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_2/central) +"pZW" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/obj/structure/bed/stool/chair/padded/beige{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/horizon/command/bridge/minibar) +"pZY" = ( +/obj/machinery/meter, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/visible/red, +/turf/simulated/floor/plating, +/area/horizon/engineering/atmos/air) +"qaa" = ( +/turf/simulated/wall/shuttle/scc, +/area/horizon/shuttle/intrepid/medical) +"qab" = ( +/obj/machinery/atmospherics/pipe/simple/visible/purple{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/structure/window/shuttle/scc_space_ship, +/obj/structure/grille, +/turf/simulated/floor/plating, +/area/horizon/engineering/atmos/propulsion/starboard) +"qah" = ( +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold/visible/yellow, +/obj/effect/floor_decal/corner/yellow{ + dir = 1 + }, +/obj/effect/floor_decal/corner/dark_blue{ dir = 8 }, +/obj/machinery/meter, +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/atmos) +"qaj" = ( +/obj/structure/railing/mapped{ + dir = 4 + }, /turf/simulated/open, -/area/horizon/hallway/deck_three/primary/central) -"pZZ" = ( -/obj/machinery/light/small/emergency{ - dir = 8 - }, -/obj/structure/trash_pile, -/obj/effect/floor_decal/industrial/warning{ - dir = 5 - }, -/turf/simulated/floor/plating, -/area/maintenance/security_port) -"qaf" = ( -/obj/structure/bed/stool/chair/shuttle{ - dir = 8 - }, -/turf/simulated/floor/shuttle/dark_blue, -/area/shuttle/escape_pod/pod3) +/area/horizon/operations/office) "qam" = ( /obj/structure/closet/walllocker/medical/firstaid{ pixel_x = -32 @@ -112003,134 +111930,118 @@ /obj/structure/holostool, /turf/simulated/floor/holofloor/wood, /area/horizon/holodeck/source_sauna) -"qaw" = ( -/obj/machinery/light, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/table/rack, -/obj/item/storage/box/monkeycubes, -/obj/item/storage/box/monkeycubes, -/obj/item/storage/box/monkeycubes, -/obj/item/storage/box/monkeycubes, -/obj/item/reagent_containers/spray/chemsprayer/xenobiology, -/obj/item/reagent_containers/spray/chemsprayer/xenobiology, -/obj/item/melee/baton/slime{ - pixel_x = 3; - pixel_y = -1 - }, -/obj/item/melee/baton/slime{ - pixel_x = 3; - pixel_y = -1 - }, -/obj/item/reagent_containers/spray/cleaner, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology) -"qax" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 10 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/machinery/light, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/starboard/docks) +"qap" = ( +/turf/simulated/wall, +/area/horizon/medical/hallway) +"qas" = ( +/obj/machinery/power/tesla_coil, +/turf/simulated/floor/plating, +/area/horizon/engineering/bluespace_drive) "qay" = ( /obj/effect/floor_decal/spline/plain{ dir = 1 }, /turf/unsimulated/floor, /area/centcom/checkpoint/aft) -"qaz" = ( -/obj/machinery/camera/network/research{ - c_tag = "Research - EVA Preparation Entrance" +"qaA" = ( +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/chemistry) +"qaF" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 10 }, -/obj/effect/floor_decal/corner/dark_blue{ +/obj/machinery/power/apc/south{ + is_critical = 1 + }, +/obj/structure/cable/green, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_2/central) +"qaG" = ( +/obj/effect/floor_decal/spline/plain/corner{ + dir = 8 + }, +/obj/effect/floor_decal/spline/fancy{ dir = 5 }, +/obj/effect/floor_decal/corner_wide/white{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/hallway/primary/deck_2/central) +"qaM" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor/plating, +/area/horizon/rnd/hallway) +"qaO" = ( +/obj/structure/platform_deco, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/operations/machinist) +"qaQ" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/hydroponics, +/obj/machinery/atmospherics/portables_connector{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/camera/network/research{ + c_tag = "Research - XenoBotanical Lab Aft" + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/rnd/xenobiology/xenoflora) +"qaR" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 6 + }, /obj/structure/cable/green{ icon_state = "4-8" }, -/turf/simulated/floor/tiled, -/area/rnd/eva) -"qaK" = ( -/obj/machinery/atmospherics/pipe/simple/visible/cyan{ - dir = 9 - }, -/obj/structure/tank_wall/oxygen{ - density = 0; - icon_state = "o2-11"; - opacity = 0 - }, -/turf/simulated/floor/reinforced/oxygen, -/area/engineering/atmos/air) -"qaP" = ( -/obj/structure/shuttle_part/scc_space_ship{ - icon_state = "d3-6" - }, -/obj/structure/girder, -/turf/simulated/floor/plating, -/area/maintenance/wing/port/far) -"qaT" = ( -/obj/machinery/portable_atmospherics/hydroponics/soil, -/obj/machinery/alarm/east, -/turf/simulated/floor/grass/no_edge, -/area/rnd/xenobiology/xenoflora) -"qaU" = ( -/obj/structure/cable{ - icon_state = "4-8" +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_3/starboard) +"qaS" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/horizon/crew/journalistoffice) +"qbc" = ( +/obj/machinery/light/small/emergency{ dir = 4 }, /obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/machinery/light/small/emergency, /turf/simulated/floor/plating, -/area/maintenance/wing/port/deck1) -"qaW" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/heads/chief) -"qaX" = ( -/obj/structure/bed/stool/chair/office/dark{ - dir = 1 - }, -/obj/effect/floor_decal/spline/plain{ - dir = 9 - }, +/area/horizon/maintenance/deck_1/hangar/port) +"qbe" = ( /obj/structure/cable/green{ - icon_state = "0-2" + icon_state = "1-2" }, -/obj/structure/cable/green{ - icon_state = "0-4" +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance{ + dir = 1; + req_one_access = list(12,63) }, -/obj/machinery/power/apc/critical/west, -/turf/simulated/floor/carpet/rubber, -/area/tcommsat/entrance) -"qaY" = ( -/obj/structure/platform_deco{ - dir = 8 - }, -/obj/effect/floor_decal/corner/dark_blue/diagonal{ - dir = 8 - }, -/obj/machinery/firealarm/east, -/turf/simulated/floor/tiled, -/area/bridge) +/turf/simulated/floor/tiled/full, +/area/horizon/stairwell/port/deck_3) "qbi" = ( /obj/effect/floor_decal/corner/red/full{ dir = 8 @@ -112140,17 +112051,30 @@ }, /turf/simulated/floor/holofloor/tiled, /area/template_noop) -"qbk" = ( -/obj/structure/window/reinforced{ - dir = 1 +"qbj" = ( +/obj/effect/floor_decal/industrial/warning/full, +/obj/machinery/door/blast/regular/open{ + dir = 2; + fail_secure = 1; + id = "xenobio_d"; + name = "Cell Containment Blast Door" }, -/obj/structure/window/reinforced{ - dir = 8 +/obj/machinery/door/window/holowindoor{ + dir = 8; + req_access = list(55) }, -/obj/structure/table/reinforced/steel, -/obj/item/device/flashlight/lamp, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenoarch_atrium) +/obj/machinery/door/window/holowindoor{ + dir = 4; + req_access = list(55) + }, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/rnd/xenobiology) +"qbo" = ( +/turf/simulated/wall/r_wall, +/area/horizon/storage/secure) "qbp" = ( /obj/effect/floor_decal/spline/plain{ dir = 1 @@ -112158,102 +112082,23 @@ /obj/item/bucket_sensor, /turf/simulated/floor/wood, /area/centcom/shared_dream) -"qbr" = ( -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/engine_room) -"qbu" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/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{ icon_state = "dark_preview" }, /area/centcom/holding) -"qbA" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/structure/window/shuttle/scc_space_ship/cardinal, -/turf/simulated/floor/plating, -/area/horizon/stairwell/bridge) -"qbC" = ( -/obj/machinery/light/small/emergency{ - dir = 1 - }, -/obj/random/junk, -/obj/structure/railing/mapped, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"qbF" = ( -/turf/simulated/wall, -/area/medical/paramedic) -"qbG" = ( -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/blast/regular/open{ - fail_secure = 1; - id = "xenobio_b"; - name = "Cell Containment Blast Door" - }, -/obj/machinery/disposal/deliveryChute{ - dir = 4 - }, -/obj/machinery/door/window/eastleft{ - req_access = list(55) - }, -/obj/machinery/door/firedoor{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark/full, -/area/rnd/xenobiology) -"qbH" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 5 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/coatrack{ - pixel_x = 8; - pixel_y = 10 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/captain) +"qbI" = ( +/obj/machinery/light, +/turf/simulated/floor/tiled/dark, +/area/horizon/rnd/xenobiology/xenoflora) "qbK" = ( /obj/machinery/atmospherics/pipe/simple/visible/yellow, /obj/structure/cable/green{ icon_state = "1-2" }, /turf/simulated/floor/tiled, -/area/outpost/research/anomaly_harvest) +/area/horizon/rnd/xenoarch/anomaly_harvest) "qbL" = ( /obj/machinery/atmospherics/unary/vent_pump/high_volume{ dir = 8 @@ -112282,16 +112127,6 @@ }, /turf/simulated/floor/reinforced, /area/shuttle/hapt) -"qbO" = ( -/obj/machinery/power/apc/low/east, -/obj/structure/cable/green{ - icon_state = "0-8" - }, -/obj/structure/bed/stool/chair/padded/brown{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/medical/psych) "qbQ" = ( /obj/vehicle/bike/speeder, /obj/machinery/atmospherics/unary/vent_pump/high_volume{ @@ -112301,16 +112136,10 @@ }, /turf/simulated/floor/tiled/dark, /area/shuttle/legion) -"qbV" = ( -/obj/machinery/telecomms/bus/preset_one, -/turf/simulated/floor/bluegrid, -/area/tcommsat/chamber) -"qbZ" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/engineering/gravity_gen) +"qbY" = ( +/obj/structure/ship_weapon_dummy, +/turf/simulated/floor/reinforced, +/area/horizon/weapons/grauwolf) "qca" = ( /obj/effect/shuttle_landmark/arrival/interim, /turf/space/transit/east, @@ -112320,129 +112149,104 @@ icon_state = "8,1" }, /area/centcom/specops) -"qcj" = ( +"qcc" = ( +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/outline/grey, +/turf/simulated/floor/plating, +/area/horizon/hangar/auxiliary) +"qcg" = ( +/obj/machinery/power/breakerbox/activated{ + RCon_tag = "Deck 3 Civilian Substation" + }, +/turf/simulated/floor, +/area/horizon/maintenance/substation/civ_d3) +"qch" = ( +/turf/simulated/wall, +/area/horizon/service/custodial/auxiliary) +"qci" = ( +/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 = "4-8" - }, -/obj/structure/lattice/catwalk/indoor, -/turf/simulated/floor/plating, -/area/engineering/bluespace_drive) -"qcn" = ( -/obj/effect/floor_decal/corner/mauve/diagonal, -/obj/machinery/alarm/east, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology) -"qco" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 1 - }, -/obj/effect/map_effect/marker/airlock{ - frequency = 1003; - master_tag = "airlock_horizon_deck_1_aft_port_1"; - name = "airlock_horizon_deck_1_aft_port_1" - }, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"qcp" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" + icon_state = "1-2" }, /turf/simulated/floor/tiled/full, -/area/hallway/primary/central_one) -"qcr" = ( -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ +/area/horizon/hangar/control) +"qcl" = ( +/obj/structure/flora/ausbushes/sparsegrass, +/obj/structure/flora/ausbushes/brflowers, +/mob/living/simple_animal/cow, +/turf/simulated/floor/grass/no_edge, +/area/horizon/service/hydroponics/lower) +"qcs" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance{ + dir = 1; + name = "Custodial Closet Maintenance"; + req_access = list(26) + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/full, +/area/horizon/service/custodial) +"qcv" = ( +/obj/machinery/atmospherics/portables_connector/fuel{ + dir = 1 + }, +/obj/machinery/portable_atmospherics/canister/phoron, +/obj/machinery/door/window/brigdoor{ + dir = 1; + name = "Fuel Access"; + req_access = null; + req_one_access = list(26,29,31,48,67,24,47,73) + }, +/obj/effect/floor_decal/industrial/outline/red, +/obj/machinery/alarm/west, +/turf/simulated/floor/reinforced, +/area/horizon/hangar/intrepid) +"qcw" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/atmos/turbine) +"qcH" = ( +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/structure/disposalpipe/junction, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 4 }, /obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/door/airlock/external{ - dir = 4; - id_tag = "riso1"; - name = "Isolation A"; - req_access = list(65) - }, -/obj/machinery/door/blast/regular/open{ - id = "iso_a"; - name = "Safety Blast Door" - }, -/turf/simulated/floor/tiled/white, -/area/rnd/isolation_c) -"qcu" = ( -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/effect/decal/cleanable/blood/oil, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 + icon_state = "1-8" }, /obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard/deck1) -"qcy" = ( -/obj/effect/floor_decal/corner/yellow{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/engineering/storage_eva) -"qcz" = ( -/obj/structure/window/shuttle/scc_space_ship, -/obj/structure/grille, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "bridge blast"; - name = "Bridge Blast Doors"; - opacity = 0 - }, -/obj/machinery/door/firedoor, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/cable/green{ - icon_state = "0-8" - }, -/obj/machinery/door/blast/shutters/open{ - dir = 2; - id = "shutters_deck3_bridgesafety"; - name = "Safety Shutter" - }, -/obj/effect/landmark/entry_point/fore{ - name = "fore, command conference rooom" - }, -/obj/machinery/door/blast/shutters/open{ - dir = 2; - id = "conferencesafetyshutters"; - name = "Safety Shutter" - }, -/turf/simulated/floor/plating, -/area/bridge/meeting_room) -"qcE" = ( -/obj/structure/grille, -/obj/structure/window/shuttle/scc_space_ship/cardinal, -/obj/machinery/door/blast/shutters{ - dir = 4; - id = "shutters_deck2_hydroponicswindowssafety"; - name = "Viewing Shutter" - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/horizon/hydroponics) +/turf/simulated/floor, +/area/horizon/maintenance/deck_3/aft/port) "qcI" = ( /obj/structure/flora/rock, /obj/effect/floor_decal/spline/plain{ @@ -112459,37 +112263,61 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/tiled/dark/full, /area/shuttle/skipjack) -"qcM" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/obj/machinery/power/sensor{ - name = "Powernet Sensor - Combustion Turbine Output"; - name_tag = "Combustion Turbine Output" - }, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/engineering/engine_room/turbine) -"qcW" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/structure/window/reinforced{ +"qcL" = ( +/obj/effect/floor_decal/spline/fancy/wood{ dir = 8 }, -/mob/living/carbon/human/monkey/punpun, +/turf/simulated/floor/wood, +/area/horizon/command/heads/captain) +"qcN" = ( +/obj/structure/filingcabinet/chestdrawer{ + pixel_x = 8 + }, +/obj/structure/filingcabinet{ + pixel_x = -8 + }, /turf/simulated/floor/carpet, -/area/horizon/bar/backroom) +/area/horizon/repoffice/consular_one) +"qcP" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/black, +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/reactor/supermatter/waste) +"qcV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/corner/red/diagonal, +/obj/effect/floor_decal/spline/plain{ + dir = 8 + }, +/obj/machinery/light/floor{ + dir = 8 + }, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/turf/simulated/floor/lino, +/area/horizon/service/cafeteria) +"qcX" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/closet/crate, +/obj/random/loot, +/obj/random/loot, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/starboard/far) +"qcY" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 9 + }, +/obj/machinery/light/floor{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/horizon/rnd/hallway/secondary) "qcZ" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/security{ @@ -112508,54 +112336,34 @@ }, /turf/simulated/floor/tiled/full, /area/horizon/security/interrogation/monitoring) -"qdb" = ( -/obj/effect/floor_decal/spline/plain/corner, -/obj/effect/floor_decal/spline/plain/corner{ +"qdi" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/obj/effect/floor_decal/spline/plain, -/obj/effect/floor_decal/spline/plain/corner{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/black{ +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/turf/simulated/floor/carpet/rubber, -/area/tcommsat/chamber) -"qdh" = ( -/obj/machinery/alarm/south, -/turf/simulated/floor/tiled/dark, -/area/horizon/bar) -"qdj" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 5 +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/structure/cable{ + icon_state = "1-4" }, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/central) -"qdm" = ( -/obj/effect/floor_decal/corner/purple/full{ - dir = 4 +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/wing/port/far) +"qdk" = ( +/obj/effect/map_effect/window_spawner/full/reinforced/polarized/firedoor{ + id = "cmooffice" }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/atmospherics/pipe/simple/hidden/purple{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/horizon/custodial/disposals) +/turf/simulated/floor/tiled/dark/full, +/area/horizon/command/heads/cmo) "qdr" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 10 }, /turf/simulated/floor/tiled, /area/horizon/security/equipment) -"qdv" = ( -/obj/effect/floor_decal/corner/white/diagonal, -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/medical/paramedic) "qdw" = ( /obj/effect/floor_decal/corner/brown/diagonal, /obj/structure/table/wood, @@ -112568,18 +112376,37 @@ /obj/machinery/alarm/north, /turf/simulated/floor/tiled/dark, /area/horizon/holodeck_control) -"qdA" = ( -/obj/structure/table/steel, -/obj/item/storage/box/lights/mixed{ - pixel_x = -3; - pixel_y = 5 +"qdy" = ( +/obj/structure/engineer_maintenance/pipe/wall, +/turf/simulated/floor/tiled/freezer{ + name = "cooled tiles"; + temperature = 278.15 + }, +/area/horizon/medical/morgue) +"qdz" = ( +/obj/structure/window/shuttle/scc_space_ship, +/obj/structure/grille, +/obj/machinery/door/firedoor, +/obj/effect/landmark/entry_point/aft{ + name = "aft, deck 1 port maintenance, port side" }, -/obj/machinery/alarm/west, /turf/simulated/floor/plating, -/area/engineering/rust_office) -"qdE" = ( -/turf/simulated/wall, -/area/operations/storage) +/area/horizon/maintenance/deck_1/wing/starboard/far) +"qdD" = ( +/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/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/full, +/area/horizon/operations/mining_main/refinery) "qdL" = ( /obj/effect/floor_decal/corner/red{ dir = 10 @@ -112598,91 +112425,86 @@ }, /turf/simulated/floor/tiled/dark, /area/shuttle/syndicate_elite) -"qep" = ( -/obj/machinery/atmospherics/pipe/simple/visible/black{ - dir = 4 - }, -/obj/machinery/meter, -/turf/simulated/floor/plating, -/area/engineering/atmos/air) -"qeq" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/reinforced, -/area/rnd/isolation_b) -"qes" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/effect/landmark/entry_point/port{ - name = "port, hydroponics" - }, -/obj/structure/window/shuttle/scc_space_ship/cardinal, -/obj/machinery/door/blast/shutters{ - dir = 4; - id = "shutters_deck2_hydroponicswindowssafety"; - name = "Viewing Shutter" - }, -/turf/simulated/floor/plating, -/area/horizon/hydroponics) -"qew" = ( -/obj/machinery/camera/network/engineering{ - c_tag = "Engineering - Atmospherics Control 1"; +"qdR" = ( +/obj/effect/floor_decal/corner/dark_green/full{ dir = 1 }, -/obj/effect/floor_decal/corner/yellow, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/engineering/atmos) -"qey" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/button/remote/blast_door{ - dir = 8; - id = "holodeck_alpha_shutters"; - name = "Holodeck Privacy Shutters"; - pixel_x = -23; - req_one_access = list(38) - }, -/obj/effect/floor_decal/corner/dark_green{ - dir = 9 - }, +/obj/structure/table/standard, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/machinery/alarm/east, /turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/central) -"qez" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 8 +/area/horizon/storage/primary) +"qdS" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/air_sensor{ + frequency = 1441; + id_tag = "fusion_sensor" }, -/obj/machinery/airlock_sensor{ - dir = 8; - pixel_x = 20; - pixel_y = -6 +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/reinforced/airless, +/area/horizon/engineering/reactor/indra/mainchamber) +"qdT" = ( +/obj/structure/table/steel, +/obj/item/paper_bin{ + pixel_x = -3 }, -/obj/effect/map_effect/marker/airlock/docking{ - landmark_tag = "nav_horizon_dock_deck_3_starboard_2"; - master_tag = "airlock_horizon_dock_deck_3_starboard_2"; - name = "airlock_horizon_dock_deck_3_starboard_2" +/obj/item/pen/red, +/obj/item/stack/packageWrap, +/obj/item/device/hand_labeler, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/operations/mining_main/refinery) +"qdZ" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 10 }, -/obj/machinery/embedded_controller/radio/airlock/docking_port{ - dir = 8; - pixel_x = 20; - pixel_y = 6 +/obj/machinery/camera/network/third_deck{ + c_tag = "Third Deck - Locker Room"; + dir = 1 }, -/turf/simulated/floor/plating, -/area/horizon/hallway/deck_three/primary/starboard/docks) -"qeA" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille/diagonal{ +/obj/machinery/washing_machine, +/turf/simulated/floor/tiled, +/area/horizon/crew/fitness/changing) +"qeh" = ( +/obj/machinery/door/airlock/external{ dir = 4 }, -/obj/structure/window/shuttle/scc_space_ship, -/turf/simulated/floor/reinforced, -/area/horizon/crew_quarters/lounge/bar) +/obj/machinery/access_button{ + dir = 1; + pixel_x = 28; + pixel_y = -20 + }, +/obj/effect/map_effect/marker/airlock{ + frequency = 1003; + master_tag = "airlock_horizon_deck_1_aft_port_1"; + name = "airlock_horizon_deck_1_aft_port_1" + }, +/obj/effect/map_effect/marker_helper/airlock/exterior, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/auxatmos) +"qel" = ( +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/obj/machinery/power/sensor{ + name = "Powernet Sensor - Deck 1 Research Subgrid"; + name_tag = "Deck 1 Research Subgrid" + }, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/machinery/power/apc/low/west, +/turf/simulated/floor/plating, +/area/horizon/maintenance/substation/xenoarchaeology) +"qex" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/obj/effect/floor_decal/spline/fancy/wood, +/turf/simulated/floor/wood, +/area/horizon/command/bridge/cciaroom) "qeB" = ( /obj/effect/floor_decal/industrial/warning{ dir = 1 @@ -112693,22 +112515,15 @@ }, /turf/unsimulated/floor/plating, /area/centcom/specops) -"qeD" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 10 - }, -/turf/simulated/floor/tiled/dark, -/area/security/checkpoint) -"qeE" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/effect/floor_decal/corner/mauve/diagonal, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ +"qeC" = ( +/obj/structure/toilet{ dir = 4 }, -/turf/simulated/floor/tiled/white, -/area/rnd/lab) +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/tiled/freezer, +/area/horizon/medical/washroom) "qeG" = ( /obj/effect/floor_decal/industrial/warning{ dir = 4 @@ -112720,7 +112535,20 @@ name = "borerstart" }, /turf/simulated/floor/tiled, -/area/outpost/research/anomaly_harvest) +/area/horizon/rnd/xenoarch/anomaly_harvest) +"qeH" = ( +/obj/effect/floor_decal/corner_wide/yellow{ + dir = 1 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/horizon/engineering/hallway/interior) "qeN" = ( /obj/effect/floor_decal/corner/paleblue/full{ dir = 1 @@ -112730,14 +112558,6 @@ }, /turf/unsimulated/floor, /area/centcom/legion) -"qeO" = ( -/obj/effect/decal/cleanable/cobweb, -/obj/structure/ladder/up{ - pixel_y = 13 - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/maintenance/research_port) "qeS" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/closet/crate/freezer/rations, @@ -112747,6 +112567,42 @@ }, /turf/simulated/floor/tiled/dark, /area/shuttle/skipjack) +"qeT" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/fuel, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/shuttle/intrepid/starboard_compartment) +"qeU" = ( +/obj/effect/floor_decal/corner/purple{ + dir = 6 + }, +/obj/structure/closet/crate/trashcart, +/obj/machinery/disposal/small/west, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/item/storage/bag/trash, +/obj/item/storage/bag/trash{ + pixel_x = -9; + pixel_y = 2 + }, +/obj/item/storage/bag/trash{ + pixel_x = -4; + pixel_y = -2 + }, +/turf/simulated/floor/tiled, +/area/horizon/service/custodial/auxiliary) "qeV" = ( /obj/structure/table/wood, /obj/item/device/flashlight/lamp/green{ @@ -112757,31 +112613,43 @@ /obj/item/storage/slide_projector, /turf/simulated/floor/wood, /area/horizon/security/meeting_room) -"qeY" = ( -/obj/random/loot, -/obj/structure/closet, +"qfc" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/light/small{ + dir = 8 + }, /turf/simulated/floor/tiled, -/area/maintenance/aux_atmospherics/deck_2/starboard/wing) -"qfl" = ( -/obj/effect/floor_decal/corner_wide/lime/diagonal, +/area/horizon/operations/warehouse) +"qfe" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 + dir = 10 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ dir = 4 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/main/port) +"qfm" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 10 }, -/turf/simulated/floor/tiled/white, -/area/medical/reception) +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled/dark, +/area/horizon/hangar/intrepid) "qfo" = ( /turf/simulated/open/airless, /area/horizon/exterior) -"qfs" = ( -/obj/structure/stairs/north, -/turf/simulated/floor/tiled, -/area/operations/storage) "qfy" = ( /obj/effect/floor_decal/spline/plain{ dir = 10 @@ -112797,55 +112665,6 @@ /obj/machinery/light/colored/red, /turf/simulated/floor/shuttle/dark_red, /area/shuttle/hapt) -"qfE" = ( -/obj/structure/bed/stool/chair/padded/red{ - dir = 1 - }, -/obj/effect/floor_decal/spline/fancy/wood/corner, -/turf/simulated/floor/wood, -/area/horizon/crew_quarters/lounge/bar) -"qfF" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/maintenance{ - dir = 4; - req_one_access = list(12) - }, -/turf/simulated/floor/tiled/full, -/area/maintenance/engineering) -"qfH" = ( -/obj/effect/floor_decal/corner_wide/purple{ - dir = 5 - }, -/obj/effect/floor_decal/corner_wide/purple{ - dir = 8 - }, -/obj/machinery/camera/network/research{ - c_tag = "Research - Xenoarchaeology 2" - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenoarch_atrium) -"qfI" = ( -/obj/structure/closet/hazmat/research, -/obj/item/tank/oxygen, -/obj/item/clothing/mask/gas/alt, -/obj/machinery/button/remote/airlock{ - id = "xeno_bot_hazard"; - name = "Xenobotany Hazardous Specimens"; - pixel_y = -18; - req_access = list(52); - specialfunctions = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology/xenoflora) "qfJ" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -112864,16 +112683,19 @@ }, /turf/simulated/floor/tiled/full, /area/horizon/security/hallway) -"qfQ" = ( -/obj/effect/floor_decal/corner/mauve{ - dir = 6 +"qfK" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 }, -/obj/machinery/power/apc/east, -/obj/structure/cable/green{ - icon_state = "0-8" +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology) +/turf/simulated/floor/wood, +/area/horizon/command/heads/om) +"qfM" = ( +/obj/structure/girder, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/port/far) "qfR" = ( /obj/structure/lattice/catwalk, /obj/structure/railing/mapped{ @@ -112881,72 +112703,50 @@ }, /turf/simulated/open/airless, /area/horizon/exterior) -"qgi" = ( +"qga" = ( /obj/structure/cable/green{ icon_state = "4-8" }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 }, -/obj/structure/cable/green{ - icon_state = "2-8" +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 10 +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor, +/area/horizon/hallway/primary/deck_3/port) +"qgc" = ( +/obj/effect/landmark/entry_point/fore{ + name = "fore, armoury" }, +/turf/simulated/wall/shuttle/scc_space_ship/cardinal, +/area/horizon/maintenance/deck_2/security_port) +"qgp" = ( +/obj/machinery/door/airlock/glass_command{ + dir = 1; + id_tag = "bridge_foyer"; + name = "Bridge"; + req_one_access = list(19) + }, +/obj/effect/map_effect/door_helper/unres, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id = "bridge blast"; + name = "Bridge Blast Doors"; + opacity = 0 + }, +/obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled, -/area/hangar/intrepid) -"qgk" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/obj/machinery/door/airlock/external{ - dir = 4 - }, -/obj/effect/map_effect/marker/airlock{ - frequency = 2003; - master_tag = "airlock_horizon_deck_2_aft_indra"; - name = "airlock_horizon_deck_2_aft_indra" - }, -/obj/machinery/access_button{ - pixel_x = 28; - pixel_y = 20 - }, -/obj/effect/map_effect/marker_helper/airlock/interior, -/turf/simulated/floor/plating, -/area/engineering/aft_airlock) -"qgm" = ( -/obj/machinery/alarm/east, -/obj/effect/floor_decal/corner/dark_green/full{ - dir = 1 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"qgn" = ( -/obj/structure/bed/stool/chair/office/bridge/pilot{ - dir = 8 - }, -/turf/simulated/floor/shuttle/dark_blue, -/area/shuttle/escape_pod/pod3) -"qgo" = ( -/obj/effect/floor_decal/industrial/warning/cee{ - dir = 4 - }, -/obj/machinery/embedded_controller/radio/simple_docking_controller{ - frequency = 1380; - id_tag = "intrepid_dock"; - name = "\improper Intrepid docking port controller"; - pixel_y = 28; - req_one_access = list(74) - }, -/turf/simulated/floor/plating, -/area/hangar/intrepid) +/area/horizon/command/bridge/controlroom) "qgq" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 4 @@ -112980,17 +112780,49 @@ }, /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 +"qgE" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 10 }, +/obj/machinery/light/floor, +/turf/simulated/floor/tiled, +/area/horizon/rnd/hallway) +"qgF" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 9 }, -/obj/machinery/light/small, -/turf/simulated/floor/tiled/dark, -/area/shuttle/quark/cargo_hold) +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/effect/floor_decal/corner/dark_blue, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_3/port/docks) +"qgI" = ( +/obj/effect/floor_decal/industrial/hatch/red, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/door/blast/regular{ + dir = 4; + id = "EngineVent"; + name = "Supermatter Emergency Ventilatory Blast Door" + }, +/turf/simulated/floor/reinforced/airless, +/area/horizon/engineering/reactor/supermatter/mainchamber) +"qgL" = ( +/obj/structure/tank_wall/air{ + density = 0; + icon_state = "air5"; + opacity = 0 + }, +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 10 + }, +/turf/simulated/floor/reinforced/airmix, +/area/horizon/engineering/atmos/air) "qgO" = ( /obj/effect/floor_decal/corner/blue/full{ dir = 4 @@ -113011,6 +112843,31 @@ /obj/machinery/light, /turf/simulated/floor/tiled/white, /area/horizon/security/autopsy_laboratory) +"qgS" = ( +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 4; + icon_state = "shutter0"; + id = "LCKDshutters"; + name = "MedBay Lockdown Shutters"; + opacity = 0 + }, +/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/medical/paramedic) +"qgT" = ( +/turf/simulated/wall/r_wall, +/area/horizon/engineering/gravity_gen) +"qgW" = ( +/turf/simulated/wall/shuttle/scc_space_ship/cardinal, +/area/horizon/rnd/server) +"qgY" = ( +/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, +/obj/machinery/door/blast/shutters/open{ + id = "RnDShutters" + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/rnd/lab) "qgZ" = ( /obj/machinery/porta_turret/cannon, /obj/effect/floor_decal/industrial/warning/full, @@ -113019,105 +112876,85 @@ }, /turf/simulated/floor/reinforced, /area/shuttle/hapt) -"qhf" = ( -/obj/structure/railing/mapped{ +"qhi" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 10 + }, +/turf/simulated/floor/reinforced/airless, +/area/horizon/engineering/atmos/propulsion/starboard) +"qhk" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/sortjunction/flipped{ + dir = 1; + name = "Chapel Office"; + sortType = "Chapel Office" + }, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4 }, -/obj/structure/bed/stool/chair/office/dark{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/operations/lower/machinist/surgicalbay) -"qhr" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/turf/simulated/floor/carpet/rubber, -/area/tcommsat/entrance) -"qhu" = ( -/obj/effect/floor_decal/corner/dark_blue{ +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/service/port) +"qhn" = ( +/obj/structure/window/shuttle/unique/scc/scout{ + icon_state = "3,2" }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 8 +/obj/structure/window/shuttle/unique/scc/scout/over{ + icon_state = "3,2" }, +/obj/effect/floor_decal/industrial/outline, +/turf/simulated/floor/reinforced, +/area/horizon/shuttle/canary) +"qho" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/machinery/computer/general_air_control/large_tank_control/terminal{ + name = "Phoron Supply Monitor"; + output_tag = "ph_out_starboardthruster"; + sensors = list("ph_sensor"="Tank") + }, +/obj/effect/floor_decal/industrial/outline/custodial, /turf/simulated/floor/tiled/dark, -/area/bridge/controlroom) +/area/horizon/engineering/atmos/propulsion) +"qht" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/aux, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/door/airlock/maintenance_hatch{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/operations/starboard/amidships) "qhy" = ( /obj/structure/sign/securearea, /turf/simulated/wall/shuttle/scc_space_ship/cardinal, /area/horizon/exterior) -"qhz" = ( -/obj/machinery/light, -/obj/machinery/atmospherics/pipe/simple/visible/black{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/engineering/atmos/propulsion) -"qhF" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/structure/cable/green{ - icon_state = "2-4" - }, -/obj/structure/lattice/catwalk/indoor/grate, -/turf/simulated/floor, -/area/bridge) -"qhG" = ( -/obj/structure/shuttle_part/scc/mining{ - icon_state = "6,1"; - outside_part = 0 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/shuttle/mining) -"qhN" = ( -/obj/effect/floor_decal/corner/purple/diagonal, -/obj/machinery/light{ - dir = 8 - }, -/obj/item/device/radio/intercom/west, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/horizon/custodial/disposals) "qhR" = ( /turf/unsimulated/floor/freezer, /area/centcom/distress_prep) -"qhU" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 10 +"qhS" = ( +/obj/structure/cable/green{ + icon_state = "4-8" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ +/obj/machinery/atmospherics/pipe/manifold/visible/yellow{ dir = 4 }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/obj/machinery/light, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/port/docks) +/obj/structure/lattice/catwalk/indoor, +/turf/simulated/floor/plating, +/area/horizon/engineering/atmos/air) "qhX" = ( /obj/structure/cable/green{ icon_state = "1-2" @@ -113135,88 +112972,48 @@ }, /turf/simulated/floor/tiled, /area/horizon/security/investigations_hallway) -"qhZ" = ( -/obj/machinery/power/breakerbox/activated{ - RCon_tag = "Engineering Lower Deck Substation" +"qii" = ( +/obj/effect/floor_decal/spline/fancy/wood, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 }, -/turf/simulated/floor/plating, -/area/maintenance/substation/engineering/lower) -"qih" = ( -/obj/structure/cable/green{ - icon_state = "2-8" +/obj/machinery/button/remote/blast_door{ + pixel_y = -18; + name = "External Shutters"; + id = "ccia_shutters" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/yellow, -/obj/structure/lattice/catwalk/indoor/grate, -/turf/simulated/floor/plating, -/area/hallway/engineering) -"qio" = ( -/obj/effect/floor_decal/corner/dark_green/full, -/turf/simulated/floor/tiled, -/area/hallway/primary/aft) -"qit" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/aux{ - dir = 4 - }, -/obj/machinery/door/airlock/highsecurity{ - dir = 8; - name = "Restricted Area" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/blast/regular/open{ - name = "Command Bunker Lockdown"; - id = "command_bunker_lockdown" - }, -/turf/simulated/floor/tiled/dark, -/area/bridge/aibunker) -"qiG" = ( -/obj/machinery/light/small/emergency{ +/turf/simulated/floor/wood, +/area/horizon/command/bridge/cciaroom) +"qim" = ( +/obj/effect/floor_decal/corner/dark_blue/full{ dir = 8 }, -/obj/effect/floor_decal/industrial/warning{ +/turf/simulated/floor/tiled, +/area/horizon/command/bridge/controlroom) +"qiX" = ( +/obj/machinery/shower{ + pixel_y = 24 + }, +/obj/structure/curtain/open/shower, +/obj/machinery/door/window/southleft{ + name = "Shower" + }, +/obj/structure/bed/handrail{ dir = 4 }, +/turf/simulated/floor/tiled/freezer, +/area/horizon/crew/fitness/showers) +"qja" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 8 + }, /obj/machinery/portable_atmospherics/canister/empty, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"qiW" = ( -/obj/machinery/button/ignition{ - id = "turbine_igni"; - pixel_y = 26; - name = "Combustion Chamber Ignition" - }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 4 - }, /obj/effect/floor_decal/corner/yellow{ - dir = 1 + dir = 6 }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/visible/cyan, +/obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled/dark, -/area/engineering/engine_room/turbine) -"qiZ" = ( -/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/maintenance/wing/starboard/deck1) +/area/horizon/engineering/reactor/supermatter/waste) "qjk" = ( /obj/effect/floor_decal/corner/dark_blue{ dir = 10 @@ -113227,70 +113024,132 @@ /obj/machinery/newscaster/south, /turf/simulated/floor/tiled, /area/horizon/security/hallway) -"qju" = ( -/turf/simulated/wall, -/area/horizon/stairwell/central) -"qjB" = ( -/obj/structure/table/steel, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 6 +"qjm" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 }, -/obj/machinery/camera/network/first_deck{ - c_tag = "First Deck - EVA Storage 1"; +/obj/structure/closet, +/obj/random/loot, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/research) +"qjo" = ( +/obj/effect/floor_decal/industrial/warning{ dir = 8 }, -/obj/structure/closet/walllocker/medical/firstaid{ - pixel_x = 32 +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/structure/cable{ + icon_state = "4-8" }, -/turf/simulated/floor/tiled/dark, -/area/storage/eva) +/turf/simulated/floor, +/area/horizon/maintenance/deck_3/aft/starboard) +"qjq" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/horizon/operations/warehouse) +"qjy" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/corner/red/diagonal, +/obj/effect/floor_decal/spline/plain{ + dir = 10 + }, +/turf/simulated/floor/lino, +/area/horizon/service/cafeteria) "qjE" = ( /obj/effect/floor_decal/spline/fancy{ dir = 8 }, /turf/simulated/floor/holofloor/wood, /area/horizon/holodeck/source_sauna) -"qjF" = ( -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/simple/visible/black, -/obj/effect/floor_decal/corner/yellow{ +"qjH" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/table/rack, +/obj/random/loot, +/turf/simulated/floor/tiled/dark, +/area/horizon/maintenance/deck_2/wing/port/far) +"qjJ" = ( +/obj/effect/floor_decal/industrial/loading/yellow, +/obj/effect/floor_decal/spline/plain{ + dir = 10 + }, +/obj/effect/landmark/start{ + name = "Cyborg" + }, +/turf/simulated/floor/carpet/rubber, +/area/horizon/crew/chargebay) +"qjQ" = ( +/obj/machinery/fusion_fuel_injector/mapped{ + dir = 8; + initial_id_tag = "horizon_fusion" + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/carpet/rubber, +/area/horizon/engineering/reactor/indra/mainchamber) +"qjR" = ( +/obj/effect/floor_decal/corner/white/diagonal, +/obj/structure/table/standard, +/obj/item/reagent_containers/hypospray{ + pixel_x = -2; + pixel_y = 5 + }, +/obj/item/reagent_containers/hypospray{ + pixel_x = 4; + pixel_y = 5 + }, +/obj/effect/floor_decal/industrial/warning{ dir = 1 }, -/obj/effect/floor_decal/corner/dark_blue{ +/obj/item/storage/toolbox/mechanical{ + pixel_y = -11 + }, +/turf/simulated/floor/tiled, +/area/horizon/medical/paramedic) +"qjW" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/turf/simulated/floor/tiled/dark, -/area/engineering/atmos) -"qjU" = ( /obj/structure/cable/green{ icon_state = "4-8" }, -/obj/effect/floor_decal/corner/dark_green{ - dir = 10 - }, -/obj/machinery/light/floor, -/obj/structure/railing/mapped, /turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/central) +/area/horizon/rnd/hallway) +"qka" = ( +/obj/structure/closet/walllocker/emerglocker/north, +/obj/effect/floor_decal/industrial/outline/emergency_closet, +/obj/effect/floor_decal/spline/plain{ + dir = 1 + }, +/obj/effect/floor_decal/spline/plain, +/turf/simulated/floor/carpet/rubber, +/area/horizon/tcommsat/chamber) +"qkb" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 6 + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor, +/area/horizon/maintenance/deck_3/aft/port/far) +"qkf" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor, +/area/horizon/command/bridge/upperdeck) "qkh" = ( -/turf/simulated/wall, -/area/maintenance/substation/supply) -"qkk" = ( -/obj/machinery/door/firedoor/multi_tile{ - dir = 2 - }, -/obj/machinery/door/airlock/multi_tile/glass{ - dir = 2; - name = "Hangar" - }, -/obj/machinery/door/blast/shutters/open{ - dir = 8; - id = "shutters_hangardeskcpstarboard"; - name = "Security Checkpoint Shutter" - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/dark, -/area/security/checkpoint) +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/port) "qkl" = ( /obj/machinery/door/airlock/glass{ dir = 1; @@ -113303,55 +113162,53 @@ icon_state = "dark" }, /area/centcom/legion) -"qko" = ( -/obj/machinery/atmospherics/pipe/simple/visible/black{ - dir = 10 +"qkm" = ( +/turf/simulated/wall/r_wall, +/area/horizon/hallway/primary/deck_3/central) +"qkp" = ( +/obj/structure/cable/green{ + icon_state = "1-2" }, -/obj/structure/cable/yellow{ - icon_state = "1-4" +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/sortjunction{ + dir = 1; + name = "Medical Bay"; + sortType = "Medical Bay" }, -/turf/simulated/floor/plating, -/area/engineering/engine_room) +/turf/simulated/floor/tiled/white, +/area/horizon/medical/gen_treatment) "qkq" = ( /obj/effect/map_effect/perma_light/starlight/wide, /turf/template_noop, /area/template_noop) -"qks" = ( -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lime{ - dir = 9 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/machinery/computer/shuttle_control/lift{ - pixel_x = -3; - pixel_y = 23; - shuttle_tag = "Morgue Lift" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/medical/morgue/lower) -"qkt" = ( -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/structure/sign/directions/prop{ - pixel_y = -22 - }, -/obj/effect/floor_decal/spline/plain/yellow{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/smes/rust) "qkz" = ( /obj/structure/ship_weapon_dummy/barrel, /turf/template_noop, /area/template_noop) +"qkF" = ( +/obj/effect/floor_decal/corner/grey/diagonal, +/obj/effect/floor_decal/spline/plain/corner{ + dir = 4 + }, +/obj/machinery/vending/dinnerware{ + density = 0; + pixel_y = 24 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/service/kitchen) +"qkI" = ( +/obj/machinery/atmospherics/omni/filter{ + name = "hydrogen filter"; + tag_east = 2; + tag_north = 8; + tag_south = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/atmos) "qkM" = ( /turf/simulated/floor/holofloor/lino, /area/horizon/holodeck/source_chapel) @@ -113367,122 +113224,87 @@ }, /turf/unsimulated/floor, /area/centcom/legion/hangar5) -"qkR" = ( -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/alarm/west, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/maintenance/wing/port) "qkS" = ( /turf/simulated/floor/beach/sand{ dir = 9; icon_state = "beach" }, /area/centcom/shared_dream) -"qkT" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/machinery/light/small/emergency{ - dir = 1 - }, -/turf/simulated/floor, -/area/maintenance/engineering_ladder) "qkZ" = ( /turf/unsimulated/floor{ icon_state = "dark_preview" }, /area/centcom/control) -"qlc" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 6 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/security/checkpoint2) "qle" = ( /obj/structure/cable/green{ icon_state = "2-8" }, /turf/simulated/floor/tiled, /area/horizon/security/brig) -"qlk" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, +"qlj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/manifold/hidden, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/hangar/starboard) +"qln" = ( +/obj/machinery/atmospherics/pipe/simple/visible/purple{ + dir = 4 + }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/door/airlock/hatch{ - dir = 1; - id_tag = "r-ust_electrical_maintenance"; - locked = 1; - name = "INDRA Reactor SMES"; - req_access = list(11) - }, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/smes/rust) -"qlm" = ( -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "bridge blast"; - name = "Bridge Blast Doors"; - opacity = 0 - }, -/obj/machinery/door/firedoor, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/door/blast/shutters/open{ - dir = 4; - id = "shutters_deck3_bridgesafety"; - name = "Safety Shutter" - }, -/obj/structure/window/shuttle/scc_space_ship, -/obj/structure/grille, -/obj/machinery/door/blast/shutters/open{ - dir = 4; - id = "conferencesafetyshutters"; - name = "Safety Shutter" - }, -/turf/simulated/floor, -/area/bridge/meeting_room) -"qlo" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/machinery/firealarm/west, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/effect/floor_decal/industrial/warning{ +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/engineering/atmos/propulsion/starboard) +"qlq" = ( +/obj/effect/floor_decal/corner/dark_green/full, +/obj/machinery/light{ dir = 8 }, -/obj/structure/sink{ +/obj/structure/sign/emergency/evacuation{ dir = 8; - pixel_x = -12 + pixel_x = -32 }, -/obj/machinery/shower{ - dir = 4; - pixel_y = 1 - }, -/turf/simulated/floor/tiled/full, -/area/engineering/engine_airlock) +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled/dark, +/area/horizon/hangar/intrepid) "qlr" = ( /obj/structure/railing/mapped{ dir = 8 }, /turf/simulated/open/airless, /area/template_noop) +"qls" = ( +/obj/structure/stairs/south, +/obj/structure/railing/mapped{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/horizon/service/hydroponics/lower) +"qlt" = ( +/obj/item/device/taperecorder{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/briefcase, +/obj/item/device/flash, +/obj/item/storage/secure/briefcase, +/obj/item/device/eftpos{ + eftpos_name = "Internal Affairs EFTPOS scanner" + }, +/obj/item/clothing/under/suit_jacket/really_black, +/obj/item/clothing/shoes/laceup, +/obj/item/clothing/shoes/laceup, +/obj/item/clipboard, +/obj/item/pen/multi, +/obj/item/device/camera, +/obj/structure/closet/lawcloset, +/obj/item/paper_scanner, +/obj/item/folder/red, +/obj/item/folder/yellow, +/obj/item/device/destTagger, +/obj/item/stack/packageWrap, +/turf/simulated/floor/carpet, +/area/horizon/repoffice/consular_two) "qlu" = ( /obj/structure/closet/crate/internals{ name = "emergency equipment" @@ -113509,10 +113331,6 @@ icon_state = "dark_preview" }, /area/centcom/specops) -"qlv" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/reinforced, -/area/engineering/gravity_gen) "qlA" = ( /obj/structure/shuttle_part/ert{ icon_state = "2,0"; @@ -113559,6 +113377,22 @@ }, /turf/unsimulated/floor, /area/centcom/evac) +"qlO" = ( +/obj/machinery/atmospherics/unary/outlet_injector{ + dir = 8; + frequency = 1441; + id = "ph_in"; + name = "phoron injector"; + use_power = 1 + }, +/turf/simulated/floor/reinforced/phoron, +/area/horizon/engineering/atmos) +"qlP" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/wall/shuttle/scc_space_ship/cardinal, +/area/horizon/command/bridge/meeting_room) "qlQ" = ( /obj/effect/floor_decal/corner/beige/diagonal, /obj/machinery/hologram/holopad, @@ -113576,64 +113410,28 @@ }, /turf/unsimulated/floor/plating, /area/shuttle/transport1) -"qma" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/effect/floor_decal/corner_wide/green/diagonal, -/turf/simulated/floor/tiled/white, -/area/medical/exam) -"qmb" = ( -/obj/structure/cable/green{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, +"qme" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4 }, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenoarch_storage) -"qmg" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/effect/floor_decal/corner/dark_blue/full{ - dir = 4 - }, -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/machinery/light/floor, -/turf/simulated/floor/tiled, -/area/bridge) -"qmk" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, /obj/effect/floor_decal/corner/dark_green{ dir = 6 }, -/obj/structure/cable/green{ - icon_state = "4-8"; - d1 = 4; - d2 = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, /turf/simulated/floor/tiled, -/area/horizon/hallway/deck_two/fore) +/area/horizon/hangar/intrepid) +"qmh" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/light_switch{ + dir = 1; + pixel_y = 28 + }, +/turf/simulated/floor/wood, +/area/horizon/command/bridge/meeting_room) "qmm" = ( /obj/item/device/flashlight/flare, /obj/item/device/flashlight/flare, @@ -113654,44 +113452,98 @@ /obj/structure/table/steel, /turf/unsimulated/floor/plating, /area/centcom/specops) -"qmn" = ( +"qmo" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 6 + }, /obj/structure/cable/green{ - icon_state = "0-8" - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 5 - }, -/obj/machinery/power/apc/low/south, -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/isolation_b) -"qmy" = ( -/obj/structure/cable{ icon_state = "1-2" }, -/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/industrial/hatch/yellow, /obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/airlock/atmos{ - name = "Drone Fabrication"; - req_one_access = list(11,24) +/turf/simulated/floor/tiled/full, +/area/horizon/hallway/primary/deck_1/central) +"qms" = ( +/obj/structure/window/shuttle/scc_space_ship, +/obj/structure/grille, +/obj/machinery/door/firedoor, +/obj/effect/landmark/entry_point/aft{ + name = "aft, engineering hallway" }, /turf/simulated/floor/plating, -/area/engineering/drone_fabrication) +/area/horizon/engineering/hallway/aft) "qmC" = ( /turf/simulated/wall/shuttle/unique/tcfl{ icon_state = "4,6" }, /area/shuttle/legion) -"qmE" = ( -/obj/structure/cable{ +"qmF" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/horizon/operations/machinist/surgicalbay) +"qmG" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/light/small/emergency{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/research) +"qmI" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/railing/mapped, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_3/central) +"qmN" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/cargo_compartment) +"qmO" = ( +/obj/machinery/embedded_controller/radio/simple_docking_controller/escape_pod_berth{ + dir = 4; + frequency = 1380; + id_tag = "escape_pod_4_berth"; + pixel_x = -25; + tag_door = "escape_pod_4_berth_hatch" + }, +/turf/simulated/floor/tiled, +/area/horizon/hangar/operations) +"qmR" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ icon_state = "4-8" }, /obj/structure/lattice/catwalk/indoor/grate, /turf/simulated/floor/plating, -/area/hangar/auxiliary) +/area/horizon/rnd/hallway) "qmS" = ( /obj/machinery/door/airlock/maintenance{ dir = 4; @@ -113702,6 +113554,15 @@ }, /turf/simulated/floor, /area/horizon/security/evidence_storage) +"qmT" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/orange{ + icon_state = "1-4" + }, +/obj/structure/lattice/catwalk/indoor, +/turf/simulated/floor/plating, +/area/horizon/engineering/bluespace_drive) "qmV" = ( /obj/effect/floor_decal/spline/fancy/wood, /obj/machinery/light{ @@ -113711,11 +113572,15 @@ icon_state = "wood" }, /area/centcom/control) -"qmZ" = ( -/obj/structure/reagent_dispensers/extinguisher, -/obj/effect/floor_decal/corner/red/diagonal, +"qmX" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 9 + }, +/obj/machinery/vending/cola, +/obj/machinery/alarm/west, +/obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled, -/area/horizon/maintenance/deck_three/aft/starboard) +/area/horizon/hallway/primary/deck_2/starboard) "qna" = ( /obj/effect/floor_decal/corner/beige{ dir = 10 @@ -113734,28 +113599,14 @@ }, /turf/simulated/floor/tiled/white, /area/horizon/security/forensic_laboratory) -"qnc" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/purple, -/turf/simulated/wall/shuttle/scc_space_ship/cardinal, -/area/horizon/custodial/disposals) -"qne" = ( -/obj/machinery/door/blast/shutters/open{ - dir = 2; - id = "shutters_deck3_cafewindows"; - name = "Cafe Window Shutter" +"qnj" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 4 }, -/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/cafeteria) -"qni" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/closet/wardrobe/engineering_yellow, -/obj/effect/floor_decal/corner/yellow/full, -/obj/effect/floor_decal/industrial/outline/operations, -/turf/simulated/floor/tiled, -/area/engineering/locker_room) +/obj/item/reagent_containers/food/drinks/shaker, +/obj/structure/table/stone/marble, +/turf/simulated/floor/marble/dark, +/area/horizon/command/bridge/minibar) "qnn" = ( /obj/structure/table/reinforced/steel, /obj/item/storage/firstaid/adv{ @@ -113771,52 +113622,25 @@ }, /turf/unsimulated/floor, /area/centcom/legion/hangar5) -"qnr" = ( -/obj/machinery/sparker{ - id = "port_prop_igni"; - pixel_x = -15 - }, -/obj/machinery/atmospherics/unary/outlet_injector{ - dir = 8; - frequency = 1442; - id = "port_prop_in"; - tag = "port_prop_in"; - name = "fuel injector" - }, -/turf/simulated/floor/reinforced/airless, -/area/engineering/atmos/propulsion) -"qnt" = ( -/obj/effect/floor_decal/spline/fancy/wood/full, -/obj/random/pottedplant, -/turf/simulated/floor/grass/no_edge, -/area/hallway/primary/aft) -"qnx" = ( -/obj/effect/floor_decal/corner_wide/yellow{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/hallway/engineering/rust) -"qny" = ( -/obj/structure/lattice, -/obj/structure/platform/ledge, -/obj/structure/platform/ledge{ - dir = 4 - }, -/obj/structure/platform_deco/ledge{ - dir = 5 - }, -/turf/simulated/open, -/area/hallway/primary/central_one) "qnz" = ( /obj/structure/bed/stool/chair/folding, /turf/simulated/floor/exoplanet/grass, /area/centcom/shared_dream) -"qnF" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 +"qnE" = ( +/obj/machinery/light{ + dir = 1 }, -/turf/simulated/floor/reinforced/airless, -/area/template_noop) +/obj/effect/floor_decal/corner_wide/black{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/atmos/propulsion) "qnI" = ( /obj/machinery/light{ dir = 4 @@ -113842,15 +113666,6 @@ /obj/item/clothing/accessory/holster/hip, /turf/unsimulated/floor, /area/centcom/legion/hangar5) -"qnM" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/freezer{ - name = "cooled tiles"; - temperature = 253.15 - }, -/area/horizon/kitchen/freezer) "qnO" = ( /obj/effect/floor_decal/corner/lime{ dir = 5 @@ -113863,36 +113678,20 @@ icon_state = "dark_preview" }, /area/centcom/holding) -"qnP" = ( -/obj/effect/floor_decal/corner/yellow{ - dir = 6 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/rust_office) "qnT" = ( /obj/structure/coatrack, /turf/unsimulated/floor{ icon_state = "dark_preview" }, /area/centcom/control) -"qnX" = ( -/obj/machinery/door/airlock/external, -/obj/machinery/access_button{ - dir = 1; - pixel_x = 28; - pixel_y = 12 - }, -/obj/effect/map_effect/marker_helper/airlock/exterior, -/obj/effect/map_effect/marker/airlock/docking{ - landmark_tag = "nav_horizon_dock_deck_3_starboard_2"; - master_tag = "airlock_horizon_dock_deck_3_starboard_2"; - name = "airlock_horizon_dock_deck_3_starboard_2" +"qnV" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 }, +/obj/structure/trash_pile, +/obj/random/dirt_75, /turf/simulated/floor/plating, -/area/horizon/hallway/deck_three/primary/starboard/docks) +/area/horizon/maintenance/deck_2/wing/starboard/nacelle) "qnY" = ( /obj/structure/railing/mapped{ dir = 4 @@ -113901,67 +113700,83 @@ /obj/random/tool, /turf/unsimulated/floor/plating, /area/centcom/spawning) -"qoc" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/maintenance{ +"qoa" = ( +/obj/machinery/light/small/red{ dir = 4 }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard/far) -"qoe" = ( -/obj/effect/floor_decal/corner/dark_blue/full, -/obj/machinery/photocopier, -/obj/machinery/light, +/turf/simulated/wall, +/area/horizon/maintenance/substation/wing_starboard) +"qod" = ( +/obj/machinery/papershredder, +/obj/machinery/newscaster/west, +/turf/simulated/floor/tiled/full, +/area/horizon/command/bridge/cciaroom) +"qof" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/bed/stool/bar/padded/red{ + dir = 8 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/horizon/service/cafeteria) +"qoh" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/yellow, +/obj/effect/floor_decal/corner/yellow/full{ + dir = 1 + }, /turf/simulated/floor/tiled, -/area/bridge/upperdeck) -"qop" = ( -/obj/structure/tank_wall{ - density = 0; - icon_state = "m-6"; - opacity = 0 +/area/horizon/stairwell/engineering/deck_1) +"qol" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 }, -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/research) +"qor" = ( +/obj/machinery/alarm/east, +/obj/effect/floor_decal/spline/fancy/wood/cee{ dir = 4 }, -/turf/simulated/floor/reinforced/airless, -/area/engineering/atmos) +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/horizon/command/heads/rd) +"qot" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 5 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_3/starboard/docks) +"qov" = ( +/obj/effect/map_effect/window_spawner/full/borosilicate/reinforced/firedoor, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/reactor/supermatter/monitoring) +"qoz" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/aft_airlock) "qoA" = ( /obj/machinery/porta_turret/legion, /turf/unsimulated/floor, /area/centcom/legion/hangar5) -"qoD" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/camera/network/research{ - c_tag = "Research - Isolation B"; - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 4 - }, -/obj/machinery/alarm/south{ - alarm_id = 1502; - breach_detection = 0; - name = "Isolation B"; - rcon_setting = 3; - report_danger_level = 0; - req_one_access = list(7,47,24,11) - }, -/turf/simulated/floor/tiled/white, -/area/rnd/isolation_b) -"qoE" = ( -/obj/structure/table/wood, -/obj/item/device/flashlight/lamp{ - pixel_x = 3; - pixel_y = 10 - }, -/turf/simulated/floor/carpet, -/area/chapel/office) "qoG" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 8 @@ -113969,6 +113784,45 @@ /obj/structure/table/stone/marble, /turf/simulated/floor/holofloor/wood, /area/horizon/holodeck/source_chapel) +"qoJ" = ( +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/manifold/visible/black, +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/atmos) +"qoK" = ( +/obj/structure/bed/stool/chair/office/bridge{ + dir = 1 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner/dark_blue/diagonal, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/ai/upload_foyer) +"qoR" = ( +/obj/effect/floor_decal/corner_wide/yellow{ + dir = 6 + }, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/turf/simulated/floor/tiled, +/area/horizon/engineering/hallway/interior) +"qoX" = ( +/turf/simulated/floor/reinforced, +/area/horizon/rnd/xenobiology/hazardous) "qpb" = ( /obj/structure/table/reinforced/steel, /obj/item/storage/belt/utility/very_full{ @@ -113995,30 +113849,14 @@ /obj/effect/decal/cleanable/dirt, /turf/unsimulated/floor, /area/antag/burglar) -"qpe" = ( -/obj/effect/floor_decal/corner/brown{ - dir = 6 +"qpq" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 5 }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/refinery) -"qpf" = ( -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/effect/floor_decal/corner/dark_green{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/port) -"qpl" = ( -/obj/structure/railing/mapped, -/obj/effect/floor_decal/industrial/warning, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/horizon/maintenance/deck_two/fore/starboard) +/obj/machinery/bookbinder, +/obj/structure/engineer_maintenance/electric/wall, +/turf/simulated/floor/wood, +/area/horizon/service/library) "qpr" = ( /obj/structure/closet/secure_closet/guncabinet{ name = "Heavy Asset Protection"; @@ -114049,98 +113887,36 @@ /obj/item/gun/projectile/automatic/rifle/shotgun, /turf/simulated/floor/shuttle/black, /area/shuttle/hapt) -"qps" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/aux{ - dir = 4 - }, -/turf/simulated/floor/reinforced, -/area/bridge/selfdestruct) -"qpv" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/horizon/maintenance/deck_two/fore/starboard) -"qpw" = ( -/obj/effect/floor_decal/corner/mauve/full{ - dir = 8 - }, -/obj/structure/engineer_maintenance/electric{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology) -"qpA" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/floor_decal/corner/mauve{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/storage/eva) -"qpH" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 5 - }, -/turf/simulated/floor/wood, -/area/bridge/minibar) -"qpJ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/obj/machinery/door/airlock/external{ - dir = 4 - }, -/obj/machinery/access_button{ - dir = 8; - pixel_x = -12; - pixel_y = -28 - }, -/obj/effect/map_effect/marker/airlock{ - frequency = 1003; - master_tag = "airlock_horizon_deck_1_aft_port_1"; - name = "airlock_horizon_deck_1_aft_port_1" - }, -/obj/effect/map_effect/marker_helper/airlock/interior, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"qpO" = ( -/turf/simulated/floor/reinforced/nitrogen, -/area/engineering/atmos/air) -"qpQ" = ( -/obj/structure/sign/securearea{ - pixel_y = 32 - }, -/obj/effect/floor_decal/industrial/warning{ +"qpN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ dir = 9 }, -/obj/machinery/light/small/emergency{ - dir = 4 +/obj/effect/floor_decal/industrial/warning{ + dir = 8 }, -/obj/random/junk, -/turf/simulated/floor, -/area/maintenance/security_port) -"qpS" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 +/obj/machinery/alarm/east{ + req_one_access = list(24,11,47) }, -/obj/structure/cable/green{ - icon_state = "4-8" +/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, +/obj/item/device/radio/sci, +/obj/item/tent, +/turf/simulated/floor/plating, +/area/horizon/shuttle/quark/cargo_hold) +"qpU" = ( +/obj/effect/floor_decal/corner/lime/diagonal, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/machinery/air_sensor{ + frequency = 1441; + id_tag = "n_sensor" }, -/turf/simulated/floor/tiled/dark, -/area/horizon/longbow) +/obj/effect/decal/fake_object/light_source/invisible, +/turf/simulated/floor/reinforced/nitrogen, +/area/horizon/engineering/atmos/air) "qpV" = ( /obj/effect/decal/cleanable/blood/oil, /obj/effect/decal/cleanable/dirt, @@ -114149,6 +113925,13 @@ }, /turf/simulated/floor/plating, /area/shuttle/skipjack) +"qpX" = ( +/obj/machinery/alarm/west, +/obj/effect/floor_decal/corner_wide/yellow{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/horizon/engineering/reactor/indra/mainchamber) "qpY" = ( /obj/effect/decal/fake_object{ icon = 'icons/obj/doors/rapid_pdoor.dmi'; @@ -114158,59 +113941,31 @@ /obj/structure/table/reinforced/wood, /turf/unsimulated/floor, /area/antag/raider) +"qqb" = ( +/obj/structure/dispenser/oxygen, +/obj/effect/floor_decal/corner/dark_blue/full{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/storage/eva) +"qqd" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "cargo_1" + }, +/turf/simulated/floor/tiled, +/area/horizon/operations/loading) "qqf" = ( /obj/machinery/computer/slot_machine, /turf/simulated/floor/tiled/dark/full, /area/antag/raider) -"qqt" = ( -/obj/effect/floor_decal/industrial/hatch/red, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 +"qqv" = ( +/obj/effect/landmark/entry_point/fore{ + name = "fore, port ballast" }, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/reinforced/airless, -/area/engineering/engine_room) -"qqu" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/corner_wide/paleblue{ - dir = 5 - }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/white, -/area/hallway/medical) -"qqw" = ( -/obj/structure/cable/green{ - icon_state = "2-4" - }, -/obj/effect/floor_decal/corner_wide/yellow{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/turf/simulated/floor/tiled/white, -/area/hallway/medical) -"qqB" = ( -/obj/effect/floor_decal/corner/dark_green/full{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/hangar/intrepid) +/turf/simulated/wall/shuttle/scc_space_ship/cardinal, +/area/horizon/maintenance/deck_2/wing/starboard/nacelle) "qqF" = ( /obj/structure/railing/mapped, /obj/effect/floor_decal/spline/plain, @@ -114219,80 +113974,101 @@ }, /turf/unsimulated/floor/plating, /area/antag/burglar) -"qqH" = ( -/obj/effect/floor_decal/corner/brown/full{ - dir = 1 +"qqI" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 6 }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/effect/floor_decal/industrial/loading/yellow, -/obj/structure/cable/green{ - icon_state = "0-2" - }, -/obj/machinery/power/apc/north, -/turf/simulated/floor/tiled, -/area/operations/loading) -"qqS" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/structure/closet/walllocker/firecloset{ - pixel_x = -25 - }, -/obj/machinery/atmospherics/portables_connector/fuel{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/mining) -"qqY" = ( -/obj/machinery/alarm/south, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/effect/floor_decal/spline/plain, -/turf/simulated/floor/carpet/rubber, -/area/engineering/engine_monitoring/rust) -"qrf" = ( +/obj/machinery/hologram/holopad/long_range, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/machinery/light/small/emergency{ - dir = 4 +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/conference) +"qqJ" = ( +/obj/effect/floor_decal/corner/lime/diagonal, +/obj/structure/bed/handrail{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/shuttle/intrepid/medical) +"qqQ" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/xenological) +"qqT" = ( +/obj/structure/tank_wall{ + icon_state = "m-8" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 }, /turf/simulated/floor/plating, -/area/horizon/maintenance/deck_two/fore/port) -"qrg" = ( +/area/horizon/engineering/atmos) +"qqW" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/obj/structure/platform/cutout{ - dir = 8 +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance_hatch{ + dir = 4; + frequency = 1379; + id_tag = "indra_airlock_exterior"; + locked = 1; + name = "INDRA Reactor Airlock Exterior"; + req_one_access = list(11,24) }, -/obj/structure/platform_stairs/full/east_west_cap, -/turf/simulated/floor/tiled/dark, -/area/bridge/controlroom) -"qrh" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/purple{ - dir = 8 +/obj/machinery/access_button{ + command = "cycle_exterior"; + dir = 8; + frequency = 1379; + master_tag = "indra_airlock_control"; + name = "INDRA Reactor Airlock Access"; + pixel_y = 23; + req_one_access = list(11,24) }, -/turf/simulated/wall/shuttle/scc_space_ship/cardinal, -/area/horizon/custodial/disposals) -"qri" = ( -/obj/effect/floor_decal/corner/lime/diagonal, +/obj/machinery/embedded_controller/radio/airlock/access_controller{ + dir = 8; + id_tag = "indra_airlock_control"; + name = "INDRA Reactor Airlock Access Console"; + pixel_y = 38; + tag_exterior_door = "indra_airlock_exterior"; + tag_interior_door = "indra_airlock_interior" + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/reactor/indra/monitoring) +"qqZ" = ( /obj/effect/floor_decal/industrial/outline/grey, -/obj/machinery/air_sensor{ - frequency = 1441; - id_tag = "n_sensor" +/obj/structure/table/steel, +/obj/item/storage/toolbox/emergency{ + pixel_x = 2; + pixel_y = 4 }, -/obj/effect/decal/fake_object/light_source/invisible, -/turf/simulated/floor/reinforced/nitrogen, -/area/engineering/atmos/air) -"qrj" = ( -/obj/machinery/light, +/turf/simulated/floor/plating, +/area/horizon/hangar/intrepid) +"qrz" = ( /obj/effect/floor_decal/corner/dark_green{ - dir = 10 + dir = 5 }, +/obj/structure/sign/directions/custodial{ + dir = 8; + pixel_y = 39 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/firealarm/north, /turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/central) +/area/horizon/hallway/primary/deck_1/central) "qrA" = ( /obj/effect/floor_decal/industrial/warning/corner{ dir = 4 @@ -114300,15 +114076,11 @@ /obj/effect/decal/fake_object/light_source/invisible, /turf/unsimulated/floor, /area/antag/ninja) -"qrC" = ( -/obj/structure/bed/stool/chair/padded/brown{ - dir = 4 - }, -/obj/effect/landmark/start{ - name = "Passenger" - }, -/turf/simulated/floor/carpet/art, -/area/crew_quarters/lounge) +"qrB" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/random/loot, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/port) "qrD" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -114323,15 +114095,46 @@ /obj/structure/lattice/catwalk/indoor/grate, /turf/simulated/floor/plating, /area/horizon/security/hallway) -"qrG" = ( -/obj/machinery/power/terminal{ +"qrE" = ( +/obj/effect/floor_decal/corner_wide/black{ + dir = 9 + }, +/obj/effect/floor_decal/industrial/warning{ dir = 8 }, -/obj/structure/cable{ - icon_state = "0-2" +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 9 }, -/turf/simulated/floor/tiled/dark/full, -/area/storage/shields) +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/atmos/propulsion) +"qrH" = ( +/obj/effect/floor_decal/corner/dark_blue/full{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/command/bridge/meeting_room) +"qrI" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/effect/floor_decal/spline/plain{ + dir = 1 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/carpet/rubber, +/area/horizon/tcommsat/entrance) +"qrK" = ( +/obj/structure/cable/green, +/obj/machinery/power/sensor{ + name = "Powernet Sensor - Deck 2 Civilian Subgrid"; + name_tag = "Deck 2 Civilian Subgrid" + }, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/machinery/power/apc/low/west, +/turf/simulated/floor/plating, +/area/horizon/maintenance/substation/civ_d2) "qrO" = ( /obj/item/reagent_containers/food/drinks/waterbottle{ pixel_x = -6; @@ -114375,38 +114178,35 @@ }, /turf/simulated/floor/tiled/white, /area/merchant_station) -"qrV" = ( -/obj/machinery/camera/network/medbay{ - c_tag = "Medical - Hallway 1"; +"qrU" = ( +/obj/machinery/door/firedoor, +/obj/effect/map_effect/door_helper/unres{ dir = 1 }, -/obj/effect/floor_decal/corner_wide/green{ - dir = 10 +/obj/machinery/door/airlock/engineering{ + name = "Engineering Lobby"; + req_one_access = list(10) }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 +/turf/simulated/floor/tiled/full, +/area/horizon/engineering/lobby) +"qsd" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 }, -/turf/simulated/floor/tiled/white, -/area/hallway/medical) -"qrW" = ( -/obj/structure/table/standard, -/obj/item/gun/energy/mousegun/xenofauna, -/obj/item/melee/baton/stunrod, -/obj/effect/floor_decal/corner/mauve/full{ - dir = 1 +/obj/structure/cable/yellow{ + icon_state = "4-8" }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology/hazardous) +/obj/effect/floor_decal/industrial/loading/yellow{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/reactor/indra/mainchamber) "qsg" = ( /obj/structure/lattice, /obj/machinery/atmospherics/pipe/simple/visible/universal, /turf/space/dynamic, /area/horizon/exterior) -"qsi" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/dark, -/area/maintenance/wing/starboard) "qsn" = ( /obj/machinery/atmospherics/pipe/simple/visible/purple, /obj/machinery/atmospherics/pipe/simple/visible/purple{ @@ -114415,12 +114215,29 @@ /obj/structure/lattice/catwalk/indoor, /turf/space/dynamic, /area/horizon/exterior) -"qsq" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 9 +"qsp" = ( +/obj/structure/cable/green{ + icon_state = "1-2" }, -/turf/simulated/floor/plating, -/area/hangar/auxiliary) +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/corner/dark_green{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_3/port) +"qsr" = ( +/obj/machinery/alarm/east, +/obj/effect/floor_decal/corner/dark_green/full{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/effect/floor_decal/industrial/loading/yellow{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/horizon/stairwell/starboard/deck_3) "qst" = ( /obj/effect/floor_decal/spline/plain, /obj/structure/ore_box{ @@ -114436,33 +114253,25 @@ }, /turf/unsimulated/floor/monotile, /area/antag/raider) -"qsC" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 +"qsx" = ( +/obj/structure/cable/green{ + icon_state = "1-2" }, -/obj/effect/floor_decal/industrial/outline/research, -/turf/simulated/floor/tiled, -/area/operations/storage) -"qsE" = ( -/obj/machinery/alarm/east, -/turf/simulated/floor/tiled/dark, -/area/maintenance/wing/starboard/far) -"qsJ" = ( -/obj/structure/window/shuttle/scc_space_ship, -/obj/structure/grille/diagonal{ - dir = 8 +/obj/machinery/door/airlock/maintenance{ + dir = 1; + req_access = list(45) }, +/obj/machinery/door/firedoor, /obj/machinery/door/blast/shutters{ density = 0; dir = 2; icon_state = "shutter0"; id = "LCKDshutters"; - name = "MedBay Lockdown Shutters"; + name = "Medical Lockdown Shutters"; opacity = 0 }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/medical/equipment) +/turf/simulated/floor/tiled/full, +/area/horizon/medical/surgery) "qsK" = ( /obj/machinery/atmospherics/pipe/simple/hidden/yellow{ dir = 10 @@ -114470,16 +114279,84 @@ /obj/structure/lattice, /turf/space/dynamic, /area/horizon/exterior) -"qsT" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/chem_master{ +"qsN" = ( +/turf/simulated/wall/shuttle/unique/scc/scout{ + icon_state = "3,10" + }, +/area/horizon/shuttle/canary) +"qsP" = ( +/obj/machinery/requests_console/north{ + department = "Atmospherics"; + departmentType = 4; + name = "Atmos RC" + }, +/obj/machinery/light{ dir = 8 }, -/obj/effect/floor_decal/spline/plain/cee{ +/obj/structure/closet/crate, +/obj/item/stock_parts/manipulator, +/obj/item/stock_parts/capacitor, +/obj/item/stock_parts/capacitor, +/obj/item/stock_parts/capacitor, +/obj/item/stock_parts/capacitor, +/obj/item/stock_parts/matter_bin, +/obj/item/stock_parts/matter_bin, +/obj/item/stack/cable_coil, +/obj/item/circuitboard/unary_atmos/cooler, +/obj/item/circuitboard/unary_atmos/heater, +/obj/effect/floor_decal/industrial/outline/operations, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/atmos/storage) +"qsW" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/lattice/catwalk/indoor/grate/damaged{ + color = "#4c535b" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/wing/starboard) +"qsY" = ( +/turf/simulated/wall/shuttle/scc_space_ship/cardinal, +/area/horizon/medical/washroom) +"qsZ" = ( +/obj/effect/landmark/entry_point/fore{ + name = "fore, visiting dock" + }, +/turf/simulated/wall/shuttle/scc_space_ship/cardinal, +/area/horizon/security/checkpoint2) +"qtb" = ( +/obj/machinery/door/airlock/maintenance{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/wing/starboard/far) +"qtc" = ( +/obj/item/modular_computer/console/preset/security{ + dir = 8 + }, +/obj/structure/railing/mapped{ dir = 4 }, -/turf/simulated/floor/carpet/rubber, -/area/rnd/chemistry) +/obj/effect/floor_decal/corner/dark_blue{ + dir = 6 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/command/bridge/aibunker) +"qte" = ( +/obj/machinery/door/airlock/external{ + dir = 4; + frequency = 1380; + icon_state = "door_locked"; + id_tag = "escape_pod_1_hatch"; + locked = 1; + name = "Escape Pod Hatch"; + req_access = list(13) + }, +/turf/simulated/floor/shuttle/dark_blue, +/area/horizon/shuttle/escape_pod/pod2) "qtg" = ( /obj/machinery/portable_atmospherics/powered/scrubber, /obj/effect/floor_decal/industrial/outline/yellow, @@ -114487,91 +114364,73 @@ icon_state = "dark_preview" }, /area/centcom/specops) -"qtl" = ( -/obj/machinery/light/small/emergency{ - dir = 1 - }, -/obj/item/circuitboard/ghettosmes{ - pixel_x = -4; - pixel_y = 3 - }, -/obj/item/stack/cable_coil/orange{ - pixel_x = -7; - pixel_y = -6 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/green{ - icon_state = "4-8" +"qtq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, /turf/simulated/floor/plating, -/area/maintenance/wing/port/far) -"qtt" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/alarm/west, -/turf/simulated/floor/tiled, -/area/operations/storage) -"qtx" = ( -/obj/structure/cable/green{ - icon_state = "11-4" - }, -/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/zpipe/down/supply{ - dir = 4 - }, -/obj/structure/lattice/catwalk, -/turf/simulated/open, -/area/horizon/maintenance/deck_two/fore/starboard) -"qtz" = ( -/obj/effect/floor_decal/spline/fancy/wood{ +/area/horizon/maintenance/deck_1/hangar/starboard) +"qtu" = ( +/obj/effect/floor_decal/corner/grey/diagonal, +/obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 }, -/turf/simulated/floor/wood, -/area/crew_quarters/lounge/secondary) -"qtJ" = ( -/obj/machinery/iv_drip, -/obj/effect/floor_decal/industrial/outline/red, -/obj/machinery/light, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/window{ + dir = 8; + name = "Reception Desk"; + req_access = list(5) + }, /turf/simulated/floor/tiled/white, -/area/medical/icu) -"qtO" = ( -/obj/structure/closet/crate, -/obj/item/circuitboard/autolathe, -/obj/item/circuitboard/rtg, -/obj/item/circuitboard/recharge_station, -/obj/item/circuitboard/mech_recharger, -/obj/item/circuitboard/optable, -/obj/item/circuitboard/security/engineering, -/obj/item/circuitboard/grill, -/turf/simulated/floor/carpet/rubber, -/area/maintenance/engineering/auxillary) +/area/horizon/medical/reception) +"qty" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor, +/area/horizon/maintenance/deck_3/aft/port) +"qtI" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/xenobiology/foyer) "qtW" = ( /obj/effect/floor_decal/corner/red/full, /turf/unsimulated/floor, /area/centcom/control) -"qtZ" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 1 - }, -/turf/simulated/floor/tiled/full, -/area/engineering/storage_hard) -"que" = ( -/obj/effect/floor_decal/spline/fancy/wood{ +"qtY" = ( +/obj/effect/floor_decal/corner/white/diagonal, +/obj/effect/floor_decal/spline/plain{ dir = 4 }, -/obj/effect/landmark/start{ - name = "Captain" +/turf/simulated/floor/tiled/dark, +/area/horizon/hallway/primary/deck_3/central) +"qud" = ( +/obj/structure/cable{ + icon_state = "4-8" }, -/obj/structure/bed/stool/chair/office/bridge{ - dir = 8 - }, -/turf/simulated/floor/carpet, -/area/bridge/meeting_room) +/turf/simulated/floor/tiled, +/area/horizon/hangar/intrepid) "quf" = ( /obj/machinery/light, /obj/effect/floor_decal/corner/grey{ @@ -114586,12 +114445,6 @@ }, /turf/simulated/floor, /area/tdome/tdome1) -"quk" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/table/rack, -/obj/random/loot, -/turf/simulated/floor/tiled/dark, -/area/maintenance/wing/starboard) "qul" = ( /obj/machinery/light, /obj/effect/floor_decal/corner/paleblue{ @@ -114639,37 +114492,85 @@ }, /turf/unsimulated/wall/darkshuttlewall, /area/centcom/bar) -"quq" = ( -/obj/effect/landmark/latejoincryo, -/obj/effect/floor_decal/corner/dark_green/diagonal, +"quy" = ( +/obj/structure/cable{ + icon_state = "11-2" + }, +/obj/machinery/atmospherics/pipe/zpipe/down/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers{ + dir = 1 + }, +/obj/structure/lattice/catwalk, +/obj/structure/disposalpipe/down, +/turf/simulated/open, +/area/horizon/maintenance/deck_2/wing/port/near) +"quz" = ( +/obj/machinery/light/small, +/obj/structure/table/standard{ + no_cargo = 1 + }, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/effect/floor_decal/corner/brown{ + dir = 10 + }, /turf/simulated/floor/tiled, -/area/horizon/crew_quarters/fitness/changing) -"quA" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/maintenance_hatch{ +/area/horizon/operations/warehouse) +"quC" = ( +/turf/simulated/floor/tiled/white, +/area/horizon/medical/hallway/upper) +"quD" = ( +/obj/effect/floor_decal/corner/dark_blue/full{ dir = 4 }, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" +/obj/structure/disposalpipe/segment{ + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/horizon/command/bridge/upperdeck) +"quE" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled, +/area/horizon/maintenance/deck_2/wing/starboard/nacelle) +"quF" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 10 + }, +/obj/machinery/computer/guestpass{ + pixel_y = -32 + }, +/obj/machinery/firealarm/south, +/turf/simulated/floor/tiled, +/area/horizon/rnd/hallway) +"quG" = ( +/obj/machinery/telecomms/server/presets/medical, +/turf/simulated/floor/bluegrid, +/area/horizon/tcommsat/chamber) +"quJ" = ( +/obj/machinery/optable, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/surgery) +"quQ" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 6 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/rnd/xenobiology/xenoflora) +"quT" = ( +/obj/structure/shuttle_part/scc/mining{ + icon_state = "1,1" }, /turf/simulated/floor/plating, -/area/maintenance/operations) -"quN" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/central) -"quS" = ( -/obj/effect/floor_decal/industrial/warning/cee{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/random/contraband, -/turf/simulated/floor/tiled, -/area/maintenance/wing/starboard/far) +/area/horizon/shuttle/mining) "quV" = ( /obj/effect/decal/cleanable/dirt, /turf/unsimulated/floor/plating, @@ -114686,6 +114587,23 @@ }, /turf/simulated/floor/holofloor/carpet, /area/horizon/holodeck/source_biesel) +"qva" = ( +/obj/effect/floor_decal/corner_wide/green{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/hallway/upper) +"qvc" = ( +/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 = 6 + }, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_3/central) "qve" = ( /obj/structure/railing/mapped{ dir = 4 @@ -114696,208 +114614,174 @@ /obj/structure/lattice/catwalk, /turf/simulated/floor/airless, /area/horizon/exterior) -"qvl" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/hidden/aux{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 8 - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/maintenance/operations) -"qvn" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/lattice/catwalk/indoor/grate, -/turf/simulated/floor/plating, -/area/hallway/primary/central_two) -"qvo" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled, -/area/horizon/stairwell/central) -"qvA" = ( -/obj/effect/floor_decal/corner/green/full{ - dir = 4 - }, -/obj/machinery/alarm/east, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 +"qvh" = ( +/obj/effect/floor_decal/corner/grey/diagonal, +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/shutters{ + dir = 8; + id = "shutters_deck2_smartheater"; + name = "SmartHeater Shutter" }, +/obj/machinery/smartfridge/foodheater, /turf/simulated/floor/tiled/white, -/area/horizon/crew_quarters/cryo/washroom) +/area/horizon/service/kitchen) +"qvy" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/effect/landmark{ + name = "Revenant" + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/research) "qvD" = ( /obj/machinery/light{ dir = 4 }, /turf/unsimulated/floor, /area/centcom/holding) +"qvH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/light/small/emergency{ + dir = 8 + }, +/obj/structure/table/rack, +/obj/random/loot, +/obj/random/loot, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/service/port) +"qvI" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_pump{ + external_pressure_bound = 140; + external_pressure_bound_default = 140; + icon_state = "map_vent_out"; + pressure_checks = 0; + pressure_checks_default = 0; + use_power = 1 + }, +/obj/effect/floor_decal/spline/plain{ + dir = 8 + }, +/turf/simulated/floor/carpet/rubber, +/area/horizon/tcommsat/chamber) "qvJ" = ( /obj/structure/flora/ausbushes/lavendergrass, /turf/simulated/floor/exoplanet/grass/grove, /area/centcom/shared_dream) -"qvR" = ( -/obj/machinery/light, -/turf/simulated/open, -/area/hallway/medical/upper) -"qvT" = ( -/obj/structure/cable{ - icon_state = "4-8" +"qvN" = ( +/obj/structure/shuttle_part/scc_space_ship{ + icon_state = "d3-6" }, +/turf/simulated/wall/r_wall, +/area/horizon/rnd/xenobiology/xenoflora) +"qvS" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/tank_wall/air, +/turf/simulated/floor/plating, +/area/horizon/engineering/atmos/air) +"qvV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/alarm/north, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/wing/port/far) +"qvY" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 9 + }, +/turf/simulated/floor/wood, +/area/horizon/command/bridge/upperdeck) +"qwc" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/maintenance/wing/port/deck1) -"qvZ" = ( -/obj/machinery/atmospherics/unary/heater{ - dir = 4 +/obj/effect/floor_decal/corner/dark_blue{ + dir = 9 }, -/obj/structure/extinguisher_cabinet/west, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/hydroponics/lower) -"qwe" = ( -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/dark, -/area/engineering/atmos/propulsion/starboard) -"qwg" = ( -/obj/structure/flora/pottedplant{ - icon_state = "plant-33" - }, -/turf/simulated/floor/wood, -/area/hallway/primary/central_two) -"qwj" = ( -/obj/effect/floor_decal/corner_wide/paleblue{ - dir = 6 - }, -/obj/structure/closet/secure_closet/medical2, -/obj/machinery/firealarm/east, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/medical/ors) -"qwl" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 5 - }, -/obj/structure/displaycase/captain_revolver, -/obj/machinery/button/remote/blast_door{ - dir = 1; - id = "shutters_deck3_captain"; - name = "External Shutters"; - pixel_y = 26 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/captain) -"qwr" = ( -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/structure/railing/mapped, -/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers, -/obj/machinery/atmospherics/pipe/zpipe/up/supply, +/area/horizon/storage/eva) +"qwi" = ( +/turf/simulated/wall, +/area/horizon/crew/chargebay) +"qwm" = ( +/obj/effect/floor_decal/corner/green/diagonal, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/green{ - icon_state = "0-8" - }, -/obj/structure/cable/green{ - icon_state = "12-0" - }, -/obj/structure/sign/electricshock{ - pixel_y = 32 - }, -/obj/structure/railing/mapped{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/hangar/starboard) -"qwt" = ( -/obj/machinery/atmospherics/portables_connector/fuel{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/alarm/east{ - req_one_access = list(11, 24, 47, 65) - }, -/turf/simulated/floor/tiled/dark/full, -/area/shuttle/intrepid/port_storage) -"qwx" = ( -/obj/structure/table/stone/marble, -/obj/item/material/ashtray/bronze{ - pixel_x = 8; - pixel_y = -8 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/shutters{ - dir = 8; - id = "bar_shutter"; - name = "Bar Shutter" - }, -/obj/machinery/power/outlet, -/turf/simulated/floor/tiled/dark, -/area/horizon/bar) -"qwy" = ( -/obj/structure/railing/mapped, -/obj/structure/lattice, -/obj/structure/platform/ledge{ - dir = 1 - }, -/obj/structure/platform/ledge{ - dir = 4 - }, -/obj/structure/platform_deco/ledge{ - dir = 10 - }, -/turf/simulated/open, -/area/hallway/primary/central_one) -"qwD" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/maintenance{ - req_one_access = list(12,26,29,31,48,67) - }, -/turf/simulated/floor/tiled/full, -/area/maintenance/wing/cargo_compartment) -"qwK" = ( -/obj/machinery/door/airlock/multi_tile/glass{ - name = "Hangar" - }, -/obj/machinery/door/firedoor/multi_tile, -/obj/structure/cable{ icon_state = "1-2" }, -/turf/simulated/floor/tiled/full, -/area/hangar/intrepid/interstitial) -"qwT" = ( -/obj/structure/stairs_lower/stairs_upper, -/turf/simulated/wall/r_wall, -/area/rnd/xenoarch_atrium) +/obj/machinery/hologram/holopad, +/obj/machinery/light_switch{ + dir = 8; + pixel_x = -23; + pixel_y = 7 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/ward/isolation) +"qwo" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/starboard/nacelle) +"qwA" = ( +/turf/simulated/wall/shuttle/scc, +/area/horizon/shuttle/intrepid/main_compartment) +"qwF" = ( +/obj/machinery/atmospherics/pipe/simple/visible/universal{ + dir = 4 + }, +/obj/machinery/meter, +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/atmos) +"qwI" = ( +/obj/effect/floor_decal/spline/fancy/wood/cee{ + dir = 8 + }, +/obj/machinery/light, +/obj/structure/sign/poster/command/bay_41{ + pixel_y = -32 + }, +/turf/simulated/floor/wood, +/area/horizon/command/bridge/cciaroom) +"qwJ" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 9 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/atmos) +"qwL" = ( +/obj/structure/table/reinforced/steel, +/obj/random/tool, +/obj/random/toolbox, +/obj/random/glowstick, +/obj/random/glowstick, +/turf/simulated/floor/carpet/rubber, +/area/horizon/maintenance/deck_1/workshop) +"qwR" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/structure/closet/crate/bin, +/obj/random/loot, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/operations/starboard/amidships) "qwU" = ( /obj/effect/floor_decal/spline/fancy/wood/corner{ dir = 4 @@ -114912,22 +114796,6 @@ }, /turf/unsimulated/floor/dark_monotile, /area/antag/actor) -"qwY" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/effect/floor_decal/corner/dark_green{ - dir = 9 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/central) "qwZ" = ( /obj/effect/map_effect/window_spawner/full/reinforced/grille/firedoor, /obj/structure/cable/green{ @@ -114935,6 +114803,10 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/security/warden) +"qxa" = ( +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor, +/area/horizon/maintenance/deck_3/aft/port) "qxf" = ( /obj/structure/bed/stool/chair/shuttle{ dir = 8 @@ -114944,29 +114816,104 @@ }, /turf/simulated/floor/shuttle/black, /area/shuttle/specops) -"qxi" = ( -/obj/random/pottedplant, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/carpet/rubber, -/area/bridge/controlroom) -"qxn" = ( -/obj/structure/table/standard, -/obj/machinery/light{ - dir = 8 +"qxg" = ( +/obj/machinery/atmospherics/binary/pump{ + name = "Reactor to Scrubbers" + }, +/obj/effect/floor_decal/corner/yellow{ + dir = 6 }, /obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/carpet/rubber, -/area/rnd/xenoarch_atrium) -"qxw" = ( -/obj/machinery/conveyor_switch/oneway{ - id = "QMLoad" +/obj/machinery/light{ + dir = 4 }, -/obj/structure/railing/mapped, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/reactor/supermatter/waste) +"qxh" = ( +/obj/machinery/door/airlock/external, +/obj/effect/map_effect/marker/airlock/docking{ + landmark_tag = "nav_horizon_dock_deck_3_port_2"; + master_tag = "airlock_horizon_dock_deck_3_port_2"; + name = "airlock_horizon_dock_deck_3_port_2" + }, +/obj/effect/map_effect/marker_helper/airlock/exterior, +/obj/machinery/access_button{ + dir = 1; + pixel_x = 28; + pixel_y = 12 + }, +/turf/simulated/floor/plating, +/area/horizon/hallway/primary/deck_3/starboard/docks) +"qxq" = ( +/obj/effect/floor_decal/corner/brown/full, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" }, /turf/simulated/floor/tiled, -/area/hangar/operations) +/area/horizon/operations/office) +"qxr" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/machinery/alarm/west, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/obj/machinery/light/small/emergency, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor, +/area/horizon/maintenance/deck_3/aft/starboard) +"qxx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/structure/platform_stairs/full/east_west_cap{ + dir = 8 + }, +/obj/structure/platform/cutout, +/turf/simulated/floor/tiled/dark, +/area/horizon/service/bar) +"qxy" = ( +/obj/machinery/door/blast/regular{ + id = "iso_a_purge"; + name = "Exterior Blast Door" + }, +/turf/simulated/floor/reinforced, +/area/horizon/rnd/xenoarch/isolation_c) +"qxB" = ( +/obj/machinery/door/firedoor, +/obj/effect/decal/cleanable/cobweb, +/obj/structure/plasticflaps/airtight, +/obj/machinery/door/airlock/hatch{ + dir = 4; + name = "Deck 2 Starboard Pod"; + req_access = list(12) + }, +/obj/item/tape/engineering{ + icon_state = "engineering_door" + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/maintenance/deck_2/wing/port/nacelle) "qxC" = ( /obj/effect/floor_decal/corner/dark_blue{ dir = 9 @@ -114986,42 +114933,12 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/security/firing_range) -"qxH" = ( -/obj/effect/floor_decal/spline/fancy/wood, -/obj/structure/table/reinforced/wood, -/obj/machinery/button/remote/airlock{ - dir = 9; - id = "conference_room"; - name = "Conference Room Bolts"; - pixel_x = -3; - pixel_y = 8; - specialfunctions = 4 - }, -/obj/machinery/button/switch/windowtint{ - dir = 5; - id = "bridgeconf"; - pixel_x = -3 - }, -/turf/simulated/floor/carpet, -/area/bridge/meeting_room) "qxI" = ( /obj/machinery/door/airlock/silver{ name = "Washroom" }, /turf/unsimulated/floor, /area/centcom/legion/hangar5) -"qxJ" = ( -/obj/structure/railing/mapped, -/obj/effect/floor_decal/industrial/outline/emergency_closet, -/obj/structure/closet/emcloset{ - anchored = 1; - canbemoved = 1 - }, -/obj/machinery/light/spot{ - dir = 8 - }, -/turf/simulated/floor/carpet/rubber, -/area/engineering/engine_room/rust) "qxM" = ( /obj/effect/shuttle_landmark/horizon/exterior/deck_2/aft, /turf/template_noop, @@ -115057,39 +114974,30 @@ }, /turf/simulated/floor/exoplanet/barren, /area/centcom/shared_dream) -"qxP" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 9 - }, -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/turf/simulated/floor/tiled/dark, -/area/horizon/security/evidence_storage) "qxS" = ( /obj/structure/bed/stool, /obj/effect/decal/cleanable/dirt, /turf/unsimulated/floor, /area/centcom/legion) -"qxT" = ( -/obj/machinery/r_n_d/weapons_analyzer, -/obj/effect/floor_decal/corner_wide/purple{ - dir = 5 +"qxX" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/external{ + dir = 4; + id_tag = "riso2"; + name = "Isolation B"; + req_access = list(47) + }, +/obj/machinery/door/blast/regular/open{ + id = "iso_b"; + name = "Safety Blast Door" }, -/obj/effect/floor_decal/corner_wide/purple/diagonal, /turf/simulated/floor/tiled/white, -/area/rnd/test_range) -"qxV" = ( -/obj/structure/shuttle/engine/heater{ - dir = 1 - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/structure/railing/mapped, -/turf/simulated/floor/plating, -/area/engineering/atmos/propulsion) -"qyb" = ( -/turf/simulated/wall, -/area/horizon/hallway/deck_three/primary/port) +/area/horizon/rnd/xenoarch/isolation_b) "qyc" = ( /obj/structure/flora/rock/pile{ density = 0; @@ -115102,49 +115010,41 @@ icon_state = "desert" }, /area/centcom/shared_dream) -"qyh" = ( -/obj/machinery/door/firedoor/multi_tile{ - dir = 2 - }, -/obj/machinery/door/airlock/multi_tile/glass{ - dir = 2; - name = "Research Hallway" - }, -/turf/simulated/floor/tiled/full, -/area/rnd/hallway) -"qyi" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 10 - }, -/obj/machinery/firealarm/east, -/turf/simulated/floor/plating, -/area/engineering/bluespace_drive) -"qyk" = ( -/obj/structure/bed/handrail{ - dir = 4 - }, -/obj/effect/map_effect/marker/airlock/shuttle{ - cycle_to_external_air = 1; - master_tag = "airlock_shuttle_intrepid"; - name = "airlock_shuttle_intrepid"; - req_one_access = null; - shuttle_tag = "Intrepid" - }, -/obj/machinery/atmospherics/unary/vent_pump/high_volume, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/shuttle/intrepid/main_compartment) -"qyq" = ( -/obj/structure/railing/mapped, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/light/small/emergency{ +"qym" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 }, +/obj/machinery/light, +/turf/simulated/floor/tiled/full, +/area/horizon/operations/office_aux) +"qyo" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/reactor/indra/mainchamber) +"qyw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/horizon/service/cafeteria) +"qyA" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, -/area/maintenance/aft) +/area/horizon/maintenance/deck_1/wing/starboard/far) "qyF" = ( /obj/structure/flora/ausbushes/sparsegrass, /obj/structure/flora/ausbushes/leafybush, @@ -115155,19 +115055,15 @@ /obj/structure/flora/ausbushes/ppflowers, /turf/simulated/floor/holofloor/grass, /area/horizon/holodeck/source_picnicarea) -"qyK" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 5 +"qyH" = ( +/obj/machinery/light{ + dir = 1 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor/reinforced, -/area/engineering/gravity_gen) -"qyL" = ( -/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, -/turf/simulated/floor/tiled/dark/full, -/area/operations/break_room) +/obj/structure/flora/ausbushes/sparsegrass, +/obj/machinery/portable_atmospherics/hydroponics/soil, +/obj/structure/engineer_maintenance/pipe/wall, +/turf/simulated/floor/grass/no_edge, +/area/horizon/service/hydroponics/garden) "qyM" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -115197,43 +115093,38 @@ /obj/effect/floor_decal/industrial/warning/corner, /turf/simulated/floor/tiled/full, /area/horizon/security/brig) -"qyT" = ( -/obj/machinery/power/apc/east, -/obj/structure/cable/green{ - icon_state = "0-8" +"qyV" = ( +/obj/effect/floor_decal/industrial/outline/red, +/obj/structure/closet/walllocker/firecloset{ + pixel_y = -32 }, -/obj/effect/floor_decal/corner/mauve{ - dir = 6 +/obj/structure/cable, +/obj/machinery/power/terminal{ + dir = 8 }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology/foyer) -"qyX" = ( -/obj/effect/floor_decal/corner_wide/yellow{ - dir = 5 +/turf/simulated/floor/tiled/dark/full, +/area/horizon/command/bridge/aibunker) +"qyY" = ( +/obj/effect/floor_decal/industrial/loading/engineering{ + dir = 1 }, -/obj/structure/cable/green{ - icon_state = "0-2" - }, -/obj/machinery/power/apc/super/critical/north, -/turf/simulated/floor/tiled, -/area/engineering/bluespace_drive) +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/bluespace_drive) "qza" = ( /obj/machinery/light/small{ dir = 4 }, /turf/simulated/floor/tiled/dark, /area/supply/dock) -"qzb" = ( -/obj/random/junk, -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/plating, -/area/maintenance/engineering) -"qzc" = ( -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 9 +"qzd" = ( +/obj/structure/cable{ + icon_state = "4-8" }, -/turf/simulated/floor/tiled, -/area/maintenance/aux_atmospherics/deck_2/starboard/wing) +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/substation/engineering/lower) "qzh" = ( /obj/effect/floor_decal/corner/red{ dir = 9 @@ -115246,79 +115137,6 @@ }, /turf/unsimulated/floor, /area/centcom/evac) -"qzj" = ( -/obj/structure/table/rack, -/obj/item/clothing/suit/hazmat/anomaly, -/obj/item/tank/oxygen, -/obj/item/clothing/head/hazmat/anomaly, -/obj/item/clothing/mask/gas/alt, -/obj/item/clothing/glasses/safety/goggles/science, -/obj/item/storage/box/gloves, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenoarch_storage) -"qzl" = ( -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard/deck1) -"qzp" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/maintenance/security_port) -"qzq" = ( -/obj/structure/sign/directions/prop{ - dir = 4; - pixel_x = 32; - pixel_y = 24 - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/maintenance/aft) -"qzr" = ( -/obj/effect/floor_decal/corner/black{ - dir = 5 - }, -/obj/effect/floor_decal/corner/brown{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"qzt" = ( -/obj/machinery/camera/network/service{ - c_tag = "Custodial - Garage" - }, -/obj/machinery/requests_console/north{ - department = "Custodial"; - departmentType = 1 - }, -/obj/structure/bed/stool/chair/office/dark, -/obj/effect/landmark/start{ - name = "Janitor" - }, -/obj/effect/floor_decal/corner/purple/full{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/horizon/custodial) "qzv" = ( /obj/structure/table/rack, /obj/effect/map_effect/mecha_part_spawner/manipulator, @@ -115326,47 +115144,35 @@ /obj/effect/decal/cleanable/dirt, /turf/unsimulated/floor/monotile, /area/antag/jockey) -"qzw" = ( -/obj/structure/girder, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard/far) -"qzy" = ( -/obj/structure/table/steel, -/obj/item/storage/box/lights/mixed, -/obj/item/storage/box/lights/mixed, -/obj/item/storage/toolbox/mechanical, -/obj/machinery/ringer/south{ - department = "Custodial"; - id = "ringers_custodial"; - name = "\improper Custodial Ringer Terminal"; - req_access = list(26) - }, -/obj/effect/floor_decal/corner/purple/full, -/obj/item/stack/packageWrap, -/obj/item/device/destTagger, -/turf/simulated/floor/tiled, -/area/horizon/custodial) -"qzz" = ( -/obj/machinery/telecomms/server/presets/medical, -/turf/simulated/floor/bluegrid, -/area/tcommsat/chamber) -"qzA" = ( -/obj/effect/floor_decal/industrial/warning{ +"qzx" = ( +/obj/effect/floor_decal/industrial/warning/corner{ dir = 1 }, -/obj/machinery/alarm/south, -/turf/simulated/floor/plating, -/area/maintenance/wing/cargo_compartment) -"qzI" = ( -/obj/random/tool, -/obj/random/tool, -/obj/random/tool, -/obj/random/tech_supply, -/obj/structure/closet/crate/tool, -/obj/random/dirt_75, -/obj/effect/floor_decal/industrial/outline/grey, +/turf/simulated/floor, +/area/horizon/maintenance/deck_3/aft/starboard) +"qzK" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 4 + }, +/obj/effect/floor_decal/corner/yellow, /turf/simulated/floor/tiled/dark, -/area/maintenance/wing/port/far) +/area/horizon/engineering/atmos/turbine) +"qzL" = ( +/obj/effect/floor_decal/corner_wide/purple/full{ + dir = 8 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/xenoarch/atrium) +"qzR" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/structure/cable{ + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/starboard/nacelle) "qzT" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 4 @@ -115378,89 +115184,66 @@ }, /turf/simulated/floor/plating, /area/shuttle/skipjack) -"qAd" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 +"qAb" = ( +/obj/effect/floor_decal/corner_wide/orange{ + dir = 6 }, -/obj/machinery/embedded_controller/radio/simple_docking_controller/escape_pod_berth{ +/obj/structure/sink{ + dir = 4; + pixel_x = 12 + }, +/obj/machinery/shower{ dir = 8; - frequency = 1380; - id_tag = "escape_pod_1_berth"; - pixel_x = 25; - tag_door = "escape_pod_1_berth_hatch" + pixel_x = 1; + pixel_y = 1 }, -/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{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/structure/bed/stool/chair/office/light{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/medical/paramedic) -"qAi" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/horizon/bar/backroom) -"qAs" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/corner/red{ - dir = 6 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/access_button{ - command = "cycle_exterior"; - frequency = 1379; - master_tag = "processing_airlock_control"; - name = "Exterior access button"; - pixel_x = 25; - pixel_y = -30; - req_access = list(5) - }, -/turf/simulated/floor/tiled/dark, -/area/medical/ward/isolation) -"qAz" = ( -/obj/structure/closet/crate, -/obj/random/loot, -/obj/item/storage/bag/inflatable, -/turf/simulated/floor/tiled, -/area/maintenance/aux_atmospherics/deck_2/starboard/wing) -"qAD" = ( -/obj/structure/bed/stool/chair/wood{ +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/pharmacy) +"qAo" = ( +/turf/simulated/wall, +/area/horizon/operations/mail_room) +"qAp" = ( +/obj/effect/floor_decal/corner/grey/diagonal, +/obj/structure/disposalpipe/junction{ dir = 8 }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 6 +/turf/simulated/floor/tiled/white, +/area/horizon/service/kitchen) +"qAr" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 }, -/obj/structure/railing/mapped, -/turf/simulated/floor/wood, -/area/horizon/cafeteria) +/obj/structure/tank_wall/carbon_dioxide{ + icon_state = "co2-3" + }, +/turf/simulated/floor/airless, +/area/horizon/engineering/atmos) +"qAu" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/turf/simulated/floor/reinforced, +/area/horizon/rnd/test_range) +"qAB" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/obj/structure/closet/crate/bin, +/obj/random/loot, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/operations/starboard/amidships) "qAF" = ( /turf/unsimulated/wall/darkshuttlewall, /area/centcom/holding) +"qAG" = ( +/obj/machinery/vending/snack, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/full, +/area/horizon/command/bridge/cciaroom) "qAH" = ( /obj/structure/table/rack, /obj/item/pinpointer/nukeop{ @@ -115501,74 +115284,132 @@ }, /turf/unsimulated/floor, /area/antag/mercenary) -"qAJ" = ( -/obj/effect/floor_decal/spline/fancy/wood{ +"qAM" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner/grey{ + dir = 6 + }, +/turf/simulated/floor/lino, +/area/horizon/service/bar) +"qAN" = ( +/obj/structure/table/rack, +/obj/item/circuitboard/telecomms/processor, +/obj/item/circuitboard/telecomms/processor, +/obj/item/circuitboard/telecomms/receiver, +/obj/item/circuitboard/telecomms/server, +/obj/item/circuitboard/telecomms/server, +/obj/item/circuitboard/telecomms/bus, +/obj/item/circuitboard/telecomms/bus, +/obj/item/circuitboard/telecomms/broadcaster, +/obj/effect/floor_decal/spline/plain{ + dir = 9 + }, +/obj/item/circuitboard/ntnet_relay, +/obj/machinery/firealarm/north, +/turf/simulated/floor/carpet/rubber, +/area/horizon/tcommsat/entrance) +"qBa" = ( +/obj/effect/floor_decal/corner/mauve/full{ + dir = 1 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/engineer_maintenance/pipe{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/xenobiology) +"qBd" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/structure/platform, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/horizon/command/bridge/upperdeck) +"qBe" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/floor_decal/corner/purple{ + dir = 5 + }, +/obj/structure/reagent_dispensers/peppertank/spacecleaner{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled, +/area/horizon/service/custodial) +"qBf" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, /obj/structure/disposalpipe/segment{ - icon_state = "pipe-c" + dir = 4 }, -/obj/structure/bed/stool/chair/padded/black{ +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 1 }, -/turf/simulated/floor/carpet, -/area/lawoffice/representative) -"qAS" = ( -/obj/effect/floor_decal/spline/fancy, -/obj/item/paper_bin{ - pixel_y = 5 - }, -/obj/item/folder/blue{ - pixel_y = 7 - }, -/obj/item/pen, -/obj/item/pen/blue{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/structure/railing/mapped, -/obj/structure/table/reinforced/steel, -/turf/simulated/floor/carpet/rubber, -/area/bridge/controlroom) -"qAU" = ( -/turf/simulated/wall/shuttle/scc_space_ship/cardinal, -/area/engineering/engine_room/rust) -"qAV" = ( -/obj/structure/grille, -/obj/structure/window/shuttle/scc_space_ship, -/obj/machinery/door/firedoor, +/obj/structure/lattice/catwalk/indoor/grate, /turf/simulated/floor/plating, -/area/horizon/hallway/deck_three/primary/starboard) -"qAY" = ( -/obj/effect/floor_decal/industrial/outline/security, -/turf/simulated/floor/tiled, -/area/operations/storage) -"qBb" = ( -/obj/effect/floor_decal/spline/fancy/wood/cee{ +/area/horizon/hangar/intrepid) +"qBg" = ( +/obj/effect/floor_decal/corner/mauve/diagonal, +/obj/structure/platform_stairs/full{ dir = 1 }, -/obj/structure/flora/ausbushes/ywflowers, -/turf/simulated/floor/grass/no_edge, -/area/horizon/hallway/deck_three/primary/central) -"qBj" = ( +/turf/simulated/floor/tiled, +/area/horizon/rnd/xenobiology/xenoflora) +"qBh" = ( +/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/dark, +/area/horizon/rnd/xenoarch/storage) +"qBr" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/horizon/security/checkpoint2) +"qBu" = ( +/obj/machinery/power/apc/east, +/obj/structure/cable/green{ + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/horizon/engineering/storage/lower) +"qBx" = ( /obj/effect/floor_decal/corner/dark_green{ dir = 10 }, -/obj/structure/extinguisher_cabinet/south, /turf/simulated/floor/tiled, -/area/horizon/hallway/deck_two/fore) -"qBk" = ( -/obj/machinery/firealarm/east, -/obj/machinery/atmospherics/pipe/simple/visible/black, -/turf/simulated/floor/plating, -/area/engineering/atmos/air) -"qBv" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/item/material/shard{ - icon_state = "small" - }, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard) +/area/horizon/service/hydroponics/garden) "qBz" = ( /obj/effect/decal/fake_object{ dir = 4; @@ -115590,55 +115431,59 @@ name = "shallow water" }, /area/horizon/holodeck/source_konyang) -"qBC" = ( -/obj/structure/railing/mapped, -/obj/effect/floor_decal/corner/lime{ - dir = 10 - }, -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/tiled, -/area/medical/morgue/lower) -"qBD" = ( -/obj/structure/disposalpipe/junction{ - icon_state = "pipe-j2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ +"qBE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ dir = 8 }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 +/obj/structure/bed/stool/chair/shuttle/double{ + pixel_x = 8 + }, +/obj/effect/floor_decal/spline/plain/black{ + dir = 1 + }, +/obj/structure/bed/stool/chair/shuttle/double{ + pixel_x = -8 + }, +/obj/machinery/power/apc/west{ + req_access = null; + req_one_access = list(11, 24, 47, 65) }, /obj/structure/cable/green{ - icon_state = "1-2" + icon_state = "0-4" }, -/obj/structure/cable/green{ - icon_state = "1-4" +/turf/simulated/floor/tiled/dark/full, +/area/horizon/shuttle/intrepid/main_compartment) +"qBH" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 }, -/turf/simulated/floor/tiled/full, -/area/horizon/hallway/deck_two/fore) +/turf/simulated/floor/plating, +/area/horizon/engineering/reactor/supermatter/airlock) "qBK" = ( /obj/effect/floor_decal/corner/red/diagonal, /turf/simulated/floor/tiled, /area/merchant_station) +"qBL" = ( +/obj/machinery/floodlight, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lime{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/horizon/medical/emergency_storage) +"qBN" = ( +/obj/structure/flora/ausbushes/lavendergrass, +/obj/structure/flora/ausbushes/sparsegrass, +/turf/simulated/floor/grass/no_edge, +/area/horizon/service/hydroponics/lower) "qBQ" = ( /obj/effect/floor_decal/corner/red{ dir = 10 }, /turf/unsimulated/floor, /area/centcom/spawning) -"qBU" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard/deck1) "qBV" = ( /obj/structure/punching_bag, /turf/unsimulated/floor{ @@ -115646,18 +115491,6 @@ icon_state = "wood" }, /area/centcom/legion/hangar5) -"qBW" = ( -/obj/machinery/camera/network/engineering{ - c_tag = "Engineering - Hallway 3"; - dir = 1 - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 8 - }, -/obj/random/pottedplant, -/obj/machinery/alarm/east, -/turf/simulated/floor/wood, -/area/hallway/engineering) "qBX" = ( /obj/machinery/door/airlock/centcom{ name = "Telecommunications Monitoring"; @@ -115667,36 +115500,29 @@ icon_state = "dark_preview" }, /area/centcom/control) -"qCa" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ +"qBY" = ( +/obj/effect/floor_decal/spline/fancy/wood{ dir = 4 }, -/obj/effect/floor_decal/corner_wide/green{ - dir = 4 +/obj/machinery/smartfridge/drinks{ + opacity = 1 }, -/turf/simulated/floor/tiled/white, -/area/hallway/medical/upper) -"qCe" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/simulated/floor/tiled/dark, +/area/horizon/service/bar) +"qBZ" = ( +/turf/simulated/wall, +/area/horizon/stairwell/port/deck_3) +"qCc" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 }, -/obj/structure/cable/green{ - icon_state = "4-8" +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 }, -/obj/structure/platform_deco{ - icon_state = "ledge_deco" - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/bridge) +/obj/structure/extinguisher_cabinet/west, +/turf/simulated/floor/plating, +/area/horizon/rnd/xenoarch/atrium) "qCi" = ( /obj/structure/foamedmetal, /obj/structure/shuttle_part/scc_space_ship{ @@ -115704,42 +115530,31 @@ }, /turf/simulated/floor/plating, /area/horizon/security/brig) -"qCj" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/light/small/emergency{ +"qCk" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/machinery/portable_atmospherics/canister/helium, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/engine_room/rust) -"qCl" = ( -/obj/structure/cable/green{ - icon_state = "0-8" +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 }, -/obj/effect/floor_decal/industrial/hatch_tiny/yellow, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/spiderling_remains, -/obj/item/frame/apc{ - pixel_y = 4; - pixel_x = 1 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 }, -/obj/item/cell/crap/empty{ - pixel_x = -8; - pixel_y = -9 +/obj/effect/floor_decal/corner_wide/green, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/hallway) +"qCn" = ( +/obj/effect/floor_decal/corner/black{ + dir = 9 }, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard/far) -"qCo" = ( -/obj/effect/map_effect/window_spawner/full/borosilicate/reinforced/firedoor, -/obj/structure/platform, -/obj/machinery/door/blast/regular/open{ - dir = 8; - fail_secure = 1; - id = "telesci_lockdown"; - name = "Hazardous Containment Lockdown" +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 }, -/turf/simulated/floor/tiled/dark/full, -/area/rnd/telesci) +/turf/simulated/floor/tiled/dark, +/area/horizon/hangar/auxiliary) "qCr" = ( /obj/machinery/computer/security/telescreen, /obj/effect/floor_decal/corner/blue/diagonal, @@ -115747,61 +115562,6 @@ icon_state = "white" }, /area/tdome/tdomeobserve) -"qCs" = ( -/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, -/obj/machinery/door/blast/shutters{ - dir = 2; - id = "cargo_desk" - }, -/turf/simulated/floor/tiled/dark/full, -/area/operations/office_aux) -"qCt" = ( -/obj/item/storage/secure/safe{ - pixel_y = -23 - }, -/obj/machinery/photocopier, -/turf/simulated/floor/carpet, -/area/lawoffice/representative_two) -"qCu" = ( -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/effect/decal/cleanable/cobweb, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard/deck1) -"qCA" = ( -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/effect/floor_decal/corner/dark_green{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/hangar/intrepid) -"qCC" = ( -/obj/structure/sign/directions/all{ - dir = 4; - pixel_x = 32; - pixel_y = 32 - }, -/obj/effect/floor_decal/corner/dark_green/full{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/central) -"qCE" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "2-4" - }, -/turf/simulated/floor/tiled, -/area/medical/gen_treatment) "qCN" = ( /obj/structure/bed/padded, /obj/item/bedsheet/blue, @@ -115821,51 +115581,34 @@ }, /turf/simulated/floor/tiled, /area/horizon/security/brig) -"qCZ" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 10 +"qCX" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 5 }, -/turf/simulated/floor/tiled, -/area/rnd/hallway) +/obj/structure/sign/vacuum{ + pixel_x = -32 + }, +/turf/simulated/floor/plating, +/area/horizon/engineering/reactor/supermatter/airlock) +"qDa" = ( +/obj/structure/sign/fire{ + desc = "A warning sign which reads 'DANGER: SHUTTLE THRUSTERS IN USE' and 'MIND THE DISTANCE'."; + name = "\improper DANGER: THRUSTERS sign"; + pixel_x = 32 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/item/hullbeacon/red, +/turf/simulated/floor/airless, +/area/horizon/hangar/operations) "qDb" = ( /obj/machinery/atmospherics/portables_connector, /obj/machinery/portable_atmospherics/canister/oxygen/prechilled, /obj/structure/lattice/catwalk/indoor/grate/dark, /turf/unsimulated/floor/plating, /area/centcom/legion) -"qDe" = ( -/obj/structure/lattice/catwalk/indoor/grate/damaged, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard/far) -"qDg" = ( -/obj/structure/bed/stool/chair/office/light{ - dir = 8 - }, -/obj/effect/floor_decal/corner_wide/paleblue{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/heads/cmo) -"qDj" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/lattice/catwalk/indoor/grate/damaged, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard/deck1) -"qDl" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/bed/stool/bar/padded/red, -/turf/simulated/floor/tiled/dark, -/area/horizon/maintenance/deck_three/aft/starboard) -"qDq" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 10 - }, -/turf/simulated/floor/tiled/dark, -/area/storage/eva) "qDs" = ( /obj/effect/floor_decal/corner/brown{ dir = 10 @@ -115873,13 +115616,15 @@ /obj/effect/decal/cleanable/dirt, /turf/unsimulated/floor, /area/antag/burglar) -"qDu" = ( -/obj/machinery/light/small/emergency, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 +"qDt" = ( +/obj/machinery/atmospherics/unary/outlet_injector{ + dir = 4; + frequency = 1441; + id = "mixed_in"; + name = "mixed gas injector" }, -/turf/simulated/floor/plating, -/area/maintenance/engineering) +/turf/simulated/floor/reinforced/airless, +/area/horizon/engineering/atmos) "qDy" = ( /turf/simulated/wall, /area/horizon/security/forensic_laboratory) @@ -115896,109 +115641,124 @@ }, /turf/simulated/floor/tiled, /area/horizon/security/investigations_hallway) -"qDC" = ( -/obj/machinery/light, -/obj/effect/floor_decal/corner_wide/black{ - dir = 10 - }, -/obj/effect/floor_decal/industrial/warning, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/engineering/atmos/propulsion/starboard) "qDD" = ( /obj/effect/floor_decal/corner/red{ dir = 9 }, /turf/unsimulated/floor, /area/centcom/control) -"qDJ" = ( -/obj/effect/floor_decal/corner/brown{ - dir = 10 +"qDG" = ( +/obj/effect/floor_decal/corner/white{ + dir = 5 + }, +/obj/structure/cable{ + icon_state = "4-8" }, -/obj/effect/floor_decal/industrial/warning, /turf/simulated/floor/tiled, -/area/operations/loading) -"qDK" = ( -/obj/vehicle/train/cargo/engine/pussywagon, -/turf/simulated/floor/tiled/dark, -/area/horizon/custodial) -"qDN" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/suit_storage_unit/standard_unit, +/area/horizon/hallway/primary/deck_1/central) +"qDM" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/random/junk, +/turf/simulated/floor, +/area/horizon/maintenance/deck_3/aft/holodeck) +"qDO" = ( +/obj/structure/grille, +/obj/machinery/door/firedoor, +/obj/structure/window/shuttle/scc_space_ship/cardinal, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/obj/machinery/door/blast/regular/open{ + dir = 2; + id = "shutters_deck3_longbow"; + name = "Safety Blast Door" + }, /turf/simulated/floor/tiled/dark/full, -/area/storage/eva) +/area/horizon/weapons/longbow) +"qDP" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/random/dirt_75, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/starboard/nacelle) "qDQ" = ( /obj/effect/shuttle_landmark/horizon/exterior/deck_3/portfore, /turf/template_noop, /area/template_noop) +"qDS" = ( +/obj/effect/floor_decal/industrial/warning/cee{ + dir = 4 + }, +/obj/machinery/embedded_controller/radio/simple_docking_controller{ + frequency = 1380; + id_tag = "intrepid_dock"; + name = "\improper Intrepid docking port controller"; + pixel_y = 28; + req_one_access = list(74) + }, +/turf/simulated/floor/plating, +/area/horizon/hangar/intrepid) +"qDU" = ( +/turf/simulated/wall/shuttle/scc_space_ship/cardinal, +/area/horizon/crew/lounge) "qDV" = ( /obj/structure/closet/crate/secure/legion, /turf/unsimulated/floor, /area/centcom/legion/hangar5) -"qDY" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 +"qDW" = ( +/obj/effect/floor_decal/corner/mauve/full{ + dir = 8 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/effect/floor_decal/corner_wide/green{ - dir = 10 - }, -/obj/effect/floor_decal/corner_wide/green{ - dir = 1 +/obj/structure/engineer_maintenance/electric{ + dir = 8 }, /turf/simulated/floor/tiled/white, -/area/medical/exam) +/area/horizon/rnd/xenobiology) +"qDX" = ( +/obj/structure/curtain/black{ + icon_state = "open"; + opacity = 0 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 10 + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/wood, +/area/horizon/service/dining_hall) "qEb" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 8 }, /turf/simulated/floor/holofloor/lino, /area/horizon/holodeck/source_courtroom) -"qEc" = ( -/obj/structure/stairs/north, -/turf/simulated/floor/tiled/dark, -/area/horizon/stairwell/bridge) -"qEh" = ( -/obj/effect/floor_decal/corner/yellow{ - dir = 6 - }, -/obj/machinery/camera/motion{ - c_tag = "Technical Storage"; - dir = 8; - network = list("Command","Security","Engineering") - }, -/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"; - dir = 1 - }, -/obj/effect/floor_decal/corner/lime/diagonal, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ +"qEe" = ( +/obj/structure/railing/mapped{ dir = 4 }, -/turf/simulated/floor/tiled/white{ - name = "cooled white floor"; - temperature = 278.15 +/obj/structure/railing/mapped, +/obj/effect/floor_decal/corner/dark_blue/diagonal, +/obj/machinery/computer/ship/navigation{ + dir = 8 }, -/area/medical/morgue/lower) +/turf/simulated/floor/tiled/dark, +/area/horizon/command/bridge/aibunker) "qEl" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 8 @@ -116009,70 +115769,88 @@ /obj/effect/landmark/actor_spawn, /turf/unsimulated/floor/wood, /area/antag/actor) +"qEm" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/wood, +/area/horizon/command/bridge/meeting_room) +"qEp" = ( +/obj/effect/floor_decal/corner_wide/yellow{ + dir = 5 + }, +/obj/structure/closet/walllocker/firecloset{ + pixel_y = 32 + }, +/obj/effect/floor_decal/industrial/outline/firefighting_closet, +/turf/simulated/floor/tiled, +/area/horizon/engineering/hallway/aft) "qEq" = ( /obj/machinery/atmospherics/pipe/simple/visible/universal, /obj/structure/lattice, /turf/space/dynamic, /area/horizon/exterior) -"qEB" = ( -/obj/effect/floor_decal/corner/green/diagonal{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/bed/stool/chair/plastic{ +"qEu" = ( +/obj/machinery/atmospherics/pipe/simple/visible/green{ dir = 4 }, -/turf/simulated/floor/tiled/white, -/area/medical/ward) -"qEI" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ +/obj/machinery/door/airlock/glass_engineering{ + dir = 4; + name = "Supermatter Reactor External Access"; + req_one_access = list(11,24) + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/full, +/area/horizon/engineering/reactor/supermatter/mainchamber) +"qEy" = ( +/obj/machinery/embedded_controller/radio/airlock/airlock_controller{ + dir = 8; + pixel_x = 20 + }, +/obj/effect/map_effect/marker/airlock{ + frequency = 1003; + master_tag = "airlock_horizon_deck_1_aft_propulsion_1"; + name = "airlock_horizon_deck_1_aft_propulsion_1" + }, +/turf/simulated/floor/plating, +/area/horizon/engineering/atmos/propulsion) +"qED" = ( +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/auxatmos) +"qEG" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/obj/effect/floor_decal/corner/dark_green{ +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/platform_stairs/full/east_west_cap/half{ dir = 1 }, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/central) -"qEK" = ( -/obj/effect/floor_decal/corner/brown{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/operations/storage) -"qEN" = ( -/obj/machinery/computer/aiupload{ - dir = 1 - }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 5 - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/turf/simulated/floor/tiled/dark, -/area/turret_protected/ai_upload_foyer) -"qER" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 9 - }, -/obj/machinery/smartfridge/secure, -/obj/effect/floor_decal/spline/plain{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/horizon/hydroponics) -"qEW" = ( -/obj/effect/floor_decal/industrial/hatch/grey, -/obj/machinery/chem_master/condimaster, -/obj/effect/floor_decal/corner/grey/full, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/bar) -"qEZ" = ( +/obj/structure/platform, /turf/simulated/floor/tiled/full, -/area/outpost/mining_main/refinery) +/area/horizon/engineering/hallway/interior) +"qEV" = ( +/obj/structure/girder, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/port/near) "qFa" = ( /obj/effect/decal/fake_object{ color = "#ff0000"; @@ -116096,16 +115874,17 @@ }, /turf/unsimulated/floor/plating, /area/centcom/bar) -"qFf" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ +"qFc" = ( +/obj/effect/floor_decal/spline/fancy/wood/cee{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/outline/operations, +/obj/structure/flora/ausbushes/brflowers, +/obj/structure/railing/mapped, +/turf/simulated/floor/grass/no_edge, +/area/horizon/stairwell/port/deck_3) +"qFe" = ( /turf/simulated/floor/tiled, -/area/operations/storage) +/area/horizon/engineering/locker_room) "qFj" = ( /obj/item/stack/cable_coil, /obj/machinery/light, @@ -116113,24 +115892,6 @@ icon_state = "whiteshiny" }, /area/centcom/bar) -"qFp" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/storage/eva) -"qFq" = ( -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/random/dirt_75, -/obj/random/dirt_75, -/turf/simulated/floor/plating, -/area/maintenance/wing/port/far) "qFs" = ( /obj/machinery/light{ dir = 1 @@ -116196,38 +115957,11 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/holodeck_control) -"qFH" = ( -/obj/machinery/firealarm/east, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/effect/floor_decal/corner/brown/full{ - dir = 4 - }, -/obj/machinery/light, -/turf/simulated/floor/tiled, -/area/operations/mail_room) -"qFM" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled, -/area/operations/lower/machinist) "qFN" = ( /obj/machinery/anti_bluespace, /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) "qFT" = ( /obj/effect/floor_decal/industrial/loading/yellow{ dir = 1 @@ -116238,10 +115972,27 @@ }, /turf/unsimulated/floor/monotile, /area/antag/loner) -"qFX" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/turf/simulated/floor/tiled, -/area/maintenance/aux_atmospherics/deck_2/starboard/wing) +"qFU" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 4 + }, +/obj/effect/floor_decal/corner/yellow{ + dir = 1 + }, +/obj/effect/floor_decal/corner/dark_blue{ + dir = 8 + }, +/obj/effect/floor_decal/corner/dark_blue{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/yellow, +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/atmos) "qFZ" = ( /obj/machinery/door/airlock/hatch{ dir = 1; @@ -116263,42 +116014,116 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/security/meeting_room) -"qGk" = ( -/obj/effect/floor_decal/corner/dark_green, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/central) -"qGp" = ( -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/effect/floor_decal/industrial/loading/yellow, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard/far) -"qGs" = ( -/obj/effect/floor_decal/corner/dark_blue{ +"qGc" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 10 }, -/turf/simulated/floor/tiled/dark, -/area/horizon/grauwolf) -"qGw" = ( +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/conference) +"qGg" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/horizon/command/bridge/upperdeck) +"qGj" = ( +/obj/structure/closet/emcloset, +/obj/item/storage/toolbox/emergency, +/obj/item/crowbar/red, +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/effect/floor_decal/corner/dark_green{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/outline/emergency_closet, +/obj/machinery/power/apc/super/critical/north, +/turf/simulated/floor/tiled, +/area/horizon/crew/resdeck/living_quarters_lift) +"qGq" = ( +/obj/machinery/atmospherics/pipe/manifold/visible, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/aux{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/auxatmos) +"qGv" = ( +/turf/simulated/wall/r_wall, +/area/horizon/ai/upload) +"qGy" = ( +/obj/structure/lattice, +/obj/structure/platform/ledge{ + dir = 4 + }, +/obj/structure/platform/ledge{ + dir = 8 + }, +/obj/structure/railing/mapped{ + dir = 4 + }, /obj/structure/railing/mapped{ dir = 8 }, -/obj/effect/floor_decal/corner/dark_blue/full, -/obj/item/modular_computer/console/preset/medical{ - dir = 1 +/turf/simulated/open, +/area/horizon/operations/office) +"qGA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 }, -/obj/structure/railing/mapped, -/turf/simulated/floor/tiled/dark, -/area/bridge/controlroom) -"qGG" = ( -/obj/machinery/door/blast/regular/open{ - id = "hangarlockdown"; - name = "Hangar Lockdown" - }, -/obj/structure/cable{ +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/structure/cable/green{ icon_state = "4-8" }, /turf/simulated/floor/tiled, -/area/hangar/intrepid) +/area/horizon/crew/fitness/changing) +"qGC" = ( +/obj/machinery/recharger/wallcharger{ + pixel_y = -28; + pixel_x = 5 + }, +/obj/effect/floor_decal/industrial/outline/security, +/obj/structure/closet/secure_closet/hos, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/command/heads/hos) +"qGE" = ( +/obj/structure/railing/mapped, +/obj/structure/stairs/east, +/turf/simulated/floor/tiled, +/area/horizon/engineering/hallway/aft) +"qGK" = ( +/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, +/obj/machinery/recharger{ + pixel_x = -5; + pixel_y = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/shuttle/quark/cockpit) "qGN" = ( /obj/machinery/door/airlock/centcom{ frequency = 1337; @@ -116312,34 +116137,6 @@ }, /turf/unsimulated/floor, /area/centcom/legion/hangar5) -"qGR" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/central) -"qGT" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/machinery/door/airlock/maintenance{ - dir = 1; - req_one_access = list(5,12) - }, -/turf/simulated/floor, -/area/horizon/maintenance/deck_three/aft/starboard) "qGX" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 1 @@ -116364,66 +116161,41 @@ }, /turf/simulated/floor/tiled, /area/horizon/security/investigations_hallway) -"qHf" = ( -/obj/effect/floor_decal/corner_wide/black/full{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 6 - }, -/obj/machinery/light, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/engineering/atmos/propulsion) -"qHi" = ( +"qHa" = ( /obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/corner/dark_green{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/starboard) -"qHk" = ( -/obj/structure/bed/stool/chair/shuttle{ - dir = 8 - }, -/obj/item/device/radio/intercom/south, -/turf/simulated/floor/shuttle/dark_blue, -/area/shuttle/escape_pod/pod4) -"qHn" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/green{ icon_state = "1-8" }, -/obj/structure/cable/green{ - icon_state = "1-4" +/turf/simulated/floor/wood, +/area/horizon/crew/journalistoffice) +"qHc" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" }, -/turf/simulated/floor/tiled, -/area/bridge/upperdeck) -"qHs" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 9 +/turf/simulated/floor, +/area/horizon/maintenance/deck_3/aft/port) +"qHe" = ( +/obj/random/junk, +/obj/structure/table/steel, +/turf/simulated/floor/tiled/dark, +/area/horizon/maintenance/deck_2/wing/starboard) +"qHv" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 6 }, -/obj/machinery/light{ - dir = 8 +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 }, -/obj/machinery/vending/snack, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_two) +/turf/simulated/floor/tiled/dark, +/area/horizon/shuttle/intrepid/main_compartment) "qHy" = ( /obj/structure/flora/stump{ pixel_x = 15; @@ -116490,21 +116262,30 @@ }, /turf/unsimulated/floor/plating, /area/centcom/specops) +"qHD" = ( +/obj/effect/floor_decal/industrial/outline/service, +/obj/structure/table/rack, +/obj/item/storage/toolbox/mechanical, +/obj/item/reagent_containers/glass/bucket, +/obj/item/reagent_containers/glass/bucket, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/service/hydroponics) +"qHF" = ( +/obj/structure/closet/crate, +/obj/effect/floor_decal/corner/brown{ + dir = 10 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled, +/area/horizon/operations/warehouse) +"qHI" = ( +/turf/simulated/wall, +/area/horizon/medical/main_storage) "qHJ" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/liquid_fuel, /turf/unsimulated/floor, /area/antag/raider) -"qHL" = ( -/obj/random/pottedplant, -/obj/effect/floor_decal/corner/dark_green/full{ - dir = 8 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/engineering/lobby) "qHQ" = ( /obj/effect/floor_decal/spline/plain/corner, /obj/effect/decal/fake_object/light_source/invisible{ @@ -116514,6 +116295,18 @@ }, /turf/simulated/floor/exoplanet/barren/raskara, /area/centcom/shared_dream) +"qHU" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/structure/platform{ + dir = 4 + }, +/obj/structure/platform_deco{ + dir = 10 + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/port/far) "qHY" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 4 @@ -116528,11 +116321,89 @@ }, /turf/simulated/open/airless, /area/horizon/exterior) -"qIl" = ( -/obj/structure/closet/crate, -/obj/random/loot, +"qIe" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/floor_decal/industrial/warning, +/obj/structure/table/standard, +/obj/item/material/ashtray/bronze{ + pixel_x = 2; + pixel_y = 1 + }, +/obj/item/material/stool/chair/folding{ + pixel_y = 19 + }, +/obj/item/paper/cig{ + desc = "A thin piece of paper used to make smokables. Someone has written the text 'Hope to see you again sometime, my friend.' on it."; + name = "written-on rolling paper"; + pixel_x = -6; + pixel_y = -2 + }, +/obj/item/clothing/mask/smokable/cigarette{ + pixel_x = 8; + pixel_y = -4 + }, /turf/simulated/floor/plating, -/area/maintenance/wing/starboard/deck1) +/area/horizon/maintenance/deck_1/wing/port/far) +"qIf" = ( +/obj/effect/floor_decal/corner_wide/blue{ + dir = 5 + }, +/obj/effect/floor_decal/corner_wide/yellow{ + dir = 10 + }, +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/light/small/emergency, +/obj/structure/sign/nosmoking_1{ + pixel_y = -32 + }, +/turf/simulated/floor/reinforced, +/area/horizon/command/bridge/selfdestruct) +"qIj" = ( +/obj/effect/floor_decal/spline/fancy/wood/cee, +/obj/structure/flora/ausbushes/sunnybush, +/obj/machinery/door/firedoor, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/grass/no_edge, +/area/horizon/hallway/primary/deck_3/port) +"qIm" = ( +/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/machinery/atmospherics/pipe/simple/hidden/aux{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 9 + }, +/obj/structure/sign/directions/prop{ + dir = 8; + pixel_y = -22 + }, +/obj/structure/sign/directions/prop{ + pixel_y = -28 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/green{ + dir = 9 + }, +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor/plating, +/area/horizon/stairwell/engineering/deck_1) +"qIn" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/gen_treatment) "qIo" = ( /obj/machinery/newscaster/west, /obj/structure/table/standard, @@ -116547,120 +116418,21 @@ }, /turf/simulated/floor/tiled, /area/horizon/security/lobby) -"qIs" = ( -/obj/structure/window/shuttle/scc_space_ship, -/obj/structure/grille, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "bridge blast"; - name = "Bridge Blast Doors"; - opacity = 0 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/shutters/open{ - dir = 2; - id = "shutters_deck3_bridgesafety"; - name = "Safety Shutter" - }, -/obj/structure/cable/green{ - icon_state = "0-8" - }, -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/obj/machinery/door/blast/shutters/open{ - dir = 2; - id = "conferencesafetyshutters"; - name = "Safety Shutter" - }, -/turf/simulated/floor/plating, -/area/bridge/meeting_room) -"qIu" = ( -/obj/structure/bed/stool/chair/padded/brown{ - dir = 8 - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/lawoffice/consular) -"qIv" = ( -/obj/machinery/kinetic_harvester{ - initial_id_tag = "horizon_fusion" - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/engine_room/rust) -"qIx" = ( -/obj/structure/table/standard{ - no_cargo = 1 - }, -/obj/random/loot, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard/deck1) -"qIy" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/effect/floor_decal/industrial/warning/cee{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, +"qIB" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/engine_room) -"qIA" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/shutters/open{ - dir = 8; - id = "lounge_window_shutters"; - name = "Lounge Window Shutter" - }, -/obj/structure/grille, -/obj/structure/window/shuttle/scc_space_ship, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/structure/lattice/catwalk/indoor/grate, /turf/simulated/floor/plating, -/area/horizon/crew_quarters/lounge/bar) -"qIE" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 9 - }, -/obj/machinery/camera/network/reactor{ - c_tag = "Engineering - INDRA Reactor Core" - }, -/turf/simulated/floor/reinforced/airless, -/area/engineering/engine_room/rust) +/area/horizon/hangar/auxiliary) "qIG" = ( /obj/effect/floor_decal/spline/fancy/wood, /turf/simulated/floor/holofloor/wood, /area/horizon/holodeck/source_theatre) -"qIH" = ( -/turf/simulated/floor/tiled/dark, -/area/horizon/longbow) -"qIL" = ( -/obj/effect/floor_decal/corner/black{ - dir = 5 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/rnd/hallway) +"qII" = ( +/turf/simulated/open, +/area/horizon/stairwell/starboard/deck_2) "qIN" = ( /obj/structure/flora/ausbushes/leafybush, /obj/effect/decal/fake_object/light_source/invisible{ @@ -116678,74 +116450,75 @@ }, /turf/simulated/floor/bluegrid, /area/tdome) -"qIS" = ( -/obj/effect/floor_decal/spline/plain/black, -/obj/structure/bed/stool/chair/shuttle/double{ +"qIU" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/horizon/hangar/operations) +"qIZ" = ( +/obj/machinery/camera/network/service{ + c_tag = "Service- Hydroponics 2"; + dir = 1 + }, +/obj/structure/table/reinforced, +/obj/effect/floor_decal/corner/dark_green/diagonal, +/obj/item/paper_bin{ pixel_x = -8; - dir = 1 + pixel_y = 4 }, -/obj/structure/bed/stool/chair/shuttle/double{ - pixel_x = 8; - dir = 1 +/obj/item/pen{ + pixel_x = -6; + pixel_y = 4 }, -/turf/simulated/floor/tiled/dark/full, -/area/shuttle/intrepid/main_compartment) -"qIT" = ( -/obj/machinery/vending/coffee, -/obj/effect/floor_decal/corner/purple/full, -/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/item/clothing/ears/earphones/headphones{ + pixel_x = 3; + pixel_y = 12 + }, +/obj/effect/floor_decal/spline/plain, /turf/simulated/floor/tiled, -/area/horizon/custodial) -"qIV" = ( -/obj/effect/floor_decal/corner/dark_green/full{ - dir = 4 +/area/horizon/service/hydroponics) +"qJc" = ( +/obj/machinery/door/airlock/glass_research{ + dir = 1; + name = "Exploratory Chemistry"; + req_access = list(7) }, -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"qJa" = ( -/obj/machinery/camera/network/engineering{ - c_tag = "Engineering - Deck 2 - Starboard Pod Substation"; - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable{ - d2 = 4; - icon_state = "0-4" - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard/far) -"qJb" = ( -/obj/effect/floor_decal/industrial/hatch_door/red{ - dir = 1 - }, -/obj/machinery/door/airlock/external, -/obj/effect/map_effect/marker/airlock/shuttle{ - cycle_to_external_air = 1; - master_tag = "airlock_shuttle_intrepid"; - name = "airlock_shuttle_intrepid"; - req_one_access = null; - shuttle_tag = "Intrepid" - }, -/obj/effect/map_effect/marker_helper/airlock/interior, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 9 +/obj/structure/cable/green{ + icon_state = "1-2" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/effect/map_effect/door_helper/unres, /turf/simulated/floor/tiled/dark/full, -/area/shuttle/intrepid/main_compartment) -"qJf" = ( -/obj/structure/lattice, -/obj/structure/railing/mapped, -/obj/structure/platform/ledge{ +/area/horizon/rnd/chemistry) +"qJd" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 5 + }, +/obj/machinery/button/remote/blast_door{ + dir = 1; + id = "xenobio_e"; + name = "Cell Containment Blast Doors"; + pixel_x = -7; + req_access = list(47); + pixel_y = 29 + }, +/obj/machinery/button/remote/blast_door{ + dir = 1; + id = "xenobio_f"; + name = "Cell Containment Blast Doors"; + pixel_x = 7; + req_access = list(47); + pixel_y = 29 + }, +/obj/effect/floor_decal/corner/mauve{ + dir = 5 + }, +/obj/machinery/light/floor{ dir = 1 }, -/turf/simulated/open, -/area/hallway/medical/upper) -"qJg" = ( -/obj/machinery/atmospherics/pipe/simple/visible/supply, -/turf/simulated/floor/plating, -/area/engineering/atmos/air) +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/xenobiology) "qJh" = ( /obj/structure/table/reinforced/steel, /obj/machinery/door/window/brigdoor/westright{ @@ -116761,36 +116534,21 @@ }, /turf/simulated/floor/holofloor/carpet, /area/horizon/holodeck/source_dininghall) -"qJl" = ( -/obj/machinery/power/smes/buildable/substation{ - RCon_tag = "Substation - Research" +"qJm" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 6 }, -/obj/structure/cable{ - icon_state = "0-8" +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor, +/area/horizon/maintenance/deck_3/aft/port) +"qJr" = ( +/obj/structure/table/wood, +/obj/random/pottedplant_small{ + pixel_x = -4; + pixel_y = 6 }, -/obj/structure/cable/green{ - icon_state = "0-4" - }, -/turf/simulated/floor/plating, -/area/maintenance/substation/research) -"qJq" = ( -/obj/structure/bed/stool/chair/padded/brown{ - dir = 4 - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 9 - }, -/turf/simulated/floor/wood, -/area/horizon/hallway/deck_three/primary/central) -"qJs" = ( -/obj/machinery/body_scanconsole{ - dir = 4 - }, -/obj/effect/floor_decal/corner/beige/full{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/medical/gen_treatment) +/turf/simulated/floor/carpet, +/area/horizon/hallway/primary/deck_2/starboard) "qJv" = ( /obj/effect/decal/rolling_fog, /obj/structure/railing/mapped{ @@ -116812,36 +116570,26 @@ }, /turf/unsimulated/floor, /area/centcom/legion/hangar5) -"qJD" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 4 - }, -/obj/effect/floor_decal/spline/fancy/wood{ +"qJx" = ( +/obj/effect/floor_decal/spline/plain/corner{ dir = 8 }, -/obj/machinery/button/remote/blast_door{ - dir = 4; - id = "massdriver"; - name = "Mass Driver Interior Blast Door"; - pixel_x = 25; - pixel_y = 11 +/obj/effect/floor_decal/spline/plain{ + dir = 5 }, -/obj/machinery/button/remote/blast_door{ - dir = 4; - id = "chapel_driver"; - name = "Mass Driver Exterior Blast Door"; - pixel_x = 25 +/obj/machinery/light{ + dir = 1 }, -/obj/machinery/button/mass_driver{ - _wifi_id = "chapel_driver"; - dir = 8; - id = "chapel_driver"; - pixel_x = 35; - pixel_y = 5 +/obj/effect/floor_decal/sign/v, +/turf/simulated/floor/carpet/rubber, +/area/horizon/tcommsat/chamber) +"qJz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 }, -/turf/simulated/floor/wood, -/area/chapel/office) +/obj/machinery/light/small, +/turf/simulated/floor/tiled, +/area/horizon/maintenance/deck_2/wing/starboard/auxatmos) "qJE" = ( /obj/effect/floor_decal/corner/lime/diagonal{ dir = 8 @@ -116851,103 +116599,6 @@ }, /turf/simulated/floor/tiled/dark, /area/shuttle/mercenary) -"qJF" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/platform_deco{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/horizon/crew_quarters/lounge/bar) -"qJI" = ( -/obj/effect/map_effect/window_spawner/full/reinforced/grille/firedoor, -/turf/simulated/floor/plating, -/area/engineering/bluespace_drive/monitoring) -"qJQ" = ( -/obj/machinery/shield_gen/external{ - anchored = 1 - }, -/obj/effect/floor_decal/corner_wide/yellow/full, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/camera/network/engineering{ - c_tag = "Engineering - Shield Room"; - dir = 4 - }, -/turf/simulated/floor/tiled/dark/full, -/area/storage/shields) -"qJR" = ( -/turf/simulated/floor/wood, -/area/hallway/primary/central_two) -"qJU" = ( -/obj/effect/floor_decal/corner/brown{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/intrepid/main_compartment) -"qJV" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/turf/simulated/floor/plating, -/area/maintenance/substation/engineering) -"qJW" = ( -/obj/structure/railing/mapped, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/obj/structure/cable/green{ - icon_state = "2-4" - }, -/obj/effect/floor_decal/industrial/warning, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/maintenance/security_port) -"qJZ" = ( -/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/effect/map_effect/window_spawner/full/reinforced/firedoor, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/lobby) -"qKd" = ( -/obj/structure/platform/ledge, -/obj/structure/platform_deco/ledge{ - dir = 5 - }, -/turf/simulated/open, -/area/operations/office) -"qKg" = ( -/obj/machinery/light/small/emergency, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/maintenance/deck_three/aft/starboard) "qKh" = ( /obj/machinery/cell_charger{ pixel_y = 3 @@ -116960,74 +116611,96 @@ icon_state = "dark_preview" }, /area/centcom/specops) -"qKj" = ( -/obj/structure/tank_wall/nitrogen{ - density = 0; - icon_state = "n12"; - opacity = 0 +"qKi" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/fuel, +/obj/structure/shuttle_part/scc/scout{ + icon_state = "6,9"; + opacity = 1; + outside_part = 0 }, -/turf/simulated/floor/reinforced/nitrogen, -/area/engineering/atmos/air) +/turf/simulated/floor/reinforced{ + blocks_air = 1; + density = 1; + name = "thruster mount"; + opacity = 1 + }, +/area/horizon/shuttle/canary) +"qKo" = ( +/obj/structure/stairs/north, +/turf/simulated/floor/tiled, +/area/horizon/operations/warehouse) +"qKs" = ( +/obj/machinery/telepad, +/obj/effect/floor_decal/industrial/warning/full, +/turf/simulated/floor/reinforced, +/area/horizon/rnd/telesci) +"qKu" = ( +/obj/machinery/power/smes/buildable/substation{ + RCon_tag = "Substation - Deck 3 Civilian" + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/structure/cable/green{ + icon_state = "0-8" + }, +/turf/simulated/floor, +/area/horizon/maintenance/substation/civ_d3) "qKv" = ( /turf/simulated/wall/shuttle/dark/corner/underlay{ dir = 5 }, /area/centcom/legion/hangar5) -"qKw" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 +"qKx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 10 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/corner/green{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/operations/break_room) -"qKy" = ( -/obj/effect/floor_decal/corner/brown{ +/obj/effect/floor_decal/corner/purple{ dir = 6 }, /turf/simulated/floor/tiled, -/area/operations/lobby) -"qKA" = ( -/obj/structure/window/shuttle/scc_space_ship, -/obj/structure/grille, -/obj/machinery/door/firedoor, +/area/horizon/shuttle/quark/cargo_hold) +"qKD" = ( +/obj/structure/disposalpipe/up{ + dir = 4 + }, +/obj/structure/railing/mapped, +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, /turf/simulated/floor/plating, -/area/maintenance/wing/port/deck1) -"qKH" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor/wood, -/area/crew_quarters/captain) -"qKJ" = ( -/obj/structure/bed/stool/chair/padded/brown{ - dir = 1 - }, -/obj/effect/landmark/start{ - name = "Passenger" - }, -/turf/simulated/floor/carpet/art, -/area/crew_quarters/lounge) -"qKU" = ( -/obj/structure/disposalpipe/segment{ +/area/horizon/maintenance/deck_2/aft) +"qKF" = ( +/obj/machinery/light/small/emergency{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ +/turf/simulated/floor/tiled/dark, +/area/horizon/maintenance/deck_2/wing/starboard/far) +"qKM" = ( +/obj/effect/floor_decal/industrial/outline/grey, +/obj/structure/closet/crate/plastic{ + name = "warning cones crate" + }, +/obj/item/clothing/head/cone, +/obj/item/clothing/head/cone, +/obj/item/clothing/head/cone, +/obj/item/clothing/head/cone, +/obj/item/clothing/head/cone, +/obj/item/clothing/head/cone, +/obj/item/clothing/head/cone, +/obj/item/clothing/head/cone, +/obj/item/clothing/head/cone, +/obj/item/clothing/head/cone, +/obj/item/clothing/head/cone, +/obj/item/clothing/head/cone, +/obj/machinery/light{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/lattice/catwalk/indoor/grate, /turf/simulated/floor/plating, -/area/rnd/hallway) +/area/horizon/hangar/intrepid) "qKW" = ( /obj/item/clothing/mask/gas/syndicate{ pixel_y = 6 @@ -117099,13 +116772,6 @@ }, /turf/simulated/floor/reinforced/airless, /area/horizon/exterior) -"qKY" = ( -/obj/machinery/atmospherics/binary/circulator{ - anchored = 1; - dir = 1 - }, -/turf/simulated/floor/plating, -/area/engineering/engine_room) "qLa" = ( /obj/effect/floor_decal/carpet{ dir = 4 @@ -117116,48 +116782,46 @@ }, /turf/simulated/floor/holofloor/carpet, /area/horizon/holodeck/source_courtroom) -"qLd" = ( -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"qLe" = ( -/obj/structure/shuttle_part/scc/scout{ - icon_state = "1,10" +"qLb" = ( +/obj/machinery/bluespace_beacon, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 8 }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 5 + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, /turf/simulated/floor/plating, -/area/shuttle/canary) +/area/horizon/shuttle/mining) "qLh" = ( /obj/machinery/suit_cycler/wizard, /turf/unsimulated/floor/marble, /area/antag/wizard) -"qLk" = ( -/obj/effect/floor_decal/industrial/hatch/red, +"qLi" = ( +/obj/effect/floor_decal/corner_wide/purple{ + dir = 6 + }, +/obj/effect/floor_decal/corner_wide/purple{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/xenoarch/atrium) +"qLo" = ( /obj/effect/floor_decal/industrial/warning{ dir = 8 }, -/turf/simulated/floor/reinforced/airless, -/area/engineering/engine_room/rust) -"qLp" = ( -/obj/effect/floor_decal/corner_wide/yellow{ - dir = 6 - }, -/obj/effect/floor_decal/spline/plain{ - dir = 8 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/engineering/break_room) -"qLs" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ +/obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 }, -/turf/simulated/open, -/area/maintenance/wing/starboard) +/obj/machinery/alarm/east, +/turf/simulated/floor/tiled, +/area/horizon/hangar/operations) +"qLq" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/structure/window/reinforced, +/obj/machinery/alarm/north, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/port/far) "qLw" = ( /obj/machinery/light{ dir = 4 @@ -117167,29 +116831,61 @@ }, /turf/unsimulated/floor/freezer, /area/antag/mercenary) -"qLy" = ( -/obj/structure/cable/green{ - icon_state = "1-8" +"qLC" = ( +/obj/effect/floor_decal/corner_wide/orange/full{ + dir = 1 }, -/obj/effect/floor_decal/spline/fancy/wood, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/turf/simulated/floor/wood, -/area/horizon/crew_quarters/lounge/bar) -"qLA" = ( -/obj/effect/floor_decal/corner/green/diagonal, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/vending/lavatory, +/obj/machinery/firealarm/east, /turf/simulated/floor/tiled/white, -/area/horizon/crew_quarters/washroom/central) +/area/horizon/medical/pharmacy) +"qLD" = ( +/obj/structure/table/steel, +/obj/item/paper_bin, +/obj/item/pen, +/obj/item/folder/blue, +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/break_room) +"qLF" = ( +/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/horizon/hangar/auxiliary) +"qLJ" = ( +/obj/effect/floor_decal/corner/dark_blue/full{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/command/bridge/meeting_room) "qLL" = ( /obj/machinery/light{ dir = 8 }, /turf/unsimulated/floor/plating, /area/centcom/suppy) +"qLN" = ( +/obj/machinery/light/small/emergency{ + dir = 8 + }, +/obj/effect/map_effect/marker/airlock{ + frequency = 1001; + master_tag = "airlock_horizon_deck_3_aft_1"; + name = "airlock_horizon_deck_3_aft_1" + }, +/turf/simulated/floor, +/area/horizon/maintenance/deck_3/aft/port/far) +"qLP" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/turf/simulated/floor/reinforced, +/area/horizon/rnd/test_range) "qLV" = ( /obj/machinery/shieldwallgen, /obj/effect/floor_decal/industrial/outline/yellow, @@ -117197,28 +116893,54 @@ icon_state = "dark_preview" }, /area/centcom/specops) -"qLZ" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 7 +"qLW" = ( +/obj/machinery/body_scanconsole{ + dir = 4 }, -/turf/simulated/floor/wood, -/area/chapel/main) +/obj/effect/floor_decal/corner/beige/full{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/medical/gen_treatment) +"qLX" = ( +/obj/machinery/portable_atmospherics/canister/empty/air, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/starboard/nacelle) +"qMe" = ( +/obj/structure/table/standard, +/obj/item/material/ashtray/glass, +/obj/effect/floor_decal/corner/dark_green/diagonal, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_3/port) "qMf" = ( /obj/machinery/computer/security{ dir = 1 }, /turf/unsimulated/floor/rubber_carpet, /area/centcom/control) -"qMl" = ( -/obj/machinery/atmospherics/pipe/simple/visible/black{ - dir = 4 +"qMg" = ( +/obj/machinery/atmospherics/binary/pump/high_power{ + dir = 8; + name = "Oxidizer to Burn Mix" }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 +/obj/effect/floor_decal/corner_wide/black{ + dir = 10 + }, +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 }, -/obj/machinery/meter, /turf/simulated/floor/tiled/dark, -/area/engineering/atmos/propulsion/starboard) +/area/horizon/engineering/atmos/propulsion) "qMm" = ( /obj/effect/floor_decal/industrial/loading{ dir = 1 @@ -117271,32 +116993,129 @@ }, /turf/unsimulated/floor/rubber_carpet, /area/centcom/control) -"qMH" = ( -/obj/effect/landmark/entry_point/port{ - name = "port, escape pods" +"qMA" = ( +/obj/structure/railing/mapped{ + dir = 8 }, -/turf/simulated/wall/shuttle/scc_space_ship/cardinal, -/area/hangar/auxiliary) -"qMM" = ( -/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, -/turf/simulated/floor/tiled/dark/full, -/area/operations/loading) -"qMS" = ( -/obj/machinery/power/generator{ - anchored = 1; +/obj/effect/floor_decal/corner/black{ + dir = 9 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/hangar/intrepid) +"qMB" = ( +/obj/effect/floor_decal/corner_wide/purple, +/obj/effect/floor_decal/corner_wide/purple{ dir = 4 }, -/obj/structure/cable/yellow{ - icon_state = "0-2" +/obj/effect/floor_decal/corner_wide/purple{ + dir = 8 }, +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 5 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/platform_deco, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/xenoarch/atrium) +"qMC" = ( +/obj/structure/table/wood, +/obj/machinery/recharger, +/obj/item/paper_scanner{ + pixel_x = -10 + }, +/obj/item/pen/black, +/obj/item/pen/blue{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/carpet, +/area/horizon/repoffice/representative_one) +"qMK" = ( +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/manifold/visible/green, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/atmos/turbine) +"qMO" = ( +/obj/machinery/door/airlock/glass{ + dir = 1; + name = "Horizon Dining Hall" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/full, +/area/horizon/hallway/primary/deck_2/fore) +"qMP" = ( +/obj/machinery/door/airlock/external, +/obj/machinery/access_button{ + pixel_x = 28 + }, +/obj/effect/map_effect/marker/airlock{ + frequency = 2005; + master_tag = "airlock_horizon_deck_2_aft_sm"; + name = "airlock_horizon_deck_2_aft_sm" + }, +/obj/effect/map_effect/marker_helper/airlock/interior, /turf/simulated/floor/plating, -/area/engineering/engine_room) +/area/horizon/engineering/reactor/supermatter/airlock) +"qMT" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 4 + }, +/obj/machinery/atmospherics/binary/pump{ + name = "Hydrogen to Mix" + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/atmos) +"qMX" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/obj/machinery/newscaster/north, +/obj/structure/bed/stool/chair/padded/brown{ + dir = 8 + }, +/turf/simulated/floor/carpet/art, +/area/horizon/crew/lounge) "qMY" = ( /obj/machinery/light/small{ dir = 4 }, /turf/simulated/floor/plating, /area/turbolift/primary/deck_1) +"qNa" = ( +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/obj/machinery/power/apc/low/north, +/obj/effect/floor_decal/corner/brown/full{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/horizon/operations/break_room) "qNb" = ( /obj/structure/bed/stool/chair{ dir = 1 @@ -117313,28 +117132,41 @@ }, /turf/unsimulated/floor/rubber_carpet, /area/centcom/specops) -"qNn" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 +"qNi" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 }, -/obj/effect/map_effect/window_spawner/full/shuttle/scc{ - spawn_firedoor = 1; - spawn_grille = 1 +/obj/structure/engineer_maintenance/electric/wall, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/reactor/indra/mainchamber) +"qNl" = ( +/obj/structure/closet/wardrobe/mixed, +/obj/effect/floor_decal/corner/dark_green{ + dir = 10 }, +/turf/simulated/floor/tiled, +/area/horizon/crew/fitness/changing) +"qNm" = ( +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/alarm/north, +/obj/structure/reagent_dispensers/watertank, /turf/simulated/floor/plating, -/area/shuttle/quark/cockpit) -"qNq" = ( -/obj/machinery/door/airlock/external{ - dir = 4; - frequency = 1380; - icon_state = "door_locked"; - id_tag = "escape_pod_1_hatch"; - locked = 1; - name = "Escape Pod Hatch"; - req_access = list(13) +/area/horizon/maintenance/deck_2/service/port) +"qNo" = ( +/obj/structure/lattice, +/obj/structure/railing/mapped{ + dir = 4 }, -/turf/simulated/floor/shuttle/dark_blue, -/area/shuttle/escape_pod/pod1) +/obj/structure/railing/mapped{ + dir = 1 + }, +/turf/simulated/open, +/area/horizon/hallway/primary/deck_3/port) "qNr" = ( /obj/structure/lattice, /obj/structure/grille, @@ -117343,105 +117175,71 @@ }, /turf/space/dynamic, /area/horizon/exterior) -"qNG" = ( +"qNx" = ( /obj/structure/disposalpipe/segment{ - dir = 4 + dir = 8; + icon_state = "pipe-c" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ +/obj/structure/bed/stool/chair/padded/beige, +/turf/simulated/floor/wood, +/area/horizon/command/bridge/minibar) +"qNA" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/machinery/light/small/emergency{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"qNJ" = ( -/obj/machinery/door/firedoor, -/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{ - dir = 1; - name = "Emergency Supplies Closet" - }, -/turf/simulated/floor/tiled/full, -/area/storage/primary) -"qNK" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/effect/floor_decal/corner/brown{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hangar/operations) -"qNM" = ( -/obj/effect/floor_decal/spline/fancy/wood/cee{ - dir = 8 - }, -/turf/simulated/floor/wood/yew, -/area/centcom/shared_dream) -"qNN" = ( -/obj/structure/bed/stool/padded/red{ +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/turf/simulated/floor/lino, -/area/horizon/crew_quarters/lounge/bar) -"qNR" = ( -/obj/structure/table/standard, -/obj/item/device/binoculars, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 10 - }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/dark, -/area/horizon/longbow) -"qNT" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/structure/lattice, -/turf/simulated/open, -/area/maintenance/wing/starboard) -"qNV" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ +/turf/simulated/floor/tiled/white, +/area/horizon/medical/gen_treatment) +"qND" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, /obj/structure/cable{ icon_state = "4-8" }, /obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, /turf/simulated/floor/plating, -/area/maintenance/wing/port/far) -"qNZ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 +/area/horizon/maintenance/deck_1/operations/starboard/amidships) +"qNE" = ( +/obj/effect/floor_decal/corner/dark_blue/full{ + dir = 8 }, -/turf/simulated/floor/lino, -/area/chapel/main) -"qOb" = ( -/obj/machinery/firealarm/west, -/obj/machinery/appliance/cooker/stove, -/obj/machinery/light/small{ +/obj/structure/platform, +/turf/simulated/floor/tiled/dark, +/area/horizon/command/bridge/controlroom) +"qNM" = ( +/obj/effect/floor_decal/spline/fancy/wood/cee{ + dir = 8 + }, +/turf/simulated/floor/wood/yew, +/area/centcom/shared_dream) +"qNX" = ( +/obj/structure/table/standard, +/obj/item/storage/box/syringes{ + pixel_y = 2; + pixel_x = -8 + }, +/obj/item/storage/box/beakers{ + pixel_x = 5; + pixel_y = 5 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/structure/extinguisher_cabinet/east, +/obj/effect/floor_decal/corner/mauve/full{ dir = 1 }, -/turf/simulated/floor/tiled/dark/full, -/area/shuttle/intrepid/buffet) +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/chemistry) "qOd" = ( /obj/structure/sink{ pixel_y = 16 @@ -117451,6 +117249,32 @@ }, /turf/unsimulated/floor/freezer, /area/antag/mercenary) +"qOe" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/corner/dark_green{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/horizon/rnd/hallway) +"qOh" = ( +/obj/effect/floor_decal/spline/fancy/wood, +/obj/structure/bed/stool/bar/padded/red{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/horizon/service/library) +"qOm" = ( +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/structure/table/wood, +/obj/item/flora/pottedplant_small{ + pixel_x = -16 + }, +/turf/simulated/floor/wood, +/area/horizon/rnd/hallway/secondary) "qOn" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 8 @@ -117470,97 +117294,62 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/horizon/security/warden) -"qOq" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/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 +"qOp" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/red{ + dir = 9 }, /turf/simulated/floor/tiled/dark, -/area/hangar/auxiliary) -"qOx" = ( -/obj/effect/floor_decal/industrial/loading/yellow{ +/area/horizon/service/custodial/disposals/deck_1) +"qOr" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/effect/floor_decal/industrial/warning{ dir = 1 }, -/obj/effect/landmark/start{ - name = "Cyborg" +/obj/effect/floor_decal/industrial/warning, +/obj/effect/map_effect/window_spawner/full/borosilicate/reinforced, +/obj/machinery/door/blast/regular/open{ + id = "r_ust_core_blast"; + name = "INDRA Reactor Blast Doors" }, -/obj/effect/floor_decal/spline/plain/cee{ - dir = 1 - }, -/turf/simulated/floor/carpet/rubber, -/area/assembly/chargebay) -"qOD" = ( -/obj/structure/table/standard, -/obj/item/clothing/glasses/hud/health{ - pixel_y = -14 - }, -/obj/item/clothing/glasses/hud/health{ - pixel_y = -14 - }, -/obj/item/clothing/glasses/hud/health{ - pixel_y = -14 - }, -/obj/item/clothing/glasses/hud/health{ - pixel_y = -14 - }, -/obj/item/clothing/glasses/hud/health{ - pixel_y = -14 - }, -/obj/item/clothing/glasses/hud/health{ - pixel_y = -14 - }, -/obj/item/clothing/glasses/hud/health{ - pixel_y = -14 - }, -/obj/item/clothing/glasses/hud/health{ - pixel_y = -14 - }, -/obj/item/cane, -/obj/item/cane, -/obj/item/cane, -/obj/item/cane, -/obj/effect/floor_decal/corner_wide/green/full{ - dir = 1 - }, -/obj/item/defibrillator/loaded{ - pixel_x = -8; - pixel_y = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/equipment) -"qOH" = ( +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/reactor/indra/mainchamber) +"qOA" = ( /obj/effect/floor_decal/industrial/warning{ dir = 4 }, -/obj/structure/sign/nosmoking_1{ - pixel_y = 32 +/obj/machinery/light/spot{ + dir = 4 }, /turf/simulated/floor/tiled/dark/full, -/area/engineering/engine_room/rust) -"qOO" = ( -/obj/effect/landmark/entry_point/aft{ - name = "aft engines, starboard 3" +/area/horizon/engineering/reactor/supermatter/mainchamber) +"qOG" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + icon_state = "1-2" }, -/turf/space/dynamic, -/area/engineering/atmos/propulsion/starboard) +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/full, +/area/horizon/hallway/primary/deck_2/fore) +"qOL" = ( +/obj/structure/table/wood, +/obj/item/paper_bin, +/obj/item/pen{ + pixel_x = -4 + }, +/obj/item/pen/red{ + pixel_x = -1; + pixel_y = 4 + }, +/obj/item/pen/blue{ + pixel_x = 3; + pixel_y = 7 + }, +/turf/simulated/floor/carpet, +/area/horizon/crew/journalistoffice) "qOS" = ( /obj/effect/floor_decal/corner/red{ dir = 9 @@ -117571,35 +117360,28 @@ /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, +"qPe" = ( +/obj/structure/table/stone/marble, /obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_command{ - dir = 1; - name = "Pilot Room"; - req_one_access = list(73,48,65) +/obj/item/material/ashtray/bronze{ + pixel_x = 8; + pixel_y = -8 }, -/obj/structure/cable/green{ - icon_state = "1-2" +/obj/machinery/door/blast/shutters{ + id = "shutters_deck2_kitchendesk"; + name = "Kitchen Desk Shutter" }, -/turf/simulated/floor/tiled/full, -/area/hangar/control) -"qPc" = ( -/obj/machinery/recharger/wallcharger{ - pixel_x = 4; - pixel_y = 20 +/turf/simulated/floor/tiled/dark, +/area/horizon/service/kitchen) +"qPk" = ( +/obj/effect/floor_decal/corner/green/diagonal, +/obj/machinery/light{ + dir = 4 }, -/obj/machinery/recharger/wallcharger{ - pixel_x = 4; - pixel_y = 30 - }, -/obj/effect/floor_decal/corner_wide/purple{ - dir = 5 - }, -/obj/effect/floor_decal/corner_wide/purple/diagonal, +/obj/structure/table/standard, +/obj/item/device/radio/intercom/south, /turf/simulated/floor/tiled/white, -/area/rnd/test_range) +/area/horizon/medical/ward/isolation) "qPn" = ( /obj/effect/floor_decal/corner/paleblue{ dir = 5 @@ -117609,156 +117391,45 @@ }, /turf/unsimulated/floor, /area/centcom/spawning) -"qPt" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command{ - dir = 4; - id_tag = "CEdoor"; - name = "Chief Engineer's Office"; - req_access = list(56) - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/heads/chief) -"qPw" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/table/steel, -/obj/item/clothing/gloves/yellow{ - pixel_y = 4 - }, -/obj/item/clothing/gloves/yellow/specialu, -/obj/item/clothing/gloves/yellow/specialt{ - pixel_y = -4 - }, -/turf/simulated/floor/tiled/dark, -/area/engineering/storage/tech) -"qPB" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 5 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_two) -"qPF" = ( -/obj/effect/floor_decal/corner/dark_green{ +"qPy" = ( +/obj/effect/floor_decal/corner_wide/yellow{ dir = 10 }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/security/checkpoint) -"qPK" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/light/floor{ - dir = 4 - }, -/obj/effect/floor_decal/spline/plain/red{ - dir = 4 - }, -/obj/effect/floor_decal/corner/dark_green{ - dir = 1 - }, -/obj/structure/disposalpipe/junction, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled, -/area/horizon/hydroponics) -"qPL" = ( -/obj/effect/floor_decal/corner_wide/green{ +/area/horizon/engineering/break_room) +"qPO" = ( +/obj/machinery/light, +/turf/simulated/floor/tiled/dark, +/area/horizon/service/bar) +"qPX" = ( +/obj/effect/floor_decal/corner/dark_blue{ dir = 6 }, -/obj/effect/landmark/start{ - name = "Physician" - }, -/obj/structure/bed/stool/chair{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/hallway/medical/upper) -"qPM" = ( -/obj/structure/platform_stairs, -/turf/simulated/floor, -/area/maintenance/wing/port/far) -"qPU" = ( -/obj/structure/bed/stool/chair/office/dark{ - dir = 4 - }, -/obj/effect/landmark/start{ - name = "Engineering Apprentice" - }, -/obj/effect/floor_decal/corner_wide/yellow{ +/turf/simulated/floor/tiled/dark, +/area/horizon/storage/eva) +"qQe" = ( +/obj/effect/floor_decal/corner/dark_green{ dir = 9 }, -/obj/effect/floor_decal/spline/plain/corner{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 +/obj/machinery/light{ + dir = 8 }, /turf/simulated/floor/tiled, -/area/engineering/break_room) -"qPV" = ( -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"qPW" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/medical/psych) -"qQa" = ( -/obj/machinery/alarm/west, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled, -/area/operations/storage) -"qQg" = ( -/obj/machinery/light, -/obj/machinery/mech_recharger, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/dark/full, -/area/outpost/mining_main/refinery) +/area/horizon/hangar/intrepid/interstitial) "qQh" = ( /obj/structure/sign/greencross{ name = "Emergency Room" }, /turf/unsimulated/wall/darkshuttlewall, /area/centcom/legion) -"qQk" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/structure/tank_wall/oxygen{ - icon_state = "o2-13" - }, -/obj/machinery/atmospherics/pipe/simple/visible/cyan{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/engineering/atmos/air) -"qQm" = ( -/obj/effect/floor_decal/industrial/outline/service, -/obj/machinery/chemical_dispenser, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/hydroponics/lower) -"qQn" = ( +"qQj" = ( /obj/structure/cable/green{ - icon_state = "4-8" + icon_state = "2-4" }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/storage/eva) +/turf/simulated/wall/shuttle/scc_space_ship/cardinal, +/area/horizon/command/heads/captain) "qQs" = ( /obj/item/gun/projectile/automatic/rifle/z8{ pixel_y = 10 @@ -117817,71 +117488,73 @@ /obj/structure/table/reinforced/steel, /turf/simulated/floor/shuttle/black, /area/shuttle/hapt) -"qQv" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/effect/floor_decal/corner_wide/yellow{ +"qQC" = ( +/obj/effect/floor_decal/corner_wide/paleblue{ dir = 6 }, -/turf/simulated/floor/tiled, -/area/engineering/bluespace_drive) -"qQz" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 +/obj/machinery/light{ + dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/effect/floor_decal/corner_wide/green/diagonal, +/obj/structure/table/standard, +/obj/item/storage/box/sharps, /turf/simulated/floor/tiled/white, -/area/medical/exam) -"qQE" = ( -/obj/effect/floor_decal/corner/brown{ - dir = 10 - }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/hangar/operations) -"qQF" = ( -/obj/machinery/mineral/rigpress, -/obj/effect/floor_decal/corner/brown/full, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/refinery) -"qQO" = ( -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/effect/floor_decal/corner/dark_green{ - dir = 9 - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/structure/disposalpipe/segment{ +/area/horizon/medical/surgery) +"qQD" = ( +/obj/machinery/door/airlock/maintenance{ dir = 1; - icon_state = "pipe-c" + name = "Security Maintenance"; + req_access = list(63) }, -/obj/structure/cable/green{ - icon_state = "1-4" +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 8; + icon_state = "pdoor0"; + id = "Security Lockdown"; + name = "Security Blast Door"; + opacity = 0 }, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/starboard) +/turf/simulated/floor/tiled/full, +/area/horizon/hallway/primary/deck_3/starboard) +"qQG" = ( +/obj/effect/floor_decal/industrial/hatch/red, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/button/remote/driver{ + dir = 8; + id = "enginecore"; + name = "Supermatter Reactor Emergency Crystal Ejection"; + pixel_x = 23; + req_access = list(10) + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/reactor/supermatter/mainchamber) +"qQI" = ( +/obj/structure/table/steel, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/firealarm/south, +/obj/effect/floor_decal/corner/dark_blue/full, +/obj/item/stack/material/steel/full, +/obj/item/stack/material/steel/full, +/obj/item/stack/material/glass/reinforced{ + amount = 50 + }, +/obj/item/stack/material/glass/reinforced{ + amount = 50 + }, +/obj/item/stack/material/glass/full, +/obj/item/stack/material/glass/full, +/obj/item/stack/rods{ + amount = 50 + }, +/obj/item/stack/rods{ + amount = 50 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/storage/eva) "qQP" = ( /obj/effect/floor_decal/corner/lime/full{ dir = 8 @@ -117905,25 +117578,6 @@ /obj/effect/floor_decal/spline/fancy/wood, /turf/simulated/floor/holofloor/wood, /area/horizon/holodeck/source_sauna) -"qQZ" = ( -/obj/structure/platform_stairs, -/turf/simulated/floor/tiled/dark, -/area/maintenance/wing/port/far) -"qRa" = ( -/obj/machinery/door/firedoor{ - dir = 4 - }, -/obj/machinery/door/airlock/maintenance_hatch{ - dir = 4; - req_one_access = list(12) - }, -/turf/simulated/floor/tiled/dark, -/area/maintenance/security_port) -"qRe" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/table/steel, -/turf/simulated/floor/plating, -/area/maintenance/wing/port) "qRh" = ( /obj/item/storage/toolbox/syndicate{ pixel_y = -11 @@ -117937,16 +117591,6 @@ }, /turf/unsimulated/floor, /area/antag/ninja) -"qRi" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/reinforced, -/area/rnd/isolation_c) -"qRj" = ( -/obj/structure/platform, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/vending/cigarette, -/turf/simulated/floor/tiled/full, -/area/bridge) "qRo" = ( /obj/structure/bed/stool/padded/brown{ dir = 4 @@ -117959,13 +117603,6 @@ }, /turf/unsimulated/floor/wood, /area/antag/raider) -"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, @@ -117988,27 +117625,44 @@ }, /turf/simulated/floor/tiled/dark, /area/shuttle/mercenary) -"qRv" = ( -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor, -/area/horizon/maintenance/deck_three/aft/starboard) -"qRC" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/floor_decal/industrial/warning, +"qRA" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/effect/floor_decal/corner/dark_blue{ + dir = 8 + }, +/obj/effect/floor_decal/corner/yellow{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/visible/purple, +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/atmos/turbine) +"qRB" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/break_room) +"qRL" = ( +/obj/structure/bed/stool/chair/office/bridge/generic, +/obj/effect/landmark/start{ + name = "Research Director" + }, +/obj/effect/floor_decal/corner/mauve{ + dir = 5 + }, /obj/structure/cable/green{ - icon_state = "2-8" + icon_state = "0-2" }, -/turf/simulated/floor/plating, -/area/engineering/storage/lower) -"qRM" = ( -/obj/machinery/camera/network/reactor{ - c_tag = "Engineering - Supermatter Reactor Crystal" - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 9 - }, -/turf/simulated/floor/reinforced/reactor, -/area/engineering/engine_room) +/obj/machinery/power/apc/north, +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/conference) +"qRQ" = ( +/obj/structure/ship_weapon_dummy, +/obj/effect/floor_decal/industrial/hatch/red, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/weapons/longbow) "qRT" = ( /obj/vehicle/droppod/syndie{ connected_blastdoor = "merc_droppod_7" @@ -118023,13 +117677,13 @@ icon_state = "desert" }, /area/horizon/holodeck/source_desert) -"qSi" = ( -/obj/structure/shuttle_part/scc/scout{ - density = 0; - icon_state = "6,12" - }, +"qSa" = ( +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/reinforced, +/area/horizon/rnd/test_range) +"qSj" = ( /turf/simulated/floor/plating, -/area/shuttle/canary) +/area/horizon/engineering/bluespace_drive) "qSk" = ( /obj/machinery/autolathe{ desc = "Your typical Autolathe. It appears to have much more options than your regular one, however..."; @@ -118054,64 +117708,46 @@ }, /turf/simulated/floor/tiled, /area/horizon/security/investigations_hallway) -"qSv" = ( -/obj/structure/trash_pile, -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard/deck1) "qSA" = ( /turf/unsimulated/wall/steel, /area/centcom/start) -"qSF" = ( -/obj/effect/landmark/entry_point/fore{ - name = "fore, mining shuttle" +"qSE" = ( +/obj/machinery/atmospherics/pipe/simple/visible/purple{ + dir = 6 }, -/turf/unsimulated/wall/fakepdoor{ - dir = 4 - }, -/area/hangar/operations) -"qSM" = ( -/obj/structure/cable/green{ - icon_state = "0-4" - }, -/obj/effect/floor_decal/corner/purple{ - dir = 9 - }, -/obj/machinery/power/apc/west, -/obj/structure/engineer_maintenance/pipe{ +/obj/effect/floor_decal/corner_wide/black/full{ dir = 8 }, -/obj/structure/engineer_maintenance/electric, +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/obj/structure/engineer_maintenance/electric/wall, /turf/simulated/floor/tiled/dark, -/area/horizon/custodial/disposals) +/area/horizon/engineering/atmos/propulsion/starboard) +"qSL" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/effect/floor_decal/corner/dark_blue/full, +/obj/structure/closet/walllocker/firecloset{ + pixel_x = -32 + }, +/obj/effect/floor_decal/industrial/outline/firefighting_closet, +/obj/structure/railing/mapped, +/turf/simulated/floor/tiled/dark, +/area/horizon/weapons/grauwolf) "qSP" = ( /obj/structure/bed/stool/chair/sofa/red, /obj/effect/floor_decal/corner/brown/diagonal, /obj/structure/engineer_maintenance/pipe/wall, /turf/simulated/floor/tiled/dark, /area/horizon/holodeck_control/beta) -"qSW" = ( -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/machinery/power/terminal{ - dir = 1 - }, -/obj/machinery/light/small/emergency, -/obj/machinery/camera/network/engineering{ - c_tag = "Engineering - Deck 2 - Research Substation"; - dir = 1 +"qSV" = ( +/obj/structure/cable/orange{ + icon_state = "4-8" }, /turf/simulated/floor/plating, -/area/maintenance/substation/research) -"qSZ" = ( -/obj/effect/floor_decal/corner/dark_green/full, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/machinery/disposal/small/east, -/turf/simulated/floor/tiled, -/area/horizon/commissary) +/area/horizon/engineering/reactor/supermatter/mainchamber) "qTa" = ( /obj/structure/bed/stool/padded, /turf/unsimulated/floor, @@ -118128,50 +117764,32 @@ /obj/structure/lattice/catwalk/indoor/grate/dark, /turf/unsimulated/floor/blue_circuit, /area/antag/ninja) -"qTf" = ( -/obj/effect/floor_decal/corner/dark_blue/diagonal, -/obj/machinery/button/remote/blast_door{ - dir = 4; - id = "shutters_hangarseccp"; - name = "Security Checkpoint Shutters"; - pixel_x = 22; - req_access = list(63) - }, -/turf/simulated/floor/tiled/dark, -/area/security/checkpoint) -"qTq" = ( -/obj/structure/bed/stool/chair/office/dark{ +"qTh" = ( +/obj/effect/floor_decal/industrial/warning{ dir = 8 }, -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled, -/area/security/vacantoffice) -"qTr" = ( -/obj/structure/cryofeed{ - dir = 4 +/obj/structure/cable/yellow{ + icon_state = "4-8" }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor, -/area/horizon/crew_quarters/fitness/changing) -"qTx" = ( -/obj/effect/floor_decal/corner_wide/green{ +/turf/simulated/floor/reinforced/airless, +/area/horizon/engineering/reactor/indra/mainchamber) +"qTs" = ( +/obj/machinery/light, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/random/pottedplant, +/obj/effect/floor_decal/corner/dark_blue{ dir = 10 }, -/obj/structure/railing/mapped, -/turf/simulated/floor/tiled/white, -/area/hallway/medical/upper) +/turf/simulated/floor/reinforced, +/area/horizon/command/bridge/controlroom) "qTy" = ( /obj/effect/floor_decal/corner/dark_blue{ dir = 5 }, /turf/simulated/floor/tiled, /area/horizon/security/equipment) -"qTC" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/alarm/east, -/obj/machinery/light/small/emergency, -/turf/simulated/floor/tiled/dark, -/area/maintenance/wing/port/far) "qTE" = ( /obj/structure/railing/mapped{ dir = 1 @@ -118182,116 +117800,63 @@ /obj/random/pottedplant, /turf/simulated/floor/marble, /area/horizon/holodeck/source_trinary) -"qTF" = ( -/obj/structure/bed/stool/chair/office/dark, -/obj/machinery/button/remote/blast_door{ - dir = 4; - id = "cargo_desk"; - pixel_x = 23; - pixel_y = -8 - }, -/obj/effect/floor_decal/corner/brown/full{ - dir = 4 - }, -/obj/item/device/radio/intercom/east{ - pixel_x = 10; - pixel_y = 5 +"qTI" = ( +/turf/simulated/floor/tiled/dark, +/area/horizon/maintenance/deck_2/wing/starboard/nacelle) +"qTK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/corner/brown{ + dir = 5 }, /turf/simulated/floor/tiled, -/area/operations/office_aux) -"qTL" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/black{ - dir = 1 +/area/horizon/operations/break_room) +"qTN" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 }, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/engine_room/turbine) +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/disposalpipe/junction{ + icon_state = "pipe-j2" + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor/plating, +/area/horizon/rnd/hallway/secondary) "qTP" = ( /turf/simulated/wall/shuttle/unique/ert{ icon_state = "6,0" }, /area/shuttle/specops) -"qTS" = ( -/obj/structure/grille, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "bridge blast"; - name = "Bridge Blast Doors"; - opacity = 0 - }, -/obj/machinery/door/firedoor, -/obj/structure/window/shuttle/scc_space_ship/cardinal, -/obj/machinery/door/blast/shutters/open{ - dir = 4; - id = "shutters_deck3_bridgesafety"; - name = "Safety Shutter" - }, -/turf/simulated/floor/plating, -/area/horizon/stairwell/bridge) -"qTT" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/effect/floor_decal/corner/dark_green{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/central) -"qTY" = ( -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/structure/platform_deco/ledge{ - dir = 8 - }, -/obj/structure/platform/ledge{ - dir = 4 - }, -/turf/simulated/open, -/area/horizon/hallway/deck_three/primary/central) -"qUd" = ( -/turf/simulated/wall, -/area/medical/main_storage) -"qUh" = ( -/obj/machinery/camera/network/second_deck{ - c_tag = "Second Deck - Starboard Dock Port"; - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/obj/effect/floor_decal/corner/dark_green{ - dir = 10 - }, -/obj/structure/sign/vacuum{ - pixel_y = -32 - }, -/turf/simulated/floor/tiled, -/area/security/checkpoint2) -"qUn" = ( -/turf/simulated/floor/wood, -/area/horizon/bar) -"qUr" = ( -/obj/effect/floor_decal/corner_wide/blue, -/obj/effect/floor_decal/corner_wide/yellow{ - dir = 8 - }, +"qTR" = ( +/obj/structure/table/rack, +/obj/random/loot, /obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/effect/floor_decal/spline/plain{ dir = 6 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 +/turf/simulated/floor, +/area/horizon/maintenance/deck_3/aft/port/far) +"qTX" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 9 }, /turf/simulated/floor/tiled, -/area/engineering/atmos/storage) -"qUu" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/closet/secure_closet/miner, -/turf/simulated/floor/tiled/dark, -/area/outpost/mining_main/eva) +/area/horizon/command/bridge/controlroom) +"qUt" = ( +/obj/effect/floor_decal/corner/dark_blue/full, +/obj/effect/map_effect/window_spawner/full/reinforced/polarized/firedoor{ + id = "repb" + }, +/turf/simulated/floor/tiled, +/area/horizon/repoffice/representative_two) +"qUv" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/alarm/north, +/turf/simulated/floor/tiled, +/area/horizon/maintenance/deck_1/wing/starboard/far) "qUy" = ( /obj/effect/floor_decal/spline/plain/corner, /turf/simulated/floor/beach/sand{ @@ -118330,21 +117895,16 @@ /obj/structure/cable/green, /turf/simulated/floor/plating, /area/horizon/security/brig) -"qUK" = ( -/obj/machinery/conveyor{ - dir = 9; - id = "cargo_1" +"qUJ" = ( +/obj/structure/cable/green{ + icon_state = "1-2" }, -/turf/simulated/floor/tiled, -/area/operations/loading) -"qUN" = ( -/obj/effect/floor_decal/industrial/outline/service, -/obj/machinery/portable_atmospherics/hydroponics, -/obj/machinery/atmospherics/portables_connector{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/hydroponics/lower) +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor, +/area/horizon/hallway/primary/deck_3/starboard) "qUQ" = ( /obj/structure/bed/stool/chair{ dir = 1 @@ -118359,6 +117919,18 @@ }, /turf/simulated/floor/holofloor/carpet, /area/horizon/holodeck/source_courtroom) +"qUT" = ( +/obj/machinery/light/small/emergency{ + dir = 1 + }, +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/main/port) "qUV" = ( /obj/effect/floor_decal/corner/blue{ dir = 6 @@ -118372,23 +117944,17 @@ /obj/structure/lattice/catwalk, /turf/simulated/open/airless, /area/horizon/exterior) -"qVa" = ( -/obj/machinery/papershredder, -/obj/structure/railing/mapped{ +"qUZ" = ( +/obj/effect/floor_decal/spline/fancy/wood{ dir = 4 }, -/obj/structure/railing/mapped, -/turf/simulated/floor/tiled/white, -/area/hallway/medical) -"qVb" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/structure/cable/green{ + icon_state = "0-8" }, -/obj/effect/floor_decal/corner/brown{ - dir = 6 - }, -/turf/simulated/floor/tiled/dark, -/area/outpost/mining_main/eva) +/obj/structure/bed/stool/chair/padded/brown, +/obj/machinery/power/apc/east, +/turf/simulated/floor/wood, +/area/horizon/repoffice/consular_one) "qVd" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/floor_decal/corner/grey{ @@ -118396,35 +117962,23 @@ }, /turf/unsimulated/floor, /area/antag/raider) -"qVg" = ( -/obj/structure/bed/stool/chair/padded/brown{ - dir = 1 +"qVf" = ( +/obj/effect/floor_decal/corner/yellow/diagonal, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 }, -/obj/effect/floor_decal/spline/fancy/wood/cee, -/turf/simulated/floor/wood, -/area/horizon/hallway/deck_three/primary/port) -"qVh" = ( -/obj/machinery/status_display{ +/obj/structure/disposalpipe/segment, +/obj/structure/sign/electricshock{ + desc = "A caution sign which reads 'CAUTION: HEAVY MACHINERY IN USE' and 'THIS EQUIPMENT STARTS AND STOPS AUTOMATICALLY.'."; + name = "\improper CAUTION: HEAVY MACHINERY IN USE sign"; + pixel_x = 32; pixel_y = 32 }, -/turf/simulated/wall, -/area/crew_quarters/lounge/secondary) -"qVi" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, /obj/structure/cable/green{ - icon_state = "4-8" + icon_state = "1-8" }, -/obj/effect/floor_decal/corner/red/diagonal, /turf/simulated/floor/tiled, -/area/storage/primary) +/area/horizon/stairwell/engineering/deck_2) "qVk" = ( /obj/effect/map_effect/window_spawner/full/reinforced/grille/firedoor, /obj/machinery/door/blast/regular/open{ @@ -118433,205 +117987,120 @@ }, /turf/simulated/floor/tiled/dark/full, /area/shuttle/hapt) -"qVo" = ( -/obj/effect/floor_decal/spline/plain/black{ - dir = 8 - }, -/obj/effect/floor_decal/corner/dark_green, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/horizon/crew_quarters/fitness/gym) -"qVr" = ( -/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/aux{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/engineering/atmos/air) -"qVs" = ( -/obj/structure/bed/stool/chair/padded/brown{ - dir = 4 - }, -/obj/effect/floor_decal/corner/white/diagonal, -/obj/effect/floor_decal/spline/plain{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/horizon/hallway/deck_three/primary/central) -"qVx" = ( -/obj/machinery/camera/network/command{ - c_tag = "AI Core - Fore"; - dir = 8 - }, -/obj/structure/window/borosilicate/reinforced/skrell{ - dir = 8 - }, -/obj/structure/window/borosilicate/reinforced/skrell{ - dir = 1 - }, -/turf/simulated/floor/bluegrid{ - name = "cooled mainframe floor"; - temperature = 278 - }, -/area/turret_protected/ai) -"qVz" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 4 - }, -/obj/machinery/computer/security/telescreen{ - name = "Telecommunications Cameras"; - network = list("Tcomsat"); - pixel_x = 32; - pixel_y = -4 - }, -/turf/simulated/floor/carpet/rubber, -/area/tcommsat/entrance) -"qVD" = ( +"qVp" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable{ icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/effect/floor_decal/corner/dark_green{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/central) -"qVE" = ( -/obj/structure/platform{ - dir = 1 - }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/starboard/nacelle) +"qVq" = ( +/obj/machinery/shieldwallgen, /obj/structure/cable/green{ - icon_state = "1-2" + icon_state = "0-8" }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 10 +/obj/effect/floor_decal/industrial/outline/security, +/turf/simulated/floor/plating, +/area/horizon/engineering/bluespace_drive) +"qVu" = ( +/obj/machinery/computer/rdconsole/robotics{ + dir = 4 }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/bridge/cciaroom/lounge) -"qVF" = ( -/obj/effect/floor_decal/industrial/warning{ +/obj/structure/railing/mapped{ dir = 8 }, -/turf/simulated/floor/tiled/white, -/area/medical/gen_treatment) -"qVG" = ( -/obj/machinery/mineral/processing_unit{ - id = "horizon_processing_2"; - dir = 8 +/obj/structure/railing/mapped, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/carpet/rubber, +/area/horizon/operations/machinist) +"qVw" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/computer/general_air_control/supermatter_core{ + frequency = 1439; + input_tag = "cooling_in"; + name = "Supermatter Monitoring Terminal"; + output_tag = "cooling_out"; + sensors = list("supermatter_sensor"="Supermatter Core") + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/reactor/supermatter/monitoring) +"qVC" = ( +/obj/machinery/light, +/obj/effect/floor_decal/spline/plain, +/obj/structure/sign/radiation{ + pixel_y = -32 + }, +/turf/simulated/floor/carpet/rubber, +/area/horizon/engineering/reactor/indra/monitoring) +"qVK" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + dir = 4 + }, +/turf/simulated/floor/tiled/full, +/area/horizon/hallway/primary/deck_3/central) +"qVN" = ( +/obj/structure/table/stone/marble, +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/shutters{ + id = "shutters_deck2_kitchendesk"; + name = "Kitchen Desk Shutter" + }, +/obj/machinery/power/outlet, +/turf/simulated/floor/tiled/dark, +/area/horizon/service/kitchen) +"qVQ" = ( +/obj/structure/window/shuttle/unique/scc/scout{ + icon_state = "5,4" + }, +/obj/structure/window/shuttle/unique/scc/scout/over{ + icon_state = "5,4" }, -/obj/effect/floor_decal/industrial/warning/full, /turf/simulated/floor/plating, -/area/outpost/mining_main/refinery) -"qVM" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/central) -"qVO" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lime{ - dir = 5 - }, -/turf/simulated/floor/tiled{ - name = "cooled floor"; - temperature = 278 - }, -/area/medical/morgue/lower) -"qVU" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/structure/lattice/catwalk/indoor, -/turf/simulated/floor/plating, -/area/engineering/engine_room/rust) -"qVV" = ( -/obj/structure/platform_deco{ - dir = 1 - }, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/machinery/disposal/small/north, -/obj/effect/floor_decal/corner/paleblue/full{ - dir = 4 - }, -/obj/machinery/alarm/north{ - dir = 4; - pixel_y = 0; - pixel_x = 10 - }, -/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) -"qWa" = ( -/obj/machinery/atmospherics/pipe/simple/visible/universal{ - dir = 4 - }, -/obj/machinery/meter, -/turf/simulated/floor/plating, -/area/rnd/xenoarch_atrium) +/area/horizon/shuttle/canary) "qWc" = ( /turf/simulated/floor/tiled/dark/full, /area/shuttle/mercenary) -"qWf" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/reinforced, -/area/engineering/gravity_gen) -"qWj" = ( -/obj/effect/floor_decal/corner/yellow{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/engineering/locker_room) +"qWk" = ( +/turf/simulated/wall/shuttle/scc_space_ship/cardinal, +/area/horizon/ai/upload) "qWm" = ( /turf/simulated/wall/shuttle/unique/mercenary/small{ icon_state = "7,8" }, /area/shuttle/syndicate_elite) +"qWn" = ( +/obj/structure/table/stone/marble, +/obj/random/pottedplant_small{ + pixel_y = -4; + pixel_x = -6 + }, +/obj/machinery/door/firedoor{ + req_one_access = list(24,11,67,73); + dir = 4 + }, +/obj/machinery/door/blast/shutters{ + id = "intrepid_buffet"; + name = "Buffet Desk Shutter"; + dir = 4 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/shuttle/intrepid/buffet) +"qWp" = ( +/obj/machinery/vending/coffee, +/obj/effect/floor_decal/corner/purple/full, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled, +/area/horizon/service/custodial) +"qWr" = ( +/obj/structure/lattice, +/obj/structure/railing/mapped, +/obj/structure/platform/ledge{ + dir = 1 + }, +/turf/simulated/open, +/area/horizon/medical/hallway/upper) "qWt" = ( /obj/structure/cable/green, /obj/effect/floor_decal/corner/dark_blue{ @@ -118640,19 +118109,45 @@ /obj/machinery/power/apc/south, /turf/simulated/floor/tiled, /area/horizon/security/hallway) +"qWv" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/door/airlock/maintenance_hatch{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/teleporter) +"qWw" = ( +/obj/structure/closet, +/obj/random/loot, +/obj/random/colored_jumpsuit, +/obj/random/backpack, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/auxatmos) "qWx" = ( /obj/effect/map_effect/window_spawner/full/shuttle/mercenary, /turf/simulated/floor/plating, /area/shuttle/mercenary) -"qWB" = ( -/obj/effect/floor_decal/corner_wide/purple{ - dir = 5 - }, -/obj/effect/floor_decal/corner_wide/purple{ - dir = 8 - }, +"qWy" = ( +/obj/effect/floor_decal/corner/grey/diagonal, +/obj/structure/closet/chefcloset, +/obj/item/device/quikpay, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/effect/floor_decal/spline/plain/corner, /turf/simulated/floor/tiled/white, -/area/rnd/xenoarch_atrium) +/area/horizon/service/kitchen) "qWC" = ( /turf/simulated/floor/beach/sand{ icon_state = "beach" @@ -118665,96 +118160,82 @@ /obj/effect/floor_decal/spline/plain, /turf/simulated/floor/tiled/dark, /area/shuttle/mercenary) -"qWQ" = ( -/obj/machinery/atmospherics/pipe/simple/visible/red{ +"qWI" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner/dark_blue{ + dir = 9 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/horizon/operations/lobby) +"qWJ" = ( +/obj/machinery/firealarm/north, +/obj/machinery/atmospherics/pipe/simple/visible/purple{ dir = 4 }, /obj/effect/floor_decal/corner_wide/black{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 1 - }, -/obj/machinery/meter, -/turf/simulated/floor/tiled/dark, -/area/engineering/atmos/propulsion) -"qWS" = ( -/obj/effect/floor_decal/spline/fancy/wood{ dir = 5 }, -/obj/structure/sink/kitchen{ - dir = 8; - name = "sink"; - pixel_x = 19 +/obj/effect/floor_decal/industrial/warning{ + dir = 1 }, -/obj/machinery/light{ +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/atmos/propulsion/starboard) +"qWM" = ( +/obj/effect/floor_decal/corner/green/diagonal{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/bed/stool/chair/plastic{ dir = 4 }, -/turf/simulated/floor/wood, -/area/horizon/bar) -"qWW" = ( -/obj/effect/floor_decal/corner/brown{ - dir = 6 +/turf/simulated/floor/tiled/white, +/area/horizon/medical/ward) +"qWO" = ( +/obj/effect/floor_decal/corner/purple{ + dir = 10 + }, +/obj/structure/table/steel, +/obj/item/storage/box/lights/mixed, +/obj/machinery/requests_console/south{ + department = "Custodial"; + departmentType = 1; + name = "\improper Custodial Requests Console" }, /turf/simulated/floor/tiled, -/area/operations/storage) +/area/horizon/service/custodial/auxiliary) +"qWP" = ( +/obj/effect/floor_decal/corner/brown/full{ + dir = 1 + }, +/obj/machinery/mineral/processing_unit_console{ + id = "horizon_processing_3"; + pixel_x = 32 + }, +/obj/effect/floor_decal/industrial/hatch_tiny/yellow, +/obj/machinery/conveyor_switch/oneway{ + pixel_y = 7; + id = "mining_3" + }, +/obj/machinery/firealarm/north, +/turf/simulated/floor/tiled, +/area/horizon/operations/mining_main/refinery) "qWX" = ( /obj/effect/floor_decal/corner/red{ dir = 5 }, /turf/simulated/floor/holofloor/tiled/dark, /area/horizon/holodeck/source_boxingcourt) -"qWZ" = ( -/obj/structure/closet/firecloset/full, -/obj/effect/floor_decal/corner/dark_blue/full{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/outline/red, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/bridge/supply) -"qXd" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/structure/railing/mapped, -/obj/structure/sign/greencross/small{ - pixel_x = -32; - pixel_y = -32 - }, -/turf/simulated/floor/tiled/dark/full, -/area/hallway/primary/central_one) -"qXg" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/structure/railing/mapped{ - dir = 1 - }, -/turf/simulated/floor/reinforced/airless, -/area/template_noop) -"qXk" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/white, -/area/hallway/medical/upper) -"qXo" = ( -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/obj/effect/floor_decal/corner/yellow/diagonal, -/turf/simulated/floor/tiled, -/area/hallway/engineering/rust) "qXp" = ( /obj/structure/shuttle/engine/propulsion/burst{ dir = 4 @@ -118764,28 +118245,20 @@ }, /turf/simulated/floor/reinforced/airless, /area/shuttle/merchant) -"qXq" = ( -/obj/effect/floor_decal/corner/grey/full{ - dir = 8 +"qXt" = ( +/obj/effect/floor_decal/corner/lime/diagonal, +/obj/structure/sink{ + dir = 8; + pixel_x = -12 }, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 }, -/obj/machinery/power/apc/north, -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/chem_heater, -/turf/simulated/floor/lino, -/area/horizon/bar) -"qXs" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/reinforced, -/area/rnd/xenobiology) +/obj/machinery/iv_drip, +/obj/item/clothing/mask/breath/medical, +/obj/item/tank/oxygen, +/turf/simulated/floor/tiled/white, +/area/horizon/shuttle/intrepid/medical) "qXu" = ( /obj/effect/floor_decal/industrial/warning{ dir = 8 @@ -118802,21 +118275,6 @@ }, /turf/unsimulated/floor, /area/antag/raider) -"qXz" = ( -/obj/machinery/power/breakerbox/activated{ - RCon_tag = "Medical Substation" - }, -/turf/simulated/floor/plating, -/area/maintenance/substation/medical) -"qXB" = ( -/obj/structure/grille/broken, -/obj/machinery/door/firedoor, -/obj/item/material/shard{ - icon_state = "small" - }, -/obj/structure/window_frame/empty, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard/far) "qXC" = ( /obj/effect/floor_decal/industrial/outline/yellow, /obj/machinery/light/small{ @@ -118829,31 +118287,34 @@ }, /turf/unsimulated/floor/linoleum, /area/antag/actor) -"qXD" = ( -/obj/structure/bed/stool/chair/padded/brown{ +"qXE" = ( +/turf/simulated/floor/reinforced/hydrogen, +/area/horizon/engineering/atmos) +"qXF" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/horizon/rnd/hallway) +"qXH" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/turf/simulated/floor/carpet, -/area/journalistoffice) -"qXG" = ( +/obj/structure/lattice/catwalk/indoor, /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/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/lattice/catwalk/indoor/grate, -/turf/simulated/floor, -/area/horizon/hallway/deck_three/primary/starboard) +/turf/simulated/floor/plating, +/area/horizon/engineering/bluespace_drive) "qXI" = ( /obj/structure/bed/stool/chair/office/dark, /turf/unsimulated/floor/plating, @@ -118894,38 +118355,51 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/unsimulated/floor/monotile, /area/antag/jockey) -"qXP" = ( -/obj/structure/bed/stool/chair/sofa/right/brown{ - dir = 4 - }, -/obj/effect/landmark/start{ - name = "Passenger" - }, -/turf/simulated/floor/carpet/art, -/area/crew_quarters/lounge) -"qXZ" = ( -/obj/effect/floor_decal/spline/plain, -/obj/structure/morgue, -/obj/effect/floor_decal/spline/plain{ +"qXL" = ( +/obj/effect/floor_decal/corner/black{ dir = 10 }, -/obj/structure/railing/mapped{ - dir = 8 +/obj/effect/floor_decal/industrial/loading/yellow{ + dir = 1 }, -/obj/structure/platform{ +/turf/simulated/floor/tiled/dark, +/area/horizon/hangar/auxiliary) +"qXQ" = ( +/obj/structure/window/shuttle/scc_space_ship, +/obj/structure/grille, +/obj/machinery/door/firedoor, +/obj/effect/map_effect/map_helper/ruler_tiles_3{ dir = 4 }, -/turf/simulated/floor/tiled/freezer{ - name = "cooled tiles"; - temperature = 278.15 - }, -/area/medical/morgue/lower) -"qYc" = ( -/obj/structure/cable/green{ - icon_state = "1-8" +/turf/simulated/floor/plating, +/area/horizon/crew/lounge) +"qXV" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 9 }, /turf/simulated/floor/tiled, -/area/operations/storage) +/area/horizon/hallway/primary/deck_3/port) +"qYa" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/closet/crate, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/port) +"qYb" = ( +/obj/structure/platform/ledge{ + dir = 8 + }, +/obj/structure/platform/ledge{ + dir = 1 + }, +/obj/structure/platform_deco/ledge{ + dir = 6 + }, +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/structure/railing/mapped, +/turf/simulated/open, +/area/horizon/hallway/primary/deck_3/central) "qYi" = ( /obj/effect/floor_decal/corner/paleblue{ dir = 10 @@ -118935,26 +118409,34 @@ }, /turf/unsimulated/floor, /area/centcom/holding) -"qYo" = ( -/obj/structure/window/reinforced{ +"qYk" = ( +/obj/effect/floor_decal/corner/brown/full{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/horizon/operations/break_room) +"qYn" = ( +/obj/effect/floor_decal/corner/grey/diagonal, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 8 }, -/obj/structure/table/reinforced/steel, -/obj/item/paper_bin, -/obj/item/pen, -/obj/structure/railing/mapped, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenoarch_atrium) -"qYx" = ( -/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 +/obj/structure/cable/green{ + icon_state = "4-8" }, -/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ - dir = 4 +/obj/structure/bed/handrail{ + dir = 1 }, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/atmos) +/turf/simulated/floor/tiled/white, +/area/horizon/shuttle/intrepid/buffet) +"qYp" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 10 + }, +/turf/simulated/wall/shuttle/scc, +/area/horizon/shuttle/intrepid/engineering) "qYy" = ( /obj/structure/flora/ausbushes/sparsegrass, /obj/effect/floor_decal/spline/plain{ @@ -118983,78 +118465,54 @@ /obj/machinery/disposal/small/west, /turf/simulated/floor/tiled, /area/horizon/security/hallway) -"qYR" = ( -/obj/structure/window/shuttle/scc_space_ship/cardinal, -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/structure/cable/green{ - icon_state = "1-2" +"qYJ" = ( +/obj/machinery/meter, +/obj/effect/floor_decal/corner/yellow{ + dir = 9 }, -/obj/structure/cable/green{ - icon_state = "0-2" - }, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "bridge blast"; - name = "Bridge Blast Doors"; - opacity = 0 - }, -/obj/machinery/door/blast/shutters{ - dir = 4; - id = "shutters_deck3_captain"; - name = "Safety Shutter" - }, -/turf/simulated/floor/plating, -/area/crew_quarters/captain) -"qYU" = ( -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/effect/floor_decal/spline/fancy{ - dir = 6 - }, -/obj/machinery/recharger, -/obj/item/device/radio/intercom/north, -/obj/structure/table/reinforced/steel, -/turf/simulated/floor/carpet/rubber, -/area/bridge/controlroom) +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/atmospherics/pipe/manifold4w/visible/cyan, +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/reactor/supermatter/waste) +"qYN" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/floodlight, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/shuttle/intrepid/port_storage) +"qYP" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_3/central) "qYV" = ( /obj/structure/lattice/catwalk/indoor, /obj/effect/decal/cleanable/dirt, /turf/unsimulated/floor/plating, /area/centcom/legion) -"qYW" = ( -/obj/machinery/door/airlock/command{ - id_tag = "rep_office_a"; - name = "Representative Office Alpha"; - req_access = list(38); +"qZa" = ( +/turf/simulated/wall/r_wall, +/area/horizon/crew/washroom/deck_3) +"qZb" = ( +/obj/effect/floor_decal/corner_wide/green/full{ dir = 4 }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/door/firedoor{ - req_one_access = list(24,11,67,73); - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/lawoffice/representative) +/obj/structure/closet/emcloset, +/obj/effect/floor_decal/industrial/outline/emergency_closet, +/obj/structure/railing/mapped, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/hallway/upper) "qZc" = ( /obj/machinery/atmospherics/pipe/manifold/visible/purple{ dir = 8 }, /turf/space/dynamic, /area/horizon/exterior) +"qZd" = ( +/obj/structure/window/shuttle/scc_space_ship, +/obj/structure/grille, +/obj/machinery/door/firedoor, +/obj/structure/stairs_lower/stairs_upper, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/wing/starboard/far) "qZf" = ( /obj/structure/flora/ausbushes/lavendergrass, /obj/effect/floor_decal/spline/plain{ @@ -119068,194 +118526,121 @@ }, /turf/simulated/floor/exoplanet/grass/grove, /area/centcom/shared_dream) -"qZj" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/structure/tank_wall/oxygen{ - icon_state = "o2-9" - }, +"qZk" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/random/loot, +/obj/structure/closet, /turf/simulated/floor/plating, -/area/engineering/atmos/air) -"qZl" = ( -/obj/structure/table/standard{ - no_cargo = 1 - }, -/obj/random/lavalamp, -/obj/machinery/light/small/emergency{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard/deck1) +/area/horizon/maintenance/deck_2/wing/port/far) "qZm" = ( /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 - }, -/obj/machinery/computer/ship/helm, -/obj/effect/floor_decal/corner/dark_blue{ +"qZt" = ( +/obj/effect/floor_decal/corner/dark_green{ dir = 5 }, -/obj/machinery/case_button/shuttle{ - pixel_y = 32 +/obj/machinery/vending/cola, +/turf/simulated/floor/tiled, +/area/horizon/hangar/intrepid) +"qZy" = ( +/obj/structure/cable{ + icon_state = "1-2" }, -/turf/simulated/floor/tiled/dark, -/area/bridge/aibunker) -"qZv" = ( -/obj/effect/floor_decal/spline/fancy/wood{ +/obj/effect/floor_decal/corner/dark_green{ dir = 6 }, -/obj/structure/engineer_maintenance/pipe{ +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 4 }, -/obj/structure/engineer_maintenance/electric, -/turf/simulated/floor/wood, -/area/bridge/minibar) -"qZx" = ( -/obj/structure/ladder/up{ - pixel_y = 10 - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/maintenance/hangar/starboard) -"qZC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_3/central) +"qZz" = ( /turf/simulated/wall, -/area/operations/lobby) -"qZD" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/machinery/camera/network/reactor{ - c_tag = "Engineering - Waste Handling 1" +/area/horizon/operations/commissary) +"qZE" = ( +/obj/structure/railing/mapped, +/obj/structure/platform/ledge{ + dir = 1 }, -/obj/effect/floor_decal/industrial/outline/red, -/turf/simulated/floor/tiled/dark, -/area/engineering/engine_waste) -"qZF" = ( -/obj/effect/floor_decal/corner_wide/green/diagonal, -/obj/structure/table/wood, -/obj/random/pottedplant_small{ - pixel_x = 7; - pixel_y = 10 +/obj/structure/platform_deco/ledge{ + dir = 4 }, -/turf/simulated/floor/tiled/white, -/area/medical/exam) +/turf/simulated/open, +/area/horizon/hallway/primary/deck_3/central) +"qZQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor, +/area/horizon/command/bridge/upperdeck) "qZS" = ( /obj/structure/table/rack, /obj/item/device/suit_cooling_unit, /obj/item/device/suit_cooling_unit, /turf/unsimulated/floor, /area/centcom/legion/hangar5) -"qZW" = ( -/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, -/obj/machinery/door/blast/shutters{ - dir = 2; - id = "shutters_deck1_morgue"; - name = "Viewing Shutter" +"qZU" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 }, -/turf/simulated/floor/tiled/dark/full, -/area/medical/morgue/lower) -"qZZ" = ( -/obj/machinery/conveyor{ - dir = 1; - id = "QMLoad" +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 }, -/turf/simulated/floor/tiled, -/area/operations/loading) -"raa" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 5 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/lounge/secondary) -"rac" = ( -/obj/effect/map_effect/window_spawner/full/reinforced/polarized/firedoor{ - id = "Recovery1" - }, -/turf/simulated/floor/tiled/dark/full, -/area/hallway/medical/upper) -"rad" = ( -/obj/machinery/door/airlock/maintenance{ - dir = 1; - req_access = list(12); - welded = 1 - }, -/obj/item/tape/engineering{ - icon_state = "engineering_door" - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/maintenance/engineering/auxillary) -"rae" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/green{ - icon_state = "1-2" + icon_state = "4-8" }, -/obj/structure/lattice/catwalk/indoor/grate, -/turf/simulated/floor/plating, -/area/horizon/hallway/deck_two/fore) -"raf" = ( -/obj/structure/cable{ - icon_state = "1-4" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/machinery/light/small/emergency{ +/obj/structure/platform_stairs/full{ + dir = 4 + }, +/obj/structure/platform/cutout, +/turf/simulated/floor, +/area/horizon/command/bridge/upperdeck) +"rag" = ( +/obj/effect/floor_decal/spline/fancy/wood, +/obj/structure/railing/mapped, +/turf/simulated/floor/wood, +/area/horizon/service/cafeteria) +"raj" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock{ + dir = 4; + name = "Deck 2 Central Washroom" + }, +/obj/effect/floor_decal/spline/plain/corner, +/turf/simulated/floor/tiled/full, +/area/horizon/crew/washroom/deck_2) +"rak" = ( +/obj/effect/floor_decal/corner/grey/diagonal, +/obj/effect/floor_decal/spline/plain{ + dir = 4 + }, +/obj/effect/floor_decal/spline/plain{ dir = 8 }, -/turf/simulated/floor/plating, -/area/maintenance/aft) +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/white, +/area/horizon/service/kitchen) "ral" = ( /turf/simulated/wall/shuttle/unique/tcfl{ icon_state = "8,0" }, /area/shuttle/legion) -"rau" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/effect/floor_decal/corner/dark_green/full{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/horizon/stairwell/central) -"raw" = ( -/obj/machinery/camera/network/research{ - c_tag = "Research - Eva Preparation"; - dir = 1 - }, -/obj/effect/floor_decal/corner/mauve/full{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/storage/eva) +"rao" = ( +/turf/simulated/floor/tiled/dark, +/area/horizon/service/chapel/office) "rax" = ( /obj/effect/floor_decal/spline/plain/cee, /obj/effect/decal/fake_object/light_source/invisible{ @@ -119270,40 +118655,37 @@ /obj/effect/floor_decal/carpet, /turf/simulated/floor/holofloor/carpet, /area/horizon/holodeck/source_courtroom) -"raE" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/effect/floor_decal/spline/plain/corner{ - dir = 4 - }, -/obj/effect/floor_decal/spline/plain/corner{ - dir = 1 - }, -/obj/effect/floor_decal/spline/plain/corner, -/obj/structure/disposalpipe/segment, -/obj/machinery/firealarm/west, -/obj/machinery/camera/network/service{ - c_tag = "Dinner - Kitchen 2"; - dir = 4 +"raD" = ( +/obj/effect/floor_decal/corner/dark_green/diagonal, +/turf/simulated/floor/tiled, +/area/horizon/service/hydroponics) +"raI" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 10 }, +/obj/machinery/light/floor, /turf/simulated/floor/tiled/white, -/area/horizon/kitchen) +/area/horizon/rnd/xenobiology/hazardous) +"raQ" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/carpet/rubber, +/area/horizon/engineering/bluespace_drive/monitoring) "raR" = ( /obj/effect/decal/cleanable/dirt, /turf/unsimulated/floor, /area/centcom/legion/hangar5) -"raS" = ( -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/maintenance/wing/port/far) -"raU" = ( -/obj/structure/reagent_dispensers/extinguisher, -/obj/machinery/light/spot{ - dir = 1 +"raV" = ( +/obj/structure/bed/stool/chair/office/light{ + dir = 8 }, -/obj/effect/floor_decal/industrial/outline/firefighting_closet, -/obj/structure/extinguisher_cabinet/east, +/obj/effect/floor_decal/spline/plain/lime{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/dark, -/area/rnd/xenoarch_atrium) +/area/horizon/operations/commissary) "raY" = ( /obj/effect/floor_decal/corner/paleblue{ dir = 6 @@ -119314,165 +118696,64 @@ }, /turf/unsimulated/floor, /area/centcom/bar) -"raZ" = ( -/obj/machinery/door/airlock/external, -/obj/effect/map_effect/marker/airlock/docking{ - landmark_tag = "nav_horizon_dock_deck_3_port_2"; - master_tag = "airlock_horizon_dock_deck_3_port_2"; - name = "airlock_horizon_dock_deck_3_port_2" +"rbf" = ( +/obj/effect/floor_decal/corner_wide/green/full{ + dir = 8 }, -/obj/effect/map_effect/marker_helper/airlock/exterior, -/obj/machinery/access_button{ - dir = 1; - pixel_x = 28; - pixel_y = 12 +/obj/structure/filingcabinet/medical{ + pixel_x = -8 }, -/turf/simulated/floor/plating, -/area/horizon/hallway/deck_three/primary/port/docks) -"rba" = ( -/obj/structure/closet/secure_closet/hangar_tech, -/obj/effect/floor_decal/corner/brown{ - dir = 6 +/obj/structure/filingcabinet/chestdrawer{ + pixel_x = 7 }, -/obj/item/device/radio/intercom/east, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled, -/area/operations/office) -"rbc" = ( -/obj/effect/floor_decal/corner/red/full, -/obj/structure/sink{ - dir = 8; - pixel_x = -12; - pixel_y = 6 - }, -/obj/machinery/shower{ +/obj/machinery/light{ dir = 1 }, -/turf/simulated/floor/tiled/dark, -/area/medical/ward/isolation) -"rbd" = ( -/obj/random/loot, -/obj/structure/closet, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/structure/railing/mapped{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard/deck1) -"rbe" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 5 - }, -/obj/machinery/alarm/north{ - pixel_y = 19 - }, -/obj/structure/closet/secure_closet/xo2, -/turf/simulated/floor/wood, -/area/crew_quarters/heads/hop/xo) -"rbg" = ( -/obj/structure/closet/secure_closet/engineering_personal, -/obj/effect/floor_decal/corner/yellow{ - dir = 9 - }, -/obj/effect/floor_decal/industrial/outline/operations, -/turf/simulated/floor/tiled, -/area/engineering/locker_room) +/turf/simulated/floor/tiled/white, +/area/horizon/medical/exam) "rbh" = ( /obj/machinery/atmospherics/unary/outlet_injector{ use_power = 1 }, /turf/simulated/floor/tiled, /area/horizon/security/brig) -"rbk" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 5 - }, -/obj/structure/disposaloutlet, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/disposalpipe/trunk, -/turf/simulated/floor/reinforced, -/area/rnd/xenobiology) -"rbm" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/black{ - dir = 1 - }, -/obj/effect/floor_decal/spline/plain{ - dir = 1 - }, -/obj/effect/floor_decal/sign/b{ - pixel_x = -10; - pixel_y = 4 - }, -/obj/effect/floor_decal/spline/plain, +"rbn" = ( /obj/structure/cable/green{ - icon_state = "2-4" + icon_state = "4-8" }, -/turf/simulated/floor/carpet/rubber, -/area/tcommsat/chamber) -"rbo" = ( -/obj/structure/table/rack, -/obj/effect/map_effect/mecha_part_spawner/manipulator, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/unsimulated/floor/monotile, -/area/antag/jockey) -"rbp" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" +/obj/effect/floor_decal/corner/mauve{ + dir = 9 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ - dir = 5 - }, -/turf/simulated/floor/plating, -/area/engineering/storage/lower) -"rbq" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 6 - }, -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_two) -"rbw" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/obj/structure/cable{ - icon_state = "1-8" +/turf/simulated/floor/tiled/white, +/area/horizon/storage/eva/expedition) +"rbo" = ( +/obj/structure/table/rack, +/obj/effect/map_effect/mecha_part_spawner/manipulator, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/unsimulated/floor/monotile, +/area/antag/jockey) +"rbt" = ( +/obj/machinery/door/firedoor/multi_tile{ + dir = 2 }, -/obj/effect/floor_decal/spline/plain{ - dir = 9 +/obj/machinery/door/airlock/multi_tile/glass{ + dir = 2; + name = "Hangar" }, -/obj/structure/disposalpipe/segment{ - icon_state = "pipe-c" - }, -/turf/simulated/floor/carpet/rubber, -/area/engineering/engine_monitoring/rust) -"rbx" = ( -/obj/effect/floor_decal/corner/black{ - dir = 10 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 +/obj/machinery/door/blast/shutters/open{ + dir = 8; + id = "shutters_hangardeskcpstarboard"; + name = "Security Checkpoint Shutter" }, +/obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/dark, -/area/hangar/intrepid) -"rbD" = ( -/obj/effect/floor_decal/corner/purple/full, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled, -/area/maintenance/wing/starboard) +/area/horizon/security/checkpoint) "rbF" = ( /obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction{ dir = 4 @@ -119480,63 +118761,36 @@ /obj/structure/lattice, /turf/space/dynamic, /area/horizon/exterior) -"rbI" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/effect/floor_decal/corner/dark_green{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_two) -"rbK" = ( -/obj/structure/tank_wall/air{ - density = 0; - icon_state = "air5"; - opacity = 0 - }, -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 10 - }, -/turf/simulated/floor/reinforced/airmix, -/area/engineering/atmos/air) -"rbP" = ( -/obj/machinery/door/firedoor, -/obj/effect/floor_decal/corner/brown, -/obj/effect/floor_decal/corner/dark_green{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled, -/area/operations/lobby) -"rbQ" = ( -/obj/machinery/light, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/corner/brown{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/operations/break_room) -"rbT" = ( -/obj/effect/floor_decal/corner_wide/yellow{ - dir = 5 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/light{ +"rbG" = ( +/obj/effect/floor_decal/corner/green/full{ dir = 1 }, -/obj/machinery/alarm/north, +/obj/structure/sink{ + dir = 4; + pixel_x = 12 + }, /obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/structure/platform, -/turf/simulated/floor/tiled, -/area/hallway/engineering) +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/mirror{ + pixel_x = 25 + }, +/obj/effect/landmark{ + name = "borerstart" + }, +/turf/simulated/floor/tiled/white, +/area/horizon/crew/fitness/showers) +"rbM" = ( +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/gravity_gen) "rbU" = ( /obj/item/device/megaphone{ pixel_x = -1; @@ -119549,6 +118803,28 @@ /obj/structure/table/wood, /turf/unsimulated/floor/wood, /area/centcom/specops) +"rbW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/greenglow, +/obj/machinery/light/small/emergency{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/hangar/starboard) +"rcb" = ( +/obj/machinery/sparker{ + id = "port_prop_igni"; + pixel_x = -15 + }, +/obj/machinery/atmospherics/unary/outlet_injector{ + dir = 8; + frequency = 1442; + id = "port_prop_in"; + tag = "port_prop_in"; + name = "fuel injector" + }, +/turf/simulated/floor/reinforced/airless, +/area/horizon/engineering/atmos/propulsion/starboard) "rcc" = ( /obj/structure/table/reinforced/steel, /obj/item/storage/firstaid/surgery{ @@ -119569,6 +118845,28 @@ }, /turf/unsimulated/floor/dark_monotile, /area/antag/actor) +"rcf" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 4 + }, +/obj/effect/floor_decal/corner/yellow, +/obj/effect/floor_decal/corner/dark_blue{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/atmos) +"rci" = ( +/obj/machinery/hologram/holopad/long_range, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/effect/overmap/visitable/ship/landable/intrepid, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/shuttle/intrepid/flight_deck) "rck" = ( /obj/effect/floor_decal/spline/plain/corner{ dir = 8 @@ -119578,45 +118876,31 @@ icon_state = "desert" }, /area/centcom/shared_dream) -"rcl" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/starboard) -"rco" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/aft) "rcp" = ( /obj/effect/decal/cleanable/liquid_fuel, /turf/unsimulated/floor, /area/antag/raider) -"rcw" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 +"rcx" = ( +/obj/effect/floor_decal/corner/green/diagonal, +/obj/item/bedsheet/medical{ + icon_state = "sheet-roll" }, -/obj/structure/window/reinforced{ - name = "adjusted reinforced window" +/obj/structure/bed/padded, +/obj/machinery/newscaster/north, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/ward/isolation) +"rcB" = ( +/obj/machinery/light{ + dir = 4 }, -/obj/structure/table/wood, -/obj/item/device/flashlight/lamp/green{ - pixel_x = 1; - pixel_y = 3 +/obj/effect/floor_decal/corner_wide/green{ + dir = 6 }, -/turf/simulated/floor/carpet, -/area/horizon/bar/backroom) -"rcA" = ( -/turf/simulated/floor/tiled, -/area/hangar/operations) +/obj/machinery/computer/ship/navigation{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/ward) "rcE" = ( /obj/structure/cable/green{ icon_state = "1-2" @@ -119626,16 +118910,19 @@ /obj/structure/lattice/catwalk/indoor/grate, /turf/simulated/floor/plating, /area/horizon/security/hallway) -"rcH" = ( -/obj/structure/bed/stool/chair/office/light{ - dir = 8 - }, -/obj/effect/floor_decal/corner/mauve/full, -/obj/effect/floor_decal/corner/white{ +"rcF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology/xenoflora) +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor/plating, +/area/horizon/hallway/primary/deck_2/starboard) "rcI" = ( /obj/structure/closet/secure_closet/guncabinet{ name = "Weaponry (Practice Laser Rifles)"; @@ -119667,56 +118954,50 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/security/firing_range) -"rcN" = ( +"rcM" = ( /obj/structure/cable/green{ icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 + dir = 5 }, -/obj/effect/floor_decal/corner/brown{ - dir = 10 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/dark, -/area/outpost/mining_main/eva) -"rcO" = ( -/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 +/area/horizon/hangar/intrepid) +"rcZ" = ( +/obj/machinery/keycard_auth{ + pixel_x = 31; + pixel_y = 26 }, -/obj/effect/floor_decal/corner_wide/purple/full{ - dir = 4 +/obj/effect/floor_decal/corner/dark_blue{ + dir = 6 }, -/obj/effect/floor_decal/corner_wide/purple/diagonal, -/turf/simulated/floor/tiled/white, -/area/rnd/test_range) -"rcY" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 1 +/turf/simulated/floor/tiled/dark, +/area/horizon/command/bridge/aibunker) +"rdb" = ( +/obj/structure/closet/firecloset{ + anchored = 1; + canbemoved = 1 }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 9 +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/reactor/supermatter/mainchamber) +"rdc" = ( +/obj/structure/plasticflaps/airtight, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/medical{ + dir = 1; + name = "Cold Storage"; + req_access = list(66) }, -/turf/simulated/wall/shuttle/unique/scc/mining{ - icon_state = "4,8" +/obj/structure/cable/green{ + icon_state = "1-2" }, -/area/shuttle/mining) +/turf/simulated/floor/tiled/full, +/area/horizon/medical/surgery/storage) "rdd" = ( /obj/structure/lattice, /obj/machinery/atmospherics/pipe/simple/visible/red{ @@ -119724,82 +119005,106 @@ }, /turf/space/dynamic, /area/horizon/exterior) -"rdi" = ( -/turf/simulated/floor/carpet, -/area/crew_quarters/captain) -"rdk" = ( -/obj/structure/table/wood, -/obj/item/storage/box/fancy/matches{ - pixel_x = 6; - pixel_y = 11 +"rdf" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan, +/turf/simulated/floor/plating, +/area/horizon/engineering/reactor/supermatter/mainchamber) +"rdD" = ( +/obj/effect/floor_decal/corner/brown/full{ + dir = 8 }, -/obj/random/pottedplant_small{ - pixel_x = -7; - pixel_y = 10 - }, -/obj/machinery/door/window/southright{ - req_access = list(37) - }, -/turf/simulated/floor/lino/diamond, -/area/horizon/library) -"rdo" = ( -/obj/structure/table/stone/marble, -/obj/machinery/door/firedoor, -/obj/item/glass_jar{ - desc = "A small empty jar that is mostly used for giving a tip."; - name = "tip jar"; - pixel_x = 2; - pixel_y = 18 - }, -/obj/machinery/door/blast/shutters{ - dir = 2; - id = "bar_shutter"; - name = "Bar Shutter" - }, -/obj/machinery/power/outlet, -/turf/simulated/floor/tiled/dark, -/area/horizon/bar) -"rdp" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 +/obj/structure/railing/mapped{ + dir = 8 }, /turf/simulated/floor/tiled, -/area/maintenance/aux_atmospherics/deck_2/starboard/wing) -"rdq" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/structure/window/shuttle/scc_space_ship/cardinal, -/turf/simulated/floor/plating, -/area/journalistoffice) -"rdr" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" +/area/horizon/operations/loading) +"rdE" = ( +/obj/machinery/holosign/service{ + id = 3 }, +/turf/simulated/wall, +/area/horizon/service/bar) +"rdI" = ( /obj/structure/cable/green{ - icon_state = "1-8" + icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/rnd/xenoarch/atrium) +"rdL" = ( +/obj/machinery/power/apc/west, +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/obj/effect/floor_decal/corner_wide/green{ dir = 9 }, +/obj/item/device/radio/intercom/west, +/obj/machinery/light/floor{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/hallway/upper) +"rdM" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 8 + }, +/obj/effect/map_effect/marker/airlock{ + master_tag = "sccv_intrepid_port"; + name = "sccv_intrepid_port" + }, +/obj/machinery/airlock_sensor{ + pixel_y = -24; + dir = 1 + }, +/obj/effect/map_effect/marker/airlock{ + master_tag = "sccv_intrepid_port"; + name = "sccv_intrepid_port"; + req_one_access = null + }, +/turf/simulated/floor/plating, +/area/horizon/shuttle/intrepid/port_compartment) +"rdS" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 9 }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor, -/area/horizon/maintenance/deck_three/aft/starboard) -"rdy" = ( -/obj/machinery/atmospherics/pipe/simple/visible/black{ +/obj/structure/platform_deco{ dir = 4 }, -/obj/machinery/light, -/turf/simulated/floor/plating, -/area/engineering/atmos/air) -"rdV" = ( -/obj/random/loot, -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard) +/obj/structure/platform_deco{ + dir = 8 + }, +/turf/simulated/floor/carpet/rubber, +/area/horizon/command/bridge/controlroom) +"rdW" = ( +/obj/effect/floor_decal/corner/grey/diagonal, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/structure/bed/handrail{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/shuttle/intrepid/buffet) +"rdX" = ( +/obj/effect/floor_decal/corner/grey/diagonal, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/machinery/air_sensor{ + frequency = 1441; + id_tag = "co2_sensor" + }, +/obj/effect/decal/fake_object/light_source/invisible, +/turf/simulated/floor/reinforced/carbon_dioxide, +/area/horizon/engineering/atmos) "rdY" = ( /obj/effect/floor_decal/carpet{ dir = 4 @@ -119807,60 +119112,10 @@ /obj/structure/table/wood, /turf/simulated/floor/holofloor/carpet, /area/horizon/holodeck/source_courtroom) -"rec" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/door/airlock/glass_engineering{ - dir = 4; - name = "INDRA Reactor"; - req_one_access = list(11,24) - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/smes/rust) "ree" = ( /obj/random/tool, /turf/unsimulated/floor/plating, /area/centcom/holding) -"ref" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/structure/cable/green{ - icon_state = "2-4" - }, -/obj/effect/floor_decal/corner/dark_green{ - dir = 9 - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/structure/disposalpipe/junction{ - dir = 4; - icon_state = "pipe-j2" - }, -/turf/simulated/floor/tiled, -/area/hangar/intrepid) -"reg" = ( -/obj/effect/floor_decal/corner/lime/diagonal, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/shuttle/intrepid/medical) "rei" = ( /obj/structure/table/wood, /obj/item/paper_bin, @@ -119869,91 +119124,109 @@ }, /turf/unsimulated/floor/wood, /area/centcom/specops) +"rej" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/structure/railing/mapped{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/operations/starboard/far) +"rek" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/obj/machinery/light/small/emergency, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/starboard) "ren" = ( /obj/effect/floor_decal/spline/plain{ dir = 4 }, /turf/simulated/floor/exoplanet/grass/grove, /area/centcom/shared_dream) -"rep" = ( -/obj/effect/floor_decal/corner_wide/green{ +"res" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/turf/simulated/floor/lino, +/area/horizon/service/chapel/main) +"ret" = ( +/obj/effect/floor_decal/corner/lime/diagonal, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 6 }, /turf/simulated/floor/tiled/white, -/area/medical/icu) -"rev" = ( -/obj/structure/closet/crate/freezer{ - name = "Fridge" - }, -/obj/item/storage/box/freezer/organcooler, -/obj/machinery/light/small, -/obj/machinery/alarm/cold/north, -/obj/effect/floor_decal/industrial/hatch/grey, -/obj/item/storage/box/monkeycubes, -/obj/machinery/firealarm/south, -/turf/simulated/floor/tiled/freezer{ - name = "cold storage tiles"; - temperature = 278 - }, -/area/medical/surgery) -"reO" = ( -/obj/machinery/power/apc/low/north, -/obj/structure/cable{ - icon_state = "0-2" - }, -/obj/effect/floor_decal/spline/plain/yellow{ +/area/horizon/shuttle/intrepid/medical) +"rex" = ( +/obj/effect/floor_decal/corner/mauve{ dir = 9 }, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/smes/rust) -"reP" = ( -/obj/machinery/door/airlock/maintenance{ - dir = 4; - req_one_access = list(2,3,4) - }, -/obj/machinery/door/firedoor{ - dir = 4 - }, -/turf/simulated/floor, -/area/horizon/security/evidence_storage) -"reR" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ - dir = 5 - }, -/turf/simulated/floor/plating, -/area/maintenance/engineering) -"reV" = ( -/obj/effect/floor_decal/corner_wide/lime{ - dir = 9 - }, -/obj/random/pottedplant, -/obj/machinery/computer/guestpass{ - pixel_x = -32 - }, /turf/simulated/floor/tiled/white, -/area/medical/reception) -"reW" = ( -/obj/machinery/light/small{ - must_start_working = 1 +/area/horizon/rnd/chemistry) +"rez" = ( +/obj/effect/map_effect/window_spawner/full/shuttle/scc{ + spawn_firedoor = 1; + spawn_grille = 1 }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 8 +/obj/effect/landmark/entry_point/fore{ + name = "fore, cockpit" }, -/obj/effect/floor_decal/corner/yellow, -/obj/machinery/atmospherics/pipe/simple/visible/black{ +/obj/machinery/door/blast/shutters/open{ + id = "intrepid_bay_windows"; + name = "Intrepid Shutter" + }, +/turf/simulated/floor/plating, +/area/horizon/shuttle/intrepid/flight_deck) +"reE" = ( +/obj/machinery/lapvend, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 7 + }, +/turf/simulated/floor/wood, +/area/horizon/command/bridge/meeting_room) +"reF" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 5 }, -/turf/simulated/floor/tiled/dark, -/area/engineering/engine_room/turbine) +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/tiled/full, +/area/horizon/hallway/primary/deck_2/starboard) +"reJ" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/cargo_compartment) +"reL" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/railing/mapped, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor, +/area/horizon/maintenance/deck_3/aft/starboard) +"reN" = ( +/obj/structure/foamedmetal, +/turf/simulated/floor/plating, +/area/horizon/engineering/atmos/propulsion) "rfa" = ( /obj/structure/table/standard, /obj/machinery/light{ @@ -119975,21 +119248,19 @@ }, /turf/unsimulated/floor, /area/antag/mercenary) -"rfb" = ( +"rfd" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, /obj/structure/cable/green{ - icon_state = "4-8" + icon_state = "1-4" }, -/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, -/area/bridge/aibunker) -"rfc" = ( -/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, -/turf/simulated/floor/plating, -/area/rnd/xenobiology) +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor, +/area/horizon/maintenance/deck_3/aft/port/far) "rfe" = ( /obj/effect/floor_decal/corner/beige{ dir = 5 @@ -120001,23 +119272,30 @@ }, /turf/simulated/floor/tiled/white, /area/horizon/security/forensic_laboratory) -"rfj" = ( -/obj/machinery/atmospherics/pipe/manifold/visible, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/aux{ - dir = 10 - }, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"rfk" = ( -/obj/structure/bed/stool/chair/wood{ +"rfg" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/simulated/floor/wood/mahogany, -/area/horizon/crew_quarters/lounge/bar) +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/research) +"rfl" = ( +/obj/machinery/power/sensor{ + name = "Powernet Sensor - Deck 3 Civilian Subgrid"; + name_tag = "Deck 3 Civilian Subgrid" + }, +/obj/machinery/power/apc/west, +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/turf/simulated/floor, +/area/horizon/maintenance/substation/civ_d3) "rfm" = ( /obj/structure/bed/stool/chair, /obj/effect/floor_decal/corner/dark_blue{ @@ -120025,20 +119303,60 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/security/interrogation/monitoring) -"rfs" = ( -/obj/effect/floor_decal/corner/mauve/full{ - dir = 8 +"rfq" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable/green{ +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/machinery/media/jukebox/audioconsole/wall{ + pixel_y = 32 + }, +/turf/simulated/floor/wood, +/area/horizon/service/bar) +"rft" = ( +/turf/simulated/wall/r_wall, +/area/horizon/medical/pharmacy) +"rfv" = ( +/obj/effect/map_effect/window_spawner/full/reinforced/polarized/grille/firedoor{ + id = "cap" + }, +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id = "bridge blast"; + name = "Bridge Blast Doors"; + opacity = 0 + }, +/obj/structure/cable/green, +/turf/simulated/floor, +/area/horizon/command/heads/captain) +"rfx" = ( +/obj/structure/cable/yellow{ icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 }, -/turf/simulated/floor/tiled/white, -/area/rnd/telesci) +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/cable/orange{ + icon_state = "4-8" + }, +/obj/structure/lattice/catwalk/indoor, +/turf/simulated/floor/plating, +/area/horizon/engineering/reactor/indra/mainchamber) +"rfy" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/light, +/obj/effect/floor_decal/corner/yellow/diagonal, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/horizon/stairwell/engineering/deck_2) "rfz" = ( /obj/effect/floor_decal/corner/paleblue{ dir = 10 @@ -120049,69 +119367,25 @@ }, /turf/unsimulated/floor, /area/centcom/holding) -"rfI" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 6 +"rfC" = ( +/turf/simulated/wall/shuttle/scc_space_ship/cardinal, +/area/horizon/maintenance/deck_1/wing/starboard/far) +"rgb" = ( +/obj/structure/cable{ + icon_state = "4-8" }, -/obj/structure/platform{ - dir = 8 +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/simulated/floor/tiled, -/area/bridge) -"rfJ" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 6 - }, -/obj/item/hoist_kit, -/obj/item/hoist_kit, -/obj/item/ladder_mobile{ - pixel_y = 12 - }, -/obj/item/ladder_mobile{ - pixel_y = 12 - }, -/obj/structure/table/steel, -/turf/simulated/floor/tiled/dark, -/area/storage/eva) -"rfM" = ( -/obj/structure/grille, -/obj/structure/window/shuttle/scc_space_ship, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/horizon/hallway/deck_three/primary/starboard/docks) -"rfR" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/corner/purple{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/horizon/custodial) -"rfS" = ( -/obj/effect/floor_decal/corner/lime/diagonal, -/turf/simulated/floor/tiled/white, -/area/medical/washroom) -"rfT" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/fuel, -/turf/simulated/wall/shuttle/scc, -/area/shuttle/intrepid/engineering) -"rgd" = ( -/obj/machinery/portable_atmospherics/hydroponics/soil, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/grass/no_edge, -/area/rnd/xenobiology/xenoflora) +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor/plating, +/area/horizon/engineering/hallway/interior) "rgf" = ( /obj/structure/dispenser/oxygen, /obj/effect/floor_decal/corner/red{ @@ -120119,74 +119393,46 @@ }, /turf/unsimulated/floor, /area/antag/mercenary) -"rgm" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/camera/network/supply{ - c_tag = "Operations - Upper Warehouse Starboard"; - dir = 1 - }, -/obj/effect/floor_decal/corner/brown{ - dir = 10 - }, +"rgk" = ( +/obj/effect/floor_decal/corner/dark_blue/full, +/obj/machinery/atmospherics/pipe/simple/hidden, /turf/simulated/floor/tiled, -/area/operations/office) -"rgr" = ( -/obj/structure/bed/stool/chair/padded/purple, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 8 - }, -/obj/machinery/light_switch{ - pixel_x = -19; - pixel_y = 3; - dir = 8 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/heads/hor) +/area/horizon/hallway/primary/deck_3/port/docks) "rgs" = ( /obj/machinery/atmospherics/pipe/simple/hidden, /obj/effect/decal/cleanable/dirt, /obj/structure/lattice/catwalk/indoor/grate/dark, /turf/simulated/floor/plating, /area/shuttle/skipjack) -"rgu" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/structure/closet, -/obj/random/loot, -/turf/simulated/floor/plating, -/area/maintenance/wing/port) "rgw" = ( /obj/structure/table/fancy, /turf/unsimulated/floor/wood, /area/antag/actor) -"rgy" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 9 +"rgz" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 6 }, -/obj/machinery/vending/cola, -/obj/machinery/alarm/west, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_two) -"rgI" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, /turf/simulated/floor/plating, -/area/maintenance/wing/starboard) +/area/horizon/engineering/atmos/air) +"rgA" = ( +/turf/space/dynamic, +/area/horizon/engineering/atmos/propulsion/starboard) +"rgH" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/obj/structure/flora/ausbushes/brflowers, +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/grass/no_edge, +/area/horizon/hallway/primary/deck_3/port) "rgJ" = ( /obj/structure/cryofeed, /obj/structure/window/reinforced/crescent{ @@ -120197,50 +119443,18 @@ }, /turf/unsimulated/floor, /area/centcom/spawning) -"rgT" = ( -/obj/effect/floor_decal/corner/purple/diagonal, -/obj/machinery/firealarm/west, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/horizon/custodial/disposals) -"rgY" = ( -/obj/structure/bed/stool/chair/office/bridge{ - dir = 1 - }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 10 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge/meeting_room) -"rhf" = ( -/obj/structure/table/wood, -/turf/simulated/floor/wood/mahogany, -/area/horizon/crew_quarters/lounge/bar) -"rhk" = ( -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/structure/disposalpipe/segment{ - icon_state = "pipe-c" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 +"rgV" = ( +/turf/simulated/wall/r_wall, +/area/horizon/operations/lobby) +"rgW" = ( +/obj/machinery/atmospherics/omni/filter{ + name = "nitrous oxide filter"; + tag_north = 2; + tag_south = 1; + tag_west = 7 }, /turf/simulated/floor/plating, -/area/maintenance/research_port) +/area/horizon/engineering/atmos/air) "rhl" = ( /obj/item/device/radio/intercom/south, /obj/structure/disposalpipe/junction{ @@ -120252,60 +119466,41 @@ }, /turf/simulated/floor/tiled, /area/horizon/security/hallway) -"rhp" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 +"rht" = ( +/obj/machinery/light{ + dir = 1 }, -/obj/structure/disposalpipe/segment{ +/obj/structure/bed/stool/chair/sofa/corner/convex/brown{ dir = 4 }, -/obj/effect/floor_decal/spline/fancy/wood, -/turf/simulated/floor/wood, -/area/horizon/bar) +/turf/simulated/floor/carpet/art, +/area/horizon/crew/lounge) +"rhv" = ( +/obj/structure/platform/ledge, +/obj/structure/platform/ledge{ + dir = 4 + }, +/obj/structure/platform_deco/ledge{ + dir = 5 + }, +/turf/simulated/open, +/area/horizon/medical/hallway/upper) +"rhx" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "sorting"; + reversed = 1 + }, +/obj/structure/sign/drop{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/operations/mail_room) "rhD" = ( /obj/effect/landmark/newplayer_start, /obj/effect/obfuscation, /turf/unsimulated/floor, /area/centcom/start) -"rhE" = ( -/obj/machinery/newscaster/east, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/lounge) -"rhF" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/horizon/bar) -"rhH" = ( -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/aux{ - dir = 5 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"rhK" = ( -/obj/item/device/radio/intercom/west, -/obj/effect/floor_decal/industrial/outline/grey, -/obj/machinery/vending/overloaders, -/turf/simulated/floor/tiled/full, -/area/horizon/hallway/deck_two/fore) "rhL" = ( /obj/effect/floor_decal/spline/plain, /obj/structure/flora/tree/grove, @@ -120362,72 +119557,55 @@ }, /turf/unsimulated/floor, /area/antag/burglar) -"rhX" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 6 - }, -/obj/random/pottedplant, -/obj/machinery/camera/network/engineering{ - c_tag = "Engineering - Hallway 1"; +"rhR" = ( +/obj/structure/railing/mapped, +/obj/effect/floor_decal/spline/plain, +/obj/structure/morgue{ dir = 8 }, -/turf/simulated/floor/tiled, -/area/engineering/lobby) -"rhY" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" +/turf/simulated/floor/tiled/freezer{ + name = "cooled tiles"; + temperature = 278.15 }, -/turf/simulated/floor/tiled/dark/full, -/area/shuttle/intrepid/junction_compartment) -"ric" = ( -/obj/machinery/door/airlock/maintenance_hatch{ +/area/horizon/medical/morgue) +"rhU" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard/far) -"rid" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/aux{ - dir = 8 +/turf/simulated/floor/wood, +/area/horizon/command/heads/chief) +"rhZ" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 10 }, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ +/obj/machinery/atmospherics/pipe/simple/hidden{ dir = 4 }, -/obj/effect/floor_decal/industrial/outline_straight/red{ - dir = 1 +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_3/port/docks) +"ric" = ( +/obj/structure/sign/flag/scc/unmovable, +/turf/simulated/wall/r_wall, +/area/horizon/command/bridge/bridge_crew) +"rii" = ( +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/outline/yellow, /obj/structure/cable/green{ - icon_state = "4-8" + icon_state = "1-2" }, -/obj/item/device/radio/intercom/expedition/north, -/obj/structure/bed/handrail{ - pixel_y = 2 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/quark/cargo_hold) +/turf/simulated/floor/tiled, +/area/horizon/operations/office_aux) "rik" = ( /turf/simulated/floor/wood/maple, /area/horizon/holodeck/source_cafe) -"rit" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/corner/dark_green/full{ - dir = 1 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/operations/lobby) "riz" = ( /obj/structure/sign/nosmoking_2{ pixel_x = 1; @@ -120435,15 +119613,20 @@ }, /turf/unsimulated/wall/darkshuttlewall, /area/centcom/holding) -"riF" = ( -/obj/structure/grille/broken, -/obj/item/material/shard{ - icon_state = "medium" +"riD" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 }, -/obj/machinery/door/firedoor, -/obj/structure/window_frame/empty, -/turf/simulated/floor/tiled/dark/full, -/area/maintenance/wing/starboard/deck1) +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor, +/area/horizon/maintenance/deck_3/aft/port) "riJ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -120462,49 +119645,88 @@ }, /turf/simulated/floor/tiled, /area/horizon/security/hallway) -"riL" = ( -/turf/simulated/wall/r_wall, -/area/engineering/atmos/air) -"riM" = ( -/obj/effect/floor_decal/corner/dark_green, -/turf/simulated/floor/tiled, -/area/hallway/primary/aft) -"riY" = ( -/obj/structure/shuttle_part/scc_space_ship{ - icon_state = "d3-4" +"riR" = ( +/obj/machinery/light/small/emergency{ + dir = 1 }, -/turf/simulated/wall, -/area/maintenance/wing/port/far) -"rjg" = ( -/obj/structure/cable/green{ - icon_state = "1-2" +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/security_port) +"riT" = ( +/obj/effect/map_effect/window_spawner/full/shuttle/scc{ + spawn_firedoor = 1; + spawn_grille = 1 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/corner/brown/full{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/operations/office) -"rjm" = ( -/turf/simulated/wall, -/area/medical/exam) -"rjr" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/lattice/catwalk/indoor/grate/damaged{ - color = "#4c535b" +/obj/machinery/door/blast/shutters/open{ + dir = 8; + id = "intrepid_bay_windows"; + name = "Intrepid Shutter" }, /turf/simulated/floor/plating, -/area/maintenance/wing/starboard/deck1) +/area/horizon/shuttle/intrepid/port_compartment) +"riW" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 5 + }, +/obj/machinery/airlock_sensor{ + dir = 4; + pixel_x = -20 + }, +/obj/effect/map_effect/marker/airlock{ + frequency = 1003; + master_tag = "airlock_horizon_deck_1_aft_propulsion_1"; + name = "airlock_horizon_deck_1_aft_propulsion_1" + }, +/turf/simulated/floor/plating, +/area/horizon/engineering/atmos/propulsion) +"rje" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/yellow{ + dir = 1 + }, +/obj/machinery/meter, +/turf/simulated/floor/plating, +/area/horizon/rnd/xenoarch/atrium) +"rji" = ( +/obj/structure/grille/diagonal{ + dir = 4 + }, +/obj/structure/window/shuttle/scc_space_ship, +/obj/machinery/door/blast/shutters/open{ + dir = 8; + id = "bar_viewing_shutters"; + name = "Bar Viewing Shutters" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/reinforced, +/area/horizon/service/bar) +"rjl" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/trash_pile, +/turf/simulated/floor, +/area/horizon/maintenance/deck_3/aft/starboard/far) +"rjn" = ( +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/platform{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/maintenance/deck_2/wing/starboard/far) +"rjp" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 12 + }, +/obj/structure/mirror{ + pixel_x = 27 + }, +/turf/simulated/floor/tiled/freezer, +/area/horizon/medical/washroom) "rjs" = ( /obj/effect/floor_decal/industrial/loading/yellow{ dir = 1 @@ -120515,6 +119737,20 @@ }, /turf/unsimulated/floor, /area/antag/mercenary) +"rjt" = ( +/obj/effect/map_effect/window_spawner/full/reinforced/grille/firedoor, +/obj/machinery/door/blast/regular/open{ + id = "AICore"; + name = "AI Core Blast Door" + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/ai/upload) +"rju" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 8 + }, +/turf/simulated/wall/shuttle/scc, +/area/horizon/shuttle/intrepid/main_compartment) "rjv" = ( /obj/structure/table/reinforced/wood, /obj/item/modular_computer/laptop/preset/command{ @@ -120522,37 +119758,19 @@ }, /turf/simulated/floor/wood, /area/shuttle/hapt) -"rjx" = ( -/obj/effect/floor_decal/corner_wide/lime{ - dir = 6 +"rjw" = ( +/obj/structure/shuttle_part/scc/mining{ + icon_state = "0,7"; + outside_part = 0; + pixel_x = -32 }, -/obj/effect/floor_decal/corner_wide/orange{ - dir = 6 +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 5 }, -/obj/machinery/camera/network/medbay{ - c_tag = "Medical - Chemistry Lab Bravo"; - dir = 8 +/turf/simulated/wall/shuttle/unique/scc/mining{ + icon_state = "1,7" }, -/obj/structure/engineer_maintenance/pipe{ - dir = 4 - }, -/obj/structure/engineer_maintenance/electric{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/medical/pharmacy) -"rjy" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 - }, -/obj/structure/cable/orange{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/engineering/engine_room/rust) +/area/horizon/shuttle/mining) "rjC" = ( /obj/structure/window/reinforced/crescent, /obj/structure/flora/ausbushes/grassybush{ @@ -120560,70 +119778,64 @@ }, /turf/simulated/floor/grass/no_edge, /area/centcom/holding) -"rjD" = ( -/obj/effect/floor_decal/corner/mauve{ - dir = 5 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/telesci) "rjG" = ( /obj/structure/shuttle_part/mercenary/small{ icon_state = "6,1" }, /turf/unsimulated/floor/plating, /area/shuttle/syndicate_elite) -"rjK" = ( -/obj/effect/floor_decal/corner/dark_green/full{ - dir = 1 +"rjH" = ( +/obj/machinery/telecomms/processor/preset_three, +/turf/simulated/floor/bluegrid, +/area/horizon/tcommsat/chamber) +"rjR" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 6 }, -/obj/structure/table/standard, -/obj/random/tech_supply, -/obj/random/tech_supply, -/obj/random/tech_supply, -/obj/random/tech_supply, -/obj/machinery/alarm/east, -/turf/simulated/floor/tiled, -/area/storage/primary) -"rjO" = ( +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/xenobiology) +"rjS" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/universal{ + dir = 4 + }, +/obj/effect/floor_decal/corner/brown{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/shuttle/intrepid/starboard_compartment) +"rjW" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/cable/green{ +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ icon_state = "4-8" }, -/obj/structure/cable/green{ - icon_state = "2-8" +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/effect/floor_decal/corner/red/diagonal, -/turf/simulated/floor/tiled, -/area/storage/primary) -"rjP" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/alarm/east, -/obj/machinery/iv_drip, -/obj/effect/floor_decal/industrial/outline/red, -/turf/simulated/floor/tiled/white, -/area/medical/icu) -"rjX" = ( -/obj/effect/floor_decal/industrial/warning{ +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/main/starboard) +"rjZ" = ( +/obj/effect/floor_decal/spline/fancy/wood{ dir = 8 }, -/obj/machinery/alarm/east, -/obj/effect/decal/cleanable/dirt, -/obj/structure/trash_pile, -/turf/simulated/floor, -/area/maintenance/security_port) +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/obj/structure/flora/ausbushes/ppflowers, +/obj/structure/flora/ausbushes/sunnybush, +/turf/simulated/floor/grass/no_edge, +/area/horizon/hallway/primary/deck_3/starboard) +"rkb" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/full, +/area/horizon/hallway/primary/deck_2/central) "rkd" = ( /obj/effect/decal/fake_object{ desc = "A button. It's unpowered. Typical."; @@ -120634,26 +119846,56 @@ }, /turf/unsimulated/wall/darkshuttlewall, /area/centcom/legion) -"rkg" = ( -/obj/structure/disposalpipe/trunk, -/obj/machinery/disposal/small/south, +"rkm" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 7 + }, /obj/effect/floor_decal/spline/fancy/wood{ dir = 1 }, -/obj/machinery/camera/network/command{ - c_tag = "Bridge - Breakroom" +/obj/machinery/alarm/north{ + pixel_y = 0; + dir = 8; + pixel_x = -43 }, /turf/simulated/floor/wood, -/area/bridge/minibar) -"rkk" = ( -/obj/machinery/alarm/west, -/obj/effect/floor_decal/corner/red/diagonal, -/obj/structure/closet/walllocker/firecloset{ +/area/horizon/repoffice/representative_one) +"rkn" = ( +/obj/structure/cable/green, +/obj/machinery/power/apc/critical/south, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/gravity_gen) +"rkp" = ( +/obj/effect/floor_decal/corner_wide/yellow{ + dir = 9 + }, +/obj/structure/sign/radiation{ pixel_x = -32 }, -/obj/effect/floor_decal/industrial/outline/red, /turf/simulated/floor/tiled, -/area/maintenance/wing/port) +/area/horizon/engineering/reactor/indra/mainchamber) +"rks" = ( +/obj/structure/table/standard, +/obj/item/device/binoculars, +/obj/effect/floor_decal/corner/dark_blue{ + dir = 10 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/weapons/longbow) +"rkv" = ( +/obj/effect/floor_decal/corner_wide/yellow{ + dir = 5 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled, +/area/horizon/engineering/hallway/aft) "rkA" = ( /obj/effect/floor_decal/corner/red{ dir = 10 @@ -120661,15 +119903,47 @@ /obj/machinery/light, /turf/unsimulated/floor, /area/centcom/spawning) -"rkQ" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 5 - }, -/obj/structure/bed/stool/chair/padded/black{ +"rkC" = ( +/obj/structure/table/rack, +/obj/structure/window/reinforced{ dir = 4 }, +/obj/machinery/door/window/westleft, +/obj/structure/window/reinforced, +/turf/simulated/floor/tiled/dark, +/area/horizon/weapons/grauwolf) +"rkE" = ( +/turf/simulated/wall, +/area/horizon/maintenance/deck_3/aft/holodeck) +"rkH" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/door/airlock/maintenance{ + dir = 1; + name = "Teleporter Maintenance"; + req_access = list(17) + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/full, +/area/horizon/command/teleporter) +"rkL" = ( +/obj/effect/floor_decal/corner/white{ + dir = 5 + }, /turf/simulated/floor/tiled, -/area/hangar/intrepid) +/area/horizon/hallway/primary/deck_2/central) +"rkO" = ( +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/structure/platform/ledge{ + dir = 8 + }, +/turf/simulated/open, +/area/horizon/hallway/primary/deck_2/central) "rkS" = ( /obj/structure/table/wood/gamblingtable, /obj/item/material/ashtray/bronze, @@ -120679,103 +119953,78 @@ icon_state = "wood" }, /area/centcom/legion/hangar5) -"rkV" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +"rkT" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/lattice/catwalk/indoor/grate, -/turf/simulated/floor/plating, -/area/hallway/primary/central_one) -"rlc" = ( -/obj/effect/floor_decal/industrial/outline/grey, -/obj/structure/table/steel, -/obj/item/storage/toolbox/emergency{ - pixel_x = -7; - pixel_y = 8 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 }, -/obj/item/device/flashlight{ - pixel_x = 4 +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor, +/area/horizon/maintenance/deck_3/security/port) +"rkZ" = ( +/obj/machinery/atmospherics/unary/engine/scc_ship_engine, +/turf/simulated/floor/reinforced{ + blocks_air = 1; + density = 1; + name = "thruster mount" }, -/turf/simulated/floor/plating, -/area/hangar/intrepid) -"rld" = ( -/obj/machinery/sparker{ - id = "turbine_igni"; - pixel_x = -15 +/area/horizon/engineering/atmos/propulsion/starboard) +"rlb" = ( +/obj/structure/cable/green{ + icon_state = "1-2" }, -/obj/machinery/atmospherics/unary/outlet_injector{ - frequency = 1443; - id = "turbine_fuel_in"; - name = "fuel injector"; - tag = "turbine_fuel_in" +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 }, -/turf/simulated/floor/reinforced/airless, -/area/engineering/engine_room/turbine) -"rlh" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 5 +/obj/effect/floor_decal/corner/brown{ + dir = 10 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/dark, +/area/horizon/operations/mining_main/eva) +"rlf" = ( +/obj/structure/cable/green{ + icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled, -/area/security/checkpoint2) +/turf/simulated/floor/tiled/white, +/area/horizon/medical/gen_treatment) "rli" = ( /obj/structure/closet/secure_closet/engineering_welding, /obj/effect/floor_decal/industrial/outline/yellow, /turf/unsimulated/floor, /area/centcom/legion/hangar5) "rlk" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 +/obj/structure/shuttle_part/scc_space_ship{ + icon_state = "d3-4" }, -/obj/random/junk, -/obj/machinery/light/small/emergency{ - dir = 8 +/turf/simulated/wall/r_wall, +/area/horizon/maintenance/deck_2/wing/starboard/far) +"rlr" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 9 }, -/turf/simulated/floor/plating, -/area/maintenance/wing/cargo_compartment) -"rlq" = ( -/obj/machinery/camera/network/engineering{ - c_tag = "Engineering - Deck 2 - Aft Auxiliary Atmospherics"; - dir = 1 +/obj/effect/landmark/start{ + name = "Shaft Miner" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/structure/reagent_dispensers/fueltank, -/turf/simulated/floor/plating, -/area/engineering/drone_fabrication) -"rlH" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard/deck1) +/turf/simulated/floor/tiled/dark, +/area/horizon/operations/mining_main/eva) +"rly" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/effect/floor_decal/industrial/outline/blue, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/atmos/storage) "rlJ" = ( /obj/effect/floor_decal/corner_wide/paleblue/diagonal{ dir = 8 @@ -120784,33 +120033,20 @@ /obj/structure/table/standard, /turf/simulated/floor/tiled/dark, /area/shuttle/mercenary) -"rlM" = ( -/obj/machinery/atmospherics/pipe/simple/visible/black{ +"rlL" = ( +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/obj/structure/railing/mapped, +/obj/structure/railing/mapped{ dir = 4 }, -/obj/machinery/atmospherics/binary/pump{ - name = "Carbon dioxide to Mix" - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/atmos) -"rlP" = ( -/obj/machinery/atmospherics/binary/pump/high_power{ - dir = 8; - name = "Oxidizer to Burn Mix" - }, -/obj/effect/floor_decal/corner_wide/black{ - dir = 10 - }, -/obj/effect/floor_decal/industrial/warning, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/engineering/atmos/propulsion/starboard) +/obj/structure/trash_pile, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/wing/port/far) "rlQ" = ( /obj/machinery/vending/security, /obj/machinery/light{ @@ -120818,6 +120054,16 @@ }, /turf/unsimulated/floor, /area/centcom/legion/hangar5) +"rlS" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 10 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/structure/extinguisher_cabinet/south, +/turf/simulated/floor/tiled, +/area/horizon/operations/lobby) "rlT" = ( /obj/item/paper_bin, /obj/item/pen/multi, @@ -120832,20 +120078,14 @@ icon_state = "wood" }, /area/centcom/specops) -"rlW" = ( -/obj/machinery/door/airlock/maintenance{ - dir = 1; - name = "Xenoarchaeology Maintenance Access"; - req_access = list(65) +"rlX" = ( +/obj/structure/closet/secure_closet/engineering_personal, +/obj/effect/floor_decal/corner/yellow{ + dir = 6 }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/door/firedoor{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenoarch_storage) +/obj/effect/floor_decal/industrial/outline/operations, +/turf/simulated/floor/tiled, +/area/horizon/engineering/locker_room) "rlZ" = ( /obj/effect/floor_decal/corner/dark_blue{ dir = 5 @@ -120857,32 +120097,72 @@ }, /turf/simulated/floor/tiled, /area/horizon/security/brig) +"rma" = ( +/obj/machinery/atmospherics/binary/pump/on{ + name = "Distro to Airlock"; + target_pressure = 200 + }, +/turf/simulated/floor, +/area/horizon/maintenance/deck_3/bridge) "rmb" = ( /turf/simulated/mineral/planet, /area/centcom/shared_dream) -"rmg" = ( -/obj/structure/bed/stool/chair/padded/brown{ - dir = 8 +"rme" = ( +/obj/structure/table/wood, +/obj/effect/floor_decal/corner_wide/green/diagonal, +/obj/item/device/flashlight/lamp, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 }, -/obj/effect/floor_decal/spline/fancy/wood{ +/turf/simulated/floor/tiled/white, +/area/horizon/medical/exam) +"rmi" = ( +/turf/simulated/wall, +/area/horizon/engineering/atmos) +"rmn" = ( +/obj/effect/floor_decal/corner_wide/green{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/light, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/hallway) +"rmq" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 9 + }, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_3/central) +"rmr" = ( +/obj/effect/floor_decal/corner/purple{ dir = 6 }, -/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" +/obj/effect/floor_decal/industrial/warning/corner, +/obj/machinery/atmospherics/pipe/simple/hidden/purple{ + dir = 9 }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/quark/cockpit) -"rmu" = ( -/obj/structure/table/rack, -/obj/random/loot, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard/far) +/turf/simulated/floor/tiled/dark/full, +/area/horizon/service/custodial/disposals/deck_1) "rmv" = ( /obj/effect/floor_decal/industrial/warning{ dir = 1 @@ -120901,44 +120181,134 @@ icon_state = "dark_preview" }, /area/centcom/holding) -"rmB" = ( -/obj/structure/shuttle/engine/propulsion/burst/right{ +"rmA" = ( +/obj/structure/lattice, +/turf/template_noop, +/area/horizon/exterior) +"rmH" = ( +/obj/effect/floor_decal/corner/dark_green/full{ dir = 8 }, -/turf/simulated/floor/plating, -/area/shuttle/escape_pod/pod2) -"rmC" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/structure/tank_wall/carbon_dioxide{ - icon_state = "co2-14" - }, -/obj/machinery/atmospherics/pipe/simple/visible/black, -/turf/simulated/floor/airless, -/area/engineering/atmos) -"rmI" = ( -/obj/machinery/smartfridge, -/obj/structure/platform/ledge{ - dir = 4 - }, -/obj/structure/platform/ledge, +/obj/machinery/vending/snack, +/obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora) -"rmQ" = ( -/turf/simulated/wall, -/area/rnd/chemistry) -"rmY" = ( -/obj/structure/trash_pile, -/obj/effect/floor_decal/corner/purple/full{ +/area/horizon/hallway/primary/deck_2/central) +"rmK" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/horizon/operations/loading) +"rmL" = ( +/obj/structure/tank_wall/hydrogen{ + density = 0; + icon_state = "h11"; + opacity = 0 + }, +/turf/simulated/floor/reinforced/hydrogen, +/area/horizon/engineering/atmos) +"rmP" = ( +/obj/structure/cable/green{ + icon_state = "0-8" + }, +/obj/effect/floor_decal/corner/dark_green/full{ dir = 1 }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/random/loot, -/obj/machinery/camera/network/service{ - c_tag = "Custodial - Disposals Aft"; +/obj/machinery/power/apc/low/east, +/obj/structure/engineer_maintenance/pipe{ + dir = 1 + }, +/obj/structure/engineer_maintenance/electric{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/horizon/hangar/intrepid/interstitial) +"rmS" = ( +/turf/simulated/wall, +/area/horizon/medical/exam) +"rmT" = ( +/obj/machinery/light/small{ dir = 8 }, +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 8 + }, +/obj/effect/map_effect/marker/airlock{ + frequency = 2005; + master_tag = "airlock_horizon_deck_2_aft_sm"; + name = "airlock_horizon_deck_2_aft_sm" + }, +/turf/simulated/floor/plating, +/area/horizon/engineering/reactor/supermatter/airlock) +"rmV" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/service/port) +"rmX" = ( +/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/horizon/custodial/disposals) +/area/horizon/hangar/auxiliary) +"rna" = ( +/obj/item/device/taperecorder{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/briefcase, +/obj/item/device/flash, +/obj/item/storage/secure/briefcase, +/obj/item/device/eftpos{ + eftpos_name = "Internal Affairs EFTPOS scanner" + }, +/obj/item/clothing/under/suit_jacket/really_black, +/obj/item/clothing/shoes/laceup, +/obj/item/clothing/shoes/laceup, +/obj/item/clipboard, +/obj/item/pen/multi, +/obj/item/device/camera, +/obj/item/paper_scanner, +/obj/item/folder/red, +/obj/item/folder/yellow, +/obj/structure/closet/lawcloset, +/obj/item/device/destTagger, +/obj/item/stack/packageWrap, +/turf/simulated/floor/carpet, +/area/horizon/repoffice/consular_one) +"rnb" = ( +/obj/effect/floor_decal/spline/plain/corner, +/obj/effect/floor_decal/spline/plain/corner{ + dir = 1 + }, +/obj/effect/floor_decal/spline/plain{ + dir = 9 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/carpet/rubber, +/area/horizon/tcommsat/chamber) "rne" = ( /obj/machinery/door/firedoor, /obj/effect/floor_decal/industrial/hatch/yellow, @@ -120960,6 +120330,31 @@ }, /turf/simulated/floor/tiled/full, /area/horizon/security/brig) +"rnj" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner/mauve{ + dir = 5 + }, +/obj/structure/sign/science{ + pixel_y = 32 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/structure/disposalpipe/junction{ + dir = 8; + icon_state = "pipe-j2" + }, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/turf/simulated/floor/tiled, +/area/horizon/rnd/hallway) "rnl" = ( /obj/structure/lattice/catwalk, /obj/item/hullbeacon/red, @@ -120972,25 +120367,32 @@ }, /turf/unsimulated/floor, /area/centcom/spawning) -"rno" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 +"rnq" = ( +/obj/structure/extinguisher_cabinet/east, +/obj/effect/floor_decal/corner/dark_green{ + dir = 6 }, -/turf/simulated/floor/tiled/dark, -/area/maintenance/wing/port/far) -"rnt" = ( -/obj/structure/tank_wall{ - density = 0; - icon_state = "m-11"; - opacity = 0 +/obj/machinery/light/floor{ + dir = 4 }, -/turf/simulated/floor/reinforced/airless, -/area/engineering/atmos) -"rnw" = ( -/obj/machinery/light/small/emergency, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard/deck1) +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_2/central) +"rnv" = ( +/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/lime{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/full, +/area/horizon/medical/morgue) "rny" = ( /obj/effect/floor_decal/corner/dark_blue{ dir = 1 @@ -121003,82 +120405,68 @@ }, /turf/simulated/floor/tiled, /area/horizon/security/brig) -"rnz" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/railing/mapped, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard/deck1) -"rnB" = ( -/obj/structure/table/rack, -/obj/item/stack/material/steel/full, -/obj/item/stack/material/glass/full, -/obj/item/stack/material/glass/reinforced/full, -/obj/item/stack/rods{ - amount = 50 - }, -/obj/item/stack/rods{ - amount = 50 - }, -/obj/item/stack/material/graphite/full, -/obj/item/stack/material/steel/full, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/machinery/camera/network/intrepid{ - c_tag = "Intrepid - Port Compartment"; +"rnJ" = ( +/obj/effect/floor_decal/spline/plain, +/turf/simulated/floor/tiled/dark, +/area/horizon/hallway/primary/deck_3/central) +"rnO" = ( +/obj/structure/platform{ dir = 1 }, +/obj/random/pottedplant, +/turf/simulated/floor/wood, +/area/horizon/command/bridge/meeting_room) +"rnW" = ( +/obj/effect/floor_decal/industrial/outline/grey, +/obj/structure/reagent_dispensers/extinguisher, /turf/simulated/floor/plating, -/area/shuttle/intrepid/port_compartment) -"rnD" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/area/horizon/hangar/intrepid) +"rnY" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 9 }, /obj/machinery/door/firedoor, -/obj/structure/platform_stairs/full/east_west_cap{ - dir = 8 +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/full, +/area/horizon/hallway/primary/deck_2/starboard) +"roa" = ( +/obj/machinery/chemical_dispenser/coffeemaster/full{ + pixel_x = -9; + pixel_y = 12 }, -/obj/structure/platform/cutout, -/turf/simulated/floor/tiled/dark, -/area/horizon/crew_quarters/lounge/bar) -"rnF" = ( -/obj/effect/floor_decal/corner/mauve/full{ - dir = 4 +/obj/structure/table/stone/marble, +/obj/effect/decal/fake_object{ + desc = "A descriptive sign."; + icon = 'icons/effects/cafesign.dmi'; + icon_state = "cafesign"; + name = "cafe sign"; + pixel_y = 30 }, -/obj/effect/floor_decal/corner/white{ - dir = 1 +/obj/item/reagent_containers/food/drinks/drinkingglass/newglass/coffeecup/idris{ + pixel_x = 9; + pixel_y = 8 }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 +/obj/item/reagent_containers/food/drinks/takeaway_cup_idris, +/obj/item/reagent_containers/food/drinks/drinkingglass/newglass/coffeecup/idris{ + pixel_x = 9; + pixel_y = 2 }, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology/xenoflora) -"rnK" = ( -/turf/simulated/wall/r_wall, -/area/turret_protected/ai) -"rnV" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 +/obj/item/reagent_containers/food/drinks/drinkingglass/newglass/coffeecup/idris{ + pixel_x = 9; + pixel_y = -4 }, -/turf/simulated/floor, -/area/maintenance/security_port) -"rnX" = ( -/obj/structure/bed/roller, -/obj/effect/floor_decal/industrial/outline/medical, -/turf/simulated/floor/tiled/white, -/area/medical/gen_treatment) +/obj/item/reagent_containers/food/drinks/takeaway_cup_idris, +/obj/item/reagent_containers/food/drinks/takeaway_cup_idris{ + pixel_x = -7 + }, +/obj/item/reagent_containers/food/drinks/takeaway_cup_idris{ + pixel_x = -7 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 5 + }, +/turf/simulated/floor/wood, +/area/horizon/service/cafeteria) "roc" = ( /turf/simulated/wall/shuttle/hapt, /area/shuttle/hapt) @@ -121089,10 +120477,28 @@ }, /turf/simulated/floor/marble/dark, /area/horizon/holodeck/source_trinary) -"ros" = ( -/turf/simulated/wall/r_wall, -/area/engineering/bluespace_drive/monitoring) -"rot" = ( +"rog" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 8 + }, +/obj/effect/floor_decal/corner/yellow, +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/manifold/visible/red, +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/atmos/turbine) +"roi" = ( +/obj/structure/railing/mapped, +/obj/effect/floor_decal/industrial/outline/emergency_closet, +/obj/structure/closet/emcloset{ + anchored = 1; + canbemoved = 1 + }, +/obj/machinery/light/spot{ + dir = 8 + }, +/turf/simulated/floor/carpet/rubber, +/area/horizon/engineering/reactor/indra/mainchamber) +"ron" = ( /obj/structure/cable{ icon_state = "4-8" }, @@ -121102,13 +120508,27 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/machinery/door/firedoor, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/machinery/door/airlock/maintenance_hatch{ - dir = 4 +/obj/effect/floor_decal/corner/dark_green/full{ + dir = 1 }, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard/deck1) +/turf/simulated/floor/tiled, +/area/horizon/hangar/auxiliary) +"rop" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 10 + }, +/obj/structure/cable/green, +/obj/machinery/power/apc/south, +/turf/simulated/floor/tiled, +/area/horizon/rnd/eva) +"roq" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/machinery/alarm/north, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/rnd/xenoarch/atrium) "rou" = ( /obj/effect/decal/fake_object{ dir = 8; @@ -121129,32 +120549,6 @@ name = "shallow water" }, /area/horizon/holodeck/source_konyang) -"rov" = ( -/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, -/turf/simulated/floor/plating, -/area/hangar/intrepid) -"roy" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/aux{ - dir = 9 - }, -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/turf/simulated/floor/tiled/dark/full, -/area/bridge/aibunker) "roz" = ( /obj/structure/window/reinforced/crescent{ dir = 8 @@ -121170,55 +120564,53 @@ dir = 9 }, /area/antag/raider) -"roD" = ( -/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" +"roB" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/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, -/area/maintenance/wing/starboard/deck1) -"roI" = ( -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard/far) -"roJ" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 1 - }, -/obj/effect/floor_decal/corner/dark_blue{ dir = 10 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - icon_state = "1-2" +/obj/machinery/camera/network/research{ + c_tag = "Research - Corridor Camera 1"; + dir = 1 }, /turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/port) -"roT" = ( -/obj/structure/trash_pile, -/obj/random/dirt_75, +/area/horizon/rnd/hallway) +"roH" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/horizon/operations/lobby) +"roK" = ( +/obj/machinery/alarm/north, +/obj/effect/floor_decal/spline/fancy/wood/cee{ + dir = 1 + }, +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/structure/flora/ausbushes/brflowers, +/turf/simulated/floor/grass/no_edge, +/area/horizon/hallway/primary/deck_2/starboard) +"roS" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/light/small/emergency, /turf/simulated/floor/plating, -/area/maintenance/wing/port/far) +/area/horizon/maintenance/deck_1/wing/port/far) "roU" = ( /obj/structure/shuttle/engine/heater, /obj/structure/window/borosilicate/reinforced{ @@ -121229,12 +120621,6 @@ }, /turf/unsimulated/floor/plating, /area/centcom/distress_prep) -"roX" = ( -/obj/effect/floor_decal/corner/yellow{ - dir = 5 - }, -/turf/simulated/floor/tiled/dark, -/area/storage/eva) "roY" = ( /obj/effect/floor_decal/corner/dark_blue/full, /obj/structure/cable/green{ @@ -121251,44 +120637,38 @@ }, /turf/simulated/floor/tiled, /area/horizon/security/brig) -"rpa" = ( -/obj/structure/platform_stairs/full/east_west_cap{ +"rpb" = ( +/obj/machinery/camera/network/medbay{ + c_tag = "Medical - Hallway 4"; dir = 8 }, -/obj/structure/platform{ +/obj/effect/floor_decal/corner_wide/green/full{ dir = 1 }, -/obj/structure/railing/mapped, -/obj/effect/floor_decal/corner/lime{ - dir = 5 +/obj/effect/landmark/start{ + name = "Medical Intern" }, -/turf/simulated/floor/tiled/white{ - name = "cooled white floor"; - temperature = 278.15 +/obj/structure/bed/stool/chair{ + dir = 8 }, -/area/medical/morgue/lower) -"rpc" = ( +/turf/simulated/floor/tiled/white, +/area/horizon/medical/hallway/upper) +"rpg" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible/black, +/turf/simulated/floor/plating, +/area/horizon/engineering/atmos/air) +"rph" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /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/effect/floor_decal/corner/dark_green/full{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/central) -"rpj" = ( -/obj/effect/floor_decal/corner/brown/full{ - dir = 8 - }, -/obj/machinery/computer/shuttle_control/multi/lift/wall/operations{ - pixel_x = -8; - pixel_y = 26 - }, -/turf/simulated/floor/tiled, -/area/operations/loading) +/obj/random/dirt_75, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/starboard/nacelle) "rpk" = ( /obj/structure/flora/grass/jungle{ icon_state = "bushb1" @@ -121299,30 +120679,22 @@ name = "overgrowth" }, /area/horizon/holodeck/source_moghes) -"rpm" = ( -/obj/effect/floor_decal/corner_wide/yellow{ - dir = 5 - }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/turf/simulated/floor/tiled, -/area/hallway/engineering/rust) -"rpK" = ( -/obj/machinery/camera/network/service{ - c_tag = "Custodial - Main Storage"; +"rps" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 1 }, -/obj/effect/floor_decal/corner/purple{ - dir = 10 +/turf/simulated/floor/tiled/dark, +/area/horizon/weapons/longbow) +"rpu" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan, +/obj/structure/railing/mapped{ + dir = 4 }, -/obj/effect/floor_decal/industrial/outline/custodial, -/obj/structure/janitorialcart, -/turf/simulated/floor/tiled, -/area/horizon/custodial) +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/horizon/engineering/reactor/supermatter/mainchamber) "rpO" = ( /obj/effect/floor_decal/corner/red/diagonal, /obj/item/trash/chipbasket, @@ -121344,83 +120716,44 @@ }, /turf/simulated/floor/tiled/white, /area/centcom/shared_dream) -"rpR" = ( -/obj/structure/cable{ - icon_state = "1-2" +"rpT" = ( +/obj/effect/floor_decal/corner_wide/paleblue{ + dir = 9 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/corner/dark_green{ +/turf/simulated/floor/tiled/white, +/area/horizon/medical/hallway/upper) +"rpV" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/main/port) +"rqd" = ( +/obj/effect/floor_decal/corner/dark_blue{ dir = 6 }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ +/obj/structure/bed/stool/chair/office/bridge/generic{ dir = 4 }, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/central) -"rqa" = ( -/obj/machinery/firealarm/north, -/obj/structure/bed/handrail, -/obj/machinery/atmospherics/binary/pump/supply{ - dir = 8; - name = "Canister to Air Distribution" +/turf/simulated/floor/tiled/dark, +/area/horizon/security/checkpoint2) +"rqe" = ( +/obj/effect/floor_decal/spline/plain, +/obj/effect/floor_decal/spline/plain{ + dir = 1 }, -/turf/simulated/floor/tiled/dark/full, -/area/shuttle/intrepid/port_storage) -"rqb" = ( -/turf/simulated/wall/shuttle/scc_space_ship/cardinal, -/area/horizon/hallway/deck_three/primary/starboard/docks) -"rqc" = ( -/obj/machinery/door/airlock/external, -/obj/effect/map_effect/marker/airlock{ - frequency = 1003; - master_tag = "airlock_horizon_deck_1_starboard_1"; - name = "airlock_horizon_deck_1_starboard_1" +/obj/machinery/camera/motion{ + network = list("Command","Security","Tcomsat"); + c_tag = "Telecommunications - Central Compartment Port" }, -/obj/effect/map_effect/marker_helper/airlock/exterior, -/obj/machinery/access_button{ - pixel_x = -28 - }, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard/deck1) -"rqf" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/alarm/north, -/obj/machinery/suit_cycler/mining/prepared, -/turf/simulated/floor/tiled/dark/full, -/area/outpost/mining_main/eva) -"rql" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/cable/orange{ - icon_state = "4-8" - }, -/obj/effect/floor_decal/industrial/warning, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/plating, -/area/engineering/engine_room) +/turf/simulated/floor/carpet/rubber, +/area/horizon/tcommsat/chamber) "rqm" = ( /obj/structure/holostool{ dir = 8 }, /turf/simulated/floor/holofloor/lino, /area/horizon/holodeck/source_chapel) -"rqq" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/horizon/crew_quarters/fitness/changing) "rqs" = ( /obj/machinery/shower{ pixel_y = 20 @@ -121431,55 +120764,82 @@ }, /turf/unsimulated/floor/freezer, /area/antag/mercenary) -"rqy" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/extinguisher_cabinet/north, -/obj/effect/floor_decal/corner/dark_green/full{ +"rqx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 8 }, -/turf/simulated/floor/tiled, -/area/security/checkpoint2) +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/aft_airlock) "rqA" = ( /obj/effect/floor_decal/industrial/outline/yellow, /turf/unsimulated/floor, /area/centcom/checkpoint/aft) -"rqK" = ( +"rqC" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/turf/simulated/floor/reinforced, +/area/horizon/rnd/xenobiology) +"rqG" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 8 + }, +/obj/effect/floor_decal/corner/yellow, +/obj/machinery/atmospherics/portables_connector{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/atmos/turbine) +"rqJ" = ( /obj/effect/floor_decal/corner/dark_green{ - dir = 5 + dir = 8 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_2/fore) +"rqL" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/alarm/north{ - req_one_access = list(24,11,55) - }, /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/effect/floor_decal/spline/plain/corner{ - dir = 4 - }, -/obj/structure/engineer_maintenance/electric{ - dir = 8 - }, -/obj/structure/engineer_maintenance/pipe{ - dir = 1 - }, /turf/simulated/floor/tiled, -/area/horizon/hallway/deck_two/fore) +/area/horizon/hallway/primary/deck_2/fore) "rqN" = ( /turf/simulated/floor/holofloor/beach/sand{ icon_state = "desert" }, /area/horizon/holodeck/source_desert) +"rqP" = ( +/obj/effect/floor_decal/industrial/outline/medical, +/obj/structure/closet/secure_closet/personal, +/turf/simulated/floor/tiled/full, +/area/horizon/medical/washroom) +"rqQ" = ( +/obj/structure/bed/handrail{ + dir = 4 + }, +/obj/effect/map_effect/marker/airlock/shuttle{ + cycle_to_external_air = 1; + master_tag = "airlock_shuttle_intrepid"; + name = "airlock_shuttle_intrepid"; + req_one_access = null; + shuttle_tag = "Intrepid" + }, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume, +/obj/machinery/atmospherics/unary/vent_pump/high_volume, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 5 + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/shuttle/intrepid/main_compartment) "rqR" = ( /obj/machinery/door/airlock/glass_centcom{ dir = 4; @@ -121488,66 +120848,7 @@ }, /turf/unsimulated/floor/rubber_carpet, /area/centcom/specops) -"rqT" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - dir = 4 - }, -/obj/machinery/door/firedoor{ - dir = 4 - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"rrB" = ( -/obj/structure/shuttle_part/scc/scout{ - icon_state = "1,7" - }, -/obj/structure/shuttle_part/scc/scout{ - icon_state = "0,7"; - pixel_x = -32 - }, -/obj/item/hullbeacon/red{ - pixel_x = -10; - pixel_y = 8 - }, -/turf/simulated/floor/plating, -/area/shuttle/canary) -"rrD" = ( -/obj/effect/landmark/entry_point/aft{ - name = "aft engines, starboard 1" - }, -/turf/space/dynamic, -/area/engineering/atmos/propulsion/starboard) -"rrJ" = ( -/obj/effect/floor_decal/spline/plain/lime{ - dir = 10 - }, -/obj/machinery/smartfridge/drying_rack, -/turf/simulated/floor/tiled/dark, -/area/horizon/hydroponics/garden) -"rrL" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_two) -"rrP" = ( -/obj/structure/window/reinforced/crescent{ - dir = 4 - }, -/obj/structure/sign/double/map/right{ - desc = "A detailed image of a Nanotrasen facility."; - name = "operation map"; - pixel_y = 31 - }, -/obj/effect/floor_decal/spline/plain{ - dir = 4 - }, -/turf/unsimulated/floor{ - icon_state = "wood" - }, -/area/centcom/specops) -"rrX" = ( +"rqS" = ( /obj/structure/cable/green{ icon_state = "4-8" }, @@ -121564,117 +120865,215 @@ name = "EVA Storage"; req_one_access = list(18,47) }, -/turf/simulated/floor/tiled/full, -/area/storage/eva) -"rsb" = ( -/obj/structure/table/standard, -/obj/machinery/light, -/obj/effect/floor_decal/corner/mauve/full{ +/obj/effect/map_effect/door_helper/unres{ dir = 4 }, -/obj/item/reagent_containers/glass/beaker{ - pixel_y = 8 - }, -/obj/item/reagent_containers/glass/beaker{ - pixel_y = 8 - }, -/obj/item/device/slime_scanner{ - pixel_x = -11; - pixel_y = 4 - }, -/obj/item/device/slime_scanner{ - pixel_x = -11; - pixel_y = 4 - }, -/obj/item/storage/box/slides{ - pixel_x = 5; - pixel_y = 5 - }, -/obj/item/storage/box/syringes{ - pixel_x = 5; - pixel_y = 1 - }, -/obj/item/storage/box/syringes{ - pixel_x = 5; - pixel_y = 1 +/turf/simulated/floor/tiled/full, +/area/horizon/storage/eva) +"rrg" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 }, /turf/simulated/floor/tiled/white, -/area/rnd/xenobiology) -"rse" = ( -/turf/simulated/floor, -/area/horizon/maintenance/deck_three/aft/starboard) -"rsh" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume/aux{ +/area/horizon/medical/main_storage) +"rrk" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/structure/tank_wall/air{ + icon_state = "air4" + }, +/obj/machinery/atmospherics/pipe/simple/visible{ dir = 4 }, -/obj/effect/floor_decal/industrial/outline_door/red{ +/turf/simulated/floor/plating, +/area/horizon/engineering/atmos/air) +"rro" = ( +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/structure/lattice, +/obj/structure/platform/ledge, +/obj/structure/platform/ledge{ + dir = 8 + }, +/obj/structure/platform_deco/ledge{ + dir = 9 + }, +/turf/simulated/open, +/area/horizon/hallway/primary/deck_2/central) +"rrr" = ( +/obj/machinery/door/blast/shutters/open{ + dir = 2; + id = "CHE2shutters"; + name = "Window Shutter" + }, +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 2; + icon_state = "shutter0"; + id = "LCKDshutters"; + name = "MedBay Lockdown Shutters"; + opacity = 0 + }, +/obj/effect/map_effect/window_spawner/full/borosilicate/reinforced/firedoor, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/medical/pharmacy) +"rrA" = ( +/obj/random/junk, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/tiled, +/area/horizon/maintenance/deck_1/operations/starboard) +"rrF" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/engineering{ + dir = 4; + name = "Deck 2 Research Substation"; + req_one_access = list(11,24) + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/horizon/maintenance/substation/research) +"rrG" = ( +/turf/simulated/wall, +/area/horizon/medical/cryo) +"rrK" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/structure/shuttle_part/scc/scout{ + icon_state = "6,3"; + outside_part = 0 + }, +/obj/machinery/light{ dir = 1 }, -/obj/effect/floor_decal/industrial/outline_straight/red{ +/obj/machinery/atmospherics/pipe/simple/hidden/fuel, +/obj/machinery/camera/network/canary{ + c_tag = "Canary - Fore External" + }, +/turf/simulated/floor/reinforced, +/area/horizon/shuttle/canary) +"rrP" = ( +/obj/structure/window/reinforced/crescent{ dir = 4 }, -/obj/effect/map_effect/marker_helper/airlock/out, -/obj/structure/bed/handrail{ - dir = 8; - pixel_x = 2 +/obj/structure/sign/double/map/right{ + desc = "A detailed image of a Nanotrasen facility."; + name = "operation map"; + pixel_y = 31 }, -/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{ +/obj/effect/floor_decal/spline/plain{ dir = 4 }, -/turf/simulated/floor/plating, -/area/shuttle/quark/cargo_hold) -"rsk" = ( -/obj/structure/cable{ - icon_state = "2-8" +/turf/unsimulated/floor{ + icon_state = "wood" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 +/area/centcom/specops) +"rrR" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/engineering{ + dir = 4; + name = "Engineering Hard Storage"; + req_one_access = list(11,24) }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/aux{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 10 - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/maintenance/engineering) -"rst" = ( -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/full, +/area/horizon/engineering/storage_hard) +"rrS" = ( +/obj/effect/floor_decal/corner/dark_blue/full{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard/deck1) -"rsv" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_3/port/docks) +"rsa" = ( +/obj/effect/floor_decal/corner/dark_blue/full{ dir = 8 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 + dir = 6 }, -/obj/structure/cable/orange{ - icon_state = "4-8" +/obj/machinery/keycard_auth{ + dir = 4; + pixel_x = -20 }, -/obj/structure/cable/orange{ +/obj/structure/platform_stairs/full{ + dir = 6 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/command/bridge/controlroom) +"rsg" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/cable{ icon_state = "1-4" }, -/obj/structure/lattice/catwalk/indoor/grate, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/structure/closet/crate, +/obj/random/loot, /turf/simulated/floor/plating, -/area/engineering/engine_room/rust) +/area/horizon/maintenance/deck_1/wing/starboard) +"rsr" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 1 + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/port/near) +"rsu" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/effect/floor_decal/corner/brown/full, +/turf/simulated/floor/tiled, +/area/horizon/operations/mail_room) +"rsA" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/door/airlock/maintenance_hatch{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/wing/port/far) "rsB" = ( /obj/effect/floor_decal/spline/plain/corner{ dir = 8 @@ -121682,6 +121081,16 @@ /obj/structure/flora/ausbushes/ywflowers, /turf/simulated/floor/exoplanet/grass/grove, /area/centcom/shared_dream) +"rsC" = ( +/obj/machinery/conveyor{ + id = "Robocompo" + }, +/obj/structure/platform{ + dir = 4 + }, +/obj/machinery/alarm/west, +/turf/simulated/floor/tiled, +/area/horizon/operations/machinist) "rsG" = ( /obj/effect/floor_decal/corner/red/full{ dir = 4 @@ -121694,15 +121103,23 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/security/evidence_storage) -"rsL" = ( -/turf/simulated/wall/shuttle/scc_space_ship/cardinal, -/area/maintenance/research_port) -"rsP" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 9 +"rsJ" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 }, -/turf/simulated/floor/tiled/dark, -/area/engineering/atmos/propulsion) +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor/plating, +/area/horizon/hallway/primary/deck_2/central) +"rsN" = ( +/obj/effect/floor_decal/corner/dark_green/full, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_2/central) "rsQ" = ( /obj/machinery/door/airlock/external{ dir = 4; @@ -121728,63 +121145,10 @@ }, /turf/simulated/floor/tiled/dark, /area/shuttle/mercenary) -"rsS" = ( -/obj/effect/map_effect/marker/airlock{ - frequency = 1004; - master_tag = "airlock_horizon_deck_1_fore_1"; - name = "airlock_horizon_deck_1_fore_1" - }, -/turf/simulated/floor/plating, -/area/maintenance/hangar/starboard) -"rsV" = ( -/obj/structure/disposalpipe/segment, -/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/white, -/area/medical/gen_treatment) -"rsY" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 6 - }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/junction{ - dir = 1 - }, -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/turf/simulated/floor/tiled, -/area/bridge/controlroom) "rsZ" = ( /obj/structure/bed/stool/chair/shuttle, /turf/simulated/floor/shuttle/black, /area/centcom/specops) -"rta" = ( -/obj/structure/cable/green, -/obj/effect/map_effect/window_spawner/full/reinforced/polarized/grille/firedoor{ - id = "XO" - }, -/turf/simulated/floor, -/area/bridge/controlroom) -"rtf" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/corner/yellow{ - dir = 1 - }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge/controlroom) "rth" = ( /obj/structure/table/rack, /obj/item/storage/box/teargas{ @@ -121802,50 +121166,6 @@ icon_state = "dark_preview" }, /area/centcom/holding) -"rtk" = ( -/obj/machinery/portable_atmospherics/hydroponics, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/sign/biohazard{ - pixel_x = -32 - }, -/obj/machinery/light/colored/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/portables_connector{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/hydroponics/lower) -"rtn" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "sorting"; - reversed = 1 - }, -/obj/structure/sign/drop{ - pixel_y = 32 - }, -/turf/simulated/floor/tiled/dark/full, -/area/operations/mail_room) -"rtp" = ( -/obj/structure/grille, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "bridge blast"; - name = "Bridge Blast Doors"; - opacity = 0 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/shutters/open{ - dir = 2; - id = "shutters_deck3_bridgesafety"; - name = "Safety Shutter" - }, -/obj/structure/window/shuttle/scc_space_ship/cardinal, -/turf/simulated/floor/plating, -/area/bridge/minibar) "rtx" = ( /obj/effect/decal/fake_object{ dir = 4; @@ -121866,25 +121186,74 @@ name = "shallow water" }, /area/horizon/holodeck/source_konyang) -"rtC" = ( -/obj/machinery/door/firedoor, -/obj/effect/floor_decal/industrial/hatch/yellow, +"rtA" = ( +/obj/item/flag/scc/l{ + pixel_y = 15 + }, +/obj/item/flag/scc/l{ + pixel_y = 10 + }, +/obj/item/flag/scc/l{ + pixel_y = 4 + }, +/obj/structure/table/glass, +/obj/effect/floor_decal/corner/dark_blue{ + dir = 9 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/horizon/command/bridge/bridge_crew) +"rtD" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/light/small/emergency, +/obj/structure/reagent_dispensers/watertank, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor, +/area/horizon/maintenance/deck_3/aft/port) +"rtE" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/atmospherics/binary/pump{ + dir = 4 + }, /turf/simulated/floor/plating, -/area/maintenance/wing/starboard/deck1) -"rtJ" = ( +/area/horizon/rnd/xenoarch/atrium) +"rtG" = ( +/obj/effect/floor_decal/corner_wide/green{ + dir = 6 + }, +/obj/effect/floor_decal/corner_wide/green{ + dir = 1 + }, +/obj/structure/table/standard, +/obj/item/device/mass_spectrometer{ + pixel_x = 6; + pixel_y = 2 + }, +/obj/item/storage/box/sharps{ + pixel_x = -5 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/exam) +"rtL" = ( /obj/structure/cable{ icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable{ - icon_state = "1-4" +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/engineering{ + dir = 1; + name = "Engineering Storage"; + req_one_access = list(11,24) }, -/obj/machinery/atmospherics/pipe/simple/hidden/aux, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel, -/obj/structure/lattice/catwalk/indoor/grate/dark, /turf/simulated/floor/plating, -/area/maintenance/engineering) +/area/horizon/engineering/storage/lower) "rtQ" = ( /obj/structure/cable/green{ icon_state = "1-2" @@ -121901,24 +121270,23 @@ }, /turf/simulated/floor/tiled, /area/horizon/security/investigations_hallway) -"rtZ" = ( -/obj/effect/floor_decal/spline/plain/green{ - dir = 6 - }, -/obj/structure/bed/stool/chair/office/light{ +"rtU" = ( +/obj/machinery/atmospherics/pipe/simple/visible/universal{ dir = 4 }, -/obj/effect/landmark/start{ - name = "Gardener" +/obj/structure/cable/yellow{ + icon_state = "2-8" }, -/obj/effect/floor_decal/corner/dark_green{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/horizon/hydroponics/lower) +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/engineering/atmos/turbine) +"ruc" = ( +/obj/machinery/door/window/eastleft, +/obj/structure/platform/ledge, +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/effect/floor_decal/industrial/outline/emergency_closet, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/rnd/telesci) "rud" = ( /obj/effect/floor_decal/industrial/warning{ dir = 4 @@ -121928,17 +121296,16 @@ }, /turf/unsimulated/floor/plating, /area/antag/burglar) -"rul" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 5 +"ruf" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 1 }, -/obj/machinery/camera/network/research{ - dir = 8; - c_tag = "Xenobio - Cell F"; - network = list("Xeno_Bio") +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 }, -/turf/simulated/floor/reinforced, -/area/rnd/xenobiology) +/obj/effect/floor_decal/corner/dark_blue, +/turf/simulated/floor/tiled/dark, +/area/horizon/command/bridge/controlroom) "rum" = ( /obj/effect/floor_decal/corner/yellow{ dir = 6 @@ -121948,49 +121315,17 @@ }, /turf/simulated/floor/marble/dark, /area/horizon/holodeck/source_trinary) -"ruv" = ( -/obj/structure/toilet{ - pixel_y = 16 +"run" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/green{ + dir = 8 }, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/structure/bed/handrail{ - dir = 4 - }, -/obj/machinery/button/remote/airlock{ - dir = 1; - id = "main_unit_1"; - name = "Door Bolt Control"; - pixel_y = 34; - specialfunctions = 4 - }, -/turf/simulated/floor/tiled/white, -/area/horizon/crew_quarters/fitness/changing) -"ruw" = ( -/obj/structure/bed/stool/chair/padded/red{ - dir = 4 - }, -/obj/machinery/alarm/west, -/obj/structure/platform{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/horizon/crew_quarters/lounge/bar) -"rux" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/full, -/area/horizon/hallway/deck_three/primary/central) +/turf/simulated/wall/shuttle/scc_space_ship/cardinal, +/area/horizon/service/custodial/disposals/deck_1) +"rur" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/effect/floor_decal/corner/brown, +/turf/simulated/floor/tiled, +/area/horizon/operations/mail_room) "ruy" = ( /obj/structure/window/reinforced/crescent, /obj/structure/window/reinforced/crescent{ @@ -122005,55 +121340,32 @@ }, /turf/simulated/floor/marble/dark, /area/horizon/holodeck/source_trinary) +"ruB" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock{ + dir = 4; + name = "Recharging Station" + }, +/turf/simulated/floor/tiled/full, +/area/horizon/crew/chargebay) "ruF" = ( /obj/structure/grille, /obj/structure/window/shuttle/scc_space_ship/cardinal, /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/supply/dock) -"ruJ" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/effect/map_effect/window_spawner/full/reinforced/polarized/grille/firedoor{ - id = "cap" - }, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "bridge blast"; - name = "Bridge Blast Doors"; - opacity = 0 - }, +"ruO" = ( /obj/structure/cable/green{ icon_state = "1-2" }, -/obj/structure/cable/green{ - icon_state = "0-2" +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/corner/dark_blue/full{ + dir = 8 }, -/turf/simulated/floor, -/area/crew_quarters/captain) -"ruN" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/plating, -/area/rnd/xenoarch_atrium) -"ruP" = ( -/obj/machinery/atmospherics/unary/vent_pump{ - external_pressure_bound = 0; - external_pressure_bound_default = 0; - icon_state = "map_vent_in"; - initialize_directions = 1; - internal_pressure_bound = 4000; - internal_pressure_bound_default = 4000; - pressure_checks = 2; - pressure_checks_default = 2; - pump_direction = 0; - use_power = 1 - }, -/turf/simulated/floor/bluegrid/server, -/area/server) +/turf/simulated/floor/tiled, +/area/horizon/command/bridge/upperdeck) "ruQ" = ( /obj/effect/decal/fake_object{ density = 1; @@ -122065,44 +121377,43 @@ /obj/effect/floor_decal/industrial/warning/full, /turf/unsimulated/floor, /area/centcom/spawning) -"ruY" = ( -/obj/machinery/atmospherics/pipe/simple/visible/black, -/obj/machinery/atmospherics/pipe/simple/visible/cyan{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/engineering/engine_waste) -"rvb" = ( -/obj/machinery/light{ +"ruW" = ( +/obj/structure/platform_stairs/full{ dir = 8 }, -/obj/structure/closet/firecloset, -/obj/effect/floor_decal/corner/white/diagonal, -/obj/effect/floor_decal/spline/plain{ +/obj/structure/platform{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/effect/floor_decal/industrial/outline/firefighting_closet, -/turf/simulated/floor/tiled/dark, -/area/horizon/hallway/deck_three/primary/central) +/turf/simulated/floor/tiled/dark/full, +/area/horizon/operations/machinist) +"rvd" = ( +/turf/simulated/wall/r_wall, +/area/horizon/maintenance/substation/command) "rve" = ( /turf/unsimulated/floor/carpet, /area/antag/mercenary) -"rvk" = ( -/obj/structure/cable/green{ - icon_state = "2-4" +"rvf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/material/shard{ + icon_state = "medium" }, -/obj/effect/floor_decal/corner/yellow{ - dir = 5 +/turf/simulated/floor/tiled, +/area/horizon/maintenance/deck_1/operations/starboard) +"rvh" = ( +/obj/machinery/door/airlock/mining{ + dir = 1; + id_tag = "qmdoor"; + name = "Operations Manager"; + req_access = list(41) }, -/obj/effect/floor_decal/corner/yellow{ - dir = 5 - }, -/obj/machinery/alarm/north, -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/turf/simulated/floor/tiled/dark, -/area/engineering/aft_airlock) +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/full, +/area/horizon/command/heads/om) "rvl" = ( /obj/structure/railing/mapped{ dir = 1 @@ -122116,26 +121427,15 @@ }, /turf/simulated/floor/tiled/dark/full, /area/shuttle/hapt) -"rvq" = ( -/obj/machinery/bodyscanner{ - dir = 4 - }, -/obj/effect/floor_decal/corner_wide/purple{ - dir = 9 - }, -/obj/effect/floor_decal/corner_wide/purple/diagonal, -/turf/simulated/floor/tiled/white, -/area/rnd/test_range) +"rvs" = ( +/obj/structure/closet/crate, +/obj/random/loot, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/port/far) "rvy" = ( /turf/simulated/floor/shuttle/dark_red, /area/shuttle/hapt) -"rvz" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 7 - }, -/turf/simulated/floor/wood, -/area/chapel/main) "rvC" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, @@ -122144,98 +121444,48 @@ }, /turf/simulated/floor/tiled/dark, /area/shuttle/skipjack) -"rvF" = ( -/obj/structure/bed/stool/chair/padded/red{ +"rvW" = ( +/obj/structure/platform/ledge, +/obj/structure/platform/ledge{ dir = 8 }, -/obj/machinery/camera/network/service{ - c_tag = "Service - Deck 2 - Booth 1"; - dir = 8 +/obj/structure/platform_deco/ledge{ + dir = 9 }, -/turf/simulated/floor/carpet/red, -/area/horizon/crew_quarters/lounge/bar) -"rvG" = ( -/obj/effect/map_effect/window_spawner/full/reinforced/polarized/grille/firedoor{ - id = "OM Windows" +/obj/structure/railing/mapped{ + dir = 4 }, -/turf/simulated/floor/tiled/dark/full, -/area/operations/qm) -"rvH" = ( -/obj/structure/bed/stool/chair/office/dark, -/obj/effect/floor_decal/corner/brown{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/operations/office) -"rvM" = ( -/obj/effect/floor_decal/corner/dark_green{ +/turf/simulated/open, +/area/horizon/operations/office) +"rvX" = ( +/obj/effect/floor_decal/corner/dark_blue{ dir = 5 }, -/obj/structure/engineer_maintenance/pipe{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/central) -"rvQ" = ( -/obj/effect/floor_decal/corner/mauve{ - dir = 10 - }, -/obj/structure/sign/science{ - pixel_y = -31 - }, -/obj/machinery/light/floor, -/turf/simulated/floor/tiled, -/area/rnd/hallway) -"rvR" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/power/smes/buildable/horizon_shuttle{ - RCon_tag = "Intrepid" - }, /obj/structure/cable/green{ - icon_state = "0-8" + icon_state = "0-4" }, -/obj/machinery/light/small{ +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 1 }, -/turf/simulated/floor/plating, -/area/shuttle/intrepid/port_compartment) -"rvU" = ( -/obj/effect/floor_decal/corner_wide/green/full, -/obj/machinery/light, -/turf/simulated/floor/tiled/white, -/area/hallway/medical/upper) -"rvY" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/table/reinforced/steel, -/obj/machinery/recharger, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/engine_monitoring) -"rwf" = ( -/obj/effect/floor_decal/corner_wide/blue, -/obj/effect/floor_decal/corner_wide/yellow{ - dir = 8 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 }, -/obj/effect/floor_decal/spline/plain, -/obj/machinery/atmospherics/binary/pump/high_power/on{ - dir = 8; - name = "Air Supply to Pumps"; - target_pressure = 15000 +/obj/machinery/power/apc/north, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_3/port/docks) +"rwc" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor, +/obj/structure/plasticflaps/airtight{ + dir = 4 + }, +/obj/machinery/door/airlock/glass_mining{ + dir = 4; + name = "Fuel Bay"; + req_one_access = list(26,29,31,48,67,24,47,73) }, /turf/simulated/floor/tiled, -/area/engineering/atmos/storage) -"rwh" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/item/stack/rods, -/turf/simulated/floor/plating, -/area/maintenance/wing/port/deck1) -"rwj" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/structure/railing/mapped, -/turf/simulated/floor/tiled/dark/full, -/area/hallway/primary/central_one) +/area/horizon/hangar/intrepid) "rwk" = ( /obj/effect/floor_decal/corner/dark_blue{ dir = 6 @@ -122247,48 +121497,52 @@ }, /turf/simulated/floor/tiled, /area/horizon/security/brig) -"rwl" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 +"rwn" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/wood, +/area/horizon/medical/psych) +"rwq" = ( +/obj/structure/trash_pile, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/starboard/far) +"rww" = ( +/obj/structure/cable/green{ + icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/turf/simulated/floor/carpet/rubber, -/area/engineering/engine_monitoring/rust) -"rwv" = ( -/obj/effect/floor_decal/corner_wide/lime{ - dir = 6 +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 }, -/obj/machinery/disposal/small/west, -/obj/structure/disposalpipe/trunk{ - dir = 8 +/obj/structure/disposalpipe/sortjunction{ + dir = 4; + name = "Deck 1 Warehouse - Operations Shuttle"; + sortType = "Deck 1 Warehouse - Operations Shuttle" }, -/turf/simulated/floor/tiled/white, -/area/medical/reception) -"rwx" = ( -/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/corner/brown{ + dir = 5 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/horizon/operations/loading) +"rwD" = ( /obj/structure/cable/green{ - icon_state = "1-2" + icon_state = "4-8" }, -/obj/effect/floor_decal/corner/dark_green{ - dir = 9 +/turf/simulated/floor/bluegrid{ + name = "cooled mainframe floor"; + temperature = 278 }, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/central) -"rwF" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 +/area/horizon/ai/chamber) +"rwJ" = ( +/obj/effect/landmark/entry_point/aft{ + name = "aft, visiting docks" }, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/engine_room/rust) -"rwM" = ( -/obj/machinery/alarm/west, -/obj/effect/floor_decal/corner_wide/yellow{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/engineering/engine_room/rust) +/turf/simulated/wall/shuttle/scc_space_ship/cardinal, +/area/horizon/hallway/primary/deck_3/port/docks) "rwO" = ( /obj/structure/table/standard, /obj/item/storage/box/fancy/donut, @@ -122297,6 +121551,22 @@ icon_state = "wood" }, /area/centcom/legion/hangar5) +"rwQ" = ( +/obj/machinery/disposal/deliveryChute{ + pixel_y = 7 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/window/southright{ + req_access = list(55) + }, +/obj/structure/disposalpipe/trunk, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/xenobiology/hazardous) "rwT" = ( /obj/structure/shuttle_part/ert{ icon_state = "0,0"; @@ -122304,24 +121574,9 @@ }, /turf/unsimulated/floor/plating, /area/centcom/specops) -"rwX" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/visible/green{ - dir = 9 - }, -/obj/structure/window/shuttle/scc_space_ship/cardinal, -/turf/simulated/floor/plating, -/area/engineering/engine_room/turbine) -"rwY" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/corner/dark_green, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/hallway/primary/aft) +"rwZ" = ( +/turf/simulated/floor/tiled/dark, +/area/horizon/rnd/xenobiology/dissection) "rxa" = ( /obj/structure/flora/grass/jungle, /turf/simulated/floor/holofloor/grass{ @@ -122330,6 +121585,37 @@ name = "dirt" }, /area/horizon/holodeck/source_moghes) +"rxh" = ( +/obj/machinery/light, +/obj/structure/flora/ausbushes/sparsegrass, +/obj/machinery/portable_atmospherics/hydroponics/soil, +/turf/simulated/floor/grass/no_edge, +/area/horizon/service/hydroponics/garden) +"rxi" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black, +/obj/effect/floor_decal/corner/yellow, +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/reactor/supermatter/waste) +"rxl" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance{ + dir = 4; + req_one_access = list(12,19) + }, +/turf/simulated/floor, +/area/horizon/hallway/primary/deck_3/central) "rxn" = ( /obj/structure/table/reinforced/steel, /obj/item/device/flashlight/lamp, @@ -122348,10 +121634,37 @@ /obj/machinery/computer/shuttle_control/multi/distress, /turf/simulated/floor/shuttle/black, /area/shuttle/distress) -"rxz" = ( -/obj/effect/map_effect/window_spawner/full/reinforced/grille/firedoor, -/turf/simulated/floor/plating, -/area/engineering/bluespace_drive) +"rxr" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden, +/obj/machinery/light, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_3/port/docks) +"rxw" = ( +/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/horizon/shuttle/quark/cargo_hold) "rxE" = ( /obj/structure/window/shuttle/unique/mercenary/small{ icon_state = "5,13"; @@ -122368,38 +121681,63 @@ "rxJ" = ( /turf/simulated/floor/tiled, /area/horizon/security/office) -"rxV" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/white, -/area/medical/ors) -"rxY" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - icon_state = "1-2" +"rxK" = ( +/obj/machinery/alarm/east, +/obj/effect/floor_decal/spline/plain{ + dir = 6 }, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/corner/dark_green, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/starboard) -"ryb" = ( -/obj/machinery/telecomms/bus/preset_two, -/turf/simulated/floor/bluegrid, -/area/tcommsat/chamber) -"rye" = ( -/obj/random/pottedplant, +/turf/simulated/floor/carpet/rubber, +/area/horizon/engineering/reactor/supermatter/monitoring) +"rxT" = ( +/obj/machinery/atmospherics/pipe/manifold/visible, +/obj/machinery/light, +/obj/effect/floor_decal/corner/yellow, /obj/effect/floor_decal/corner/dark_blue{ - dir = 9 + dir = 8 + }, +/obj/structure/sign/nosmoking_1{ + pixel_y = -32 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/atmos) +"rxU" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/structure/cable/orange{ + icon_state = "4-8" + }, +/obj/structure/lattice/catwalk/indoor, +/turf/simulated/floor/plating, +/area/horizon/engineering/reactor/indra/mainchamber) +"ryc" = ( +/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 }, /turf/simulated/floor/tiled, -/area/bridge/upperdeck) -"ryj" = ( -/obj/effect/floor_decal/industrial/outline/security, -/obj/machinery/suit_cycler/security/prepared, -/turf/simulated/floor/tiled/dark/full, -/area/storage/eva) +/area/horizon/hallway/primary/deck_3/central) +"ryl" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 5 + }, +/obj/structure/sign/directions/com{ + dir = 4; + pixel_y = 32 + }, +/obj/machinery/light/floor{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_3/port) "ryn" = ( /obj/machinery/light/small{ dir = 8 @@ -122410,16 +121748,22 @@ /obj/effect/decal/cleanable/dirt, /turf/unsimulated/floor, /area/centcom/legion) -"ryt" = ( -/obj/effect/decal/cleanable/cobweb2, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/portable_atmospherics/canister/air/airlock, -/obj/machinery/atmospherics/portables_connector{ - dir = 8 +"rys" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 4 }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/maintenance/deck_three/aft/starboard) +/obj/machinery/airlock_sensor{ + pixel_y = -24; + dir = 1 + }, +/obj/effect/map_effect/marker/airlock{ + master_tag = "sccv_intrepid_starboard"; + name = "sccv_intrepid_starboard"; + req_one_access = null + }, +/turf/simulated/floor/plating, +/area/horizon/shuttle/intrepid/starboard_compartment) "ryv" = ( /obj/item/storage/belt/utility/very_full, /obj/item/storage/belt/utility/very_full, @@ -122438,41 +121782,22 @@ }, /turf/simulated/floor/shuttle/black, /area/shuttle/hapt) -"ryA" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/maintenance/engineering) -"ryB" = ( -/obj/machinery/atmospherics/pipe/simple/visible/green{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/engineering/atmos/air) "ryE" = ( /obj/effect/floor_decal/industrial/warning/corner{ dir = 4 }, /turf/simulated/floor/reinforced/airless, /area/horizon/exterior) -"ryI" = ( -/obj/structure/disposalpipe/up{ - dir = 4 +"ryK" = ( +/obj/structure/sink{ + pixel_y = 1; + dir = 8; + pixel_x = -15 }, -/obj/structure/railing/mapped, -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 10 - }, -/turf/simulated/floor/plating, -/area/maintenance/aft) +/obj/effect/floor_decal/corner/mauve/diagonal, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled, +/area/horizon/rnd/xenobiology) "ryL" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/floor_decal/corner/grey/full{ @@ -122480,6 +121805,27 @@ }, /turf/unsimulated/floor, /area/antag/raider) +"ryM" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 5 + }, +/obj/structure/table/stone/marble, +/obj/item/storage/box/tea{ + pixel_x = -9; + pixel_y = 8 + }, +/obj/item/storage/box/tea/jaekseol{ + pixel_y = 8 + }, +/obj/item/storage/box/tea/tieguanyin{ + pixel_x = 10; + pixel_y = 8 + }, +/obj/item/reagent_containers/glass/beaker/teapot/lidded{ + pixel_y = -8 + }, +/turf/simulated/floor/marble/dark, +/area/horizon/command/bridge/minibar) "ryO" = ( /obj/effect/floor_decal/industrial/warning{ dir = 8 @@ -122487,54 +121833,187 @@ /obj/effect/decal/cleanable/dirt, /turf/unsimulated/floor, /area/antag/raider) -"rza" = ( -/obj/effect/floor_decal/industrial/warning{ +"ryP" = ( +/obj/structure/table/rack/retail_shelf, +/obj/random/loot{ + pixel_x = 8; + pixel_y = 12 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/random/loot{ + pixel_x = -7; + pixel_y = 12 + }, +/obj/random/loot{ + pixel_x = -7; + pixel_y = -2 + }, +/obj/random/loot{ + pixel_x = 8; + pixel_y = -2 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/operations/commissary) +"ryQ" = ( +/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/horizon/hangar/auxiliary) +"ryR" = ( +/obj/effect/floor_decal/corner_wide/purple{ dir = 6 }, -/obj/item/material/shard, -/turf/simulated/floor/plating, -/area/maintenance/engineering) -"rzf" = ( -/obj/structure/cable{ +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/effect/floor_decal/corner_wide/purple/diagonal, +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/test_range) +"ryS" = ( +/obj/structure/plasticflaps/airtight, +/obj/machinery/door/airlock/medical{ + dir = 1; + name = "Morgue"; + req_one_access = list(6,33) + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/full, +/area/horizon/medical/morgue) +"ryU" = ( +/obj/structure/cable/green{ icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/platform_stairs/south_north_solo, -/turf/simulated/floor/plating, -/area/maintenance/research_port) +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 7 + }, +/turf/simulated/floor/wood, +/area/horizon/service/chapel/main) +"ryW" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/computer/general_air_control/large_tank_control/terminal{ + name = "Hydrogen Supply Monitor"; + output_tag = "H2_out_portthruster"; + sensors = list("h_sensor"="Tank") + }, +/obj/effect/floor_decal/industrial/outline/firefighting_closet, +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/atmos/propulsion/starboard) +"ryY" = ( +/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 2; + icon_state = "shutter0"; + id = "LCKDshutters"; + name = "Medical Lockdown Shutters"; + opacity = 0 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/medical/hallway/upper) +"rzb" = ( +/obj/machinery/hologram/holopad, +/turf/simulated/floor/carpet, +/area/horizon/crew/journalistoffice) "rzg" = ( /obj/effect/step_trigger/thrower/shuttle/west, /turf/space/transit/east, /area/template_noop) +"rzh" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 5 + }, +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/corner/black{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_2/central) +"rzi" = ( +/turf/simulated/wall, +/area/horizon/maintenance/deck_2/wing/port) +"rzj" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/corner/purple{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/horizon/service/custodial) +"rzl" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/structure/railing/mapped, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/bluespace_drive) "rzo" = ( /obj/effect/floor_decal/corner/paleblue{ dir = 9 }, /turf/unsimulated/floor, /area/centcom/holding) -"rzu" = ( -/obj/structure/platform{ +"rzr" = ( +/obj/structure/shuttle_part/scc_space_ship{ + icon_state = "d3-5-f" + }, +/obj/effect/landmark/entry_point/aft{ + name = "aft, starboard maintenance" + }, +/turf/simulated/wall/shuttle/scc_space_ship/cardinal, +/area/horizon/maintenance/deck_2/wing/port) +"rzx" = ( +/obj/effect/floor_decal/industrial/warning{ dir = 4 }, -/turf/simulated/floor/lino, -/area/chapel/main) -"rzA" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ +/obj/effect/floor_decal/industrial/warning{ dir = 8 }, -/turf/simulated/floor/wood, -/area/journalistoffice) -"rzB" = ( -/obj/machinery/newscaster/east, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 4 +/obj/structure/shuttle_part/scc/scout{ + density = 0; + icon_state = "2,3"; + outside_part = 0 }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 +/obj/structure/ship_weapon_dummy, +/obj/machinery/light{ + dir = 1 }, +/turf/simulated/floor/reinforced, +/area/horizon/shuttle/canary) +"rzz" = ( +/obj/structure/bed/stool/chair/padded/red{ + dir = 1 + }, +/obj/effect/floor_decal/spline/fancy/wood/corner, /turf/simulated/floor/wood, -/area/crew_quarters/lounge/secondary) +/area/horizon/service/dining_hall) "rzC" = ( /obj/machinery/door/airlock{ dir = 4; @@ -122553,64 +122032,52 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/tiled/full, /area/horizon/security/washroom) +"rzD" = ( +/obj/effect/map_effect/window_spawner/full/reinforced/polarized/firedoor{ + id = "chapel_outer" + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/service/chapel/main) +"rzE" = ( +/obj/effect/floor_decal/industrial/outline/service, +/turf/simulated/floor/tiled, +/area/horizon/operations/warehouse) "rzH" = ( /turf/unsimulated/floor/plating, /area/antag/burglar) -"rzL" = ( -/obj/machinery/power/apc/low/east, -/obj/structure/cable/green{ - icon_state = "0-8" +"rzI" = ( +/obj/machinery/firealarm/south, +/obj/effect/floor_decal/corner/dark_green/full, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_3/port) +"rzJ" = ( +/obj/structure/cable{ + icon_state = "0-4" }, -/obj/effect/floor_decal/corner/grey/diagonal{ - dir = 8 - }, -/obj/structure/engineer_maintenance/electric{ - dir = 4 - }, -/obj/structure/engineer_maintenance/pipe{ +/obj/machinery/power/terminal, +/obj/structure/table/rack, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ dir = 1 }, -/turf/simulated/floor/tiled/white, -/area/horizon/cafeteria) -"rzQ" = ( -/obj/machinery/floodlight, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 +/obj/machinery/light/colored/blue{ + dir = 8 }, -/obj/effect/floor_decal/corner/lime{ +/obj/machinery/door/window/eastright, +/obj/effect/floor_decal/corner/dark_blue{ dir = 9 }, -/turf/simulated/floor/tiled, -/area/medical/emergency_storage) +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/shuttle/canary) "rzT" = ( /obj/machinery/atmospherics/pipe/simple/visible/green{ dir = 9 }, /turf/space/dynamic, /area/horizon/exterior) -"rzV" = ( -/obj/machinery/disposal/deliveryChute, -/obj/machinery/door/window/eastleft{ - dir = 2; - req_access = list(55) - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/blast/regular/open{ - dir = 8; - fail_secure = 1; - id = "xenobio_e"; - name = "Cell Containment Blast Door" - }, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark/full, -/area/rnd/xenobiology) "rzW" = ( /obj/effect/map_effect/window_spawner/full/reinforced/indestructible, /obj/structure/sign/double/map/left{ @@ -122620,52 +122087,71 @@ }, /turf/unsimulated/floor/plating, /area/antag/loner) -"rAa" = ( +"rzX" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/corner/dark_blue/diagonal{ + dir = 8 + }, +/obj/structure/platform_deco{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet/west, +/turf/simulated/floor/tiled, +/area/horizon/command/bridge/upperdeck) +"rAh" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lime/full{ + dir = 8 + }, +/obj/machinery/portable_atmospherics/canister/oxygen, /obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/atmospherics/binary/pump/fuel{ - name = "Canister to Fuel Tank"; - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/mining) -"rAb" = ( -/obj/structure/shuttle/engine/propulsion/burst/left{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/shuttle/escape_pod/pod2) -"rAd" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/structure/window/borosilicate/reinforced{ - dir = 4 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/reinforced, -/area/rnd/test_range) -"rAg" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/effect/floor_decal/spline/plain/corner{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/shuttle/intrepid/buffet) +/turf/simulated/floor/tiled, +/area/horizon/medical/emergency_storage) "rAk" = ( /turf/unsimulated/floor{ icon_state = "wood" }, /area/centcom/legion) -"rAs" = ( -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/machinery/alarm/north, +"rAl" = ( +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/obj/machinery/light/small{ + dir = 8 + }, /turf/simulated/floor/plating, -/area/maintenance/wing/port/far) +/area/horizon/maintenance/substation/operations) +"rAm" = ( +/obj/machinery/door/airlock/external, +/obj/effect/map_effect/marker/airlock/docking{ + landmark_tag = "nav_horizon_dock_deck_3_port_4"; + master_tag = "airlock_horizon_dock_deck_3_port_4"; + name = "airlock_horizon_dock_deck_3_port_4" + }, +/obj/effect/map_effect/marker_helper/airlock/exterior, +/obj/machinery/access_button{ + pixel_x = -28 + }, +/turf/simulated/floor/plating, +/area/horizon/hallway/primary/deck_3/starboard/docks) +"rAr" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 5 + }, +/obj/machinery/power/apc/hyper/north, +/obj/structure/cable/green{ + icon_state = "0-8" + }, +/obj/random/pottedplant, +/turf/simulated/floor/tiled/dark, +/area/horizon/ai/upload_foyer) "rAw" = ( /obj/effect/overlay/palmtree_l, /obj/effect/overlay/coconut, @@ -122687,23 +122173,32 @@ /obj/effect/floor_decal/industrial/warning/corner, /turf/simulated/floor/tiled/dark, /area/shuttle/mercenary) +"rAH" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/red{ + dir = 9 + }, +/turf/simulated/wall/shuttle/unique/scc/mining{ + icon_state = "7,6" + }, +/area/horizon/shuttle/mining) +"rAI" = ( +/obj/machinery/computer/ship/engines/cockpit{ + pixel_x = 27 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/shuttle/mining) "rAL" = ( /obj/structure/holostool{ dir = 8 }, /turf/simulated/floor/holofloor/lino, /area/horizon/holodeck/source_theatre) -"rAM" = ( -/obj/effect/floor_decal/corner/green/full{ - dir = 8 - }, -/obj/structure/table/standard, -/obj/machinery/power/apc/low/north, -/obj/structure/cable/green{ - icon_state = "0-2" - }, -/turf/simulated/floor/tiled/white, -/area/horizon/crew_quarters/fitness/showers) "rAP" = ( /obj/effect/floor_decal/corner/red{ dir = 9 @@ -122721,114 +122216,55 @@ icon_state = "wood" }, /area/centcom/control) -"rAX" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/platform_stairs/full/east_west_cap, -/obj/structure/platform/cutout{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/engineering) -"rBe" = ( -/obj/effect/floor_decal/corner/yellow{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/engineering/locker_room) -"rBf" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/machinery/atmospherics/pipe/simple/visible/green, -/obj/structure/tank_wall/nitrogen{ - icon_state = "n14" - }, -/turf/simulated/floor/plating, -/area/engineering/atmos/air) -"rBj" = ( -/obj/structure/bed, -/turf/simulated/floor/reinforced, -/area/rnd/isolation_c) -"rBk" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/floor_decal/corner_wide/green{ - dir = 6 - }, -/obj/machinery/computer/ship/navigation{ +"rAV" = ( +/turf/simulated/wall/r_wall, +/area/horizon/rnd/xenoarch/isolation_c) +"rAY" = ( +/obj/machinery/camera/network/engineering{ + c_tag = "Engineering - Atmospherics Control 1"; dir = 1 }, -/turf/simulated/floor/tiled/white, -/area/medical/ward) -"rBp" = ( -/obj/structure/table/steel, -/obj/item/device/flashlight/lamp, -/turf/simulated/floor/reinforced, -/area/rnd/isolation_c) -"rBs" = ( -/obj/structure/railing/mapped{ +/obj/effect/floor_decal/corner/yellow, +/obj/effect/floor_decal/corner/dark_blue{ dir = 8 }, -/obj/structure/platform/ledge, -/obj/structure/platform_deco/ledge{ - dir = 5 - }, -/obj/structure/platform/ledge{ +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ dir = 4 }, -/obj/structure/platform_deco/ledge{ - dir = 5 +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/atmos) +"rAZ" = ( +/turf/simulated/floor/grass/no_edge, +/area/horizon/service/hydroponics/lower) +"rBm" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 10 }, -/turf/simulated/open, -/area/horizon/hallway/deck_three/primary/central) -"rBv" = ( -/obj/machinery/hologram/holopad, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/simulated/floor/carpet, -/area/crew_quarters/heads/hop/xo) -"rBw" = ( -/obj/structure/cable/green{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/industrial/warning{ - dir = 9 +/obj/machinery/light/floor, +/obj/structure/railing/mapped, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_2/central) +"rBq" = ( +/obj/structure/viewport/zavod, +/obj/machinery/door/blast/regular/open{ + dir = 8; + id = "shutters_deck3_longbow"; + name = "Safety Blast Door" }, /turf/simulated/floor/tiled/dark/full, -/area/engineering/bluespace_drive) +/area/horizon/weapons/longbow) +"rBt" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/atmos/propulsion/starboard) "rBx" = ( /obj/effect/floor_decal/corner/red/full{ dir = 8 }, /turf/simulated/floor/holofloor/tiled/dark, /area/horizon/holodeck/source_boxingcourt) -"rBA" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/maintenance{ - dir = 4; - name = "Deck 3 Medical Maintenance"; - req_access = list(5) - }, -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 4; - icon_state = "shutter0"; - id = "LCKDshutters"; - name = "Medical Lockdown Shutters"; - opacity = 0 - }, -/turf/simulated/floor, -/area/hallway/medical/upper) "rBC" = ( /obj/structure/bed/stool/chair/shuttle{ dir = 4 @@ -122838,214 +122274,103 @@ }, /turf/simulated/floor/tiled/dark, /area/shuttle/legion) -"rBI" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/airlock/external{ - dir = 1; - frequency = 1380; - icon_state = "door_locked"; - id_tag = "mining_shuttle_dock_doors"; - req_access = list(13) - }, -/obj/structure/plasticflaps/airtight, +"rBF" = ( +/obj/machinery/vending/frontiervend, +/obj/effect/floor_decal/industrial/hatch/grey, /turf/simulated/floor/tiled/full, -/area/hangar/operations) -"rBK" = ( -/obj/structure/railing/mapped{ - dir = 1 +/area/horizon/hallway/primary/deck_3/port) +"rBT" = ( +/obj/structure/cable{ + icon_state = "1-2" }, -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/structure/coatrack, -/obj/effect/floor_decal/corner/black/full{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/operations/lower/machinist) -"rBR" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_research{ - dir = 4; - name = "Expedition EVA Storage"; - req_access = list(47) - }, -/turf/simulated/floor/tiled/full, -/area/storage/eva) -"rBS" = ( -/turf/simulated/wall/r_wall, -/area/operations/lower/machinist) -"rBY" = ( -/turf/simulated/wall, -/area/chapel/main) -"rBZ" = ( -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 9 - }, -/obj/random/pottedplant, -/turf/simulated/floor/tiled/dark, -/area/bridge/controlroom) -"rCb" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/structure/railing/mapped, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/atmospherics/portables_connector{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/engine_room/rust) -"rCc" = ( -/obj/structure/table/standard, -/obj/item/storage/box/fancy/tray{ - name = "dissection tray" - }, -/obj/machinery/alarm/west, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology/dissection) -"rCe" = ( -/obj/structure/shuttle_part/scc_space_ship{ - icon_state = "d2-1" - }, -/turf/simulated/wall, -/area/maintenance/wing/cargo_compartment) -"rCl" = ( -/obj/machinery/atmospherics/unary/vent_pump/siphon/on/atmos{ - dir = 1; - id_tag = "n_out" - }, -/turf/simulated/floor/reinforced/nitrogen, -/area/engineering/atmos/air) -"rCn" = ( -/obj/effect/floor_decal/corner/black/full{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/hangar/intrepid) -"rCo" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/light/small/emergency{ dir = 4 }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/lattice/catwalk/indoor/grate, /turf/simulated/floor/plating, -/area/operations/lobby) -"rCq" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, +/area/horizon/maintenance/deck_1/operations/starboard/far) +"rBX" = ( /obj/structure/cable/green{ - icon_state = "4-8" + icon_state = "1-2" }, +/obj/effect/floor_decal/corner_wide/yellow/full, /turf/simulated/floor/tiled, -/area/hallway/primary/aft) -"rCw" = ( -/obj/effect/floor_decal/spline/fancy, -/obj/item/modular_computer/console/preset/engineering{ - dir = 1 - }, -/obj/structure/railing/mapped, -/turf/simulated/floor/carpet/rubber, -/area/bridge/controlroom) -"rCy" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/rnd/hallway/secondary) -"rCA" = ( -/obj/effect/floor_decal/spline/fancy/wood, -/obj/machinery/light, -/obj/effect/floor_decal/spline/fancy/wood/corner{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/machinery/firealarm/south, -/obj/machinery/button/remote/blast_door{ - dir = 8; - id = "lounge_window_shutters"; - name = "Viewing Shutters"; - pixel_x = 13; - pixel_y = -31 - }, -/turf/simulated/floor/wood, -/area/horizon/crew_quarters/lounge/bar) -"rCC" = ( -/obj/effect/floor_decal/spline/fancy/wood/corner{ +/area/horizon/engineering/hallway/aft) +"rCd" = ( +/turf/simulated/wall, +/area/horizon/hangar/control) +"rCf" = ( +/obj/structure/platform, +/obj/structure/closet/crate, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark, +/area/horizon/rnd/lab) +"rCk" = ( +/obj/structure/bed/stool/chair/office/light{ dir = 8 }, -/obj/structure/cable/green{ - icon_state = "1-4" +/obj/effect/landmark/start{ + name = "Lab Assistant" }, /obj/effect/floor_decal/spline/fancy/wood{ dir = 5 }, -/turf/simulated/floor/wood, -/area/bridge/cciaroom) -"rCE" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenoarch_storage) -"rDa" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 8 - }, -/obj/machinery/firealarm/west, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/engineer_maintenance/electric, -/obj/structure/engineer_maintenance/pipe{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/heads/hor) -"rDb" = ( -/obj/machinery/button/remote/airlock{ - dir = 8; - id = "cryo_toilet_2"; - name = "Door Bolt Control"; - pixel_x = -24; - pixel_y = 6; - specialfunctions = 4 - }, -/obj/machinery/light/small{ +/obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 }, -/obj/effect/floor_decal/corner/green/diagonal, -/obj/structure/toilet{ - dir = 1; - pixel_y = -1 +/turf/simulated/floor/wood, +/area/horizon/rnd/conference) +"rCu" = ( +/obj/machinery/door/firedoor, +/obj/effect/map_effect/door_helper/unres{ + dir = 1 }, -/turf/simulated/floor/tiled/white, -/area/horizon/crew_quarters/cryo/washroom) +/obj/machinery/door/airlock/glass_engineering{ + dir = 1; + name = "Engineering Hallway"; + req_access = list(10) + }, +/turf/simulated/floor/tiled/full, +/area/horizon/engineering/lobby) +"rCx" = ( +/obj/structure/cable/orange{ + icon_state = "2-8" + }, +/turf/simulated/floor/plating, +/area/horizon/engineering/reactor/supermatter/mainchamber) +"rCL" = ( +/obj/structure/cable/orange{ + icon_state = "1-4" + }, +/obj/effect/floor_decal/industrial/hatch/red, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/bluespace_drive) +"rCM" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 9 + }, +/obj/structure/closet/toolcloset, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled, +/area/horizon/storage/primary) +"rCR" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/corner_wide/yellow{ + dir = 10 + }, +/obj/machinery/light, +/turf/simulated/floor/tiled, +/area/horizon/engineering/lobby) "rDi" = ( /obj/effect/shuttle_landmark/horizon/exterior/deck_1/aft, /turf/template_noop, @@ -123056,16 +122381,20 @@ }, /turf/simulated/open/airless, /area/template_noop) -"rDs" = ( -/obj/machinery/power/apc/critical/north, +"rDk" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ - icon_state = "0-8" + d1 = 1; + d2 = 2; + icon_state = "1-2" }, -/turf/simulated/floor/bluegrid{ - name = "cooled mainframe floor"; - temperature = 278 +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 }, -/area/turret_protected/ai) +/turf/simulated/floor/wood, +/area/horizon/service/bar) "rDw" = ( /obj/machinery/atmospherics/unary/vent_pump/high_volume{ dir = 8; @@ -123084,53 +122413,57 @@ }, /turf/simulated/floor/tiled/dark, /area/shuttle/mercenary) -"rDy" = ( -/obj/effect/floor_decal/corner_wide/yellow{ - dir = 9 +"rDx" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/floor_decal/spline/plain{ + dir = 5 + }, +/turf/simulated/floor/carpet/rubber, +/area/horizon/engineering/reactor/supermatter/monitoring) +"rDz" = ( +/obj/effect/floor_decal/corner/dark_green/diagonal, +/obj/structure/bed/stool/chair, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_3/port) +"rDD" = ( +/obj/machinery/conveyor{ + id = "cargo_1" + }, +/obj/machinery/door/firedoor, +/obj/structure/plasticflaps, +/obj/machinery/door/airlock/external{ + dir = 1; + frequency = 1380; + icon_state = "door_locked"; + id_tag = "cargo_shuttle_dock_airlock"; + locked = 1; + name = "Cargo Shuttle"; + req_access = list(13,31) }, /turf/simulated/floor/tiled, -/area/engineering/bluespace_drive) -"rDB" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/junction{ +/area/horizon/operations/loading) +"rDF" = ( +/obj/structure/table/reinforced/wood, +/obj/item/storage/slide_projector, +/turf/simulated/floor/carpet, +/area/horizon/command/heads/captain) +"rDI" = ( +/obj/machinery/atmospherics/binary/pump{ dir = 8; - icon_state = "pipe-j2" + name = "Connector to Cold Loop" }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology/xenological) -"rDE" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/black{ - dir = 4 - }, -/obj/machinery/meter, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 +/obj/effect/floor_decal/corner/dark_blue{ + dir = 8 }, +/obj/effect/floor_decal/corner/yellow, /turf/simulated/floor/tiled/dark, -/area/engineering/atmos/propulsion) +/area/horizon/engineering/atmos/turbine) "rDL" = ( /obj/effect/floor_decal/spline/plain/corner, /turf/simulated/floor/exoplanet/barren/raskara, /area/centcom/shared_dream) -"rDO" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 1 - }, -/obj/machinery/keycard_auth{ - dir = 1; - pixel_y = 30 - }, -/obj/structure/bed/stool/chair/padded/purple, -/turf/simulated/floor/wood, -/area/crew_quarters/heads/hor) "rDP" = ( /obj/machinery/atmospherics/pipe/simple/hidden/yellow, /obj/machinery/atmospherics/pipe/simple/visible/purple{ @@ -123145,67 +122478,123 @@ }, /turf/space/dynamic, /area/horizon/exterior) -"rEg" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ +"rDZ" = ( +/obj/machinery/camera/network/third_deck{ + c_tag = "Third Deck - Starboard Dock Starboard"; + dir = 1 + }, +/obj/effect/floor_decal/corner/dark_blue{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ dir = 4 }, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_3/port/docks) +"rEb" = ( +/obj/machinery/door/airlock/maintenance{ + dir = 4; + req_access = list(12); + welded = 1 + }, +/obj/item/tape/engineering{ + icon_state = "engineering_door" + }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/obj/structure/lattice/catwalk/indoor/grate, -/turf/simulated/floor/plating, -/area/hallway/primary/central_one) -"rEi" = ( -/obj/effect/floor_decal/corner/green/full{ - dir = 8 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/vending/lavatory, -/turf/simulated/floor/tiled/white, -/area/horizon/crew_quarters/cryo/washroom) -"rEl" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 5 - }, -/obj/machinery/computer/ship/navigation, -/obj/machinery/alarm/north, -/turf/simulated/floor/tiled/dark, -/area/hangar/control) -"rEq" = ( -/obj/effect/floor_decal/corner_wide/paleblue{ - dir = 6 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/light/floor{ +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/heads/cmo) -"rEv" = ( -/obj/effect/floor_decal/spline/fancy/wood/cee{ +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/workshop) +"rEe" = ( +/obj/machinery/atmospherics/pipe/simple/visible/red{ + dir = 8 + }, +/obj/machinery/meter, +/obj/effect/floor_decal/corner_wide/black{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/atmos/propulsion) +"rEo" = ( +/obj/effect/map_effect/window_spawner/full/shuttle/scc{ + spawn_firedoor = 1; + spawn_grille = 1 + }, +/obj/machinery/door/blast/shutters/open{ + dir = 8; + id = "intrepid_bay_windows"; + name = "Intrepid Shutter" + }, +/turf/simulated/floor/plating, +/area/horizon/shuttle/intrepid/starboard_compartment) +"rEB" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/wing/port/far) +"rEM" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/effect/floor_decal/corner/brown/full{ dir = 1 }, -/obj/structure/flora/ausbushes/lavendergrass, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = -14 +/turf/simulated/floor/tiled, +/area/horizon/operations/mining_main/refinery) +"rEN" = ( +/obj/machinery/mineral/equipment_vendor, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/operations/mining_main/refinery) +"rEP" = ( +/obj/machinery/holosign/service{ + id = "commissary" }, -/obj/structure/window/reinforced{ +/obj/structure/cable/green{ + icon_state = "4-8"; + d1 = 4; + d2 = 8 + }, +/obj/machinery/door/firedoor{ + req_one_access = list(24,11,67,73); + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/airlock/glass_mining{ dir = 4; - pixel_y = -10 + name = "Commissary"; + id_tag = "horizon_commissary_door" }, -/obj/structure/window/reinforced{ - dir = 8; - pixel_y = -10 - }, -/turf/simulated/floor/grass/no_edge, -/area/horizon/hallway/deck_three/primary/starboard) -"rEG" = ( -/turf/simulated/wall/r_wall, -/area/server) +/turf/simulated/floor/tiled/full, +/area/horizon/operations/commissary) "rEQ" = ( /obj/structure/sign/pods{ desc = "A direction sign which reads 'DROPPODS'."; @@ -123221,19 +122610,35 @@ /obj/effect/decal/cleanable/dirt, /turf/unsimulated/floor, /area/antag/jockey) -"rEZ" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 +"rEU" = ( +/obj/structure/bed/stool/chair/sofa/corner/concave/brown{ + dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 +/obj/machinery/newscaster/west, +/turf/simulated/floor/wood, +/area/horizon/medical/psych) +"rEY" = ( +/obj/structure/grille, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id = "bridge blast"; + name = "Bridge Blast Doors"; + opacity = 0 }, -/obj/structure/disposalpipe/segment{ - icon_state = "pipe-c" +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/shutters/open{ + dir = 2; + id = "shutters_deck3_bridgesafety"; + name = "Safety Shutter" }, -/turf/simulated/floor/tiled/white, -/area/horizon/kitchen) +/obj/effect/landmark/entry_point/fore{ + name = "fore, command break room" + }, +/obj/structure/window/shuttle/scc_space_ship/cardinal, +/turf/simulated/floor/plating, +/area/horizon/command/bridge/minibar) "rFa" = ( /obj/machinery/acting/changer, /turf/unsimulated/floor/marble, @@ -123251,42 +122656,18 @@ }, /turf/simulated/floor/exoplanet/grass, /area/centcom/shared_dream) -"rFq" = ( -/obj/machinery/smartfridge/secure/medbay{ - pixel_y = 1; - req_one_access = list(7) +"rFo" = ( +/obj/structure/shuttle/engine/propulsion/burst/right{ + dir = 4 }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/light, -/obj/effect/floor_decal/corner/mauve{ - dir = 10 +/turf/simulated/floor/plating, +/area/horizon/shuttle/escape_pod/pod4) +"rFp" = ( +/obj/effect/landmark/entry_point/starboard{ + name = "starboard, d1 maintenance" }, -/turf/simulated/floor/tiled/white, -/area/rnd/chemistry) -"rFr" = ( -/obj/structure/table/standard, -/obj/machinery/light, -/obj/effect/floor_decal/corner_wide/green{ - dir = 10 - }, -/obj/item/bodybag/cryobag{ - pixel_x = 13; - pixel_y = 10 - }, -/obj/item/bodybag/cryobag{ - pixel_x = 13; - pixel_y = 8 - }, -/obj/item/bodybag/cryobag{ - pixel_x = 13; - pixel_y = 5 - }, -/obj/item/bodybag/cryobag{ - pixel_x = 13; - pixel_y = 2 - }, -/turf/simulated/floor/tiled/white, -/area/medical/main_storage) +/turf/simulated/wall/shuttle/scc_space_ship/cardinal, +/area/horizon/maintenance/deck_1/wing/starboard/far) "rFu" = ( /obj/structure/flora/pottedplant{ icon_state = "plant-22"; @@ -123296,66 +122677,99 @@ icon_state = "dark_preview" }, /area/centcom/holding) -"rFM" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 5 - }, -/turf/simulated/floor/reinforced/airless, -/area/engineering/engine_room/rust) -"rFO" = ( +"rFz" = ( /obj/structure/cable/green{ icon_state = "4-8" }, -/obj/effect/floor_decal/corner/lime{ - dir = 5 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 }, -/obj/machinery/button/remote/blast_door{ - id = "shutters_deck1_morgue"; - name = "Viewing Shutters"; - pixel_y = 25 +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/airlock/glass_mining{ + dir = 4; + name = "Mail Sorting"; + req_one_access = list(26,31,67) + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/full, +/area/horizon/operations/mail_room) +"rFA" = ( +/obj/structure/bed/padded, +/obj/item/bedsheet/black, +/obj/structure/railing/mapped{ dir = 1 }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/port/far) +"rFB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/emergency{ + dir = 4 + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/atmospherics/pipe/simple/hidden/aux{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 9 + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/auxatmos) +"rFC" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/horizon/engineering/atmos/air) +"rFP" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/reactor/supermatter/mainchamber) +"rFV" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/obj/structure/platform_deco{ + dir = 4 + }, +/obj/structure/platform_deco{ dir = 1 }, -/turf/simulated/floor/tiled, -/area/medical/morgue/lower) -"rFW" = ( -/obj/effect/floor_decal/corner/dark_blue{ +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 6 }, -/turf/simulated/floor/tiled/dark, -/area/horizon/longbow) -"rGc" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 }, -/turf/simulated/floor/tiled/white, -/area/medical/gen_treatment) +/obj/effect/floor_decal/corner/dark_blue/diagonal{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/horizon/command/bridge/upperdeck) +"rFY" = ( +/obj/structure/grille, +/obj/structure/window/shuttle/scc_space_ship, +/obj/machinery/door/firedoor, +/obj/effect/landmark/entry_point/starboard{ + name = "starboard, operations office aux" + }, +/turf/simulated/floor/plating, +/area/horizon/operations/office_aux) "rGd" = ( /obj/effect/floor_decal/corner/paleblue{ dir = 10 }, /turf/unsimulated/floor, /area/centcom/bar) -"rGf" = ( -/obj/effect/floor_decal/corner_wide/yellow{ - dir = 6 - }, -/obj/structure/sign/radiation{ - pixel_x = 32 - }, -/turf/simulated/floor/tiled, -/area/engineering/engine_room/rust) -"rGg" = ( -/obj/structure/bed/stool/chair/padded/brown{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/heads/chief) "rGh" = ( /obj/structure/dueling_table/no_collide{ icon_state = "bottom_right" @@ -123368,89 +122782,214 @@ }, /turf/simulated/floor/holofloor/wood, /area/horizon/holodeck/source_battlemonsters) -"rGk" = ( -/obj/machinery/door/airlock{ - dir = 4; - name = "Restroom" +"rGi" = ( +/obj/machinery/atmospherics/binary/pump/on{ + dir = 8; + name = "Distro to Starboard Docks"; + target_pressure = 200 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor/plating, +/area/horizon/security/checkpoint2) +"rGj" = ( +/obj/effect/floor_decal/corner/brown{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 +/turf/simulated/floor/tiled, +/area/horizon/operations/mining_main/refinery) +"rGm" = ( +/obj/effect/floor_decal/corner/dark_blue/diagonal, +/obj/structure/engineer_maintenance/pipe{ + dir = 1 }, -/obj/machinery/door/firedoor{ - dir = 4 - }, -/turf/simulated/floor/tiled/full, -/area/bridge/bridge_crew) -"rGn" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/machinery/alarm/west{ - req_one_access = list(24,11,55) - }, -/turf/simulated/floor, -/area/horizon/maintenance/deck_three/aft/starboard) -"rGu" = ( -/obj/structure/table/standard, -/obj/structure/window/reinforced{ +/obj/structure/engineer_maintenance/electric{ dir = 8 }, -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/item/paper_bin, -/obj/item/pen, +/turf/simulated/floor/tiled/dark, +/area/horizon/command/bridge/aibunker) +"rGs" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/effect/floor_decal/corner_wide/green/diagonal, /turf/simulated/floor/tiled/white, -/area/medical/reception) +/area/horizon/medical/exam) "rGw" = ( /obj/machinery/door/firedoor, /obj/structure/window/shuttle/scc_space_ship/cardinal, /turf/simulated/floor/plating, -/area/outpost/research/anomaly_storage) -"rGB" = ( -/obj/effect/floor_decal/industrial/hatch/red, -/turf/simulated/floor/reinforced/airless, -/area/engineering/engine_room/rust) -"rGK" = ( -/obj/effect/floor_decal/industrial/outline/grey, -/obj/structure/closet/crate/freezer/rations, -/obj/item/storage/box/kitchen, -/turf/simulated/floor/plating, -/area/hangar/intrepid) -"rGO" = ( -/turf/simulated/floor/tiled/white, -/area/hallway/medical/upper) -"rGP" = ( -/obj/structure/table/wood, -/obj/item/modular_computer/laptop/preset/representative{ - pixel_x = -1; - pixel_y = 5 +/area/horizon/rnd/xenoarch/anomaly_storage) +"rGx" = ( +/obj/machinery/atmospherics/binary/pump{ + dir = 4; + name = "Oxygen to Connector" }, -/turf/simulated/floor/carpet, -/area/lawoffice/consular) +/turf/simulated/floor/plating, +/area/horizon/engineering/atmos/air) +"rGz" = ( +/obj/effect/floor_decal/corner/purple{ + dir = 6 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/railing/mapped, +/obj/structure/reagent_dispensers/watertank, +/obj/machinery/atmospherics/pipe/simple/hidden/red{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/service/custodial/disposals/deck_1) +"rGA" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance_hatch{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/port/far) +"rGC" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/full, +/area/horizon/hallway/primary/deck_1/central) +"rGF" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/effect/floor_decal/corner/mauve/diagonal, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/lab) +"rGG" = ( +/obj/structure/railing/mapped, +/turf/simulated/open, +/area/horizon/maintenance/deck_2/wing/port/near) +"rGL" = ( +/turf/simulated/floor/reinforced, +/area/horizon/rnd/xenoarch/isolation_c) "rGQ" = ( /obj/effect/floor_decal/corner/white{ dir = 5 }, /turf/simulated/floor/tiled/dark, /area/horizon/holodeck/source_pool) +"rGS" = ( +/obj/structure/grille, +/obj/machinery/door/firedoor, +/obj/structure/window/shuttle/scc_space_ship/cardinal, +/turf/simulated/floor/plating, +/area/horizon/security/checkpoint2) +"rGT" = ( +/obj/structure/bed/stool/chair/office/light, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/landmark{ + name = "borerstart" + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/gravity_gen) +"rGZ" = ( +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/effect/floor_decal/corner/mauve{ + dir = 6 + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/xenobiology) +"rHg" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 9 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/item/crowbar, +/obj/item/device/flashlight/heavy{ + pixel_y = 6 + }, +/obj/item/device/flashlight/heavy{ + pixel_y = 6 + }, +/obj/item/device/flashlight/heavy{ + pixel_y = 6 + }, +/obj/item/device/camera, +/obj/structure/table/steel, +/turf/simulated/floor/tiled/dark, +/area/horizon/security/checkpoint2) +"rHi" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance{ + dir = 4 + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/maintenance/substation/wing_starboard) "rHk" = ( /turf/simulated/wall/shuttle/unique/tcfl{ icon_state = "15,4" }, /area/shuttle/legion) -"rHr" = ( -/obj/machinery/conveyor{ +"rHn" = ( +/obj/structure/disposalpipe/segment{ dir = 4; - id = "cargo_1" + icon_state = "pipe-c" + }, +/obj/effect/floor_decal/corner/dark_blue/diagonal, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/structure/cable/green{ + icon_state = "4-8" }, -/obj/structure/plasticflaps, /turf/simulated/floor/tiled, -/area/operations/loading) +/area/horizon/command/bridge/bridge_crew) +"rHt" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/wing/starboard) +"rHz" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/obj/structure/bed/stool/chair/padded/brown{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/horizon/engineering/hallway/interior) +"rHA" = ( +/obj/effect/floor_decal/corner/grey/diagonal, +/obj/effect/floor_decal/spline/plain{ + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/white, +/area/horizon/service/kitchen) "rHB" = ( /obj/structure/shuttle_part/ert{ icon_state = "2,4"; @@ -123458,56 +122997,57 @@ }, /turf/unsimulated/floor/plating, /area/centcom/specops) -"rHD" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/machinery/light/spot{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/engine_room) -"rHF" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - icon_state = "2-4" - }, -/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) +"rHM" = ( +/obj/effect/floor_decal/corner_wide/yellow{ + dir = 9 + }, +/obj/machinery/power/apc/super/critical/west, +/obj/structure/cable/orange{ + icon_state = "0-2" + }, +/obj/machinery/power/sensor{ + name = "Powernet Sensor - INDRA Reactor Containment"; + name_tag = "INDRA Reactor Containment" + }, +/turf/simulated/floor/tiled, +/area/horizon/engineering/reactor/indra/mainchamber) +"rHS" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/atmospherics/binary/pump{ + dir = 4; + name = "Waste to Filtering"; + use_power = 1 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/atmos) +"rHV" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/atmospherics/pipe/simple/visible/green, +/obj/structure/tank_wall/nitrogen{ + icon_state = "n14" + }, +/turf/simulated/floor/plating, +/area/horizon/engineering/atmos/air) +"rHW" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/effect/floor_decal/corner/dark_green{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_2/starboard) "rHY" = ( /turf/simulated/wall/shuttle/unique/ert{ icon_state = "7,0" }, /area/shuttle/specops) -"rIb" = ( -/obj/structure/platform/cutout, -/obj/structure/platform_stairs/full/east_west_cap{ - dir = 8 - }, -/obj/structure/platform{ - dir = 1 - }, +"rIe" = ( +/obj/structure/flora/ausbushes/genericbush, /obj/structure/railing/mapped, -/turf/simulated/floor/tiled/dark, -/area/bridge/controlroom) -"rIf" = ( -/obj/effect/floor_decal/corner/dark_green/diagonal, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/horizon/crew_quarters/fitness/gym) +/turf/simulated/floor/grass/no_edge, +/area/horizon/service/cafeteria) "rIh" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/structure/railing/mapped{ @@ -123518,43 +123058,6 @@ "rIi" = ( /turf/unsimulated/wall/darkshuttlewall, /area/centcom/specops) -"rIj" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor, -/area/maintenance/security_port) -"rIk" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/machinery/disposal/small/north, -/obj/machinery/light_switch{ - dir = 1; - pixel_x = -6; - pixel_y = -24 - }, -/obj/effect/floor_decal/corner/dark_green/diagonal, -/obj/effect/floor_decal/spline/plain, -/obj/effect/floor_decal/spline/plain/purple{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/horizon/hydroponics) "rIl" = ( /obj/machinery/door/blast/odin/open{ _wifi_id = "merc_droppod_4"; @@ -123563,20 +123066,31 @@ /obj/effect/floor_decal/industrial/loading/yellow, /turf/unsimulated/floor, /area/antag/mercenary) -"rIq" = ( -/obj/machinery/power/terminal, -/obj/machinery/power/sensor{ - name = "Powernet Sensor - C-Goliath Drive Chamber"; - name_tag = "C-Goliath Drive Chamber" +"rIt" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/closet/crate/freezer/rations, +/obj/item/storage/box/produce, +/obj/item/storage/box/produce, +/obj/item/reagent_containers/food/snacks/koisbar_clean, +/obj/item/reagent_containers/food/snacks/koisbar_clean, +/obj/item/storage/box/fancy/egg_box, +/obj/item/reagent_containers/food/drinks/carton/milk, +/obj/machinery/power/apc/west{ + req_access = null; + req_one_access = list(11, 24, 47, 65) }, -/obj/structure/cable{ - icon_state = "0-8" +/obj/structure/cable/green{ + icon_state = "0-4" }, -/obj/effect/floor_decal/industrial/warning{ - dir = 9 +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 }, -/turf/simulated/floor/plating, -/area/engineering/bluespace_drive) +/obj/machinery/camera/network/intrepid{ + dir = 1; + c_tag = "Intrepid - Buffet" + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/shuttle/intrepid/buffet) "rIu" = ( /obj/effect/floor_decal/corner/red/diagonal, /obj/effect/floor_decal/spline/fancy{ @@ -123584,15 +123098,20 @@ }, /turf/simulated/floor/tiled/white, /area/centcom/shared_dream) -"rIz" = ( -/obj/effect/floor_decal/industrial/warning{ +"rIv" = ( +/obj/machinery/atmospherics/pipe/simple/visible/purple, +/obj/effect/floor_decal/corner/dark_blue{ dir = 8 }, -/obj/structure/tank_wall/nitrogen{ - icon_state = "n10" +/obj/effect/floor_decal/corner/yellow{ + dir = 1 }, -/turf/simulated/floor/plating, -/area/engineering/atmos/air) +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/machinery/meter, +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/atmos/turbine) "rID" = ( /obj/structure/closet/emcloset/offworlder, /obj/effect/floor_decal/industrial/outline/yellow, @@ -123606,64 +123125,52 @@ }, /turf/simulated/floor/tiled/dark/full, /area/shuttle/mercenary) -"rIN" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 5 +"rIL" = ( +/obj/machinery/firealarm/south, +/obj/structure/railing/mapped{ + dir = 8 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ +/obj/machinery/atmospherics/portables_connector{ dir = 1 }, -/obj/structure/cable/green{ - icon_state = "1-4" +/obj/machinery/portable_atmospherics/powered/pump/filled, +/obj/effect/floor_decal/industrial/outline/blue, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/hallway/aft) +"rIU" = ( +/obj/effect/floor_decal/corner/mauve/full{ + dir = 1 }, /turf/simulated/floor/tiled, -/area/horizon/crew_quarters/fitness/changing) -"rIR" = ( -/obj/effect/floor_decal/spline/fancy/wood, -/obj/effect/floor_decal/spline/fancy/wood/corner{ - dir = 1 +/area/horizon/rnd/xenobiology) +"rIW" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_command{ + dir = 1; + name = "Break Room"; + req_one_access = list(19,28,38) }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/effect/floor_decal/corner/dark_blue{ + dir = 6 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/heads/hor) -"rIS" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/crate/trashcart, -/obj/random/loot, -/obj/random/junk, -/obj/effect/floor_decal/industrial/warning{ +/obj/effect/floor_decal/corner/dark_blue{ dir = 9 }, -/turf/simulated/floor/plating, -/area/maintenance/operations) -"rIT" = ( -/obj/effect/floor_decal/industrial/outline/red, -/obj/machinery/iv_drip, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id = "bridge blast"; + name = "Bridge Blast Doors"; + opacity = 0; + dir = 8 }, -/turf/simulated/floor/tiled/white, -/area/medical/ors) +/obj/effect/map_effect/door_helper/level_access/command_foyer, +/turf/simulated/floor/tiled, +/area/horizon/command/bridge/minibar) "rIX" = ( /obj/random/pottedplant, /turf/simulated/floor/lino, /area/merchant_station) -"rJf" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/reagent_dispensers/extinguisher, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/storage_hard) "rJk" = ( /obj/structure/table/standard, /obj/effect/floor_decal/corner/red/diagonal, @@ -123677,12 +123184,6 @@ }, /turf/simulated/floor/tiled/dark, /area/shuttle/mercenary) -"rJn" = ( -/obj/effect/floor_decal/industrial/outline/grey, -/obj/structure/closet/crate, -/obj/random/loot, -/turf/simulated/floor/plating, -/area/maintenance/research_port) "rJp" = ( /obj/item/modular_computer/console/preset/security{ dir = 4 @@ -123695,80 +123196,22 @@ icon_state = "dark_preview" }, /area/centcom/holding) -"rJq" = ( -/obj/structure/table/stone/marble, -/obj/machinery/chemical_dispenser/bar_alc/full{ - pixel_x = -4; - pixel_y = 16 +"rJC" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + icon_state = "4-8" }, -/obj/item/reagent_containers/glass/rag{ - pixel_x = -3; - pixel_y = 2 - }, -/obj/random/pottedplant_small{ - pixel_x = 10; - pixel_y = -2 - }, -/turf/simulated/floor/tiled/dark, -/area/horizon/bar) -"rJs" = ( -/obj/effect/floor_decal/corner_wide/yellow{ +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/turf/simulated/floor/tiled, -/area/hallway/engineering/rust) -"rJw" = ( -/obj/structure/cable{ - icon_state = "1-2" +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/aux{ - dir = 5 +/obj/machinery/door/airlock/glass{ + dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/maintenance/operations) -"rJy" = ( -/obj/structure/closet/secure_closet/guncabinet{ - name = "Weaponry (Energy Carbines and .45 Pistols)" - }, -/obj/item/gun/projectile/sec, -/obj/item/gun/projectile/sec, -/obj/machinery/atmospherics/pipe/simple/hidden/aux, -/obj/item/ammo_magazine/c45m, -/obj/item/ammo_magazine/c45m, -/obj/item/gun/energy/gun, -/obj/item/gun/energy/gun, -/obj/effect/floor_decal/industrial/outline/security, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/dark/full, -/area/bridge/aibunker) -"rJB" = ( -/obj/structure/bookcase/libraryspawn/reference, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/library) -"rJE" = ( -/obj/structure/table/wood, -/obj/item/device/flashlight/lamp/green{ - pixel_x = 7; - pixel_y = 3 - }, -/obj/item/toy/desk/officetoy{ - pixel_x = -9; - pixel_y = 5 - }, -/turf/simulated/floor/carpet/red, -/area/horizon/library) +/turf/simulated/floor/tiled/full, +/area/horizon/hallway/primary/deck_3/port) "rJG" = ( /obj/effect/floor_decal/industrial/warning/full, /obj/effect/decal/cleanable/dirt, @@ -123802,12 +123245,6 @@ }, /turf/unsimulated/floor/plating, /area/centcom/legion) -"rJK" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 8 - }, -/turf/simulated/floor/lino, -/area/horizon/cafeteria) "rJL" = ( /obj/effect/decal/fake_object{ color = "#545c68"; @@ -123827,19 +123264,26 @@ }, /turf/simulated/floor/tiled/white, /area/merchant_station) -"rJU" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 6 - }, +"rJN" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/lattice/catwalk/indoor/grate/dark, /turf/simulated/floor/plating, -/area/maintenance/wing/starboard) -"rJZ" = ( -/obj/machinery/conveyor{ - dir = 1; - id = "QMLoad" +/area/horizon/maintenance/deck_2/service/starboard) +"rJO" = ( +/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, +/obj/machinery/door/blast/shutters/open{ + id = "shutters_hangarseccp"; + name = "Security Checkpoint Shutter" }, -/turf/simulated/floor/tiled, -/area/hangar/operations) +/turf/simulated/floor/tiled/dark/full, +/area/horizon/security/checkpoint) +"rJW" = ( +/obj/machinery/atmospherics/pipe/tank/carbon_dioxide/scc_shuttle, +/turf/simulated/floor/plating, +/area/horizon/shuttle/intrepid/engineering) +"rKb" = ( +/turf/simulated/wall/r_wall, +/area/horizon/maintenance/deck_2/research) "rKf" = ( /obj/machinery/light{ dir = 4 @@ -123849,38 +123293,29 @@ }, /turf/unsimulated/floor, /area/centcom/holding) -"rKh" = ( -/obj/effect/floor_decal/industrial/hatch_door/red{ - dir = 1 +"rKg" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 10 }, -/obj/machinery/door/airlock/external, -/obj/machinery/atmospherics/pipe/manifold/hidden{ +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled, +/area/horizon/operations/loading) +"rKi" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 6 + }, +/turf/simulated/floor/reinforced/airless, +/area/horizon/engineering/atmos/propulsion) +"rKs" = ( +/obj/effect/floor_decal/industrial/warning{ dir = 4 }, -/obj/effect/map_effect/marker/airlock/shuttle{ - cycle_to_external_air = 1; - master_tag = "airlock_shuttle_intrepid"; - name = "airlock_shuttle_intrepid"; - req_one_access = null; - shuttle_tag = "Intrepid" +/obj/structure/railing/mapped{ + dir = 4 }, -/obj/effect/map_effect/marker_helper/airlock/exterior, -/turf/simulated/floor/tiled/dark/full, -/area/shuttle/intrepid/main_compartment) -"rKl" = ( -/obj/structure/reagent_dispensers/water_cooler, -/obj/effect/floor_decal/corner_wide/lime{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/medical/reception) -"rKp" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/structure/sign/securearea{ - pixel_x = -32 - }, -/turf/simulated/floor, -/area/maintenance/engineering_ladder) +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/horizon/hangar/operations) "rKy" = ( /obj/structure/flora/ausbushes/leafybush, /obj/effect/floor_decal/spline/plain/corner{ @@ -123891,27 +123326,14 @@ }, /turf/simulated/floor/exoplanet/grass, /area/centcom/shared_dream) -"rKB" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 5 +"rKF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 }, -/obj/structure/bed/stool/chair/padded/brown, -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/operations/qm) -"rKC" = ( -/obj/structure/table/rack, -/obj/item/storage/briefcase, -/obj/random/tech_supply, -/obj/random/tech_supply, -/obj/machinery/firealarm/west, +/obj/item/stack/rods, /turf/simulated/floor/plating, -/area/engineering/drone_fabrication) +/area/horizon/maintenance/deck_1/wing/port/far) "rKI" = ( /obj/structure/table/reinforced/steel, /obj/item/reagent_containers/hypospray{ @@ -123925,95 +123347,209 @@ }, /turf/unsimulated/floor, /area/centcom/legion/hangar5) -"rKM" = ( -/obj/structure/sign/fire{ - desc = "A warning sign which reads 'DANGER: SHUTTLE THRUSTERS IN USE' and 'MIND THE DISTANCE'."; - name = "\improper DANGER: THRUSTERS sign"; - pixel_x = 32 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/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 - }, +"rKO" = ( /obj/structure/cable/green{ - icon_state = "4-8" + icon_state = "1-2" }, -/obj/effect/floor_decal/industrial/hatch_door/red, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenoarch_atrium) +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/atmos{ + dir = 1; + name = "Atmospherics Maintenance"; + req_access = list(24) + }, +/obj/machinery/atmospherics/pipe/simple/hidden/yellow, +/obj/effect/map_effect/door_helper/unres, +/obj/effect/floor_decal/industrial/hatch_door/engineering{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/atmos) +"rKP" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/hallway) +"rKR" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/airless, +/area/horizon/hangar/operations) +"rKS" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_mining{ + dir = 1; + name = "Mail Sorting"; + req_one_access = list(26,31,67) + }, +/turf/simulated/floor/tiled/full, +/area/horizon/operations/mail_room) "rKU" = ( /obj/structure/bed/stool/chair{ name = "uncomfortable chair" }, /turf/unsimulated/floor, /area/antag/mercenary) -"rLd" = ( -/obj/machinery/light/small, -/obj/machinery/papershredder{ - pixel_x = -6 +"rKY" = ( +/obj/item/bodybag/cryobag{ + pixel_y = -3 }, -/obj/structure/filingcabinet/filingcabinet{ - pixel_x = 9; - pixel_y = 1 +/obj/item/bodybag/cryobag{ + pixel_x = 7; + pixel_y = -3 }, +/obj/item/clothing/mask/surgical, +/obj/item/clothing/mask/surgical, +/obj/item/clothing/glasses/hud/health{ + pixel_x = 7; + pixel_y = 4 + }, +/obj/effect/floor_decal/corner/lime/diagonal, +/obj/item/reagent_containers/inhaler/pneumalin{ + pixel_x = 7; + pixel_y = -1 + }, +/obj/item/reagent_containers/inhaler/pneumalin{ + pixel_x = -1; + pixel_y = -1 + }, +/obj/effect/floor_decal/industrial/outline/medical, +/obj/structure/table/standard, +/obj/item/storage/firstaid/fire{ + pixel_x = 7; + pixel_y = 17 + }, +/obj/item/storage/firstaid/toxin{ + pixel_x = -8; + pixel_y = 17 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/item/storage/firstaid/o2{ + pixel_x = -8; + pixel_y = 8 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/shuttle/intrepid/medical) +"rLc" = ( +/obj/machinery/power/emitter, +/obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled/dark/full, -/area/shuttle/intrepid/flight_deck) +/area/horizon/engineering/storage_hard) +"rLi" = ( +/obj/effect/floor_decal/spline/fancy, +/obj/item/crowbar/red, +/obj/item/crowbar/red{ + pixel_y = 6 + }, +/obj/item/device/flashlight{ + pixel_y = 7 + }, +/obj/item/device/flashlight{ + pixel_y = 2 + }, +/obj/structure/railing/mapped, +/obj/structure/table/reinforced/steel, +/turf/simulated/floor/carpet/rubber, +/area/horizon/command/bridge/controlroom) "rLj" = ( /turf/simulated/floor/tiled/ramp/bottom{ dir = 1 }, /area/centcom/legion) -"rLk" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/item/trash/koisbar, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor, -/area/maintenance/security_port) -"rLm" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ +"rLu" = ( +/obj/effect/floor_decal/spline/plain/lime{ dir = 4 }, +/obj/machinery/button/remote/airlock{ + dir = 4; + id = "horizon_commissary_door"; + name = "Commissary Door Bolts"; + pixel_x = 22; + specialfunctions = 4; + pixel_y = -2 + }, +/obj/machinery/button/remote/blast_door{ + dir = 4; + id = "horizon_commissary_desk"; + name = "Desk Shutters"; + pixel_x = 22; + pixel_y = 10 + }, +/obj/machinery/button/switch/holosign{ + id = "commissary"; + dir = 4; + pixel_y = 1; + pixel_x = 29 + }, +/obj/machinery/light_switch{ + dir = 4; + pixel_y = 12; + pixel_x = 29 + }, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/dark, +/area/horizon/operations/commissary) +"rLx" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 + dir = 9 }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/lattice/catwalk/indoor/grate, +/obj/structure/lattice/catwalk/indoor/grate/dark, /turf/simulated/floor/plating, -/area/hangar/intrepid) +/area/horizon/maintenance/deck_2/security_port) +"rLA" = ( +/obj/effect/floor_decal/corner/dark_green/full{ + dir = 1 + }, +/obj/structure/bed/stool/chair/padded/beige{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_2/starboard) "rLF" = ( /turf/simulated/wall/shuttle/unique/mercenary/small{ icon_state = "6,9" }, /area/shuttle/syndicate_elite) -"rLO" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 6 +"rLH" = ( +/obj/structure/cable/green{ + icon_state = "2-4" }, -/obj/machinery/vending/boozeomat{ - req_access = null +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 }, -/turf/simulated/floor/marble/dark, -/area/bridge/minibar) +/obj/effect/floor_decal/spline/fancy/wood/corner, +/turf/simulated/floor/wood, +/area/horizon/service/chapel/office) +"rLJ" = ( +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/machinery/alarm/north, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/random/junk, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/starboard/far) "rLP" = ( /obj/structure/closet/crate/loot{ desc = "The old dusty labels on this crate indicate that it was supposed to be shipped long ago."; @@ -124024,40 +123560,150 @@ }, /turf/unsimulated/floor, /area/antag/raider) -"rMd" = ( -/obj/machinery/hologram/holopad, -/turf/simulated/floor/carpet/purple, -/area/crew_quarters/heads/hor) -"rMm" = ( -/obj/structure/cable/green{ - icon_state = "1-2" +"rLR" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/structure/cable{ + icon_state = "2-8" }, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 8 +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/starboard/nacelle) +"rLV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/machinery/door/airlock/external, +/obj/machinery/access_button{ + dir = 4; + pixel_x = -20; + pixel_y = 28 + }, +/obj/effect/map_effect/marker/airlock{ + frequency = 1004; + master_tag = "airlock_horizon_deck_1_fore_1"; + name = "airlock_horizon_deck_1_fore_1" }, /obj/effect/map_effect/marker_helper/airlock/interior, -/obj/machinery/door/airlock/external{ - dir = 1; - icon_state = "door_locked" +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/hangar/starboard) +"rLY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 }, -/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/pipe/simple/hidden/scrubbers{ + dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/effect/floor_decal/industrial/hatch/grey, -/turf/simulated/floor/tiled/dark/full, -/area/shuttle/mining) -"rMn" = ( -/obj/structure/platform_deco{ - icon_state = "ledge_deco" +/turf/simulated/floor/carpet/rubber, +/area/horizon/maintenance/deck_1/workshop) +"rLZ" = ( +/obj/effect/floor_decal/corner/lime/full{ + dir = 4 }, -/obj/effect/floor_decal/corner/dark_blue, +/obj/structure/cable/green{ + icon_state = "0-8" + }, +/obj/machinery/light/small, +/obj/machinery/power/apc/east, /turf/simulated/floor/tiled, -/area/bridge) +/area/horizon/medical/morgue) +"rMa" = ( +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 2; + icon_state = "shutter0"; + id = "LCKDshutters"; + name = "MedBay Lockdown Shutters"; + opacity = 0 + }, +/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/medical/reception) +"rMb" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/horizon/maintenance/deck_2/wing/starboard/auxatmos) +"rMe" = ( +/obj/structure/window/shuttle/scc_space_ship, +/obj/structure/grille, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id = "bridge blast"; + name = "Bridge Blast Doors"; + opacity = 0 + }, +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/obj/machinery/door/blast/shutters/open{ + dir = 2; + id = "shutters_deck3_bridgesafety"; + name = "Safety Shutter" + }, +/turf/simulated/floor/plating, +/area/horizon/command/bridge/controlroom) +"rMf" = ( +/obj/machinery/door/window{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 6 + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor, +/area/horizon/hallway/primary/deck_3/starboard/docks) +"rMg" = ( +/obj/machinery/artifact_analyser, +/obj/effect/floor_decal/spline/plain{ + dir = 6 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/greengrid, +/area/horizon/rnd/xenoarch/atrium) +"rMj" = ( +/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, +/turf/simulated/floor/tiled/full, +/area/horizon/engineering/hallway/fore) +"rMo" = ( +/obj/machinery/telecomms/bus/preset_one, +/turf/simulated/floor/bluegrid, +/area/horizon/tcommsat/chamber) +"rMp" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/atmospherics/portables_connector{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/outline/red, +/turf/simulated/floor/plating, +/area/horizon/engineering/atmos/air) +"rMy" = ( +/obj/structure/grille, +/obj/machinery/door/firedoor, +/obj/structure/window/shuttle/scc_space_ship/cardinal, +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/obj/machinery/door/blast/regular/open{ + dir = 2; + id = "shutters_deck3_longbow"; + name = "Safety Blast Door" + }, +/obj/effect/map_effect/map_helper/ruler_tiles_3{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/weapons/longbow) "rMz" = ( /obj/effect/decal/cleanable/dirt, /obj/item/ore, @@ -124071,44 +123717,18 @@ }, /turf/unsimulated/floor, /area/antag/raider) -"rMB" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 +"rMA" = ( +/obj/effect/floor_decal/corner/purple{ + dir = 6 }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/turf/simulated/floor/carpet/rubber, -/area/engineering/engine_monitoring/rust) -"rMC" = ( -/obj/effect/floor_decal/corner/brown/full{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled, -/area/horizon/commissary) +/turf/simulated/floor/tiled/dark, +/area/horizon/service/custodial/disposals/deck_1) "rME" = ( /obj/effect/floor_decal/corner/grey{ dir = 10 }, /turf/unsimulated/floor/dark, /area/antag/actor) -"rMF" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/portable_atmospherics/hydroponics, -/obj/machinery/atmospherics/portables_connector{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology/xenoflora) "rMI" = ( /obj/structure/bed/stool/chair/office/dark{ dir = 8 @@ -124118,79 +123738,36 @@ }, /turf/simulated/floor/tiled, /area/horizon/security/office) +"rMJ" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/platform_deco{ + icon_state = "ledge_deco" + }, +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor, +/area/horizon/command/bridge/upperdeck) "rML" = ( /obj/structure/bed, /obj/item/bedsheet/black, /turf/unsimulated/floor, /area/centcom/legion) -"rMM" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/vending/coffee, -/turf/simulated/floor/tiled/dark, -/area/operations/lobby) "rMQ" = ( /obj/structure/bed/stool/chair/office/bridge/pilot, /turf/simulated/floor/tiled/dark/full, /area/shuttle/mercenary) -"rMY" = ( -/obj/effect/landmark/start{ - name = "Passenger" - }, -/obj/structure/bed/stool/chair/padded/brown{ - dir = 4 - }, -/turf/simulated/floor/carpet/art, -/area/crew_quarters/lounge/secondary) -"rNe" = ( -/obj/effect/floor_decal/corner/yellow, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 8 - }, -/obj/structure/sign/nosmoking_1{ - pixel_y = -32 - }, -/obj/machinery/atmospherics/binary/pump{ +"rMS" = ( +/obj/machinery/atmospherics/unary/vent_pump/siphon/on/atmos{ dir = 8; - name = "Connectors to Storage" + id_tag = "n2o_out" }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/dark, -/area/engineering/atmos) -"rNi" = ( -/obj/structure/cable/green{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden, -/obj/effect/floor_decal/corner/yellow/diagonal, -/turf/simulated/floor/tiled/dark, -/area/engineering/aft_airlock) -"rNj" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/machinery/light/small/emergency{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/wing/port) -"rNk" = ( -/obj/structure/table/reinforced/wood, -/obj/machinery/photocopier/faxmachine{ - department = "Captain's Office"; - pixel_y = 6 - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 5 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/captain) +/turf/simulated/floor/reinforced/n20, +/area/horizon/engineering/atmos/air) "rNm" = ( /obj/structure/heavy_vehicle_frame, /obj/machinery/mech_recharger, @@ -124200,80 +123777,49 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/unsimulated/floor/rubber_carpet, /area/antag/jockey) -"rNq" = ( +"rNo" = ( +/obj/effect/floor_decal/corner_wide/green{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/hallway) +"rNr" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/light/small/emergency{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/starboard/far) +"rNG" = ( /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" - }, -/obj/structure/lattice/catwalk/indoor, -/turf/simulated/floor/plating, -/area/engineering/engine_room/rust) -"rNv" = ( -/obj/machinery/atmospherics/pipe/simple/visible/black, -/turf/simulated/floor/plating, -/area/engineering/atmos/air) -"rNy" = ( -/obj/machinery/atmospherics/pipe/simple/visible/red{ +/obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/engineering/atmos) -"rNz" = ( -/obj/structure/cable{ - icon_state = "1-2" +/area/horizon/hangar/auxiliary) +"rNJ" = ( +/obj/machinery/door/airlock/glass_command{ + name = "Supplies"; + req_one_access = list(19,38) }, -/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/maintenance/engineering) -"rNA" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/effect/floor_decal/corner/mauve/diagonal, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor, +/obj/effect/floor_decal/industrial/hatch/yellow, /obj/structure/cable/green{ - icon_state = "4-8" + icon_state = "1-2" }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/white, -/area/rnd/lab) -"rNB" = ( -/obj/effect/floor_decal/corner/yellow/full{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/tiled/dark, -/area/engineering/aft_airlock) -"rNH" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/carpet/rubber, -/area/maintenance/engineering/auxillary) +/turf/simulated/floor/tiled, +/area/horizon/command/bridge/bridge_crew) "rNL" = ( /obj/effect/floor_decal/corner/blue/diagonal, /obj/effect/decal/fake_object/light_source/invisible, @@ -124281,6 +123827,17 @@ icon_state = "white" }, /area/tdome/tdomeobserve) +"rNM" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner_wide/yellow/diagonal, +/obj/machinery/light_switch{ + dir = 1; + pixel_y = 26 + }, +/turf/simulated/floor/tiled, +/area/horizon/engineering/bluespace_drive) "rNO" = ( /turf/simulated/wall/shuttle/scc_space_ship/cardinal, /area/horizon/security/forensic_laboratory) @@ -124288,32 +123845,30 @@ /obj/effect/floor_decal/corner/brown{ dir = 5 }, -/turf/simulated/floor/tiled, -/area/horizon/commissary) -"rNR" = ( -/obj/structure/cable/green{ - icon_state = "4-8" +/obj/machinery/light{ + dir = 1 }, -/obj/structure/lattice/catwalk/indoor, -/obj/structure/railing/mapped{ +/turf/simulated/floor/tiled, +/area/horizon/operations/break_room) +"rNU" = ( +/obj/effect/floor_decal/industrial/warning{ dir = 8 }, -/obj/structure/railing/mapped, +/obj/structure/trash_pile, /turf/simulated/floor/plating, -/area/engineering/bluespace_drive) -"rOa" = ( -/obj/effect/floor_decal/industrial/warning/full, -/obj/machinery/porta_turret, -/obj/machinery/light{ - dir = 4 +/area/horizon/maintenance/deck_2/wing/port) +"rNY" = ( +/obj/machinery/door/firedoor, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/door/airlock/maintenance_hatch{ + dir = 1; + req_one_access = list(12) }, -/turf/simulated/floor/tiled/dark/full, -/area/storage/secure) -"rOb" = ( -/obj/structure/table/rack, -/obj/random/loot, -/turf/simulated/floor/plating, -/area/maintenance/wing/port/far) +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor, +/area/horizon/maintenance/deck_3/aft/starboard) "rOj" = ( /obj/effect/floor_decal/corner/red/full{ dir = 1 @@ -124333,53 +123888,71 @@ /obj/effect/floor_decal/corner/grey, /turf/unsimulated/floor/dark, /area/antag/actor) -"rOx" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/structure/cable/green{ - icon_state = "4-8" +"rOt" = ( +/obj/structure/closet/radiation, +/obj/machinery/camera/network/engineering{ + c_tag = "Engineering - Gravity Generator Control Room" }, /turf/simulated/floor/tiled/dark, -/area/horizon/longbow) -"rOz" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/conveyor{ - dir = 1; - id = "QMLoad" - }, +/area/horizon/engineering/gravity_gen) +"rOF" = ( +/obj/effect/floor_decal/corner/dark_green/full, /turf/simulated/floor/tiled, -/area/hangar/operations) +/area/horizon/hangar/intrepid/interstitial) "rOH" = ( /obj/structure/shuttle/engine/propulsion/burst/left, /turf/simulated/floor/plating, /area/shuttle/mercenary) -"rOS" = ( -/obj/structure/shuttle_part/scc_space_ship{ - icon_state = "d3-4-f" +"rOK" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/vending/cola, +/turf/simulated/floor/tiled/dark, +/area/horizon/operations/lobby) +"rOL" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 10 }, -/turf/simulated/wall, -/area/engineering/drone_fabrication) -"rOV" = ( -/turf/simulated/wall, -/area/horizon/custodial/disposals) -"rOY" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - icon_state = "1-2" +/turf/simulated/floor/tiled/dark, +/area/horizon/security/checkpoint) +"rOO" = ( +/obj/effect/floor_decal/corner/dark_blue/full{ + dir = 4 }, -/obj/structure/railing/mapped, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/ai/upload_foyer) +"rOR" = ( /obj/structure/railing/mapped{ dir = 8 }, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard) +/obj/effect/floor_decal/corner/black{ + dir = 9 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/loading/yellow, +/turf/simulated/floor/tiled/dark, +/area/horizon/hangar/intrepid) +"rOU" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/effect/floor_decal/corner/dark_green{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled, +/area/horizon/security/checkpoint2) "rOZ" = ( /obj/effect/floor_decal/corner/dark_blue/full{ dir = 8 @@ -124391,65 +123964,60 @@ }, /turf/simulated/floor/tiled, /area/horizon/security/holding_cell_a) -"rPc" = ( +"rPb" = ( /obj/effect/floor_decal/spline/fancy/wood{ - dir = 1 - }, -/obj/structure/bed/stool/chair/wood{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/horizon/cafeteria) -"rPj" = ( -/obj/machinery/light, -/obj/effect/floor_decal/corner_wide/black{ - dir = 10 - }, -/obj/effect/floor_decal/industrial/warning, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/engineering/atmos/propulsion/starboard) -"rPr" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology) -"rPs" = ( -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/effect/floor_decal/corner/dark_green/full, -/obj/machinery/light, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/starboard) -"rPA" = ( -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/machinery/light/small/emergency{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/operations) -"rPD" = ( -/obj/effect/floor_decal/corner/mauve{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 5 }, +/turf/simulated/floor/wood, +/area/horizon/command/bridge/minibar) +"rPd" = ( +/turf/simulated/wall, +/area/horizon/maintenance/deck_2/wing/port/near) +"rPe" = ( +/obj/machinery/firealarm/north, +/obj/effect/floor_decal/corner/lime/full{ + dir = 1 + }, +/obj/machinery/camera/network/medbay{ + c_tag = "Medical - Morgue Elevator" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/horizon/medical/morgue) +"rPf" = ( +/obj/machinery/iv_drip, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/outline/red, /turf/simulated/floor/tiled/white, -/area/rnd/xenobiology/hazardous) +/area/horizon/medical/gen_treatment) +"rPp" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance{ + dir = 1; + req_one_access = list(12,26,29,31,48,67) + }, +/turf/simulated/floor/tiled/full, +/area/horizon/maintenance/deck_2/wing/port) +"rPz" = ( +/obj/machinery/vending/snack, +/obj/effect/floor_decal/industrial/hatch/grey, +/turf/simulated/floor/tiled/full, +/area/horizon/hallway/primary/deck_3/port) +"rPB" = ( +/obj/machinery/atmospherics/valve{ + dir = 4; + name = "Oxidant to Turbine" + }, +/turf/simulated/floor/plating, +/area/horizon/engineering/atmos/air) "rPH" = ( /obj/machinery/door/blast/odin/shuttle/tcfl/shutter{ id = "tcfl_hangar5"; @@ -124457,35 +124025,17 @@ }, /turf/unsimulated/floor, /area/centcom/legion/hangar5) -"rPJ" = ( -/obj/structure/railing/mapped{ - dir = 8 - }, +"rPS" = ( /obj/effect/floor_decal/industrial/warning{ - dir = 10 + dir = 6 }, +/obj/item/material/shard, /turf/simulated/floor/plating, -/area/maintenance/research_port) -"rPN" = ( -/obj/machinery/door/blast/shutters/open{ - dir = 2; - id = "shutters_hangarseccpexternal"; - name = "Security Checkpoint External Shutter" - }, -/obj/machinery/door/blast/regular/open{ - dir = 4; - id = "hangarlockdown"; - name = "Hangar Lockdown" - }, -/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, -/turf/simulated/floor/tiled/dark/full, -/area/security/checkpoint) -"rPO" = ( -/turf/simulated/floor/tiled/freezer{ - name = "cooled tiles"; - temperature = 278.15 - }, -/area/medical/morgue/lower) +/area/horizon/maintenance/deck_1/teleporter) +"rPV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/horizon/hangar/operations) "rPW" = ( /obj/effect/decal/fake_object{ dir = 4; @@ -124506,46 +124056,43 @@ name = "shallow water" }, /area/horizon/holodeck/source_konyang) -"rPY" = ( -/obj/structure/platform_deco{ +"rQb" = ( +/obj/structure/table/glass{ + table_reinf = "glass" + }, +/obj/effect/floor_decal/corner/paleblue/diagonal, +/obj/item/modular_computer/laptop/preset/medical/cmo{ + pixel_y = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, /obj/structure/cable/green{ - icon_state = "1-2" + icon_state = "4-8" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/operations/lower/machinist/surgicalbay) +/turf/simulated/floor/tiled/white, +/area/horizon/command/heads/cmo) "rQd" = ( /obj/effect/step_trigger/thrower/shuttle/northeast, /turf/space/transit/east, /area/template_noop) -"rQo" = ( -/obj/structure/railing/mapped{ - dir = 4 +"rQh" = ( +/obj/structure/shuttle_part/scc/scout{ + density = 0; + icon_state = "7,12" }, -/obj/structure/lattice, -/obj/structure/railing/mapped{ - dir = 1 +/turf/simulated/floor/plating, +/area/horizon/shuttle/canary) +"rQn" = ( +/obj/structure/cable/green{ + icon_state = "4-8" }, -/turf/simulated/open, -/area/maintenance/wing/starboard) -"rQp" = ( -/obj/machinery/light/small, -/obj/structure/table/steel, -/obj/item/reagent_containers/spray/cleaner, -/obj/effect/floor_decal/corner/lime{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/tiled/white{ - name = "cooled white floor"; - temperature = 278.15 - }, -/area/medical/morgue/lower) +/obj/effect/floor_decal/corner/yellow, +/turf/simulated/floor/tiled, +/area/horizon/engineering/storage_eva) "rQr" = ( /obj/random/pottedplant, /turf/simulated/floor/holofloor/wood, @@ -124566,6 +124113,22 @@ }, /turf/simulated/floor/tiled, /area/merchant_station) +"rQt" = ( +/obj/machinery/button/remote/airlock{ + id = "xeno_entrance_ext"; + name = "Xenobiology External Access Bolts"; + pixel_y = -21; + req_access = list(55); + specialfunctions = 4; + desiredstate = 1 + }, +/obj/structure/table/standard, +/obj/effect/floor_decal/corner/mauve{ + dir = 10 + }, +/obj/machinery/centrifuge, +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/xenological) "rQu" = ( /obj/structure/table/standard, /obj/item/reagent_containers/hypospray/autoinjector/survival, @@ -124579,40 +124142,20 @@ icon_state = "white" }, /area/centcom/legion) -"rQx" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/structure/cable/orange{ +"rQw" = ( +/obj/structure/cable{ icon_state = "4-8" }, -/obj/structure/lattice/catwalk/indoor, -/turf/simulated/floor/plating, -/area/engineering/engine_room/rust) -"rQC" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 5 - }, -/turf/simulated/floor/plating, -/area/maintenance/engineering) -"rQE" = ( -/obj/effect/floor_decal/spline/plain{ +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/railing/mapped{ dir = 8 }, -/obj/structure/disposalpipe/trunk, -/obj/machinery/disposal/small/east, -/obj/structure/extinguisher_cabinet/west, -/obj/effect/floor_decal/spline/plain{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/horizon/bar) +/turf/simulated/floor/tiled/full, +/area/horizon/hangar/intrepid) +"rQz" = ( +/obj/effect/floor_decal/industrial/outline/grey, +/turf/simulated/floor/plating, +/area/horizon/hangar/intrepid) "rQG" = ( /obj/structure/grille, /turf/space/dynamic, @@ -124623,20 +124166,16 @@ icon_state = "dark_preview" }, /area/centcom/checkpoint/aft) -"rQQ" = ( -/turf/simulated/open, -/area/operations/office) -"rQR" = ( -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 4 +"rQT" = ( +/obj/effect/map_effect/window_spawner/full/borosilicate/reinforced/firedoor, +/obj/machinery/door/blast/regular/open{ + dir = 8; + fail_secure = 1; + id = "hazardous_lockdown"; + name = "Hazardous Containment Lockdown" }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/visible/cyan, -/obj/structure/lattice/catwalk/indoor, -/turf/simulated/floor/plating, -/area/engineering/atmos/air) +/turf/simulated/floor/tiled/dark/full, +/area/horizon/rnd/xenobiology/hazardous) "rQU" = ( /obj/structure/bed/stool/chair/shuttle{ dir = 8 @@ -124649,35 +124188,15 @@ }, /turf/simulated/floor/tiled/dark, /area/shuttle/mercenary) -"rQY" = ( -/turf/simulated/floor/wood, -/area/medical/psych) "rQZ" = ( /obj/effect/step_trigger/thrower/shuttle/north, /turf/space/transit/east, /area/template_noop) -"rRi" = ( -/obj/machinery/portable_atmospherics/hydroponics, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/sign/securearea{ - pixel_x = -32 - }, -/obj/machinery/light/colored/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/portables_connector{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/hydroponics/lower) "rRj" = ( /obj/effect/floor_decal/industrial/outline/yellow, /obj/machinery/portable_atmospherics/canister/empty/phoron, /turf/unsimulated/floor, /area/antag/mercenary) -"rRl" = ( -/turf/simulated/wall, -/area/horizon/hallway/deck_three/primary/central) "rRo" = ( /obj/effect/floor_decal/corner/yellow, /turf/simulated/floor/marble/dark, @@ -124688,99 +124207,74 @@ }, /turf/simulated/floor/carpet, /area/horizon/security/investigators_office) -"rRq" = ( -/obj/structure/cable/green{ - icon_state = "4-8" +"rRy" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 6 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 +/obj/structure/platform{ + dir = 8 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 }, /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/simulated/floor/tiled/full, -/area/outpost/mining_main/refinery) -"rRs" = ( -/obj/machinery/door/airlock/hatch{ - dir = 1; - name = "Starboard Maneuvering Propulsion"; - req_one_access = list(11,24) - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard/far) -"rRt" = ( -/obj/machinery/door/airlock/maintenance{ - dir = 1; - name = "Cryogenics Control Room"; - req_access = list(66) - }, -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/door/firedoor{ - dir = 4 +/turf/simulated/floor/tiled, +/area/horizon/rnd/hallway/secondary) +"rRA" = ( +/turf/simulated/floor/tiled/white, +/area/horizon/operations/machinist/surgicalbay) +"rRC" = ( +/obj/effect/landmark{ + name = "Revenant" }, /turf/simulated/floor/plating, -/area/medical/cryo) -"rRE" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/turf/simulated/floor/tiled/dark/full, -/area/shuttle/intrepid/main_compartment) -"rRG" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/wing/port/far) -"rRS" = ( -/obj/structure/cable/green{ - icon_state = "1-4" - }, +/area/horizon/maintenance/deck_2/wing/port/nacelle) +"rRD" = ( /obj/structure/cable/green{ icon_state = "4-8" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/railing/mapped, -/turf/simulated/floor/tiled, -/area/hallway/engineering) -"rSb" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 +/obj/effect/floor_decal/corner/dark_blue/full{ + dir = 1 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 }, -/turf/simulated/floor/tiled, -/area/maintenance/aux_atmospherics/deck_2/starboard/wing) -"rSd" = ( -/obj/effect/floor_decal/corner/mauve{ - dir = 10 - }, -/obj/effect/floor_decal/industrial/warning/corner, /turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology/xenoflora) -"rSe" = ( -/obj/machinery/alarm/cold/north, -/obj/effect/floor_decal/corner/lime/diagonal, -/turf/simulated/floor/tiled/white{ - name = "cooled white floor"; - temperature = 278.15 +/area/horizon/ai/upload) +"rRQ" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 10 }, -/area/medical/morgue/lower) +/obj/structure/extinguisher_cabinet/south, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_3/central) +"rRR" = ( +/obj/structure/table/wood, +/obj/random/pottedplant_small{ + pixel_x = 3; + pixel_y = -2 + }, +/obj/item/flame/candle{ + pixel_x = 10; + pixel_y = 2 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/horizon/command/heads/rd) +"rRV" = ( +/obj/structure/closet/walllocker/medical/firstaid{ + pixel_y = -32 + }, +/obj/effect/floor_decal/industrial/outline/medical, +/obj/effect/floor_decal/spline/plain{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/hallway/primary/deck_2/central) "rSh" = ( /obj/effect/decal/fake_object{ icon = 'icons/obj/doors/rapid_pdoor.dmi'; @@ -124794,55 +124288,110 @@ /obj/structure/table/reinforced/wood, /turf/unsimulated/floor, /area/antag/raider) -"rSi" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/vending/coffee, -/turf/simulated/floor/tiled/dark, -/area/horizon/hallway/deck_three/primary/port) -"rSk" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 9 +"rSl" = ( +/obj/machinery/power/apc/critical/north, +/obj/structure/cable/green{ + icon_state = "0-8" }, -/obj/random/junk, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard) -"rSq" = ( -/obj/effect/floor_decal/corner/dark_green/diagonal, -/obj/effect/floor_decal/spline/plain/lime{ +/turf/simulated/floor/bluegrid{ + name = "cooled mainframe floor"; + temperature = 278 + }, +/area/horizon/ai/chamber) +"rSm" = ( +/obj/structure/table/stone/marble, +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/shutters{ + dir = 8; + id = "shutters_deck2_kitchendesk"; + name = "Kitchen Desk Shutter" + }, +/obj/machinery/power/outlet, +/turf/simulated/floor/tiled/dark, +/area/horizon/service/kitchen) +"rSo" = ( +/obj/effect/floor_decal/industrial/warning{ dir = 1 }, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_two/fore) -"rSr" = ( -/obj/machinery/firealarm/east, +/obj/machinery/camera/network/command{ + c_tag = "Bridge - Venator Sensor Array" + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark/full/airless, +/area/horizon/command/bridge/controlroom) +"rSq" = ( /obj/effect/floor_decal/corner/dark_green{ dir = 6 }, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/central) -"rSw" = ( -/obj/structure/cable{ - icon_state = "1-2" +/obj/machinery/light/spot{ + dir = 4 }, -/obj/structure/platform_stairs/south_north_solo, -/turf/simulated/floor/plating, -/area/maintenance/research_port) +/turf/simulated/floor/tiled, +/area/horizon/hangar/auxiliary) +"rSt" = ( +/obj/effect/floor_decal/corner/pink/diagonal, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark, +/area/horizon/maintenance/deck_2/wing/starboard/nacelle) +"rSx" = ( +/obj/structure/disposalpipe/segment{ + icon_state = "pipe-c" + }, +/obj/structure/bed/stool/chair/sofa/left/brown{ + dir = 8 + }, +/obj/effect/landmark/start{ + name = "Passenger" + }, +/turf/simulated/floor/carpet/art, +/area/horizon/crew/lounge) "rSA" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/closet/crate, -/obj/random/loot, -/obj/random/condiment, -/obj/machinery/light/small/emergency{ +/obj/machinery/porta_turret, +/obj/effect/floor_decal/industrial/warning/full, +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/machinery/light{ dir = 8 }, /turf/simulated/floor/tiled/dark/full, -/area/maintenance/wing/cargo_compartment) +/area/horizon/ai/upload_foyer) +"rSB" = ( +/obj/structure/table/standard, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/recharger, +/obj/effect/floor_decal/corner/beige/full{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/horizon/crew/vacantoffice) "rSC" = ( /obj/effect/floor_decal/corner/paleblue{ dir = 10 }, /turf/unsimulated/floor, /area/centcom/distress_prep) +"rSI" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/effect/floor_decal/industrial/warning/cee{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/reactor/supermatter/mainchamber) "rSK" = ( /obj/structure/closet/secure_closet/guncabinet{ name = "legion weapon cabinet"; @@ -124857,13 +124406,27 @@ }, /turf/unsimulated/floor, /area/centcom/legion) -"rSP" = ( -/obj/structure/table/standard, -/obj/item/sampler, -/obj/item/sampler, -/obj/machinery/alarm/west, +"rSO" = ( +/obj/effect/floor_decal/industrial/outline_door/yellow{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/arrow/yellow{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/maintenance/deck_2/wing/starboard/nacelle) +"rSR" = ( +/obj/machinery/door/airlock/maintenance{ + dir = 4; + name = "Xenobotany Maintenance"; + req_one_access = list(12,47) + }, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/dark/full, -/area/rnd/xenobiology/foyer) +/area/horizon/rnd/hallway/secondary) "rSS" = ( /obj/structure/table/standard, /obj/item/paper_bin{ @@ -124883,57 +124446,17 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/security/evidence_storage) -"rST" = ( -/obj/machinery/door/firedoor, -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/table/stone/marble, -/obj/machinery/door/blast/shutters{ - dir = 8; - id = "bar_shutter"; - name = "Bar Shutter" - }, -/turf/simulated/floor/tiled/dark, -/area/horizon/bar) -"rSU" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/cable/green{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/green{ - dir = 10 - }, -/turf/simulated/floor/tiled/dark, -/area/horizon/custodial/disposals) -"rSW" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/structure/tank_wall/nitrous_oxide, +"rSV" = ( /turf/simulated/floor/plating, -/area/engineering/atmos/air) -"rSX" = ( -/obj/machinery/computer/fusion/fuel_control/terminal{ - initial_id_tag = "horizon_fusion" +/area/horizon/maintenance/deck_2/wing/starboard/far) +"rTg" = ( +/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, +/obj/machinery/door/blast/shutters/open{ + id = "mech_bay_shutter"; + name = "Mech Bay Shutters" }, /turf/simulated/floor/tiled/dark/full, -/area/engineering/engine_monitoring/rust) -"rSY" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/mining{ - dir = 4; - name = "Machinist Workshop"; - req_access = list(29) - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled, -/area/operations/lower/machinist) +/area/horizon/operations/machinist) "rTh" = ( /obj/structure/table/stone/marble, /turf/unsimulated/floor, @@ -124972,33 +124495,55 @@ }, /turf/unsimulated/floor, /area/antag/raider) -"rTu" = ( -/obj/structure/cable{ - icon_state = "2-8" +"rTo" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/airlock/atmos{ + dir = 1; + name = "Deck 2 Starboard Auxiliary Atmospherics"; + req_one_access = list(11,24) }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/spline/plain/yellow{ - dir = 8 +/turf/simulated/floor/tiled, +/area/horizon/maintenance/deck_2/wing/starboard/auxatmos) +"rTq" = ( +/obj/effect/map_effect/window_spawner/full/borosilicate/reinforced/firedoor, +/obj/machinery/door/blast/shutters/open{ + id = "exploratory_chem_shutters" }, /turf/simulated/floor/tiled/dark/full, -/area/engineering/smes/rust) +/area/horizon/rnd/chemistry) +"rTt" = ( +/turf/simulated/floor/tiled/dark/full, +/area/horizon/maintenance/deck_2/cargo_compartment) "rTy" = ( /obj/structure/sign/directions/security{ dir = 8 }, /turf/unsimulated/wall/darkshuttlewall, /area/centcom/holding) +"rTz" = ( +/obj/effect/floor_decal/spline/fancy/wood/cee, +/obj/structure/engineer_maintenance/pipe{ + dir = 4 + }, +/obj/structure/engineer_maintenance/electric, +/turf/simulated/floor/wood, +/area/horizon/command/heads/hos) +"rTB" = ( +/obj/effect/floor_decal/industrial/hatch_door/red, +/obj/machinery/door/airlock/external{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden, +/obj/effect/map_effect/marker_helper/airlock/interior, +/obj/effect/map_effect/marker/airlock{ + master_tag = "sccv_intrepid_port"; + name = "sccv_intrepid_port"; + req_one_access = null + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/shuttle/intrepid/port_compartment) "rTC" = ( /obj/structure/urinal{ dir = 4; @@ -125007,17 +124552,12 @@ }, /turf/unsimulated/floor/freezer, /area/centcom/distress_prep) -"rTF" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/trash_pile, -/turf/simulated/floor/plating, -/area/maintenance/operations) -"rTG" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 5 +"rTD" = ( +/obj/effect/map_effect/window_spawner/full/reinforced/polarized/firedoor{ + id = "chapel" }, -/turf/simulated/floor/tiled, -/area/rnd/eva) +/turf/simulated/floor/tiled/dark/full, +/area/horizon/service/chapel/office) "rTL" = ( /obj/effect/floor_decal/corner/lime{ dir = 4 @@ -125039,31 +124579,38 @@ }, /turf/unsimulated/floor, /area/centcom/spawning) -"rTR" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/dark, -/area/horizon/maintenance/deck_three/aft/starboard) -"rTW" = ( -/obj/effect/floor_decal/industrial/hatch_door/red, -/obj/machinery/door/airlock/external{ +"rTP" = ( +/turf/simulated/floor/tiled/full, +/area/horizon/operations/mining_main/refinery) +"rTS" = ( +/obj/effect/floor_decal/industrial/warning{ dir = 8 }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 6 +/obj/structure/tank_wall/nitrous_oxide{ + icon_state = "h4" }, -/obj/effect/map_effect/marker/airlock{ - master_tag = "sccv_intrepid_port"; - name = "sccv_intrepid_port"; - req_one_access = null +/obj/machinery/atmospherics/pipe/simple/visible/red{ + dir = 4 }, -/obj/effect/map_effect/marker_helper/airlock/interior, -/obj/machinery/access_button{ - pixel_y = 29; - pixel_x = -7; +/turf/simulated/floor/plating, +/area/horizon/engineering/atmos/air) +"rTT" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 8 }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/xenological) +"rUa" = ( +/obj/effect/floor_decal/industrial/warning/corner, /turf/simulated/floor/tiled/dark/full, -/area/shuttle/intrepid/port_compartment) +/area/horizon/engineering/reactor/supermatter/mainchamber) "rUb" = ( /obj/structure/window/reinforced/crescent{ dir = 8 @@ -125083,23 +124630,6 @@ /obj/effect/floor_decal/spline/fancy/wood, /turf/unsimulated/floor/carpet, /area/centcom/bar) -"rUd" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 1 - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 7 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/firealarm/west{ - dir = 1; - pixel_x = 0; - pixel_y = 31 - }, -/turf/simulated/floor/wood, -/area/bridge/meeting_room) "rUi" = ( /obj/effect/floor_decal/corner/dark_blue/full{ dir = 8 @@ -125128,112 +124658,100 @@ }, /turf/unsimulated/floor/monotile, /area/antag/mercenary) -"rUy" = ( -/obj/structure/flora/ausbushes/ywflowers, -/obj/structure/flora/ausbushes/ppflowers, -/obj/structure/flora/ausbushes/brflowers, -/obj/structure/railing/mapped{ - dir = 4 +"rUp" = ( +/turf/simulated/floor/tiled/ramp/bottom{ + dir = 8 }, -/turf/simulated/floor/grass/no_edge, -/area/rnd/hallway/secondary) -"rUN" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 1 +/area/horizon/hangar/operations) +"rUt" = ( +/obj/structure/grille, +/obj/machinery/door/firedoor, +/obj/structure/window/shuttle/scc_space_ship/cardinal, +/turf/simulated/floor/plating, +/area/horizon/crew/journalistoffice) +"rUu" = ( +/obj/structure/cable/green{ + icon_state = "1-8" }, -/obj/random/pottedplant{ - pixel_y = 6 +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" }, -/obj/structure/platform{ - dir = 1 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 }, -/turf/simulated/floor/wood, -/area/horizon/bar) -"rUU" = ( -/obj/machinery/camera/network/medbay{ - c_tag = "Medical - Morgue Port"; - dir = 1 +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 }, -/obj/machinery/light/small, -/obj/structure/table/steel, -/obj/item/storage/box/bodybags, -/obj/effect/floor_decal/corner/lime/full{ - dir = 4 - }, -/obj/item/storage/box/gloves{ - pixel_y = 11 - }, -/turf/simulated/floor/tiled/white{ - name = "cooled white floor"; - temperature = 278.15 - }, -/area/medical/morgue/lower) -"rUZ" = ( -/obj/structure/bed/stool/chair/shuttle/double{ - pixel_x = -8 - }, -/obj/structure/bed/stool/chair/shuttle/double{ - pixel_x = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 1 - }, -/obj/effect/floor_decal/spline/plain/black{ +/obj/effect/floor_decal/corner_wide/green{ dir = 10 }, -/obj/machinery/alarm/north{ - req_one_access = list(11, 24, 47, 65) +/obj/structure/railing/mapped, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/hallway/upper) +"rUv" = ( +/obj/machinery/firealarm/west, +/obj/structure/flora/ausbushes/sparsegrass, +/obj/machinery/portable_atmospherics/hydroponics/soil, +/obj/structure/engineer_maintenance/electric/wall, +/turf/simulated/floor/grass/no_edge, +/area/horizon/service/hydroponics/garden) +"rUz" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 6 + }, +/obj/machinery/vending/boozeomat{ + req_access = null + }, +/turf/simulated/floor/marble/dark, +/area/horizon/command/bridge/minibar) +"rUB" = ( +/obj/effect/floor_decal/corner_wide/paleblue{ + dir = 9 + }, +/obj/structure/coatrack, +/obj/structure/engineer_maintenance/pipe{ + dir = 8 + }, +/obj/structure/engineer_maintenance/electric, +/turf/simulated/floor/tiled/white, +/area/horizon/command/heads/cmo) +"rUJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 }, /turf/simulated/floor/tiled/dark/full, -/area/shuttle/intrepid/starboard_compartment) +/area/horizon/storage/secure) "rVa" = ( /obj/effect/floor_decal/spline/plain/corner{ dir = 8 }, /turf/simulated/floor/exoplanet/barren/raskara, /area/centcom/shared_dream) -"rVf" = ( -/obj/machinery/door/airlock/glass{ - dir = 4; - name = "Lounge" +"rVd" = ( +/obj/effect/floor_decal/corner/mauve/full{ + dir = 4 }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled, -/area/crew_quarters/lounge) -"rVg" = ( -/obj/structure/table/wood, -/obj/random/pottedplant_small{ - pixel_x = 3; - pixel_y = -2 +/obj/machinery/light, +/obj/structure/railing/mapped{ + dir = 4 }, -/obj/item/flame/candle{ - pixel_x = 10; - pixel_y = 2 +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/heads/hor) -"rVj" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/reinforced/airless, -/area/horizon/exterior) -"rVm" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 }, +/obj/machinery/biogenerator, /turf/simulated/floor/tiled/dark, -/area/storage/eva) -"rVt" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, +/area/horizon/rnd/xenobiology/xenoflora) +"rVe" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -125241,42 +124759,80 @@ dir = 4 }, /obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_mining{ +/obj/machinery/door/airlock/glass{ dir = 4; - name = "Warehouse"; - req_one_access = list(26,29,31,48,67,70) + name = "Lounge" }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/effect/map_effect/door_helper/unres{ - dir = 8 +/turf/simulated/floor/tiled, +/area/horizon/crew/lounge) +"rVh" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_atmos{ + dir = 1; + name = "Atmospherics Locker Room"; + req_access = list(24) + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + icon_state = "1-2" }, /turf/simulated/floor/tiled/full, -/area/operations/storage) -"rVC" = ( +/area/horizon/engineering/atmos/storage) +"rVj" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/reinforced/airless, +/area/horizon/exterior) +"rVl" = ( +/obj/random/junk{ + pixel_y = -7; + pixel_x = -11 + }, +/obj/random/dirt_75, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/starboard/nacelle) +"rVn" = ( /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/hallway/engineering/rust) -"rVD" = ( -/obj/structure/platform{ +/obj/effect/floor_decal/corner/dark_green{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_3/central) +"rVs" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 10 + }, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/obj/machinery/door/airlock/glass{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_2/starboard) +"rVL" = ( +/obj/effect/floor_decal/corner/red/diagonal, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/spline/plain/corner{ dir = 1 }, -/obj/structure/railing/mapped, -/obj/effect/floor_decal/corner/mauve/diagonal, -/obj/machinery/light/floor, -/obj/machinery/papershredder{ - pixel_x = 7 +/obj/structure/cable/green{ + icon_state = "1-2" }, -/obj/structure/filingcabinet/filingcabinet{ - pixel_x = -7 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/lab) +/turf/simulated/floor/lino, +/area/horizon/service/cafeteria) "rVN" = ( /obj/effect/floor_decal/spline/plain{ dir = 1 @@ -125286,22 +124842,26 @@ }, /turf/unsimulated/floor, /area/antag/mercenary) -"rVP" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 +"rVW" = ( +/obj/machinery/portable_atmospherics/hydroponics, +/obj/machinery/atmospherics/portables_connector{ + dir = 1 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/hangar/auxiliary) +/obj/machinery/alarm/south, +/turf/simulated/floor/tiled/dark, +/area/horizon/rnd/xenobiology/xenoflora) "rWa" = ( /obj/effect/floor_decal/industrial/hatch/red, /turf/simulated/floor/reinforced/airless, /area/horizon/exterior) +"rWg" = ( +/obj/effect/floor_decal/corner/green/diagonal, +/obj/item/bedsheet/medical{ + icon_state = "sheet-roll" + }, +/obj/structure/bed/padded, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/ward/isolation) "rWj" = ( /obj/structure/cable/green{ icon_state = "0-2" @@ -125313,15 +124873,12 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/security/lobby) -"rWm" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 5 +"rWl" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 10 }, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/bridge/meeting_room) +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_3/central) "rWn" = ( /obj/effect/decal/fake_object{ color = "#545c68"; @@ -125342,6 +124899,11 @@ density = 1 }, /area/antag/ninja) +"rWo" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/closet/crate, +/turf/simulated/floor/tiled, +/area/horizon/operations/warehouse) "rWq" = ( /obj/structure/railing/mapped{ dir = 4 @@ -125351,143 +124913,151 @@ }, /turf/simulated/floor/reinforced/airless, /area/horizon/exterior) +"rWr" = ( +/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/horizon/hangar/auxiliary) +"rWv" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/horizon/stairwell/port/deck_3) +"rWx" = ( +/obj/structure/table/rack, +/obj/structure/railing/mapped, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/port/far) "rWy" = ( /obj/structure/flora/tree/pine, /turf/simulated/floor/exoplanet/snow, /area/centcom/shared_dream) -"rWG" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 +"rWz" = ( +/obj/structure/cable{ + icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ +/obj/machinery/atmospherics/pipe/simple/hidden/aux, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 4 }, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/engine_room) -"rWH" = ( -/obj/effect/floor_decal/spline/fancy/wood/corner, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 9 +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/main/port) +"rWA" = ( +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/random/junk, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/starboard/near) +"rWJ" = ( +/obj/machinery/door/firedoor, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/wing/starboard/far) +"rWP" = ( +/obj/effect/floor_decal/corner/mauve/full{ + dir = 8 }, -/turf/simulated/floor/wood, -/area/bridge/cciaroom) -"rWM" = ( +/obj/structure/disposalpipe/segment, /obj/structure/cable/green{ icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/corner/lime/full{ +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/telesci) +"rWR" = ( +/obj/structure/railing/mapped{ dir = 1 }, -/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 - }, -/obj/structure/platform{ +/obj/structure/railing/mapped{ dir = 8 }, -/obj/machinery/camera/network/command{ - c_tag = "Bridge - Atrium Starboard"; - dir = 8 +/turf/simulated/open, +/area/horizon/service/hydroponics) +"rWS" = ( +/obj/item/storage/secure/safe{ + pixel_y = -23 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/structure/cable/green{ - icon_state = "0-8" - }, -/obj/machinery/power/apc/east, -/turf/simulated/floor/tiled, -/area/bridge) -"rWW" = ( -/obj/item/storage/bag/inflatable{ - pixel_y = 9 - }, -/obj/structure/table/rack/folding_table, -/obj/random/tech_supply, -/obj/machinery/light/small/emergency{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/wing/cargo_compartment) -"rWY" = ( -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 4 - }, -/turf/simulated/floor/reinforced/airless, -/area/engineering/engine_room/rust) -"rXc" = ( +/obj/machinery/photocopier, +/turf/simulated/floor/carpet, +/area/horizon/repoffice/representative_two) +"rXm" = ( /obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/machinery/light/small/emergency{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/security_port) -"rXd" = ( -/obj/effect/floor_decal/corner/dark_green, -/obj/effect/floor_decal/corner/brown{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_two) -"rXn" = ( -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/lattice/catwalk/indoor, /turf/simulated/floor/plating, -/area/engineering/atmos/air) +/area/horizon/maintenance/deck_2/wing/port/nacelle) +"rXr" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/horizon/command/heads/captain) +"rXs" = ( +/obj/structure/table/wood, +/obj/machinery/light, +/obj/random/pottedplant_small{ + pixel_x = 7; + pixel_y = -2 + }, +/turf/simulated/floor/carpet, +/area/horizon/service/chapel/office) "rXw" = ( /obj/effect/floor_decal/corner/dark_blue/full, /obj/machinery/alarm/west, /turf/simulated/floor/tiled, /area/horizon/security/investigations_hallway) -"rXz" = ( -/obj/effect/floor_decal/spline/fancy/wood{ +"rXx" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 10 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/horizon/operations/lobby) +"rXC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/railing/mapped{ dir = 1 }, -/obj/random/pottedplant, -/turf/simulated/floor/wood, -/area/horizon/cafeteria) -"rXG" = ( -/obj/structure/shuttle_part/scc/mining{ - icon_state = "4,10"; - outside_part = 0 - }, -/obj/machinery/atmospherics/unary/engine/scc_shuttle, -/obj/effect/floor_decal/industrial/warning/cee{ - dir = 1 +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/emergency{ + dir = 8 }, +/obj/structure/disposalpipe/segment, /turf/simulated/floor/plating, -/area/shuttle/mining) +/area/horizon/maintenance/deck_1/wing/starboard) "rXH" = ( /obj/effect/floor_decal/spline/plain/corner{ dir = 8 @@ -125496,70 +125066,115 @@ /obj/structure/flora/ausbushes/ywflowers, /turf/simulated/floor/exoplanet/grass/grove, /area/centcom/shared_dream) -"rXR" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 +"rXL" = ( +/obj/structure/cable{ + icon_state = "1-2" }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology) -"rXW" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/platform_stairs/south_north_solo, /turf/simulated/floor/plating, -/area/maintenance/hangar/starboard) +/area/horizon/maintenance/deck_1/main/port) +"rXQ" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/alarm/west, +/turf/simulated/floor/tiled, +/area/horizon/operations/warehouse) +"rXT" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/camera/network/research{ + dir = 1; + c_tag = "Xenobio - Cell A"; + network = list("Xeno_Bio") + }, +/turf/simulated/floor/reinforced, +/area/horizon/rnd/xenobiology) +"rXV" = ( +/obj/effect/floor_decal/corner_wide/yellow{ + dir = 5 + }, +/obj/machinery/alarm/north, +/turf/simulated/floor/tiled, +/area/horizon/engineering/hallway/aft) "rXX" = ( /obj/machinery/hologram/holopad, /turf/unsimulated/floor{ icon_state = "dark_preview" }, /area/centcom/control) -"rYe" = ( -/obj/effect/floor_decal/industrial/warning{ +"rYc" = ( +/obj/structure/engineer_maintenance/electric{ + dir = 1 + }, +/obj/structure/engineer_maintenance/pipe{ dir = 4 }, /turf/simulated/floor/plating, -/area/engineering/bluespace_drive) -"rYl" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/junction{ - dir = 4; - icon_state = "pipe-j2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ +/area/horizon/engineering/atmos/air) +"rYf" = ( +/obj/machinery/light{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ +/obj/effect/floor_decal/spline/plain, +/turf/simulated/floor/tiled/dark, +/area/horizon/hallway/primary/deck_3/central) +"rYg" = ( +/obj/machinery/button/remote/blast_door{ + dir = 1; + id = "shutters_deck2_portstairwellsec"; + name = "Elevator Security Shutters"; + pixel_x = -7; + pixel_y = 28; + req_one_access = list(1,19) + }, +/obj/random/pottedplant, +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/structure/railing/mapped{ dir = 4 }, -/obj/structure/cable/green{ - icon_state = "2-4" +/obj/structure/railing/mapped, +/obj/effect/floor_decal/spline/fancy/wood/full, +/obj/machinery/computer/shuttle_control/multi/lift/wall/robotics{ + pixel_x = 4; + pixel_y = 28 }, -/obj/structure/lattice/catwalk/indoor/grate, -/turf/simulated/floor/plating, -/area/operations/lobby) -"rYs" = ( -/obj/item/storage/secure/safe{ - pixel_y = -20 +/turf/simulated/floor/wood, +/area/horizon/hangar/auxiliary) +"rYm" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/airlock/external{ + dir = 1; + frequency = 1380; + icon_state = "door_locked"; + id_tag = "mining_shuttle_dock_doors"; + req_access = list(13) }, -/obj/effect/floor_decal/industrial/hatch/grey, -/obj/structure/filingcabinet{ - pixel_x = -9 - }, -/obj/machinery/papershredder{ - pixel_x = 7 - }, -/obj/machinery/light, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/security/head_of_security) +/obj/structure/plasticflaps/airtight, +/turf/simulated/floor/tiled/full, +/area/horizon/hangar/operations) "rYy" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 }, /turf/simulated/floor/tiled/dark, /area/horizon/security/evidence_storage) +"rYE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/spline/plain/corner{ + dir = 4 + }, +/turf/simulated/floor/carpet/rubber, +/area/horizon/engineering/reactor/indra/monitoring) "rYK" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 4 @@ -125582,293 +125197,243 @@ }, /turf/simulated/floor/tiled/white, /area/horizon/security/forensic_laboratory) -"rYP" = ( -/turf/simulated/wall/r_wall, -/area/tcommsat/entrance) -"rYQ" = ( +"rYV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ - icon_state = "4-8" + d1 = 1; + d2 = 2; + icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 +/obj/structure/cable/green{ + icon_state = "1-8" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 5 }, -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/aux{ - dir = 8 - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ - dir = 4 - }, -/obj/machinery/door/airlock/maintenance_hatch{ - dir = 4; - req_one_access = list(12) - }, -/turf/simulated/floor/plating, -/area/maintenance/engineering) +/turf/simulated/floor/wood, +/area/horizon/service/dining_hall) "rYW" = ( /turf/simulated/wall/shuttle/unique/tcfl{ icon_state = "5,6" }, /area/shuttle/legion) -"rZa" = ( -/turf/simulated/wall/shuttle/scc_space_ship/cardinal, -/area/horizon/kitchen) -"rZb" = ( -/obj/structure/closet/secure_closet/guncabinet/sci, -/obj/effect/floor_decal/industrial/outline/yellow, +"rZf" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 8 + }, /turf/simulated/floor/tiled/dark, -/area/rnd/lab) -"rZd" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora) +/area/horizon/hallway/primary/deck_2/central) "rZg" = ( /turf/unsimulated/wall/fakepdoor{ dir = 4 }, /area/antag/mercenary) -"rZh" = ( -/turf/simulated/wall/shuttle/unique/scc/mining{ - icon_state = "6,2" - }, -/area/shuttle/mining) -"rZl" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 5 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/machinery/status_display{ - pixel_y = 32 - }, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/port/docks) -"rZu" = ( -/obj/machinery/atmospherics/pipe/simple/visible/green{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/visible/supply, -/turf/simulated/floor/plating, -/area/engineering/atmos/air) -"rZv" = ( -/obj/machinery/alarm/east, -/obj/random/junk, -/obj/machinery/atmospherics/pipe/simple/visible/universal, -/turf/simulated/floor, -/area/maintenance/bridge) -"rZy" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/structure/lattice/catwalk/indoor/grate, -/turf/simulated/floor/plating, -/area/hallway/primary/central_one) -"rZA" = ( -/obj/structure/cable/green{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 +"rZi" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 + dir = 8 }, -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/tiled/full, -/area/engineering/engine_airlock) -"rZB" = ( -/obj/structure/table/standard, -/obj/item/folder/purple, -/obj/machinery/requests_console/west{ - name = "Circuitry Request Console"; - department = "Circuitry Workshop" - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/obj/item/paper_scanner{ - pixel_y = 20 +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/simulated/floor/carpet/rubber, -/area/rnd/lab) +/obj/structure/cable/green{ + icon_state = "4-8"; + d1 = 4; + d2 = 8 + }, +/turf/simulated/floor/wood, +/area/horizon/service/library) +"rZo" = ( +/obj/item/device/radio/intercom/south{ + pixel_y = 0; + pixel_x = 1 + }, +/obj/machinery/hologram/holopad/long_range, +/turf/simulated/floor/carpet, +/area/horizon/command/heads/om) +"rZs" = ( +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/effect/floor_decal/corner/yellow{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/light, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/aft_airlock) +"rZt" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 8 + }, +/obj/effect/map_effect/marker/airlock/docking{ + landmark_tag = "nav_horizon_dock_deck_3_port_5"; + master_tag = "airlock_horizon_dock_deck_3_port_5"; + name = "airlock_horizon_dock_deck_3_port_5" + }, +/turf/simulated/floor/plating, +/area/horizon/hallway/primary/deck_3/starboard/docks) +"rZw" = ( +/obj/effect/floor_decal/corner/black{ + dir = 9 + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor/multi_tile, +/turf/simulated/floor/tiled/dark, +/area/horizon/hangar/intrepid) +"rZC" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 10 + }, +/obj/machinery/alarm/south, +/turf/simulated/floor/tiled/dark, +/area/horizon/hangar/intrepid) "rZE" = ( /obj/effect/floor_decal/corner/teal/full{ dir = 1 }, /turf/unsimulated/floor/marble, /area/antag/wizard) -"rZG" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, +"rZN" = ( +/obj/effect/floor_decal/corner/dark_green, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_2/central) +"sac" = ( +/turf/simulated/wall/r_wall, +/area/horizon/maintenance/substation/hangar) +"sae" = ( +/obj/structure/closet/crate/bin, +/obj/random/loot, /obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/warning, -/obj/effect/map_effect/window_spawner/full/borosilicate/reinforced, -/obj/machinery/door/blast/regular/open{ - id = "r_ust_core_blast"; - name = "INDRA Reactor Blast Doors" - }, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/engine_room/rust) -"rZH" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/turf/simulated/floor/tiled, -/area/engineering/break_room) -"rZJ" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 1; - frequency = 1380; - id_tag = "centcom_shuttle_dock_pump" +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/main/port) +"sai" = ( +/obj/structure/bed/stool/chair/office/bridge/generic{ + dir = 4 }, -/obj/effect/map_effect/marker/airlock{ - master_tag = "airlock_horizon_bunker"; - name = "airlock_horizon_bunker"; - frequency = 1109; - req_one_access = list(19) +/obj/effect/landmark/start{ + name = "Consular Officer" }, -/turf/simulated/floor, -/area/turret_protected/ai_upload_foyer) -"rZT" = ( -/obj/effect/floor_decal/corner/green/diagonal, -/obj/structure/table/standard, -/obj/item/deck/cards, -/obj/structure/engineer_maintenance/electric/wall, -/turf/simulated/floor/tiled/white, -/area/medical/ward/isolation) -"rZV" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ +/obj/machinery/button/remote/airlock{ + dir = 8; + id = "consular_office_a"; + name = "consular door bolts"; + specialfunctions = 4; + pixel_y = -2; + pixel_x = -52 + }, +/obj/machinery/light_switch{ + dir = 8; + pixel_x = -52; + pixel_y = 8 + }, +/obj/machinery/button/switch/windowtint{ + dir = 8; + id = "consularA"; + pixel_y = 14; + pixel_x = -59 + }, +/obj/machinery/button/remote/airlock{ + dir = 8; + id = "consular_office_a"; + name = "consular door control"; + pixel_y = 3; + pixel_x = -59 + }, +/obj/item/storage/secure/safe{ + pixel_y = 42; + pixel_x = -59 + }, +/turf/simulated/floor/carpet, +/area/horizon/repoffice/consular_one) +"sao" = ( +/obj/structure/window/shuttle/scc_space_ship, +/obj/structure/grille, +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/shutters{ + dir = 4; + id = "shutters_disposals"; + name = "\improper Viewing Shutter" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/red{ dir = 8 }, -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/tiled/white, -/area/medical/gen_treatment) -"sad" = ( -/obj/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/horizon/service/custodial/disposals/deck_1) +"sau" = ( +/obj/effect/floor_decal/spline/fancy/wood/full, +/obj/structure/flora/ausbushes/brflowers, +/obj/structure/flora/ausbushes/palebush, +/turf/simulated/floor/grass/no_edge, +/area/horizon/hallway/primary/deck_2/central) +"saC" = ( /obj/structure/window/reinforced{ dir = 4 }, /obj/structure/table/reinforced/steel, -/obj/item/storage/box/beakers, +/obj/item/flame/lighter/random{ + pixel_x = -6; + pixel_y = 8 + }, +/obj/item/reagent_containers/dropper{ + pixel_y = -4 + }, +/obj/item/reagent_containers/glass/beaker{ + pixel_x = 5; + pixel_y = 5 + }, /turf/simulated/floor/tiled/dark, -/area/rnd/xenoarch_atrium) -"saf" = ( -/obj/effect/floor_decal/corner/dark_blue/full{ - dir = 4 - }, -/obj/machinery/light, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/port/docks) -"sag" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 1 - }, -/obj/machinery/camera/network/service{ - c_tag = "Service - Deck 2 - Bar Private Lounge" - }, -/obj/structure/bed/stool/chair/padded/beige, -/turf/simulated/floor/wood, -/area/horizon/bar) -"sam" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 +/area/horizon/rnd/xenoarch/atrium) +"saF" = ( +/obj/machinery/door/airlock/maintenance{ + dir = 1; + name = "Xenoarchaeology Maintenance Access"; + req_access = list(65) }, /obj/structure/cable/green{ - icon_state = "4-8" + icon_state = "1-2" }, -/obj/structure/table/stone/marble, -/obj/item/device/destTagger, -/obj/item/stack/packageWrap, -/obj/item/device/hand_labeler, -/obj/structure/engineer_maintenance/electric/wall, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/kitchen) -"san" = ( -/obj/effect/floor_decal/industrial/warning{ +/obj/machinery/door/firedoor{ dir = 4 }, -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/hangar/operations) -"saw" = ( -/obj/effect/floor_decal/corner/black/full{ - dir = 4 +/turf/simulated/floor/tiled/dark, +/area/horizon/rnd/xenoarch/storage) +"saG" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, /obj/structure/cable/green{ - icon_state = "1-4" + icon_state = "1-2" }, -/turf/simulated/floor/tiled, -/area/operations/lower/machinist) -"sax" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor, -/area/horizon/maintenance/deck_three/aft/starboard) -"say" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/loading/yellow{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/engine_room/rust) -"saH" = ( -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/item/material/shard, -/obj/effect/floor_decal/industrial/warning{ - dir = 6 - }, -/turf/simulated/floor/plating, -/area/maintenance/engineering) -"saM" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 6 - }, -/obj/machinery/vending/coffee, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled, -/area/security/checkpoint2) +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/xenological) "saR" = ( /obj/machinery/light{ dir = 1 }, /turf/unsimulated/floor, /area/centcom/specops) +"saV" = ( +/obj/effect/floor_decal/corner/dark_green/full{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_3/starboard) "saY" = ( /obj/item/cane/crutch, /obj/item/cane/crutch, @@ -125877,115 +125442,34 @@ /obj/structure/table/rack, /turf/unsimulated/floor, /area/centcom/legion/hangar5) -"saZ" = ( -/obj/machinery/firealarm/north, -/obj/effect/floor_decal/spline/plain/yellow{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/smes/rust) -"sba" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "0-8" - }, -/obj/structure/bed/stool/chair/padded/brown, -/obj/machinery/power/apc/east, -/turf/simulated/floor/wood, -/area/lawoffice/consular) -"sbc" = ( -/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, -/turf/simulated/floor/tiled/dark/full, -/area/rnd/hallway) -"sbf" = ( -/obj/machinery/camera/network/reactor{ - c_tag = "Engineering - INDRA Reactor Office" - }, -/turf/simulated/floor/plating, -/area/engineering/rust_office) -"sbi" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/light/small, -/obj/effect/floor_decal/corner/blue/diagonal, -/turf/simulated/floor/tiled/white, -/area/bridge/bridge_crew) -"sbk" = ( -/obj/structure/bed/stool/chair, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 1 - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 7 - }, -/turf/simulated/floor/wood, -/area/bridge/upperdeck) -"sbl" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/portable_atmospherics/canister/helium, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/storage_hard) "sbm" = ( /obj/random/pottedplant, /turf/simulated/floor/tiled/dark, /area/horizon/holodeck/source_pool) -"sbr" = ( -/obj/structure/platform_deco{ +"sbo" = ( +/obj/structure/bed/stool/chair/padded/red{ + dir = 4 + }, +/turf/simulated/floor/carpet/red, +/area/horizon/service/dining_hall) +"sbq" = ( +/obj/effect/landmark/entry_point/port{ + name = "port, compartment" + }, +/turf/simulated/wall/shuttle/unique/scc/mining{ + icon_state = "7,5" + }, +/area/horizon/shuttle/mining) +"sbD" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/atmospherics/portables_connector/supply{ dir = 8 }, -/turf/simulated/floor/tiled, -/area/rnd/xenoarch_atrium) -"sbv" = ( -/obj/machinery/atmospherics/pipe/tank/carbon_dioxide/scc_shuttle, -/turf/simulated/floor/plating, -/area/shuttle/intrepid/engineering) -"sbC" = ( -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/obj/effect/floor_decal/corner/dark_blue/full, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/tiled/dark, -/area/turret_protected/ai_upload_foyer) -"sbE" = ( -/obj/effect/floor_decal/corner/mauve/full{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/button/remote/airlock{ - id = "xeno_entrance_int_a"; - name = "Xenobiology External Access Bolts"; - pixel_y = -28; - req_access = list(55); - specialfunctions = 4; - dir = 4; - pixel_x = 22; - desiredstate = 1 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology/foyer) +/turf/simulated/floor/tiled/dark/full, +/area/horizon/shuttle/intrepid/port_storage) "sbG" = ( /obj/item/gun/energy/gun, /obj/item/gun/energy/gun, @@ -126001,120 +125485,78 @@ /obj/item/gun/projectile/automatic/wt550/unloaded, /turf/simulated/floor/tiled/dark/full, /area/horizon/security/armoury) -"sbH" = ( -/turf/simulated/wall, -/area/rnd/telesci) -"sbO" = ( -/obj/effect/floor_decal/corner/dark_blue/full, +"sbJ" = ( +/obj/machinery/door/firedoor, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/door/airlock/command{ + id_tag = "consular_office_a"; + name = "Consular Office A"; + req_access = list(72) + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/wood, +/area/horizon/command/bridge/upperdeck) +"sbR" = ( +/obj/effect/decal/cleanable/cobweb2, +/obj/effect/floor_decal/corner/red/diagonal, +/obj/machinery/portable_atmospherics/powered/pump/filled, +/obj/effect/floor_decal/industrial/outline/blue, +/obj/machinery/light/small/emergency{ + dir = 1 + }, /turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/port/docks) -"sbP" = ( -/obj/effect/floor_decal/industrial/warning, +/area/horizon/maintenance/deck_2/wing/port) +"sbT" = ( +/obj/machinery/camera/network/engineering{ + c_tag = "Engineering - Atmospherics Stairwell" + }, +/obj/effect/floor_decal/corner/yellow/full{ + dir = 8 + }, +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/obj/machinery/power/apc/north, +/turf/simulated/floor/tiled, +/area/horizon/stairwell/engineering/deck_1) +"sbY" = ( +/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/engineering/engine_room) -"sbQ" = ( -/obj/effect/floor_decal/corner_wide/yellow/diagonal, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 +/area/horizon/hangar/auxiliary) +"scr" = ( +/obj/structure/cable{ + icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/machinery/power/apc/low/south, -/obj/structure/cable/green{ - icon_state = "0-8" - }, -/turf/simulated/floor/tiled/dark, -/area/engineering/break_room) -"sbR" = ( -/obj/machinery/light/small/emergency{ +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/structure/disposalpipe/segment{ - icon_state = "pipe-c" - }, /obj/structure/lattice/catwalk/indoor/grate/dark, /turf/simulated/floor/plating, -/area/horizon/maintenance/deck_two/fore/port) -"sbV" = ( -/obj/structure/cable/green{ +/area/horizon/maintenance/deck_1/wing/port/far) +"scu" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance_hatch{ + dir = 4 + }, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; icon_state = "4-8" }, -/obj/effect/floor_decal/corner/yellow/full{ - dir = 4 - }, -/obj/machinery/newscaster/south, -/turf/simulated/floor/tiled, -/area/engineering/storage_eva) -"sbX" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/operations/lobby) -"scj" = ( -/obj/effect/floor_decal/corner_wide/green{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/structure/closet/secure_closet/personal/patient, -/turf/simulated/floor/tiled/white, -/area/medical/ward) -"sck" = ( -/obj/structure/shuttle_part/scc/scout{ - icon_state = "5,11" - }, /turf/simulated/floor/plating, -/area/shuttle/canary) -"scq" = ( -/obj/effect/floor_decal/corner_wide/purple{ - dir = 10 - }, -/obj/effect/floor_decal/corner_wide/purple{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenoarch_atrium) -"scs" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/junction{ - dir = 1; - icon_state = "pipe-j2" - }, -/obj/structure/bed/stool/bar/padded/red{ - dir = 1 - }, -/turf/simulated/floor/lino, -/area/horizon/bar) +/area/horizon/maintenance/deck_1/operations/starboard) "scv" = ( /obj/effect/decal/fake_object{ dir = 4; @@ -126129,13 +125571,26 @@ name = "coast" }, /area/horizon/holodeck/source_konyang) -"scy" = ( -/obj/structure/platform_stairs/full/east_west_cap{ - dir = 8 +"scz" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 10 }, -/obj/structure/platform/cutout, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora) +/obj/structure/railing/mapped{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/horizon/engineering/reactor/supermatter/mainchamber) +"scC" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/camera/network/engineering{ + c_tag = "Engineering - Gravity Generator"; + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/reinforced, +/area/horizon/engineering/gravity_gen) "scD" = ( /obj/effect/floor_decal/industrial/loading/yellow{ dir = 1 @@ -126146,19 +125601,11 @@ }, /turf/unsimulated/floor, /area/antag/mercenary) -"scF" = ( -/obj/effect/floor_decal/corner/dark_green/full{ - dir = 4 - }, -/obj/machinery/light/floor{ - dir = 4 - }, -/obj/effect/floor_decal/spline/plain, -/obj/effect/floor_decal/spline/plain/orange{ - dir = 4 - }, +"scG" = ( +/obj/machinery/light/small, +/obj/structure/table/steel, /turf/simulated/floor/tiled, -/area/horizon/hydroponics) +/area/horizon/medical/morgue) "scI" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 10 @@ -126173,82 +125620,35 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/holodeck/source_biesel) -"scJ" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume/aux{ +"scN" = ( +/obj/effect/floor_decal/industrial/hatch/red, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/bluespace_drive) +"scQ" = ( +/obj/structure/curtain/black, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ 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 +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor, +/area/horizon/maintenance/deck_3/aft/port/far) +"scR" = ( +/obj/effect/floor_decal/industrial/outline/firefighting_closet, +/obj/structure/closet/firecloset, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/hallway/fore) +"scX" = ( +/obj/structure/table/reinforced/wood, +/turf/simulated/floor/carpet, +/area/horizon/command/bridge/meeting_room) +"scY" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 }, /turf/simulated/floor/plating, -/area/shuttle/quark/cockpit) -"scU" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/random/junk, -/turf/simulated/floor/tiled/dark, -/area/maintenance/wing/port/far) -"scW" = ( -/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, -/turf/simulated/floor/tiled/dark/full, -/area/maintenance/wing/starboard/deck1) -"sda" = ( -/obj/structure/bed/stool/chair/office/bridge{ - dir = 1 - }, -/obj/machinery/button/remote/blast_door{ - dir = 10; - id = "bridge blast"; - name = "Bridge Lockdown"; - pixel_x = -38; - pixel_y = 42; - req_access = list(19) - }, -/obj/machinery/button/remote/blast_door{ - dir = 10; - id = "shutters_deck3_bridgesafety"; - name = "Bridge Safety Shutters"; - pixel_x = -25; - pixel_y = 42 - }, -/obj/machinery/button/remote/airlock{ - dir = 1; - pixel_x = -38; - specialfunctions = 4; - name = "Office Bolts"; - id = "capoffice"; - pixel_y = 31 - }, -/obj/machinery/button/remote/airlock{ - dir = 1; - pixel_x = -25; - name = "Office Door"; - id = "capoffice"; - pixel_y = 31 - }, -/turf/simulated/floor/carpet, -/area/crew_quarters/captain) +/area/horizon/maintenance/deck_2/wing/port/near) "sdb" = ( /obj/effect/floor_decal/carpet{ dir = 10 @@ -126262,25 +125662,13 @@ }, /turf/simulated/floor/holofloor/carpet, /area/horizon/holodeck/source_biesel) -"sde" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +"sdd" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/light{ + dir = 1 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/effect/floor_decal/corner/red/diagonal, -/obj/effect/floor_decal/spline/plain{ - dir = 6 - }, -/turf/simulated/floor/lino, -/area/horizon/cafeteria) +/turf/simulated/floor/reinforced, +/area/horizon/rnd/test_range) "sdh" = ( /obj/machinery/door/airlock/centcom{ name = "Entertainment Wing Maintenance"; @@ -126313,25 +125701,43 @@ }, /turf/unsimulated/floor, /area/centcom/spawning) -"sdo" = ( -/obj/machinery/power/smes/buildable/horizon_shuttle{ - RCon_tag = "Quark" +"sdm" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" }, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 4 +/obj/structure/cable/green{ + icon_state = "1-8" }, -/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{ +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 9 }, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard) +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor, +/area/horizon/maintenance/deck_3/aft/holodeck) +"sdp" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 8 + }, +/obj/machinery/portable_atmospherics/canister/air/airlock, +/obj/effect/floor_decal/industrial/outline/red, +/turf/simulated/floor/tiled/full, +/area/horizon/maintenance/deck_2/wing/port/near) +"sdr" = ( +/obj/machinery/door/firedoor{ + req_one_access = list(24,11,67,73) + }, +/obj/effect/floor_decal/industrial/hatch_door/yellow{ + dir = 8 + }, +/obj/machinery/door/airlock/glass_medical{ + name = "Infirmary" + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/shuttle/intrepid/medical) "sds" = ( /obj/structure/closet/walllocker/emerglocker/north{ pixel_x = -26; @@ -126344,83 +125750,68 @@ /obj/effect/floor_decal/industrial/outline/red, /turf/simulated/floor/tiled/dark/full, /area/shuttle/burglar) -"sdu" = ( -/obj/machinery/computer/rdconsole/robotics{ - dir = 4 +"sdx" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black, +/obj/machinery/atmospherics/binary/pump{ + dir = 8; + name = "Carbon dioxide to Connector" }, -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/structure/railing/mapped, /obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/carpet/rubber, -/area/operations/lower/machinist) -"sdE" = ( -/obj/machinery/atmospherics/pipe/simple/visible/yellow, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"sdF" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/effect/floor_decal/spline/plain{ - dir = 8 - }, -/obj/effect/floor_decal/spline/plain{ +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/atmos) +"sdB" = ( +/obj/structure/bed/stool/chair{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ +/obj/effect/floor_decal/spline/fancy/wood/cee{ dir = 1 }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, /obj/structure/disposalpipe/segment{ - dir = 8; + dir = 1; icon_state = "pipe-c" }, -/turf/simulated/floor/tiled/white, -/area/horizon/kitchen) -"sdG" = ( -/obj/structure/railing/mapped{ +/turf/simulated/floor/wood, +/area/horizon/command/bridge/upperdeck) +"sdK" = ( +/obj/machinery/door/airlock/glass_service{ + dir = 4; + name = "Bar - Preparations"; + req_access = list(25) + }, +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/simulated/floor/wood, -/area/crew_quarters/lounge) -"sdP" = ( -/obj/effect/floor_decal/corner_wide/purple{ - dir = 6 - }, -/obj/effect/floor_decal/corner_wide/purple{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/white, -/area/rnd/xenoarch_atrium) -"sdS" = ( -/obj/machinery/atmospherics/pipe/simple/visible/cyan{ +/turf/simulated/floor/tiled/full, +/area/horizon/service/bar) +"sdN" = ( +/obj/effect/floor_decal/corner_wide/paleblue{ dir = 9 }, -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"sdT" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/ore_box, -/turf/simulated/floor/tiled/dark/full, -/area/outpost/mining_main/refinery) -"sdV" = ( -/obj/machinery/artifact_scanpad, -/obj/effect/floor_decal/spline/plain{ - dir = 10 +/obj/item/modular_computer/console/preset/medical/cmo{ + dir = 4 }, -/turf/simulated/floor/bluegrid, -/area/rnd/isolation_a) +/turf/simulated/floor/tiled/white, +/area/horizon/command/heads/cmo) +"sdR" = ( +/obj/effect/decal/cleanable/cobweb2, +/turf/simulated/floor/tiled/dark, +/area/horizon/maintenance/deck_2/wing/port/nacelle) +"sea" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 1 + }, +/turf/simulated/floor/carpet/rubber, +/area/horizon/rnd/lab) +"sec" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/black{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/atmos/propulsion/starboard) "see" = ( /obj/machinery/door/airlock/glass{ dir = 4; @@ -126430,83 +125821,86 @@ icon_state = "wood" }, /area/antag/raider) -"sef" = ( -/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 = 4 +"sen" = ( +/obj/effect/floor_decal/corner_wide/yellow/full, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 }, /turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/central) -"sek" = ( -/obj/effect/map_effect/window_spawner/full/reinforced/polarized/grille/firedoor{ - id = "cap" - }, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "bridge blast"; - name = "Bridge Blast Doors"; - opacity = 0 +/area/horizon/engineering/hallway/interior) +"ser" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, /obj/structure/cable/green{ - icon_state = "0-2" - }, -/obj/structure/cable/green{ - icon_state = "2-4" + icon_state = "4-8" }, /obj/structure/cable/green{ icon_state = "2-8" }, -/turf/simulated/floor, -/area/crew_quarters/captain) -"sem" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 1 }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red/diagonal, +/obj/random/dirt_75, +/turf/simulated/floor/tiled, +/area/horizon/maintenance/deck_2/wing/port) +"sez" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 + dir = 4 }, -/obj/structure/cable/green{ - icon_state = "2-4" +/obj/effect/floor_decal/corner/dark_blue{ + dir = 10 }, -/obj/effect/floor_decal/corner/dark_green/diagonal, -/obj/effect/floor_decal/spline/plain, -/obj/effect/floor_decal/spline/plain/purple{ +/obj/machinery/camera/network/third_deck{ + c_tag = "Third Deck - Port Dock Starboard"; + dir = 1 + }, +/obj/structure/closet/walllocker/emerglocker{ + pixel_y = -32 + }, +/obj/effect/floor_decal/industrial/outline/emergency_closet, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_3/port/docks) +"seB" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/obj/random/junk, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/main/port) +"seG" = ( +/obj/effect/floor_decal/corner_wide/yellow{ + dir = 5 + }, +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled, +/area/horizon/engineering/hallway/aft) +"seI" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 5 + }, +/obj/machinery/light/floor{ dir = 1 }, /turf/simulated/floor/tiled, -/area/horizon/hydroponics) -"seq" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 10 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/simulated/floor/wood, -/area/operations/qm) -"seO" = ( -/obj/structure/cable{ +/area/horizon/hallway/primary/deck_2/central) +"seP" = ( +/obj/structure/cable/green{ icon_state = "1-8" }, -/obj/effect/floor_decal/corner/yellow/diagonal, -/turf/simulated/floor/tiled, -/area/hallway/engineering/rust) -"seQ" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 9 - }, -/obj/machinery/light/floor{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) +/obj/structure/railing/mapped, +/turf/simulated/floor/tiled/dark, +/area/horizon/stairwell/port/deck_3) "seR" = ( /obj/structure/table/fancy, /obj/item/paper_bin{ @@ -126518,6 +125912,15 @@ }, /turf/unsimulated/floor/wood, /area/antag/actor) +"seT" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/structure/closet/emcloset, +/obj/effect/floor_decal/industrial/outline/emergency_closet, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/rnd/xenoarch/atrium) "seU" = ( /obj/machinery/atmospherics/pipe/simple/visible/black, /obj/machinery/atmospherics/pipe/simple/visible/purple{ @@ -126529,6 +125932,46 @@ }, /turf/space/dynamic, /area/horizon/exterior) +"seX" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 1 + }, +/obj/effect/floor_decal/corner/dark_blue{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_3/starboard) +"sfa" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/light/small/emergency, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/starboard/far) +"sfe" = ( +/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/lime{ + dir = 5 + }, +/obj/machinery/alarm/north, +/turf/simulated/floor/tiled{ + name = "cooled floor"; + temperature = 278 + }, +/area/horizon/medical/morgue) "sff" = ( /obj/effect/floor_decal/spline/fancy/wood, /obj/structure/bed/stool/chair/holochair, @@ -126543,48 +125986,53 @@ /area/horizon/holodeck/source_courtroom) "sfh" = ( /turf/simulated/wall/r_wall, -/area/outpost/research/anomaly_harvest) -"sfj" = ( -/obj/effect/floor_decal/corner/lime{ - dir = 5 +/area/horizon/rnd/xenoarch/anomaly_harvest) +"sfm" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/machinery/door/window/desk/eastright{ + name = "Pharmacy Desk"; + req_access = list(33) }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled/white{ - name = "cooled white floor"; - temperature = 278.15 +/obj/machinery/door/blast/shutters{ + dir = 4; + id = "CHE3shutters"; + name = "Pharmacy Desk Shutter" }, -/area/medical/morgue/lower) +/turf/simulated/floor/tiled/dark/full, +/area/horizon/medical/pharmacy) "sfp" = ( /obj/effect/spider/stickyweb, /obj/item/toy/plushie/spider, /turf/simulated/floor/exoplanet/barren/raskara, /area/centcom/shared_dream) -"sft" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume, -/obj/machinery/airlock_sensor{ - pixel_x = 6; - pixel_y = 28 +"sfv" = ( +/obj/structure/window/shuttle/scc_space_ship, +/obj/structure/grille, +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id = "bridge blast"; + name = "Bridge Blast Doors"; + opacity = 0 }, -/obj/effect/map_effect/marker/airlock/docking{ - landmark_tag = "nav_horizon_dock_deck_3_starboard_1"; - master_tag = "airlock_horizon_dock_deck_3_starboard_1"; - name = "airlock_horizon_dock_deck_3_starboard_1" +/obj/machinery/door/firedoor, +/obj/structure/cable/green, +/obj/structure/cable/green{ + icon_state = "1-2" }, -/obj/machinery/embedded_controller/radio/airlock/docking_port{ - pixel_x = -6; - pixel_y = 28 +/obj/machinery/door/blast/shutters/open{ + dir = 4; + id = "shutters_deck3_bridgesafety"; + name = "Safety Shutter" + }, +/obj/machinery/door/blast/shutters/open{ + dir = 4; + id = "conferencesafetyshutters"; + name = "Safety Shutter" }, /turf/simulated/floor/plating, -/area/horizon/hallway/deck_three/primary/starboard/docks) -"sfu" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/maintenance{ - dir = 1; - req_access = list(12) - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor, -/area/maintenance/bridge) +/area/horizon/command/bridge/meeting_room) "sfw" = ( /obj/structure/grille, /obj/structure/cable/green, @@ -126600,27 +126048,6 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/horizon/security/hallway) -"sfC" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 6 - }, -/turf/simulated/floor/wood, -/area/chapel/main) -"sfE" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 5 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/security/checkpoint2) -"sfF" = ( -/turf/simulated/floor/tiled/dark, -/area/engineering/atmos/propulsion/starboard) "sfG" = ( /obj/machinery/door/airlock/centcom{ name = "Washroom" @@ -126630,44 +126057,50 @@ icon_state = "wood" }, /area/centcom/distress_prep) -"sfH" = ( -/obj/effect/landmark/entry_point/aft{ - name = "aft, visiting docks" - }, -/turf/simulated/wall/shuttle/scc_space_ship/cardinal, -/area/horizon/hallway/deck_three/primary/starboard/docks) -"sfM" = ( -/obj/random/dirt_75, -/obj/random/dirt_75, -/turf/simulated/floor/plating, -/area/maintenance/wing/port/far) -"sfV" = ( -/obj/structure/platform_deco/ledge{ - dir = 1 - }, -/turf/simulated/open, -/area/horizon/hallway/deck_three/primary/central) -"sfW" = ( -/obj/structure/lattice, -/turf/simulated/open, -/area/hallway/primary/central_one) -"sfY" = ( +"sfJ" = ( /obj/effect/floor_decal/industrial/warning{ dir = 8 }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 +/turf/simulated/floor/reinforced{ + blocks_air = 1; + density = 1; + name = "thruster mount" + }, +/area/horizon/engineering/atmos/propulsion) +"sfN" = ( +/obj/machinery/door/airlock/command{ + dir = 4; + id_tag = "CMOdoor"; + name = "Chief Medical Officer's Office"; + req_access = list(40) + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/full, +/area/horizon/command/heads/cmo) +"sfZ" = ( +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_2/fore) +"sgi" = ( +/obj/effect/floor_decal/industrial/warning/full, +/obj/machinery/porta_turret, +/obj/machinery/power/apc/critical/west, +/obj/structure/cable/green{ + icon_state = "0-4" }, /turf/simulated/floor/tiled/dark/full, -/area/engineering/engine_room/rust) -"sgc" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/effect/floor_decal/spline/plain{ - dir = 1 - }, -/obj/machinery/vending/coffee, -/turf/simulated/floor/tiled/dark, -/area/hallway/primary/central_one) +/area/horizon/storage/secure) "sgj" = ( /obj/effect/decal/rolling_fog, /obj/structure/railing/mapped{ @@ -126687,67 +126120,109 @@ icon_state = "dark_preview" }, /area/centcom/ferry) -"sgp" = ( +"sgm" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/atmospherics/unary/vent_pump/high_volume, +/obj/machinery/door/blast/shutters/open{ + dir = 2; + id = "intrepid_bay_outer"; + name = "Intrepid Shutter" + }, +/obj/effect/map_effect/marker/airlock/shuttle{ + cycle_to_external_air = 1; + master_tag = "airlock_shuttle_intrepid"; + name = "airlock_shuttle_intrepid"; + req_one_access = null; + shuttle_tag = "Intrepid" + }, +/obj/effect/map_effect/marker_helper/airlock/exterior, +/obj/machinery/access_button{ + dir = 4; + pixel_x = -22; + pixel_y = -3 + }, +/obj/machinery/airlock_sensor/airlock_exterior{ + dir = 4; + pixel_x = -21; + pixel_y = 7 + }, +/turf/simulated/floor/plating, +/area/horizon/shuttle/intrepid/main_compartment) +"sgr" = ( +/obj/machinery/door/firedoor{ + req_one_access = list(24,11,67,73) + }, +/obj/effect/floor_decal/industrial/hatch_door/yellow{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/shuttle/intrepid/main_compartment) +"sgu" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/obj/structure/table/rack, +/obj/random/loot, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/research) +"sgw" = ( +/obj/structure/table/standard, +/obj/machinery/firealarm/east, +/obj/effect/floor_decal/corner/mauve{ + dir = 6 + }, +/obj/machinery/microscope/science{ + dir = 4; + pixel_y = 12 + }, +/obj/item/storage/box/fancy/vials{ + pixel_y = -12 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/xenological) +"sgx" = ( +/obj/effect/floor_decal/corner/purple{ + dir = 10 + }, +/obj/structure/closet/secure_closet/custodial, +/obj/effect/floor_decal/industrial/outline/custodial, +/obj/machinery/newscaster/south, +/turf/simulated/floor/tiled, +/area/horizon/service/custodial/auxiliary) +"sgz" = ( +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/obj/machinery/power/apc/north{ + is_critical = 1 + }, +/obj/structure/coatrack{ + pixel_x = -10; + pixel_y = 24 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/structure/closet/secure_closet/xo, +/turf/simulated/floor/wood, +/area/horizon/command/heads/xo) +"sgA" = ( /obj/structure/cable/green{ icon_state = "4-8" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/structure/disposalpipe/sortjunction{ - dir = 4; - name = "Deck 1 Warehouse - Operations Shuttle"; - sortType = "Deck 1 Warehouse - Operations Shuttle" - }, -/obj/effect/floor_decal/corner/brown{ - dir = 5 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/operations/loading) -"sgs" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 5 - }, -/obj/structure/railing/mapped{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/horizon/cafeteria) -"sgt" = ( -/obj/structure/table/wood, -/obj/item/storage/pill_bottle/dice/tajara{ - pixel_x = 5; - pixel_y = 12 - }, -/obj/item/storage/pill_bottle/dice/gaming{ - pixel_x = 1; - pixel_y = 8 - }, -/obj/machinery/power/outlet, -/obj/item/storage/pill_bottle/dice{ - pixel_x = 7; - pixel_y = 1 - }, -/turf/simulated/floor/wood, -/area/horizon/library) -"sgy" = ( -/obj/effect/floor_decal/spline/fancy/wood/corner{ - dir = 8 - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/horizon/crew_quarters/lounge/bar) +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor/plating, +/area/horizon/hallway/primary/deck_2/starboard) "sgB" = ( /obj/machinery/light/small/emergency, /obj/effect/floor_decal/industrial/warning/corner{ @@ -126773,34 +126248,38 @@ /obj/random/voidsuit, /turf/simulated/floor/tiled, /area/shuttle/skipjack) -"sgI" = ( -/obj/effect/floor_decal/corner_wide/purple{ - dir = 4 +"sgD" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/wood, +/area/horizon/service/library) +"sgF" = ( +/obj/item/stack/rods, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/operations/starboard) +"sgH" = ( +/obj/effect/floor_decal/corner/black{ + dir = 9 }, -/obj/effect/floor_decal/corner_wide/purple{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 10 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/platform_deco{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenoarch_atrium) +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/railing/mapped, +/turf/simulated/floor/tiled/dark, +/area/horizon/hangar/intrepid) "sgK" = ( /obj/effect/shuttle_landmark/escape_pod/transit/pod1, /turf/space/transit/east, /area/template_noop) +"sgN" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 6 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/horizon/command/bridge/controlroom) "sgO" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 1 @@ -126823,14 +126302,43 @@ icon_state = "plating" }, /area/centcom/evac) -"shb" = ( -/obj/machinery/portable_atmospherics/canister/hydrogen, -/obj/structure/window/reinforced{ +"sgS" = ( +/obj/effect/floor_decal/corner/lime/diagonal, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/washroom) +"sgW" = ( +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/effect/floor_decal/spline/fancy/wood, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/turf/simulated/floor/wood, +/area/horizon/service/dining_hall) +"shc" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/firealarm/west, +/obj/effect/floor_decal/corner/dark_green{ + dir = 9 + }, +/obj/machinery/light/spot{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/horizon/hangar/intrepid) +"shh" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 6 + }, +/obj/machinery/light{ dir = 4 }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/reinforced, -/area/rnd/xenoarch_atrium) +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/aft_airlock) "shl" = ( /obj/machinery/door/airlock/centcom{ name = "Green Access"; @@ -126860,45 +126368,50 @@ }, /turf/unsimulated/floor/plating, /area/centcom/legion/hangar5) -"shs" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/black{ +"shr" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/effect/floor_decal/industrial/warning{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/airlock/hatch{ - dir = 4; - name = "Telecommunications - Control Room"; - req_access = list(11,24) - }, /turf/simulated/floor/tiled/dark/full, -/area/tcommsat/entrance) +/area/horizon/engineering/reactor/indra/smes) +"shv" = ( +/obj/structure/platform_deco{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/horizon/rnd/xenoarch/atrium) "shw" = ( /obj/effect/decal/cleanable/dirt, /turf/unsimulated/floor/plating, /area/centcom/legion/hangar5) -"shD" = ( -/obj/machinery/computer/shuttle_control/explore/terminal/quark{ - dir = 1; - req_access = null; - req_one_access = list(65,74) +"shy" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/reinforced/airless, +/area/horizon/engineering/reactor/indra/mainchamber) +"shA" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 8 + }, +/obj/machinery/airlock_sensor{ + dir = 8; + pixel_x = 20; + pixel_y = -6 + }, +/obj/effect/map_effect/marker/airlock/docking{ + landmark_tag = "nav_horizon_dock_deck_3_starboard_3"; + master_tag = "airlock_horizon_dock_deck_3_starboard_3"; + name = "airlock_horizon_dock_deck_3_starboard_3" + }, +/obj/machinery/embedded_controller/radio/airlock/docking_port{ + dir = 8; + pixel_x = 20; + pixel_y = 6 }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/quark/cockpit) -"shE" = ( -/obj/random/junk, -/obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, -/area/maintenance/wing/port) +/area/horizon/hallway/primary/deck_3/port/docks) "shJ" = ( /obj/item/clothing/mask/balaclava{ pixel_x = 6; @@ -126922,53 +126435,35 @@ }, /turf/unsimulated/floor, /area/antag/burglar) -"shK" = ( -/obj/structure/window/shuttle/scc_space_ship, -/obj/structure/grille/diagonal{ - dir = 4 - }, -/obj/machinery/door/blast/shutters/open{ - dir = 2; - id = "shutters_deck3_bridgesafety"; - name = "Safety Shutter" - }, +"shM" = ( /obj/structure/cable/green{ icon_state = "1-4" }, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "bridge blast"; - name = "Bridge Blast Doors"; - opacity = 0 +/turf/simulated/floor/carpet, +/area/horizon/repoffice/consular_one) +"shP" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + icon_state = "1-2" }, -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/shutters/open{ - dir = 2; - id = "conferencesafetyshutters"; - name = "Safety Shutter" - }, -/turf/simulated/floor/plating, -/area/bridge/meeting_room) -"shL" = ( -/obj/machinery/disposal/small/east{ - pixel_x = -16 - }, -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/structure/disposalpipe/trunk{ +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/corner_wide/green{ dir = 4 }, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/starboard) -"shR" = ( -/obj/machinery/firealarm/south, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 +/turf/simulated/floor/tiled/white, +/area/horizon/medical/hallway) +"shX" = ( +/obj/effect/floor_decal/corner/green/full{ + dir = 8 }, -/obj/effect/floor_decal/spline/plain, -/turf/simulated/floor/carpet/rubber, -/area/engineering/engine_monitoring/rust) +/obj/structure/table/standard, +/obj/machinery/power/apc/low/north, +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/turf/simulated/floor/tiled/white, +/area/horizon/crew/fitness/showers) "shY" = ( /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -126988,6 +126483,20 @@ "shZ" = ( /turf/simulated/floor/holofloor/reinforced, /area/template_noop) +"sia" = ( +/obj/structure/bed/stool/chair/office/bridge, +/obj/machinery/atmospherics/pipe/simple/hidden/aux{ + dir = 5 + }, +/obj/effect/floor_decal/corner/dark_blue/full{ + dir = 8 + }, +/obj/effect/floor_decal/corner/yellow/diagonal, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/command/bridge/aibunker) "sie" = ( /obj/machinery/door/blast/regular{ dir = 4; @@ -126996,6 +126505,59 @@ }, /turf/simulated/floor, /area/tdome/tdome1) +"sij" = ( +/obj/effect/decal/cleanable/cobweb2{ + icon_state = "cobweb1" + }, +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/structure/cable{ + icon_state = "12-0" + }, +/obj/machinery/atmospherics/pipe/zpipe/up/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/operations/starboard/far) +"sil" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/canister/air/airlock, +/obj/machinery/door/window/westleft{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/turf/simulated/floor/tiled, +/area/horizon/security/checkpoint2) +"sin" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 9 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/photocopier, +/obj/machinery/alarm/west, +/turf/simulated/floor/tiled, +/area/horizon/operations/office) +"sir" = ( +/obj/structure/stairs_lower/stairs_upper{ + dir = 4 + }, +/turf/simulated/wall, +/area/horizon/engineering/hallway/aft) "sit" = ( /obj/machinery/door/window/eastright{ dir = 8; @@ -127006,6 +126568,21 @@ }, /turf/simulated/floor/tiled/dark, /area/shuttle/merchant) +"siv" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 4 + }, +/obj/machinery/embedded_controller/radio/airlock/airlock_controller{ + dir = 4; + pixel_x = -20 + }, +/obj/effect/map_effect/marker/airlock{ + master_tag = "airlock_horizon_deck_3_aft_1"; + name = "airlock_horizon_deck_3_aft_1"; + frequency = 1001 + }, +/turf/simulated/floor, +/area/horizon/maintenance/deck_3/aft/port/far) "siC" = ( /obj/machinery/door/firedoor, /obj/effect/floor_decal/corner/dark_blue{ @@ -127014,27 +126591,26 @@ /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/full, /area/horizon/security/hallway) -"siF" = ( -/obj/structure/tank_wall/hydrogen{ - density = 0; - icon_state = "h12"; - opacity = 0 +"siD" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/effect/floor_decal/corner/dark_blue{ + dir = 4 }, -/obj/machinery/atmospherics/unary/outlet_injector{ - frequency = 1441; - id = "h_in"; - name = "hydrogen injector"; - use_power = 1 +/turf/simulated/floor/tiled/dark, +/area/horizon/storage/eva) +"siM" = ( +/obj/structure/platform/ledge, +/obj/structure/sign/poster{ + pixel_y = 32 }, -/turf/simulated/floor/reinforced/hydrogen, -/area/engineering/atmos) -"siK" = ( -/obj/structure/railing/mapped, -/obj/structure/platform/ledge{ - dir = 1 +/turf/simulated/floor/carpet/rubber, +/area/horizon/operations/machinist) +"siN" = ( +/obj/structure/cable{ + icon_state = "1-2" }, -/turf/simulated/open, -/area/hallway/medical/upper) +/turf/simulated/floor/tiled/dark, +/area/horizon/hangar/auxiliary) "sja" = ( /obj/structure/bed/stool/chair, /obj/effect/floor_decal/corner/paleblue{ @@ -127042,48 +126618,15 @@ }, /turf/unsimulated/floor, /area/centcom/legion) -"sjb" = ( +"sji" = ( +/obj/effect/floor_decal/corner_wide/green/diagonal, /obj/structure/table/wood, -/obj/item/paper_bin{ - pixel_x = -6 +/obj/random/pottedplant_small{ + pixel_x = 7; + pixel_y = 10 }, -/obj/item/pen/blue{ - pixel_x = 8; - pixel_y = 3 - }, -/obj/item/pen/red{ - pixel_x = 5 - }, -/obj/item/pen/green{ - pixel_y = -3; - pixel_x = 3 - }, -/turf/simulated/floor/carpet, -/area/lawoffice/consular) -"sjc" = ( -/obj/effect/floor_decal/corner/yellow{ - dir = 6 - }, -/obj/structure/table/standard, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/lobby) -"sjf" = ( -/obj/effect/floor_decal/industrial/warning/cee{ - dir = 8 - }, -/obj/machinery/alarm/west, -/turf/simulated/floor/tiled/full, -/area/engineering/storage_hard) -"sjg" = ( -/obj/structure/cable/green, -/obj/effect/map_effect/window_spawner/full/reinforced/polarized/grille/firedoor{ - id = "HoS Windows" - }, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/security/head_of_security) +/turf/simulated/floor/tiled/white, +/area/horizon/medical/exam) "sjl" = ( /obj/structure/table/reinforced/wood, /obj/machinery/chemical_dispenser/coffeemaster/full{ @@ -127098,18 +126641,15 @@ }, /turf/simulated/floor/wood, /area/shuttle/hapt) -"sjn" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +"sjp" = ( +/obj/structure/cable/green{ + icon_state = "1-2" }, -/obj/machinery/door/firedoor, -/obj/structure/table/stone/marble, -/obj/machinery/door/blast/shutters{ - id = "bar_shutter"; - name = "Bar Shutter" - }, -/turf/simulated/floor/tiled/dark, -/area/horizon/bar) +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/full, +/area/horizon/hallway/primary/deck_2/central) "sjq" = ( /obj/effect/decal/fake_object{ icon = 'icons/obj/smoothtrack.dmi'; @@ -127118,23 +126658,53 @@ }, /turf/simulated/floor/tiled/dark, /area/centcom/bar) -"sjx" = ( -/obj/machinery/door/airlock/maintenance{ - req_one_access = list(12,26,29,31,48,67); +"sjr" = ( +/obj/effect/floor_decal/corner/dark_green/diagonal, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/horizon/crew/fitness/changing) +"sjs" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 5 + }, +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/machinery/door/firedoor{ +/obj/effect/landmark{ + name = "Revenant" + }, +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/telesci) +"sju" = ( +/obj/effect/floor_decal/corner_wide/blue, +/obj/effect/floor_decal/corner_wide/yellow{ dir = 4 }, -/turf/simulated/floor/tiled/dark/full, -/area/maintenance/wing/cargo_compartment) +/obj/effect/floor_decal/industrial/warning, +/obj/effect/floor_decal/spline/plain{ + dir = 6 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/horizon/engineering/atmos/storage) "sjy" = ( /obj/item/hullbeacon/red, /obj/effect/floor_decal/industrial/warning{ dir = 1 }, /turf/simulated/floor/reinforced/airless, -/area/template_noop) +/area/horizon/exterior) +"sjH" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/visible/cyan, +/turf/simulated/floor/plating, +/area/horizon/engineering/bluespace_drive) "sjJ" = ( /obj/machinery/door/airlock/centcom{ name = "Internal Affairs Agent's Office"; @@ -127144,10 +126714,6 @@ icon_state = "dark_preview" }, /area/centcom/control) -"sjO" = ( -/obj/machinery/portable_atmospherics/canister/empty/air, -/turf/simulated/floor/plating, -/area/engineering/rust_office) "sjQ" = ( /obj/effect/floor_decal/industrial/warning{ dir = 8 @@ -127167,15 +126733,6 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/security/interrogation) -"sjS" = ( -/obj/machinery/door/blast/shutters{ - dir = 2; - id = "medicalisolation"; - name = "Isolation Ward Shutters" - }, -/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, -/turf/simulated/floor/tiled/dark/full, -/area/medical/ward/isolation) "sjV" = ( /obj/structure/bed/stool/chair{ dir = 1 @@ -127187,27 +126744,6 @@ icon_state = "white" }, /area/tdome/tdomeadmin) -"sjZ" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/maintenance{ - dir = 1; - name = "Operations Maintenance"; - req_one_access = list(26,29,31,48,67,70) - }, -/turf/simulated/floor/tiled/full, -/area/operations/break_room) -"skb" = ( -/obj/structure/cable/green{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/lino, -/area/chapel/main) "skc" = ( /obj/structure/bed/stool/chair/office/dark{ dir = 1 @@ -127221,82 +126757,15 @@ /obj/effect/decal/cleanable/dirt, /turf/unsimulated/floor, /area/antag/raider) -"skh" = ( -/obj/machinery/camera/network/command{ - c_tag = "AI Core - Foyer"; - dir = 4 - }, -/obj/machinery/power/apc/critical/south, +"ski" = ( /obj/structure/cable/green{ - icon_state = "0-4" - }, -/obj/machinery/turretid/stun{ - check_synth = 1; - name = "\improper AI Chamber Turret Control Console"; - pixel_y = 1; - pixel_x = -31; - dir = 4 - }, -/turf/simulated/floor/tiled/dark/full, -/area/turret_protected/ai_upload) -"skj" = ( -/obj/effect/floor_decal/industrial/outline/operations, -/obj/structure/closet/wardrobe/atmospherics_yellow, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/atmos/storage) -"skk" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/horizon/custodial/auxiliary) -"sko" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/stack/tile/floor, -/turf/simulated/floor/tiled, -/area/maintenance/operations) -"skq" = ( -/obj/effect/floor_decal/corner/lime/full{ - dir = 8 - }, -/obj/structure/platform_deco{ - dir = 1 - }, -/turf/simulated/floor/tiled/white{ - name = "cooled white floor"; - temperature = 278.15 - }, -/area/medical/morgue/lower) -"sks" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/effect/floor_decal/spline/plain/corner{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, -/obj/effect/floor_decal/spline/plain/corner{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/horizon/kitchen) +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/full, +/area/horizon/hangar/intrepid/interstitial) "skv" = ( /obj/effect/map_effect/window_spawner/full/reinforced/polarized/firedoor{ id = "sec_autopsy" @@ -127319,6 +126788,18 @@ }, /turf/simulated/floor/tiled, /area/horizon/security/brig) +"sky" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/structure/railing/mapped, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/bluespace_drive) "skD" = ( /obj/effect/floor_decal/industrial/outline/yellow, /obj/structure/table/rack, @@ -127339,31 +126820,6 @@ /obj/item/ammo_magazine/c762, /turf/unsimulated/floor/dark_monotile, /area/antag/actor) -"skE" = ( -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/tiled/dark/airless, -/area/template_noop) -"skF" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 5 - }, -/obj/structure/table/stone/marble, -/obj/item/storage/box/tea{ - pixel_x = -9; - pixel_y = 8 - }, -/obj/item/storage/box/tea/jaekseol{ - pixel_y = 8 - }, -/obj/item/storage/box/tea/tieguanyin{ - pixel_x = 10; - pixel_y = 8 - }, -/obj/item/reagent_containers/glass/beaker/teapot/lidded{ - pixel_y = -8 - }, -/turf/simulated/floor/marble/dark, -/area/bridge/minibar) "skG" = ( /obj/effect/decal/fake_object{ color = "#545c68"; @@ -127375,38 +126831,61 @@ /obj/effect/floor_decal/spline/fancy/wood/corner, /turf/unsimulated/floor, /area/centcom/evac) -"skN" = ( -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/random/junk, -/obj/structure/cable/green{ - icon_state = "4-8" +"skI" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 5 +/obj/effect/floor_decal/industrial/warning{ + dir = 1 }, -/obj/machinery/atmospherics/pipe/simple/hidden/aux{ - dir = 5 - }, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"skO" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/plating, -/area/engineering/drone_fabrication) +/obj/machinery/alarm/north, +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/atmos/propulsion) +"skJ" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/simulated/floor, +/area/horizon/maintenance/deck_3/aft/starboard) +"skM" = ( +/obj/machinery/hologram/holopad/long_range, +/obj/effect/overmap/visitable/ship/landable/mining_shuttle, +/turf/simulated/floor/tiled/dark, +/area/horizon/shuttle/mining) "skQ" = ( /obj/effect/shuttle_landmark/canary/transit{ dir = 1 }, /turf/space/transit/north, /area/template_noop) -"skS" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 +"skR" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 }, -/obj/effect/overmap/visitable/ship/landable/canary, -/obj/machinery/hologram/holopad/long_range, -/turf/simulated/floor/tiled/dark/full, -/area/shuttle/canary) +/obj/effect/floor_decal/corner_wide/black/full{ + dir = 6 + }, +/obj/effect/floor_decal/industrial/warning/cee{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible/green{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/atmos/propulsion) +"skT" = ( +/obj/structure/tank_wall/hydrogen{ + icon_state = "h13" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/airless, +/area/horizon/engineering/atmos) "skU" = ( /obj/machinery/door/blast/regular/open{ dir = 2; @@ -127428,15 +126907,6 @@ /obj/effect/floor_decal/industrial/hatch_door/yellow, /turf/simulated/floor/tiled/dark/full, /area/shuttle/burglar) -"skX" = ( -/obj/structure/bed/stool/chair/office/dark{ - dir = 1 - }, -/obj/effect/floor_decal/spline/plain{ - dir = 1 - }, -/turf/simulated/floor/carpet/rubber, -/area/engineering/engine_monitoring/rust) "skY" = ( /obj/machinery/telecomms/broadcaster/preset_cent, /obj/effect/floor_decal/industrial/warning/cee{ @@ -127458,41 +126928,14 @@ }, /turf/simulated/floor/reinforced/airless, /area/horizon/exterior) -"slg" = ( -/obj/effect/floor_decal/spline/fancy/wood{ +"slm" = ( +/obj/effect/floor_decal/spline/plain{ dir = 6 }, -/turf/simulated/floor/wood, -/area/bridge/minibar) -"slj" = ( -/obj/machinery/computer/ship/targeting{ - dir = 8 - }, -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/effect/floor_decal/corner/dark_blue/diagonal, -/obj/machinery/status_display{ - pixel_x = 32 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge/aibunker) -"sll" = ( -/obj/machinery/atmospherics/pipe/simple/visible/black{ - dir = 10 - }, -/obj/effect/floor_decal/corner/yellow, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/engineering/atmos) -"slm" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/wing/cargo_compartment) +/obj/structure/table/reinforced/steel, +/obj/random/hardhat, +/turf/simulated/floor/carpet/rubber, +/area/horizon/engineering/bluespace_drive/monitoring) "slt" = ( /obj/structure/table/reinforced/steel, /obj/item/storage/secure/briefcase, @@ -127501,11 +126944,15 @@ }, /turf/simulated/floor/tiled/dark, /area/shuttle/merchant) -"slv" = ( -/obj/machinery/portable_atmospherics/powered/pump/filled, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled, -/area/hangar/operations) +"slz" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/tank_wall/nitrous_oxide{ + icon_state = "h3" + }, +/turf/simulated/floor/plating, +/area/horizon/engineering/atmos/air) "slA" = ( /obj/structure/table/standard, /obj/item/storage/box/fancy/tray, @@ -127514,30 +126961,157 @@ icon_state = "white" }, /area/centcom/holding) +"slB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/corner/dark_blue{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_3/port/docks) "slD" = ( /obj/machinery/light/small/floor{ must_start_working = 1 }, /turf/unsimulated/floor/marble, /area/antag/wizard) -"slH" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 6 - }, +"slE" = ( /obj/structure/cable/green{ - icon_state = "0-2" + icon_state = "1-8" }, -/obj/machinery/power/apc/east, +/obj/structure/disposalpipe/segment{ + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/wood, +/area/horizon/service/dining_hall) +"slK" = ( +/obj/structure/bed/stool/chair/office/dark{ + dir = 4 + }, +/obj/effect/floor_decal/corner/dark_blue/diagonal, +/turf/simulated/floor/tiled/dark, +/area/horizon/hangar/control) +"slL" = ( +/turf/simulated/floor/reinforced, +/area/horizon/rnd/xenoarch/isolation_b) +"slO" = ( +/obj/machinery/hologram/holopad, /turf/simulated/floor/tiled, -/area/hallway/primary/aft) +/area/horizon/crew/vacantoffice) +"slR" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/light/small/emergency{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/security_port) +"slU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/atmospherics/binary/pump{ + name = "Mix to Connector"; + dir = 4 + }, +/turf/simulated/floor/plating, +/area/horizon/engineering/storage/lower) +"slV" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/airlock/maintenance{ + dir = 1; + req_one_access = list(12, 25) + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/horizon/stairwell/starboard/deck_2) +"slZ" = ( +/obj/structure/table/standard, +/obj/item/device/multitool, +/obj/effect/floor_decal/corner/dark_blue{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/camera/motion{ + c_tag = "Longbow"; + network = list("Command","Security") + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/weapons/longbow) +"smc" = ( +/obj/structure/ladder{ + pixel_y = 8 + }, +/turf/simulated/open, +/area/horizon/maintenance/deck_3/aft/starboard) "smg" = ( /turf/simulated/wall/elevator, /area/centcom/spawning) -"smo" = ( -/obj/machinery/door/firedoor, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/full, -/area/horizon/hallway/deck_three/primary/central) +"sml" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 10 + }, +/obj/machinery/light, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_3/port) +"smn" = ( +/obj/structure/table/reinforced/steel, +/obj/item/roller{ + pixel_x = -6 + }, +/obj/item/storage/box/bodybags{ + pixel_x = 7; + pixel_y = 10 + }, +/obj/item/storage/box/gloves{ + pixel_x = 7; + pixel_y = 1 + }, +/obj/item/reagent_containers/spray/cleaner{ + pixel_x = -7; + pixel_y = 15 + }, +/obj/item/roller{ + pixel_x = -6 + }, +/obj/effect/floor_decal/corner/lime/diagonal, +/obj/machinery/firealarm/north, +/turf/simulated/floor/tiled/white, +/area/horizon/shuttle/intrepid/medical) +"sms" = ( +/obj/structure/table/standard{ + no_cargo = 1 + }, +/obj/random/loot, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/wing/starboard/far) +"smt" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/reinforced, +/area/horizon/rnd/xenobiology/hazardous) "smB" = ( /obj/item/modular_computer/console/preset/command, /turf/simulated/floor/shuttle/black, @@ -127561,12 +127135,50 @@ }, /turf/simulated/floor/reinforced, /area/shuttle/hapt) -"smO" = ( -/obj/machinery/portable_atmospherics/hydroponics, -/obj/effect/floor_decal/industrial/outline/service, -/obj/machinery/firealarm/south, +"smE" = ( +/obj/structure/bed/stool/chair/padded/beige{ + dir = 1 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/carpet, +/area/horizon/command/heads/captain) +"smG" = ( +/obj/machinery/atmospherics/portables_connector, +/obj/machinery/portable_atmospherics/canister/air/airlock, +/obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled/dark/full, -/area/horizon/hydroponics) +/area/horizon/engineering/aft_airlock) +"smN" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/corner_wide/yellow{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/structure/closet/walllocker/medical/firstaid{ + pixel_y = 32 + }, +/obj/effect/floor_decal/industrial/outline/medical, +/turf/simulated/floor/tiled, +/area/horizon/engineering/lobby) +"smS" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/tank/air/scc_shuttle/airlock, +/turf/simulated/floor/plating, +/area/horizon/shuttle/intrepid/engineering) "smY" = ( /obj/effect/floor_decal/corner/brown{ dir = 10 @@ -127580,92 +127192,114 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/holodeck_control) -"sna" = ( -/obj/structure/lattice, -/obj/structure/platform/ledge, -/turf/simulated/open, -/area/hallway/medical/upper) -"snj" = ( -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/effect/floor_decal/industrial/loading/yellow{ - dir = 8 +"snd" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id = "bridge blast"; + name = "Bridge Blast Doors"; + opacity = 0 }, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard/far) -"sno" = ( -/obj/structure/ship_weapon_dummy{ - opacity = 1 +/turf/simulated/floor/tiled/full, +/area/horizon/hallway/primary/deck_3/central) +"snf" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 6 }, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/longbow) -"sns" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 10 - }, -/obj/machinery/alarm/east, -/turf/simulated/floor, -/area/maintenance/security_port) -"snz" = ( -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/machinery/computer/ship/sensors, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 5 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge/aibunker) -"snB" = ( -/obj/effect/floor_decal/corner/lime{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora) -"snD" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - name = "Spark scrubber vent" - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/structure/railing/mapped, -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor/reinforced, -/area/shuttle/mining) -"snK" = ( -/obj/structure/table/stone/marble, +/turf/simulated/wall/shuttle/scc_space_ship/cardinal, +/area/horizon/engineering/atmos/propulsion) +"snp" = ( /obj/effect/floor_decal/spline/fancy/wood{ - dir = 8 - }, -/obj/item/flame/candle, -/turf/simulated/floor/wood, -/area/chapel/main) -"snL" = ( -/obj/machinery/camera/network/reactor{ - c_tag = "Engineering - Supermatter Reactor 3" - }, -/obj/structure/extinguisher_cabinet/north, -/obj/structure/railing/mapped{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"snN" = ( -/obj/structure/table/standard, -/obj/effect/floor_decal/corner/beige{ dir = 9 }, +/obj/structure/extinguisher_cabinet/west, +/obj/machinery/computer/arcade, +/turf/simulated/floor/wood, +/area/horizon/service/bar) +"snr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/main/starboard) +"snt" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/airlock/maintenance_hatch{ + dir = 1; + frequency = 1379; + id_tag = "engine_airlock_exterior"; + locked = 1; + name = "Supermatter Reactor Airlock Exterior"; + req_one_access = list(11,24) + }, +/obj/machinery/access_button{ + command = "cycle_exterior"; + frequency = 1379; + master_tag = "engine_airlock_control"; + name = "Supermatter Reactor Airlock Access"; + pixel_x = 23; + req_one_access = list(11,24) + }, +/obj/machinery/door/firedoor, +/obj/machinery/embedded_controller/radio/airlock/access_controller{ + id_tag = "engine_airlock_control"; + name = "Supermatter Reactor Airlock Access Console"; + pixel_x = 38; + tag_exterior_door = "engine_airlock_exterior"; + tag_interior_door = "engine_airlock_interior" + }, +/turf/simulated/floor/tiled/full, +/area/horizon/engineering/reactor/supermatter/airlock) +"snv" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 6 + }, /turf/simulated/floor/tiled, -/area/security/vacantoffice) +/area/horizon/hallway/primary/deck_2/central) +"snw" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/reinforced, +/area/horizon/rnd/xenobiology) +"sny" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/conference) +"snC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/horizon/crew/lounge) +"snF" = ( +/obj/effect/floor_decal/industrial/warning/corner, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/port) +"snH" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/binary/pump{ + name = "Mix to Connector" + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/atmos) "snO" = ( /obj/structure/table/wood, /obj/item/device/flashlight/flare/torch{ @@ -127677,37 +127311,68 @@ }, /turf/simulated/floor/holofloor/snow, /area/horizon/holodeck/source_adhomai) -"snV" = ( -/obj/effect/floor_decal/corner/dark_green{ +"snQ" = ( +/obj/effect/floor_decal/corner/black{ dir = 5 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/effect/floor_decal/spline/plain/corner/red, -/obj/effect/floor_decal/spline/plain/purple{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" + dir = 8 }, /turf/simulated/floor/tiled, -/area/horizon/hydroponics) -"snX" = ( -/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, -/obj/machinery/door/blast/shutters/open{ - id = "RnDShutters"; +/area/horizon/operations/machinist) +"snS" = ( +/obj/structure/sign/fire{ + desc = "A caution sign which reads 'PORT PROPULSION'."; + name = "\improper PORT PROPULSION sign"; + pixel_y = -32 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/aux{ dir = 4 }, -/turf/simulated/floor/tiled/dark/full, -/area/rnd/hallway) +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/auxatmos) +"snZ" = ( +/obj/structure/ladder/up{ + pixel_y = 13 + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/wing/starboard) +"soa" = ( +/obj/machinery/door/firedoor, +/obj/effect/floor_decal/industrial/hatch/red, +/obj/structure/plasticflaps/airtight, +/obj/machinery/door/window/southleft{ + name = "Mass Driver External Access"; + req_access = list(26) + }, +/obj/machinery/door/window/northleft{ + name = "Mass Driver Internal Access"; + req_access = list(26) + }, +/turf/simulated/floor/reinforced{ + roof_type = null + }, +/area/horizon/service/custodial/disposals/deck_1) +"sod" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/obj/effect/floor_decal/corner_wide/green{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/gen_treatment) "sog" = ( /obj/structure/railing/mapped{ dir = 4 @@ -127724,114 +127389,162 @@ }, /turf/simulated/floor/tiled/dark, /area/shuttle/legion) -"sol" = ( -/obj/effect/floor_decal/industrial/outline/grey, -/obj/structure/table/steel, -/obj/item/stack/material/glass/full{ - pixel_x = -1; - pixel_y = 6 - }, -/obj/item/stack/rods/full{ - pixel_y = 2; - pixel_x = 7 - }, +"som" = ( +/obj/effect/floor_decal/industrial/warning, /turf/simulated/floor/plating, -/area/hangar/intrepid) -"sor" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 +/area/horizon/engineering/bluespace_drive) +"sop" = ( +/obj/machinery/door/blast/shutters/open{ + dir = 8; + id = "shutters_deck3_cafedesk"; + name = "Cafe Desk Shutter" }, -/turf/simulated/floor/reinforced/airless, -/area/horizon/exterior) -"sot" = ( -/obj/structure/shuttle_part/scc_space_ship{ - icon_state = "d3-5-f" +/obj/structure/table/stone/marble, +/obj/machinery/vending/dinnerware/plastic{ + pixel_y = 22 }, -/turf/simulated/wall, -/area/engineering/drone_fabrication) -"soC" = ( -/obj/effect/floor_decal/corner/mauve{ +/obj/item/reagent_containers/food/condiment/shaker/salt{ + pixel_x = -6; + pixel_y = 8 + }, +/obj/item/reagent_containers/food/condiment/shaker/peppermill{ + pixel_x = 4; + pixel_y = 8 + }, +/obj/item/flame/candle{ + pixel_y = 8 + }, +/obj/item/glass_jar{ + desc = "A small empty jar that is mostly used for giving a tip."; + name = "tip jar"; + pixel_y = -9 + }, +/obj/machinery/power/outlet{ + pixel_y = 4; + pixel_x = 10 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/service/cafeteria) +"sos" = ( +/obj/effect/floor_decal/corner/black{ + dir = 5 + }, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 6 }, -/obj/structure/platform{ - dir = 8 +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 }, -/obj/machinery/light/floor{ +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/horizon/rnd/hallway) +"soN" = ( +/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/rnd/hallway/secondary) -"soD" = ( -/obj/machinery/atmospherics/unary/vent_pump/siphon/on/atmos{ - dir = 8; - id_tag = "n2o_out" +/area/horizon/hangar/auxiliary) +"soQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/simulated/floor/reinforced/n20, -/area/engineering/atmos/air) -"soR" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 1 +/obj/effect/floor_decal/corner/brown{ + dir = 6 }, -/obj/effect/floor_decal/spline/plain, +/turf/simulated/floor/tiled/dark, +/area/horizon/operations/mining_main/eva) +"spd" = ( +/obj/effect/floor_decal/corner/purple{ + dir = 9 + }, +/obj/machinery/camera/network/service{ + c_tag = "Custodial - Disposals Fore"; + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/red{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/service/custodial/disposals/deck_1) +"spg" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/machinery/alarm/east, +/turf/simulated/floor/plating, +/area/horizon/maintenance/substation/hangar) +"sph" = ( +/turf/simulated/wall, +/area/horizon/maintenance/deck_3/security/port) +"spj" = ( +/obj/machinery/atmospherics/pipe/manifold4w/visible, +/obj/machinery/meter, /obj/structure/cable/green{ icon_state = "4-8" }, -/obj/machinery/atmospherics/pipe/simple/hidden/black{ - dir = 4 +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/atmos) +"spl" = ( +/obj/machinery/atmospherics/pipe/simple/visible/red{ + dir = 8 }, -/obj/item/device/radio/intercom/south, -/turf/simulated/floor/carpet/rubber, -/area/tcommsat/chamber) -"spa" = ( -/obj/machinery/alarm/north{ - req_one_access = list(24,11,55) +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ + icon_state = "2-4" }, -/obj/structure/reagent_dispensers/watertank, -/obj/item/reagent_containers/glass/bucket, -/obj/effect/floor_decal/industrial/outline/security, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/hydroponics) -"spf" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/spline/plain/red{ - dir = 1 - }, -/obj/effect/floor_decal/spline/plain/orange, -/turf/simulated/floor/tiled, -/area/horizon/hydroponics) +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/engineering/atmos/propulsion) "spm" = ( /obj/machinery/acting/changer, /turf/unsimulated/floor{ icon_state = "dark_preview" }, /area/centcom/specops) -"spr" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ +"spp" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/platform_stairs/south_north_solo, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/main/starboard) +"spu" = ( +/obj/structure/platform, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/light{ 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{ - icon_state = "0-2" - }, +/obj/machinery/vending/cola, +/turf/simulated/floor/tiled/full, +/area/horizon/command/bridge/upperdeck) +"spx" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/bed/stool/chair/padded/brown{ - dir = 8 - }, -/turf/simulated/floor/wood/walnut, -/area/medical/smoking) +/turf/simulated/floor/carpet/purple, +/area/horizon/command/heads/rd) "spA" = ( /obj/structure/table/rack, /obj/item/stack/material/steel{ @@ -127845,134 +127558,91 @@ /obj/effect/floor_decal/corner/red/diagonal, /turf/simulated/floor/tiled/dark, /area/shuttle/mercenary) -"spJ" = ( -/obj/machinery/light, -/obj/effect/floor_decal/corner_wide/green{ - dir = 10 - }, -/obj/effect/floor_decal/corner_wide/green{ - dir = 1 - }, -/obj/structure/table/wood, -/obj/item/clipboard{ - pixel_x = -5 - }, -/obj/item/paper_scanner{ - pixel_x = 6 - }, -/turf/simulated/floor/tiled/white, -/area/medical/exam) -"spN" = ( -/obj/effect/floor_decal/corner/dark_green/diagonal, -/obj/effect/floor_decal/industrial/loading/yellow{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"spQ" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, +"spB" = ( /obj/machinery/atmospherics/pipe/simple/hidden, -/turf/simulated/floor/tiled/dark/full, -/area/shuttle/intrepid/main_compartment) -"spU" = ( -/obj/structure/cable/green{ - icon_state = "4-8" +/obj/machinery/door/airlock/external, +/obj/effect/map_effect/marker/airlock/docking{ + landmark_tag = "nav_horizon_dock_deck_3_port_4"; + master_tag = "airlock_horizon_dock_deck_3_port_4"; + name = "airlock_horizon_dock_deck_3_port_4" }, -/turf/simulated/floor/bluegrid{ - name = "cooled mainframe floor"; - temperature = 278 +/obj/effect/map_effect/marker_helper/airlock/interior, +/obj/machinery/access_button{ + dir = 1; + pixel_x = 28; + pixel_y = 12 }, -/area/turret_protected/ai) -"spY" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/yellow{ - dir = 1 - }, -/obj/machinery/meter, /turf/simulated/floor/plating, -/area/rnd/xenoarch_atrium) +/area/horizon/hallway/primary/deck_3/starboard/docks) +"spC" = ( +/obj/machinery/camera/network/engineering{ + c_tag = "Engineering - Atmospherics Tanks 5"; + dir = 8 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/visible/black, +/turf/simulated/floor/plating, +/area/horizon/engineering/atmos/air) +"spP" = ( +/obj/machinery/computer/message_monitor, +/turf/simulated/floor/carpet/rubber, +/area/horizon/rnd/server) "sqa" = ( /obj/effect/floor_decal/corner/paleblue{ dir = 6 }, /turf/unsimulated/floor, /area/centcom/ferry) -"sql" = ( -/turf/simulated/wall/shuttle/scc, -/area/shuttle/intrepid/main_compartment) -"sqs" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/machinery/light/small/emergency{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/warning{ +"sqc" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 6 }, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard/deck1) -"squ" = ( -/obj/effect/floor_decal/corner_wide/purple/diagonal, -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled/white, -/area/rnd/test_range) -"sqx" = ( -/obj/machinery/door/airlock/highsecurity{ - dir = 1; - name = "AI Upload"; - req_access = list(16) +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/blast/regular{ - dir = 4; - id = "ai_upload"; - name = "AI Foyer Blast Door" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/dark, -/area/turret_protected/ai_upload_foyer) -"sqD" = ( -/obj/effect/floor_decal/corner_wide/yellow{ - dir = 9 - }, -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/turf/simulated/floor/tiled, -/area/hallway/engineering/rust) -"sqF" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled/white, -/area/hallway/medical/upper) -"sqI" = ( -/obj/effect/floor_decal/corner/white/diagonal, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/ai/upload) +"sqh" = ( /obj/effect/floor_decal/industrial/warning{ dir = 8 }, +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled, -/area/medical/paramedic) -"sqP" = ( -/obj/structure/table/steel, -/obj/machinery/light/colored/red{ +/area/horizon/hangar/operations) +"sqi" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/orange{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plating, +/area/horizon/engineering/reactor/supermatter/mainchamber) +"sqj" = ( +/obj/effect/floor_decal/industrial/outline_straight/service{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/outline_straight/service{ dir = 4 }, -/turf/simulated/floor/shuttle/black, -/area/shuttle/hapt) -"sqS" = ( -/obj/structure/cable/green{ - icon_state = "4-8" +/obj/machinery/meter, +/obj/effect/landmark/start{ + name = "Gardener" + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/service/hydroponics/lower) +"sqr" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -127980,12 +127650,76 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance{ + dir = 4; + req_one_access = list(12) + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor, +/area/horizon/maintenance/deck_3/aft/port) +"sqt" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 6 + }, +/turf/simulated/floor/wood, +/area/horizon/command/bridge/minibar) +"sqy" = ( +/obj/effect/floor_decal/industrial/outline/service, +/obj/machinery/chem_master, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/service/hydroponics/lower) +"sqA" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 1 + }, +/obj/effect/floor_decal/spline/plain/corner, +/obj/effect/floor_decal/spline/plain/corner{ + dir = 8 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/turf/simulated/floor/carpet/rubber, +/area/horizon/tcommsat/chamber) +"sqB" = ( +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 4; + icon_state = "shutter0"; + id = "LCKDshutters"; + name = "MedBay Lockdown Shutters"; + opacity = 0 + }, +/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, +/obj/structure/sign/greencross/small, +/turf/simulated/floor/plating, +/area/horizon/medical/reception) +"sqN" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/lattice/catwalk/indoor/grate, -/turf/simulated/floor, -/area/horizon/hallway/deck_three/primary/central) +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/full, +/area/horizon/rnd/hallway) +"sqP" = ( +/obj/structure/table/steel, +/obj/machinery/light/colored/red{ + dir = 4 + }, +/turf/simulated/floor/shuttle/black, +/area/shuttle/hapt) "sqT" = ( /obj/effect/floor_decal/corner/teal{ dir = 10 @@ -128006,59 +127740,91 @@ /obj/structure/closet/secure_closet/merchant, /turf/simulated/floor/tiled, /area/merchant_station/warehouse) -"srb" = ( -/obj/machinery/door/firedoor, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/machinery/door/airlock/maintenance_hatch{ - dir = 1; - req_one_access = list(12) +"srf" = ( +/obj/structure/coatrack{ + pixel_x = 14 }, -/obj/structure/cable{ +/obj/machinery/photocopier, +/obj/machinery/camera/network/research{ + c_tag = "Research - Research Director's Office" + }, +/turf/simulated/floor/carpet/purple, +/area/horizon/command/heads/rd) +"srj" = ( +/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 = null; + req_one_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/horizon/hangar/control) +"srm" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/table/rack{ + dir = 8 + }, +/obj/item/device/flash{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/device/flash{ + pixel_y = 4 + }, +/obj/item/device/flash{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/device/flash{ + pixel_x = 8; + pixel_y = 4 + }, +/obj/item/device/flash{ + pixel_x = -4 + }, +/obj/item/device/flash, +/obj/item/device/flash{ + pixel_x = 4 + }, +/obj/item/device/flash{ + pixel_x = 8 + }, +/obj/effect/floor_decal/corner/yellow{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/storage/tech) +"srr" = ( +/obj/structure/disposalpipe/junction{ + dir = 1; + icon_state = "pipe-j2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/lattice/catwalk/indoor/grate, +/obj/structure/cable/green{ icon_state = "1-2" }, /turf/simulated/floor, -/area/maintenance/engineering_ladder) -"sri" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/tiled/full, -/area/hallway/primary/central_two) -"sro" = ( -/obj/effect/floor_decal/corner_wide/green{ - dir = 6 - }, -/obj/structure/mirror{ - pixel_x = 27 - }, -/obj/structure/sink{ - dir = 4; - pixel_x = 13 - }, -/turf/simulated/floor/tiled/white, -/area/medical/ward) -"srq" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/sortjunction/untagged/flipped{ - dir = 4 - }, -/obj/structure/lattice/catwalk/indoor/grate, -/turf/simulated/floor/plating, -/area/hallway/engineering) +/area/horizon/command/bridge/upperdeck) +"srt" = ( +/obj/structure/closet/secure_closet/package_courier, +/turf/simulated/floor/tiled, +/area/horizon/operations/warehouse) "srw" = ( /obj/machinery/atmospherics/pipe/manifold/visible/purple{ dir = 4 @@ -128066,23 +127832,47 @@ /obj/structure/lattice, /turf/space/dynamic, /area/horizon/exterior) -"srC" = ( -/obj/machinery/conveyor{ - id = "cargo_1" +"srz" = ( +/obj/effect/floor_decal/corner_wide/purple{ + dir = 10 }, -/obj/machinery/door/firedoor, -/obj/structure/plasticflaps, -/obj/machinery/door/airlock/external{ +/obj/effect/floor_decal/corner_wide/purple{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/structure/platform{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/xenoarch/atrium) +"srA" = ( +/obj/structure/platform_deco{ + dir = 1 + }, +/turf/simulated/floor/tiled/full, +/area/horizon/command/bridge/upperdeck) +"srB" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning/corner, +/obj/structure/railing/mapped{ dir = 1; - frequency = 1380; - icon_state = "door_locked"; - id_tag = "cargo_shuttle_dock_airlock"; - locked = 1; - name = "Cargo Shuttle"; - req_access = list(13,31) + pixel_y = 8 }, -/turf/simulated/floor/tiled, -/area/operations/loading) +/turf/simulated/floor/plating, +/area/horizon/hangar/intrepid) "srD" = ( /obj/effect/decal/fake_object{ dir = 4; @@ -128092,81 +127882,84 @@ }, /turf/unsimulated/floor/plating, /area/antag/raider) +"srE" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan, +/turf/simulated/floor/plating, +/area/horizon/engineering/bluespace_drive) "srH" = ( /obj/effect/floor_decal/corner/green/full{ dir = 1 }, /turf/unsimulated/floor, /area/centcom/bar) -"srJ" = ( -/obj/structure/platform{ +"srI" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/starboard/far) +"srQ" = ( +/obj/effect/floor_decal/corner/green{ + dir = 10 + }, +/obj/machinery/power/apc/low/south, +/obj/structure/cable/green, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/crew/washroom/deck_3) +"ssa" = ( +/obj/structure/closet, +/obj/random/loot, +/obj/machinery/light/small/emergency{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/cargo_compartment) +"ssb" = ( +/obj/structure/platform, +/obj/structure/window/reinforced{ dir = 1 }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/effect/floor_decal/corner/dark_blue/diagonal, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/firedoor{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/bridge) -"srL" = ( /obj/structure/table/standard, -/obj/item/toy/plushie/nymph{ - pixel_y = 16; - pixel_x = -4 +/obj/item/roller{ + pixel_y = 6 }, -/obj/item/device/hand_labeler{ - pixel_y = -1; - pixel_x = -4 +/obj/item/storage/box/sharps, +/obj/item/storage/box/sharps, +/turf/simulated/floor/tiled/dark, +/area/horizon/rnd/xenobiology/dissection) +"ssd" = ( +/obj/structure/cable/green{ + icon_state = "1-2" }, -/obj/random/lavalamp{ - pixel_y = 11; - pixel_x = 9 - }, -/obj/item/device/destTagger{ - pixel_y = -4; - pixel_x = 7 - }, -/obj/item/stack/packageWrap{ - pixel_y = -2 - }, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/hydroponics/lower) -"srO" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/turf/simulated/floor/tiled/full, -/area/hallway/engineering) -"srV" = ( -/obj/structure/curtain/black{ - icon_state = "open"; - opacity = 0 - }, -/obj/effect/floor_decal/spline/fancy/wood, -/obj/machinery/door/firedoor, -/turf/simulated/floor/wood, -/area/horizon/crew_quarters/lounge/bar) -"ssh" = ( -/obj/machinery/computer/ship/sensors/terminal{ +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 1 }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_3/central) +"ssf" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/main/starboard) +"ssg" = ( +/obj/structure/bed/stool/chair/padded/beige{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/horizon/command/bridge/minibar) +"ssl" = ( +/obj/effect/floor_decal/corner/black{ + dir = 9 + }, +/obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled/dark, -/area/shuttle/quark/cockpit) +/area/horizon/hangar/intrepid) "ssn" = ( /obj/structure/closet/secure_closet/security{ name = "officer's locker"; @@ -128189,14 +127982,61 @@ icon_state = "dark_preview" }, /area/centcom/spawning) -"sss" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 10 +"ssp" = ( +/obj/structure/table/standard, +/obj/effect/floor_decal/corner_wide/orange{ + dir = 6 }, -/obj/machinery/light/floor, -/obj/structure/railing/mapped, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) +/obj/item/device/quikpay{ + destinationact = "Medical"; + pixel_y = 7; + pixel_x = -5 + }, +/obj/machinery/button/remote/blast_door{ + dir = 10; + id = "CHE2shutters"; + name = "Window Shutter Control"; + pixel_x = 6; + pixel_y = 9; + req_access = list(33) + }, +/obj/machinery/button/remote/blast_door{ + dir = 10; + id = "CHE3shutters"; + name = "Desk Shutter Control"; + pixel_x = 6; + pixel_y = -1; + req_access = list(33) + }, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/pharmacy) +"ssr" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/starboard/far) +"sst" = ( +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 2; + icon_state = "shutter0"; + id = "LCKDshutters"; + name = "Medical Lockdown Shutters"; + opacity = 0 + }, +/obj/effect/map_effect/window_spawner/full/reinforced/polarized/firedoor{ + id = "psych" + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/medical/psych) "ssw" = ( /obj/structure/cable/green{ icon_state = "1-2" @@ -128209,6 +128049,10 @@ }, /turf/simulated/floor/tiled, /area/horizon/security/hallway) +"ssy" = ( +/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/service/custodial/disposals/deck_1) "ssF" = ( /obj/effect/floor_decal/corner{ dir = 5 @@ -128219,18 +128063,6 @@ }, /turf/simulated/floor/marble/dark, /area/horizon/holodeck/source_tribunal) -"ssL" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/plating, -/area/maintenance/wing/port/far) -"ssM" = ( -/obj/machinery/door/blast/shutters{ - dir = 4; - id = "cargo_desk" - }, -/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, -/turf/simulated/floor/tiled/dark/full, -/area/operations/office) "ssN" = ( /obj/effect/floor_decal/corner_wide/blue, /obj/effect/floor_decal/spline/plain/corner, @@ -128241,6 +128073,11 @@ icon_state = "dark_preview" }, /area/centcom/specops) +"ssY" = ( +/obj/machinery/recharge_station, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/rnd/hallway) "ssZ" = ( /obj/structure/cryofeed, /obj/structure/window/reinforced/crescent{ @@ -128251,40 +128088,39 @@ icon_state = "dark_preview" }, /area/centcom/ferry) -"sta" = ( -/obj/machinery/atmospherics/pipe/simple/visible/red, -/obj/machinery/meter, -/obj/effect/floor_decal/corner/yellow{ - dir = 1 +"std" = ( +/turf/simulated/floor, +/area/horizon/maintenance/deck_2/wing/starboard/far) +"sth" = ( +/obj/machinery/chemical_dispenser/full{ + dir = 8 }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/engineering/atmos) -"sti" = ( -/turf/simulated/wall/r_wall, -/area/engineering/storage/tech) -"stk" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_pump{ - external_pressure_bound = 140; - external_pressure_bound_default = 140; - icon_state = "map_vent_out"; - pressure_checks = 0; - pressure_checks_default = 0; - use_power = 1 - }, -/obj/effect/floor_decal/spline/plain{ +/obj/effect/floor_decal/spline/plain/cee{ dir = 8 }, /turf/simulated/floor/carpet/rubber, -/area/tcommsat/chamber) -"stq" = ( -/turf/simulated/wall, -/area/medical/ors) +/area/horizon/rnd/chemistry) +"stl" = ( +/obj/effect/floor_decal/corner_wide/blue/full{ + dir = 4 + }, +/obj/structure/table/reinforced/steel, +/obj/item/grenade/chem_grenade/large/phoroncleaner{ + pixel_x = -6 + }, +/obj/item/grenade/chem_grenade/large/phoroncleaner{ + pixel_x = 8 + }, +/obj/item/grenade/chem_grenade/large/phoroncleaner{ + pixel_x = 1; + pixel_y = 7 + }, +/obj/machinery/door/window/northright{ + name = "Storage"; + req_access = list(20) + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/storage/secure) "stu" = ( /obj/structure/cable/green{ icon_state = "1-2" @@ -128296,83 +128132,47 @@ }, /turf/simulated/floor/tiled, /area/horizon/security/investigations_hallway) -"stC" = ( +"stz" = ( +/obj/structure/table/stone/marble, +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/shutters{ + dir = 2; + id = "bar_shutter"; + name = "Bar Shutter" + }, +/obj/machinery/power/outlet, +/turf/simulated/floor/tiled/dark, +/area/horizon/service/bar) +"stD" = ( +/obj/machinery/smartfridge/secure, +/obj/machinery/door/blast/shutters{ + dir = 4; + id = "horizon_commissary_desk" + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/operations/commissary) +"stG" = ( +/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/lattice/catwalk/indoor/grate, +/turf/simulated/floor/plating, +/area/horizon/hallway/primary/deck_2/starboard) +"stI" = ( /turf/simulated/wall, -/area/medical/cryo) +/area/horizon/engineering/hallway/fore) "stL" = ( /obj/effect/floor_decal/corner/red{ dir = 4 }, /turf/unsimulated/floor, /area/centcom/control) -"stN" = ( -/obj/machinery/button/mass_driver{ - _wifi_id = "waste"; - id = "waste"; - name = "Mass Driver Activation"; - pixel_x = 6; - pixel_y = 30 - }, -/obj/machinery/button/remote/blast_door{ - id = "waste"; - name = "Mass Driver Blast Door"; - pixel_x = 6; - pixel_y = 40 - }, -/obj/effect/floor_decal/corner/purple/full{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 4 - }, -/obj/machinery/button/remote/blast_door{ - id = "shutters_disposals"; - name = "Viewing Shutters"; - pixel_x = -6; - pixel_y = 40 - }, -/obj/machinery/alarm/west, -/turf/simulated/floor/tiled/dark, -/area/horizon/custodial/disposals) -"stO" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/visible/cyan{ - dir = 4 - }, -/obj/structure/cable/orange{ - icon_state = "1-2" - }, -/obj/structure/table/reinforced/steel, -/obj/machinery/button/remote/blast_door{ - desc = "A remote control-switch for the engine control room blast doors."; - dir = 1; - id = "EngineBlast"; - name = "Supermatter Reactor Monitoring Room Blast Doors"; - pixel_y = -3; - req_one_access = list(11,24) - }, -/obj/machinery/button/remote/blast_door{ - desc = "A remote control-switch for the engine charging port."; - dir = 1; - id = "SupermatterPort"; - name = "Supermatter Reactor Crystal Viewing Blast Doors"; - pixel_x = -6; - pixel_y = 7; - req_one_access = list(11,24) - }, -/obj/machinery/button/remote/emitter{ - desc = "A remote control-switch for the supermatter reactor's emitter."; - dir = 1; - id = "ReactorEmitter"; - name = "Supermatter Reactor Emitter"; - pixel_x = 6; - pixel_y = 7; - req_one_access = list(11,24) - }, -/turf/simulated/floor/plating, -/area/engineering/engine_room) "stP" = ( /obj/structure/table/rack, /obj/item/towel{ @@ -128382,27 +128182,37 @@ /obj/effect/floor_decal/corner/paleblue/full, /turf/unsimulated/floor/freezer, /area/antag/mercenary) -"stR" = ( -/obj/structure/bed/stool/chair/shuttle{ - dir = 8 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/shuttle/dark_blue, -/area/shuttle/escape_pod/pod3) -"stW" = ( -/obj/structure/cable{ +"stV" = ( +/obj/structure/cable/green{ icon_state = "1-2" }, -/obj/effect/floor_decal/corner_wide/yellow/full, -/obj/machinery/door/airlock/maintenance{ - dir = 1; - req_one_access = list(11,24) +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/dark/full, -/area/storage/shields) +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/rnd/xenoarch/storage) +"stX" = ( +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/machinery/disposal/small/north, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 6 + }, +/turf/simulated/floor/wood, +/area/horizon/service/bar) +"stZ" = ( +/obj/machinery/alarm/north, +/obj/random/loot, +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/obj/random/dirt_75, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/port/far) "sub" = ( /obj/structure/shuttle/engine/propulsion{ icon_state = "propulsion_l"; @@ -128417,6 +128227,21 @@ }, /turf/unsimulated/floor/plating, /area/centcom/distress_prep) +"sud" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/sign/double/barsign{ + dir = 4; + pixel_x = -64 + }, +/obj/effect/floor_decal/corner/dark_green/full, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_2/fore) "suf" = ( /obj/effect/floor_decal/industrial/warning{ dir = 1 @@ -128430,39 +128255,6 @@ /obj/effect/floor_decal/spline/plain, /turf/unsimulated/floor/plating, /area/centcom/bar) -"sui" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 10 - }, -/obj/machinery/light/floor, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/starboard) -"suk" = ( -/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/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/bridge/controlroom) -"sul" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/maintenance/wing/port/far) "sup" = ( /obj/item/modular_computer/console/preset/command{ dir = 4 @@ -128471,83 +128263,11 @@ icon_state = "dark_preview" }, /area/centcom/control) -"suu" = ( -/obj/structure/shuttle_part/scc/scout{ - icon_state = "7,8" - }, -/turf/simulated/floor/plating, -/area/shuttle/canary) -"suw" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/item/hullbeacon/red, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/hangar/operations) -"suy" = ( -/obj/effect/floor_decal/corner_wide/yellow{ - dir = 9 - }, -/obj/structure/cable/green{ - icon_state = "2-4" - }, -/obj/machinery/firealarm/west, -/turf/simulated/floor/tiled, -/area/hallway/engineering/rust) -"suA" = ( -/obj/vehicle/train/cargo/trolley/pussywagon, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/horizon/custodial) "suD" = ( /turf/simulated/floor/airless/lava{ density = 1 }, /area/centcom/shared_dream) -"suE" = ( -/obj/structure/table/wood, -/obj/item/paper_bin{ - pixel_x = 5; - pixel_y = 4 - }, -/obj/item/stamp/denied{ - pixel_x = -7; - pixel_y = 7 - }, -/obj/item/folder/yellow{ - pixel_x = 5; - pixel_y = 4 - }, -/obj/item/pen/multi{ - pixel_x = 5; - pixel_y = 5 - }, -/obj/item/stamp/op{ - pixel_x = -7; - pixel_y = 4 - }, -/obj/machinery/power/outlet{ - pixel_y = -5; - pixel_x = -7 - }, -/obj/item/clipboard{ - pixel_y = 3; - pixel_x = 5 - }, -/turf/simulated/floor/carpet, -/area/operations/qm) "suH" = ( /obj/machinery/cryopod, /obj/effect/floor_decal/corner/paleblue/diagonal{ @@ -128555,72 +128275,36 @@ }, /turf/simulated/floor/tiled/white, /area/merchant_station) -"suL" = ( -/obj/machinery/light/small/emergency{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/aux{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 10 - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, +"suN" = ( /turf/simulated/floor/plating, -/area/maintenance/research_port) -"suT" = ( -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/plating, -/area/maintenance/wing/port/deck1) -"suX" = ( -/obj/structure/table/wood, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 4 - }, -/obj/item/reagent_containers/food/condiment/shaker/salt{ - pixel_x = 6; +/area/horizon/hangar/auxiliary) +"suS" = ( +/obj/structure/table/reinforced/wood, +/obj/item/pen, +/obj/item/paper_bin{ + pixel_x = -3; pixel_y = 7 }, -/obj/item/reagent_containers/food/condiment/shaker/peppermill{ - pixel_x = 6; - pixel_y = 4 +/turf/simulated/floor/tiled/dark, +/area/horizon/command/bridge/meeting_room) +"suY" = ( +/obj/structure/table/steel, +/obj/random/tool{ + pixel_y = 6 }, -/obj/structure/platform{ - dir = 8 - }, -/obj/random/pottedplant_small{ - spawn_nothing_percentage = 25; - name = "random potted plant, small (25% nothing)"; - pixel_y = -1; - pixel_x = -1 - }, -/turf/simulated/floor/wood, -/area/horizon/crew_quarters/lounge/bar) -"suZ" = ( -/obj/machinery/camera/network/engineering{ - c_tag = "Engineering - Atmospherics Tanks 4"; - dir = 8 - }, -/turf/simulated/floor/plating, -/area/engineering/atmos/air) -"svg" = ( -/obj/structure/morgue{ - dir = 8 - }, -/obj/effect/floor_decal/spline/plain{ - dir = 4 - }, -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/structure/platform{ - dir = 8 - }, -/turf/simulated/floor/tiled/freezer{ - name = "cooled tiles"; - temperature = 278.15 - }, -/area/medical/morgue/lower) +/turf/simulated/floor, +/area/horizon/maintenance/deck_3/aft/starboard) +"svh" = ( +/obj/structure/railing/mapped, +/obj/structure/filingcabinet/chestdrawer, +/turf/simulated/floor/tiled/dark, +/area/horizon/rnd/lab) +"svl" = ( +/obj/structure/platform/ledge, +/obj/effect/decal/cleanable/blood/oil, +/obj/structure/engineer_maintenance/electric/wall, +/turf/simulated/floor/carpet/rubber, +/area/horizon/operations/machinist) "svm" = ( /obj/structure/bed/stool/chair/padded/blue{ dir = 8 @@ -128629,6 +128313,14 @@ icon_state = "wood" }, /area/centcom/holding) +"svo" = ( +/obj/machinery/light/floor, +/obj/machinery/camera/network/command{ + c_tag = "Bridge - Atrium Fore"; + dir = 1 + }, +/turf/simulated/floor/tiled/full, +/area/horizon/command/bridge/upperdeck) "svq" = ( /obj/effect/floor_decal/corner/dark_blue{ dir = 6 @@ -128647,42 +128339,35 @@ }, /turf/simulated/floor/tiled, /area/horizon/security/investigations_hallway) -"svt" = ( -/obj/structure/platform/ledge, -/obj/structure/platform_deco/ledge{ - dir = 1 +"svr" = ( +/obj/machinery/door/airlock/external, +/obj/effect/floor_decal/industrial/hatch/red, +/obj/effect/floor_decal/industrial/warning/cee{ + dir = 4 }, -/turf/simulated/open, -/area/horizon/hallway/deck_three/primary/central) -"svG" = ( -/obj/effect/floor_decal/corner/yellow{ - dir = 10 +/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/structure/cable/green{ - icon_state = "1-2" +/obj/effect/map_effect/marker_helper/airlock/exterior, +/turf/simulated/floor/plating, +/area/horizon/shuttle/quark/cargo_hold) +"svv" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ +/obj/effect/floor_decal/spline/plain, +/turf/simulated/floor/carpet/rubber, +/area/horizon/engineering/reactor/supermatter/monitoring) +"svI" = ( +/obj/effect/floor_decal/spline/fancy/wood{ dir = 6 }, -/turf/simulated/floor/tiled, -/area/engineering/rust_office) -"svH" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/maintenance/engineering) -"svK" = ( -/obj/machinery/firealarm/east, -/turf/simulated/floor/tiled, -/area/horizon/hydroponics/lower) +/turf/simulated/floor/wood, +/area/horizon/service/chapel/main) "svL" = ( /obj/structure/bed/stool/chair/office/dark{ dir = 8 @@ -128737,84 +128422,110 @@ /obj/structure/lattice/catwalk/indoor, /turf/unsimulated/floor/plating, /area/centcom/checkpoint/aft) -"svZ" = ( -/obj/effect/floor_decal/corner/mauve{ - dir = 9 +"svW" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable{ + icon_state = "1-2" }, -/turf/simulated/floor/tiled/white, -/area/storage/eva) -"swg" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/airlock/maintenance{ + dir = 1; + name = "Maintenance Passthrough"; + req_access = list(12) }, -/turf/simulated/floor/plating, -/area/engineering/bluespace_drive) +/turf/simulated/floor/tiled/full, +/area/horizon/stairwell/starboard/deck_1) +"swc" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/reinforced, +/area/horizon/rnd/xenoarch/isolation_b) +"swe" = ( +/obj/effect/floor_decal/corner/dark_blue/diagonal, +/obj/item/modular_computer/console/preset/security{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark, +/area/horizon/security/checkpoint) "swk" = ( /obj/machinery/atmospherics/pipe/manifold/visible, /obj/structure/lattice/catwalk/indoor/grate/dark, /turf/unsimulated/floor/plating, /area/centcom/legion) +"swm" = ( +/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/horizon/hangar/auxiliary) "swn" = ( /obj/effect/floor_decal/snowdrift/large{ dir = 8 }, /turf/simulated/floor/exoplanet/snow, /area/centcom/shared_dream) -"sww" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 9 +"swq" = ( +/obj/structure/cable/green{ + icon_state = "4-8" }, /obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 + dir = 1 }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_two) -"swA" = ( -/obj/structure/bed/stool/bar/padded/red{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/horizon/library) -"swC" = ( -/obj/structure/table/reinforced/wood, -/obj/machinery/chemical_dispenser/bar_soft{ - dir = 1; - pixel_y = 1 - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 7 - }, -/obj/item/reagent_containers/food/drinks/drinkingglass{ - pixel_y = 16; - pixel_x = 7 - }, -/obj/item/reagent_containers/food/drinks/drinkingglass{ - pixel_y = 16 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/heads/hop/xo) -"swD" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/machinery/computer/general_air_control/large_tank_control/terminal{ - name = "Phoron Supply Monitor"; - output_tag = "ph_out_portthruster"; - sensors = list("ph_sensor"="Tank") - }, -/obj/effect/floor_decal/industrial/outline/custodial, -/turf/simulated/floor/tiled/dark, -/area/engineering/atmos/propulsion) -"swF" = ( -/obj/effect/floor_decal/corner/mauve{ +/obj/effect/floor_decal/corner/dark_green{ dir = 10 }, +/obj/structure/railing/mapped, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_3/central) +"sws" = ( +/obj/machinery/light/small/emergency{ + dir = 8 + }, +/obj/effect/map_effect/marker/airlock/docking{ + landmark_tag = "nav_horizon_dock_deck_3_port_4"; + master_tag = "airlock_horizon_dock_deck_3_port_4"; + name = "airlock_horizon_dock_deck_3_port_4" + }, +/turf/simulated/floor/plating, +/area/horizon/hallway/primary/deck_3/starboard/docks) +"swx" = ( +/obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/blast/shutters/open{ + dir = 2; + id = "warehouse4"; + name = "Warehouse Shutter" + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/full, +/area/horizon/operations/warehouse) +"swA" = ( +/obj/effect/floor_decal/corner_wide/purple{ + dir = 9 + }, +/obj/effect/floor_decal/corner_wide/purple{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/visible/yellow{ + dir = 4 + }, /obj/structure/cable/green{ icon_state = "1-2" }, -/obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/white, -/area/rnd/xenobiology/xenological) +/area/horizon/rnd/xenoarch/atrium) "swI" = ( /obj/structure/railing/mapped{ dir = 8 @@ -128829,42 +128540,85 @@ icon_state = "wood" }, /area/centcom/spawning) +"swN" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 4 + }, +/obj/machinery/airlock_sensor{ + dir = 4; + pixel_x = -20 + }, +/obj/effect/map_effect/marker/airlock{ + frequency = 3002; + master_tag = "airlock_horizon_deck_2_port_1"; + name = "airlock_horizon_deck_2_port_1" + }, +/turf/simulated/floor, +/area/horizon/maintenance/deck_2/wing/starboard/far) "swT" = ( /turf/simulated/wall/shuttle/unique/mercenary/small{ icon_state = "7,3" }, /area/shuttle/syndicate_elite) -"swZ" = ( +"swV" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, /obj/effect/floor_decal/spline/fancy/wood{ - dir = 8 + dir = 7 }, -/obj/structure/bed/stool/bar/padded/blue{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/bridge/minibar) -"sxc" = ( -/obj/structure/closet/crate, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"sxd" = ( -/obj/structure/table/wood, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ +/obj/effect/floor_decal/spline/fancy/wood/corner{ dir = 4 }, -/turf/simulated/floor/carpet, -/area/lawoffice/representative) -"sxf" = ( -/obj/machinery/light/small{ +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/wood, +/area/horizon/command/heads/xo) +"swX" = ( +/obj/structure/railing/mapped, +/obj/structure/platform/ledge{ + dir = 1 + }, +/turf/simulated/open, +/area/horizon/medical/hallway/upper) +"sxb" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 5 + }, +/obj/effect/floor_decal/corner/dark_blue{ dir = 8 }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/table/rack, -/turf/unsimulated/floor/linoleum, -/area/antag/actor) +/turf/simulated/floor/tiled/dark, +/area/horizon/storage/eva) +"sxf" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/lino, +/area/horizon/service/dining_hall) +"sxh" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment{ + icon_state = "pipe-c" + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/port/near) "sxj" = ( /obj/structure/table/reinforced/steel, /obj/effect/floor_decal/corner/paleblue/diagonal{ @@ -128883,6 +128637,12 @@ }, /turf/simulated/floor/tiled/white, /area/merchant_station) +"sxl" = ( +/turf/simulated/floor/tiled/freezer{ + name = "cooled tiles"; + temperature = 278.15 + }, +/area/horizon/medical/morgue) "sxm" = ( /obj/effect/decal/fake_object{ dir = 4; @@ -128902,77 +128662,97 @@ icon_state = "dark_preview" }, /area/centcom/control) -"sxt" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/floor_decal/corner_wide/yellow{ +"sxp" = ( +/obj/effect/floor_decal/corner/dark_green{ dir = 6 }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/engineering) -"sxx" = ( -/obj/machinery/recharge_station, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/effect/floor_decal/spline/plain{ - dir = 9 - }, -/turf/simulated/floor/carpet/rubber, -/area/assembly/chargebay) -"sxB" = ( -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 8 - }, -/turf/simulated/floor/reinforced/airless, -/area/template_noop) -"sxF" = ( -/obj/machinery/porta_turret/crescent, -/obj/effect/floor_decal/industrial/warning/full, -/turf/unsimulated/floor, -/area/centcom/control) -"sxJ" = ( -/obj/machinery/door/blast/shutters/open{ - dir = 2; - id = "CHE2shutters"; - name = "Window Shutter" - }, -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 2; - icon_state = "shutter0"; - id = "LCKDshutters"; - name = "MedBay Lockdown Shutters"; - opacity = 0 - }, -/obj/effect/map_effect/window_spawner/full/borosilicate/reinforced/firedoor, -/turf/simulated/floor/tiled/dark/full, -/area/medical/pharmacy) -"sxP" = ( -/turf/simulated/wall/shuttle/unique/scc/mining{ - icon_state = "3,1" - }, -/area/shuttle/mining) -"sxT" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/structure/disposalpipe/segment{ +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_2/central) +"sxq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/railing/mapped{ + dir = 1 + }, +/turf/simulated/floor/tiled/ramp/bottom{ dir = 4 }, -/turf/simulated/floor/tiled, -/area/horizon/crew_quarters/cryo/living_quarters_lift) +/area/horizon/maintenance/deck_1/wing/starboard) +"sxs" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/green{ + dir = 1 + }, +/obj/machinery/meter, +/obj/machinery/light, +/turf/simulated/floor/plating, +/area/horizon/engineering/atmos/air) +"sxz" = ( +/obj/structure/table/standard, +/obj/item/clothing/glasses/hud/health{ + pixel_y = -14 + }, +/obj/item/clothing/glasses/hud/health{ + pixel_y = -14 + }, +/obj/item/clothing/glasses/hud/health{ + pixel_y = -14 + }, +/obj/item/clothing/glasses/hud/health{ + pixel_y = -14 + }, +/obj/item/clothing/glasses/hud/health{ + pixel_y = -14 + }, +/obj/item/clothing/glasses/hud/health{ + pixel_y = -14 + }, +/obj/item/clothing/glasses/hud/health{ + pixel_y = -14 + }, +/obj/item/clothing/glasses/hud/health{ + pixel_y = -14 + }, +/obj/item/cane, +/obj/item/cane, +/obj/item/cane, +/obj/item/cane, +/obj/effect/floor_decal/corner_wide/green/full{ + dir = 1 + }, +/obj/item/defibrillator/loaded{ + pixel_x = -8; + pixel_y = 4 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/equipment) +"sxE" = ( +/obj/structure/shuttle_part/scc_space_ship{ + icon_state = "d3-4-f" + }, +/turf/simulated/wall/shuttle/scc_space_ship/cardinal, +/area/horizon/maintenance/deck_2/wing/port) +"sxF" = ( +/obj/machinery/porta_turret/crescent, +/obj/effect/floor_decal/industrial/warning/full, +/turf/unsimulated/floor, +/area/centcom/control) +"sxH" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/open, +/area/horizon/maintenance/deck_2/wing/port) +"sxS" = ( +/turf/simulated/floor/wood, +/area/horizon/command/heads/rd) "sxV" = ( /obj/machinery/light{ dir = 4 @@ -128992,6 +128772,15 @@ "sxY" = ( /turf/space/transit/east, /area/template_noop) +"sxZ" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/structure/sign/nosmoking_1{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/reactor/indra/mainchamber) "sya" = ( /obj/effect/floor_decal/corner/dark_blue{ dir = 9 @@ -129001,58 +128790,127 @@ }, /turf/simulated/floor/tiled, /area/horizon/security/brig) -"syk" = ( -/obj/effect/floor_decal/corner/black{ - dir = 9 - }, -/obj/effect/floor_decal/industrial/outline/yellow, +"syc" = ( +/obj/structure/lattice, /obj/structure/railing/mapped, -/turf/simulated/floor/tiled/dark, -/area/hangar/intrepid) -"sys" = ( -/turf/simulated/floor/reinforced, -/area/rnd/test_range) -"syz" = ( -/turf/simulated/floor/carpet, -/area/hallway/primary/central_two) -"syE" = ( -/obj/effect/floor_decal/corner_wide/purple{ - dir = 10 +/obj/structure/platform/ledge{ + dir = 1 }, -/obj/effect/floor_decal/corner_wide/purple{ - dir = 4 +/turf/simulated/open, +/area/horizon/operations/office) +"sye" = ( +/obj/structure/bed/stool/chair/shuttle/double{ + pixel_x = 8; + dir = 1 }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/white, -/area/rnd/xenoarch_atrium) -"syL" = ( -/obj/effect/map_effect/window_spawner/full/borosilicate/reinforced, -/obj/machinery/door/blast/regular/open{ - id = "r_ust_core_blast"; - name = "INDRA Reactor Blast Doors" +/obj/structure/bed/stool/chair/shuttle/double{ + pixel_x = -8; + dir = 1 }, -/obj/structure/cable/yellow{ - icon_state = "4-8" +/obj/effect/floor_decal/spline/plain/cee/black{ + dir = 1 }, /turf/simulated/floor/tiled/dark/full, -/area/engineering/engine_room/rust) +/area/horizon/shuttle/intrepid/main_compartment) +"syg" = ( +/obj/structure/table/rack{ + dir = 8 + }, +/obj/effect/floor_decal/corner/yellow/diagonal, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/item/circuitboard/rdtechprocessor{ + pixel_y = 8 + }, +/obj/item/circuitboard/unary_atmos/heater{ + pixel_y = 4 + }, +/obj/item/circuitboard/rdconsole, +/obj/item/circuitboard/rdserver{ + pixel_y = -4 + }, +/obj/item/circuitboard/unary_atmos/cooler{ + pixel_y = -8 + }, +/obj/machinery/light/small, +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/storage/tech) +"syh" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/obj/structure/flora/ausbushes/stalkybush, +/obj/machinery/door/firedoor, +/obj/structure/window/reinforced{ + dir = 4; + pixel_y = -10 + }, +/obj/structure/window/reinforced{ + dir = 8; + pixel_y = -10 + }, +/turf/simulated/floor/grass/no_edge, +/area/horizon/hallway/primary/deck_3/port) +"syo" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/atmos/propulsion) +"syK" = ( +/obj/effect/landmark/entry_point/starboard{ + name = "starboard, atmospherics" + }, +/turf/simulated/wall/shuttle/scc, +/area/horizon/shuttle/intrepid/engineering) "syN" = ( /obj/effect/step_trigger/thrower/shuttle/east, /turf/space/transit/north, /area/template_noop) -"syO" = ( -/obj/machinery/light, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 10 +"syQ" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 }, -/turf/simulated/floor/tiled, -/area/bridge/bridge_crew) +/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/horizon/rnd/xenoarch/atrium) "syR" = ( /obj/effect/floor_decal/corner/white{ dir = 1 }, /turf/simulated/floor/holofloor/tiled, /area/horizon/holodeck/source_battlemonsters) +"syS" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/engineering{ + dir = 4; + name = "Deck 2 and 3 Security Substation"; + req_one_access = list(11,24) + }, +/obj/machinery/door/blast/regular/open{ + id = "hangarlockdown"; + name = "Hangar Lockdown" + }, +/turf/simulated/floor/tiled/full, +/area/horizon/maintenance/substation/security) +"syV" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/horizon/hangar/intrepid) "syW" = ( /obj/structure/cable/green{ icon_state = "1-2" @@ -129062,35 +128920,22 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, /area/horizon/security/investigations_hallway) -"syY" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard) -"sza" = ( -/obj/machinery/door/airlock/hatch{ - dir = 4; - name = "Elevator Emergency Escape Hatch"; - req_one_access = list(11,24,67) - }, -/obj/effect/map_effect/door_helper/unres{ +"syZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/obj/machinery/door/firedoor{ +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/turf/simulated/floor/tiled/full, -/area/hallway/primary/aft) -"szg" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - icon_state = "1-2" +/obj/effect/floor_decal/corner_wide/green{ + dir = 10 }, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" }, /turf/simulated/floor/tiled/white, -/area/medical/icu) +/area/horizon/medical/hallway/upper) "szj" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -129110,13 +128955,44 @@ /obj/random/pottedplant, /turf/unsimulated/floor, /area/centcom/legion) -"szM" = ( -/turf/simulated/floor/reinforced{ - blocks_air = 1; - density = 1; - name = "thruster mount" +"szv" = ( +/obj/structure/railing/mapped, +/turf/simulated/open, +/area/horizon/engineering/break_room) +"szw" = ( +/obj/machinery/light{ + dir = 4 }, -/area/engineering/atmos/propulsion/starboard) +/obj/effect/floor_decal/industrial/loading/yellow, +/obj/effect/floor_decal/spline/plain{ + dir = 6 + }, +/obj/effect/landmark/latejoincyborg, +/turf/simulated/floor/carpet/rubber, +/area/horizon/crew/chargebay) +"szB" = ( +/obj/machinery/chemical_dispenser/full{ + req_access = list(7) + }, +/obj/effect/floor_decal/spline/plain/cee, +/turf/simulated/floor/carpet/rubber, +/area/horizon/rnd/chemistry) +"szF" = ( +/obj/effect/floor_decal/corner/dark_blue/full{ + dir = 1 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/table/steel, +/obj/item/paper_bin, +/obj/item/pen, +/obj/item/device/radio/intercom/east, +/turf/simulated/floor/tiled/dark, +/area/horizon/hangar/control) +"szR" = ( +/turf/simulated/wall/r_wall, +/area/horizon/repoffice/representative_two) "szT" = ( /obj/machinery/button/remote/blast_door{ dir = 4; @@ -129131,17 +129007,36 @@ }, /turf/unsimulated/floor, /area/centcom/bar) -"sAd" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 5 +"szV" = ( +/obj/structure/platform_deco{ + dir = 1 }, -/obj/machinery/power/apc/hyper/north, -/obj/structure/cable/green{ - icon_state = "0-8" +/obj/machinery/atmospherics/binary/pump{ + dir = 4; + name = "Trays to Scrubbers" }, -/obj/random/pottedplant, /turf/simulated/floor/tiled/dark, -/area/turret_protected/ai_upload_foyer) +/area/horizon/rnd/xenobiology/xenoflora) +"szX" = ( +/obj/machinery/atmospherics/pipe/manifold4w/visible/black, +/obj/machinery/meter, +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/atmos/propulsion) +"sAc" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/item/hullbeacon/red, +/obj/machinery/camera/network/supply{ + c_tag = "Operations - Mining Shuttle Dock Port"; + dir = 1 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/airless, +/area/horizon/hangar/operations) "sAe" = ( /obj/structure/table/standard, /obj/item/storage/box/cups, @@ -129171,43 +129066,62 @@ /obj/item/storage/box/sharps, /turf/simulated/floor/tiled/white, /area/horizon/security/autopsy_laboratory) -"sAi" = ( -/obj/structure/table/wood, -/obj/machinery/photocopier/faxmachine{ - anchored = 0; - department = "Representative's Office A"; - pixel_y = 4 +"sAj" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/structure/railing/mapped{ + dir = 4 }, -/obj/effect/floor_decal/spline/fancy/wood/cee{ - dir = 8 +/turf/simulated/floor/tiled/dark/full/airless, +/area/horizon/command/bridge/controlroom) +"sAl" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 }, -/turf/simulated/floor/wood, -/area/lawoffice/representative) -"sAu" = ( -/obj/machinery/portable_atmospherics/canister/air/airlock, -/obj/machinery/atmospherics/portables_connector{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/warning, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/maintenance/deck_three/aft/starboard) -"sAv" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 + dir = 5 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/effect/floor_decal/corner/green{ + dir = 9 }, -/obj/machinery/bluespace_beacon, +/obj/machinery/firealarm/west, +/turf/simulated/floor/tiled/white, +/area/horizon/operations/break_room) +"sAm" = ( +/obj/effect/floor_decal/industrial/outline/grey, +/obj/structure/closet/crate/plastic{ + name = "flags crate" + }, +/obj/item/flag/scc, +/obj/item/flag/scc, +/obj/item/flag/scc, +/obj/item/flag/scc, +/obj/item/flag/scc/l, +/obj/item/flag/scc/l, +/obj/item/flag/scc, +/obj/item/flag/scc, +/turf/simulated/floor/plating, +/area/horizon/hangar/intrepid) +"sAn" = ( +/obj/effect/floor_decal/spline/plain, +/obj/item/stock_parts/micro_laser, +/obj/item/stock_parts/manipulator, +/obj/item/stock_parts/manipulator, +/obj/item/stock_parts/manipulator, +/obj/item/stock_parts/manipulator, +/obj/item/stock_parts/capacitor, +/obj/item/stock_parts/micro_laser/high, +/obj/item/stock_parts/micro_laser/high, +/obj/item/stock_parts/micro_laser/high, +/obj/item/stock_parts/micro_laser/high, +/obj/structure/table/standard, +/turf/simulated/floor/carpet/rubber, +/area/horizon/tcommsat/entrance) +"sAq" = ( /obj/structure/cable/green{ icon_state = "4-8" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/bridge/controlroom) +/turf/simulated/floor/tiled/dark, +/area/horizon/command/bridge/aibunker) "sAx" = ( /obj/structure/sign/pods{ desc = "A direction sign which reads 'DROPPODS'."; @@ -129228,42 +129142,77 @@ icon_state = "panelscorched" }, /area/centcom/legion/hangar5) +"sAC" = ( +/obj/structure/table/stone/marble, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/obj/item/flame/candle, +/turf/simulated/floor/wood, +/area/horizon/service/chapel/main) +"sAD" = ( +/obj/effect/landmark/entry_point/fore{ + name = "fore, cargo shuttle" + }, +/turf/unsimulated/wall/fakepdoor{ + dir = 4 + }, +/area/horizon/hangar/operations) +"sAG" = ( +/obj/machinery/door/window/northright, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/light/small/emergency{ + dir = 4 + }, +/obj/random/dirt_75, +/obj/random/dirt_75, +/turf/simulated/floor/carpet/rubber, +/area/horizon/maintenance/deck_2/wing/starboard/nacelle) +"sAI" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/obj/machinery/light/small/emergency{ + dir = 4 + }, +/obj/structure/trash_pile, +/turf/simulated/floor, +/area/horizon/maintenance/deck_3/aft/holodeck) +"sAJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/effect/overmap/visitable/ship/landable/canary, +/obj/machinery/hologram/holopad/long_range, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/shuttle/canary) "sAN" = ( /obj/effect/floor_decal/corner/red/full, /turf/simulated/floor/marble/dark, /area/horizon/holodeck/source_tribunal) -"sAR" = ( -/obj/structure/platform{ - dir = 8 +"sAQ" = ( +/obj/structure/table/stone/marble, +/obj/machinery/reagentgrinder{ + pixel_x = 4; + pixel_y = 16 }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 10 +/obj/item/reagent_containers/glass/beaker/large{ + pixel_x = -9; + pixel_y = 15 }, -/obj/structure/railing/mapped{ - dir = 4 +/obj/item/reagent_containers/glass/beaker/large{ + pixel_x = -9; + pixel_y = 6 }, -/turf/simulated/floor/reinforced, -/area/bridge/controlroom) -"sAS" = ( -/obj/machinery/light, -/turf/simulated/floor/tiled, -/area/bridge/controlroom) -"sAU" = ( -/obj/machinery/firealarm/west, -/obj/random/pottedplant, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 10 +/obj/item/storage/box/gloves{ + pixel_x = 5; + pixel_y = -2 }, -/turf/simulated/floor/wood, -/area/crew_quarters/lounge/secondary) -"sAV" = ( -/obj/machinery/door/firedoor, -/obj/effect/floor_decal/corner/dark_green{ - dir = 6 - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/full, -/area/horizon/hallway/deck_three/primary/central) +/obj/structure/extinguisher_cabinet/east, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/service/kitchen) "sBb" = ( /obj/structure/table/rack, /obj/item/device/flashlight/flare, @@ -129293,108 +129242,68 @@ }, /turf/unsimulated/floor, /area/centcom/legion/hangar5) -"sBd" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/structure/cable{ - icon_state = "0-2" +"sBe" = ( +/obj/structure/shuttle_part/scc_space_ship{ + icon_state = "d3-5" }, -/obj/machinery/power/apc/north, +/obj/structure/girder, /turf/simulated/floor/plating, -/area/maintenance/engineering) -"sBf" = ( -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 2; - icon_state = "shutter0"; - id = "LCKDshutters"; - name = "MedBay Lockdown Shutters"; - opacity = 0 +/area/horizon/maintenance/deck_2/wing/starboard/far) +"sBk" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 }, -/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, -/turf/simulated/floor/tiled/dark/full, -/area/medical/gen_treatment) -"sBj" = ( -/obj/effect/floor_decal/corner_wide/yellow{ - dir = 9 +/obj/effect/floor_decal/corner/dark_green{ + dir = 10 }, -/obj/structure/closet/walllocker/firecloset{ - pixel_x = -32 - }, -/obj/effect/floor_decal/industrial/outline/firefighting_closet, /turf/simulated/floor/tiled, -/area/hallway/engineering) -"sBn" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/structure/extinguisher_cabinet/east, -/turf/simulated/floor/plating, -/area/operations/lower/machinist) +/area/horizon/hallway/primary/deck_3/central) "sBq" = ( /obj/structure/sign/staff_only, /turf/unsimulated/wall/darkshuttlewall, /area/centcom/bar) -"sBx" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small/emergency{ +"sBr" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/effect/floor_decal/industrial/warning{ dir = 1 }, -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/plating, -/area/maintenance/wing/port/deck1) -"sBy" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" + dir = 4 }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/reactor/indra/smes) +"sBw" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/alarm/north, /obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor, -/area/horizon/maintenance/deck_three/aft/starboard) -"sBA" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 9 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 }, -/obj/structure/table/reinforced/wood, -/obj/item/pinpointer{ - pixel_x = 7; - pixel_y = -2 +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/starboard) +"sBz" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 5 }, -/obj/item/disk/nuclear{ - pixel_x = 10; - pixel_y = 6 +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_3/central) +"sBF" = ( +/obj/machinery/door/window/eastright, +/obj/structure/platform_stairs/full/east_west_cap, +/obj/structure/platform/cutout{ + dir = 4 }, -/obj/machinery/button/remote/blast_door{ - desc = "A remote control-switch for shutters."; - dir = 1; - id = "cap_office_desk"; - name = "Desk Privacy Shutter"; - pixel_x = -6; - pixel_y = 8 - }, -/obj/machinery/button/remote/airlock{ - dir = 1; - pixel_x = -6; - name = "Command Foyer Doors"; - id = "command_foyer"; - pixel_y = -3 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/captain) -"sBD" = ( -/obj/structure/closet/secure_closet/engineering_chief, -/obj/item/device/radio/intercom/south, -/obj/machinery/requests_console/east{ - announcementConsole = 1; - department = "Chief Engineer's Desk"; - departmentType = 6; - name = "Chief Engineer RC" - }, -/turf/simulated/floor/carpet, -/area/crew_quarters/heads/chief) +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/port/far) "sBJ" = ( /obj/effect/floor_decal/spline/plain/corner{ dir = 8 @@ -129404,48 +129313,45 @@ }, /turf/simulated/floor/exoplanet/barren/raskara, /area/centcom/shared_dream) -"sBM" = ( -/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, -/obj/machinery/door/blast/shutters/open{ - id = "RnDShutters" +"sBN" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" }, -/turf/simulated/floor/tiled/dark/full, -/area/rnd/hallway) -"sBU" = ( -/obj/machinery/door/blast/shutters{ - density = 0; - id = "RnDDesk"; - name = "Research and Development"; - opacity = 0 - }, -/obj/structure/table/reinforced/steel, -/obj/machinery/door/window/desk/northright{ - req_access = list(7); - name = "Research and Development" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/shutters/open{ - id = "RnDShutters" - }, -/turf/simulated/floor/tiled, -/area/rnd/lab) -"sBW" = ( -/obj/effect/floor_decal/corner/mauve{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ +/obj/effect/floor_decal/industrial/warning{ dir = 1 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/random/junk, +/turf/simulated/floor, +/area/horizon/maintenance/deck_3/aft/starboard) +"sBZ" = ( +/obj/machinery/stargazer, +/obj/effect/floor_decal/spline/plain/corner{ dir = 4 }, -/obj/machinery/disposal/small/south, -/obj/structure/disposalpipe/trunk, -/obj/structure/cable/green{ - icon_state = "4-8" +/obj/effect/floor_decal/spline/plain/corner, +/obj/effect/floor_decal/spline/plain/corner{ + dir = 1 }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology/foyer) +/obj/effect/floor_decal/spline/plain/corner{ + dir = 8 + }, +/turf/simulated/floor/carpet/rubber, +/area/horizon/hallway/primary/deck_2/central) +"sCa" = ( +/obj/structure/disposalpipe/trunk, +/obj/structure/platform, +/obj/machinery/disposal, +/turf/simulated/floor/tiled, +/area/horizon/command/bridge/meeting_room) +"sCc" = ( +/obj/structure/ship_weapon_dummy, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/reinforced, +/area/horizon/weapons/grauwolf) "sCe" = ( /obj/machinery/atmospherics/pipe/simple/visible/purple{ dir = 4 @@ -129467,18 +129373,43 @@ "sCh" = ( /turf/template_noop, /area/horizon/exterior) -"sCk" = ( -/obj/effect/floor_decal/corner/green/diagonal, -/obj/machinery/firealarm/north, +"sCn" = ( +/obj/structure/bed/stool/chair/office/dark, +/obj/effect/floor_decal/corner_wide/paleblue{ + dir = 5 + }, /turf/simulated/floor/tiled/white, -/area/medical/ward/isolation) -"sCs" = ( -/obj/machinery/atmospherics/portables_connector{ +/area/horizon/medical/hallway) +"sCo" = ( +/obj/machinery/atmospherics/pipe/manifold/visible, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/atmos) +"sCq" = ( +/obj/structure/bed/stool/chair/office/dark{ + dir = 4 + }, +/obj/effect/floor_decal/corner_wide/purple/full{ + dir = 4 + }, +/obj/effect/floor_decal/corner_wide/purple/diagonal, +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/test_range) +"sCr" = ( +/obj/effect/floor_decal/spline/fancy/wood{ dir = 8 }, -/obj/effect/floor_decal/industrial/outline/security, -/turf/simulated/floor/plating, -/area/engineering/engine_room) +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/obj/machinery/disposal/small/west, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/horizon/command/heads/hos) "sCx" = ( /obj/effect/floor_decal/industrial/warning{ dir = 1 @@ -129489,60 +129420,13 @@ }, /turf/simulated/floor/tiled/dark, /area/shuttle/mercenary) -"sCB" = ( -/obj/effect/floor_decal/corner_wide/purple{ - dir = 9 +"sCG" = ( +/obj/structure/bed/stool/chair/sofa/left/brown, +/obj/effect/landmark/start{ + name = "Passenger" }, -/obj/effect/floor_decal/corner_wide/purple{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/visible/yellow{ - dir = 8 - }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/obj/structure/platform_deco{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenoarch_atrium) -"sCC" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/structure/disposalpipe/sortjunction/flipped{ - sortType = "Commissary"; - name = "Commissary" - }, -/obj/structure/lattice/catwalk/indoor/grate, -/turf/simulated/floor/plating, -/area/hallway/primary/central_two) -"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) +/turf/simulated/floor/carpet/art, +/area/horizon/crew/lounge) "sCH" = ( /obj/effect/floor_decal/corner/grey/diagonal{ dir = 4 @@ -129565,31 +129449,18 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/security/meeting_room) -"sCP" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor, -/area/horizon/maintenance/deck_three/aft/starboard) "sCQ" = ( /obj/machinery/chem_master/condimaster{ pixel_y = 1 }, /turf/unsimulated/floor, /area/centcom/bar) -"sCS" = ( -/obj/effect/landmark/entry_point/fore{ - name = "fore, visiting dock" +"sCT" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 }, -/turf/simulated/wall/shuttle/scc_space_ship/cardinal, -/area/security/checkpoint2) -"sCX" = ( -/obj/machinery/light/small/emergency{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/maintenance/deck_three/aft/starboard) +/turf/simulated/floor/plating, +/area/horizon/hangar/intrepid) "sDa" = ( /obj/structure/lattice/catwalk/indoor, /obj/machinery/door/blast/odin/open{ @@ -129598,45 +129469,53 @@ }, /turf/unsimulated/floor, /area/centcom/legion/hangar5) -"sDd" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/tank/air/scc_shuttle/airlock, -/turf/simulated/floor/plating, -/area/shuttle/intrepid/engineering) -"sDj" = ( +"sDc" = ( +/obj/effect/floor_decal/corner/green/diagonal, /obj/structure/table/standard, -/obj/item/device/hand_labeler, -/obj/item/tape_roll{ - pixel_x = -14; - pixel_y = 10 +/obj/structure/bedsheetbin{ + pixel_y = 5 }, -/turf/simulated/floor/carpet/rubber, -/area/rnd/lab) +/turf/simulated/floor/tiled/white, +/area/horizon/medical/ward/isolation) +"sDe" = ( +/obj/machinery/conveyor{ + dir = 9; + id = "cargo_1" + }, +/turf/simulated/floor/tiled, +/area/horizon/operations/loading) +"sDh" = ( +/obj/structure/table/reinforced/glass, +/obj/item/paper_bin, +/obj/item/pen{ + pixel_x = -4 + }, +/obj/item/pen/red{ + pixel_x = -1; + pixel_y = 4 + }, +/obj/item/pen/blue{ + pixel_x = 3; + pixel_y = 7 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/wood, +/area/horizon/rnd/conference) +"sDk" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden, +/obj/effect/map_effect/marker/airlock{ + frequency = 1002; + master_tag = "airlock_horizon_deck_3_fore_starboard_1"; + name = "airlock_horizon_deck_3_fore_starboard_1" + }, +/turf/simulated/floor, +/area/horizon/maintenance/deck_3/bridge) "sDo" = ( /obj/structure/disposalpipe/segment, /turf/simulated/floor, /area/tdome) -"sDp" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/light, -/obj/effect/floor_decal/corner/dark_green{ - dir = 10 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/central) "sDq" = ( /obj/structure/ladder/up{ pixel_y = 16 @@ -129647,6 +129526,35 @@ }, /turf/simulated/floor/reinforced/airless, /area/horizon/exterior) +"sDv" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/binary/pump{ + dir = 4; + name = "Mix to Waste" + }, +/obj/effect/floor_decal/corner/yellow{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/atmos) +"sDw" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/door/airlock/maintenance{ + dir = 1; + req_one_access = list(5,12) + }, +/turf/simulated/floor, +/area/horizon/maintenance/deck_3/aft/holodeck) "sDz" = ( /obj/machinery/door/airlock/external{ dir = 4; @@ -129677,60 +129585,15 @@ icon_state = "dark_preview" }, /area/centcom/holding) -"sDG" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 +"sDE" = ( +/obj/structure/cable{ + icon_state = "1-2" }, -/obj/machinery/light/spot{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/engine_room) -"sDJ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/operations/storage) -"sDN" = ( -/obj/machinery/shipsensors/weak/scc_shuttle{ - density = 1; - pixel_y = -15 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 6 - }, -/turf/simulated/floor/reinforced/airless, -/area/shuttle/mining) -"sDO" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 10 - }, -/obj/item/device/radio/intercom/south, -/obj/machinery/camera/network/second_deck{ - c_tag = "Second Deck - Auxiliary Custodial Closet Entrance"; - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/operations/lobby) -"sDQ" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/effect/floor_decal/corner/brown/full{ - dir = 1 - }, -/obj/machinery/computer/shuttle_control/multi/lift/wall/operations{ - dir = 8; - pixel_x = 24; - pixel_y = 24 - }, -/turf/simulated/floor/tiled, -/area/operations/office) +/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/horizon/maintenance/deck_2/wing/starboard/far) "sDR" = ( /obj/machinery/door/airlock/external{ dir = 1; @@ -129743,68 +129606,120 @@ /obj/effect/floor_decal/industrial/hatch/yellow, /turf/unsimulated/floor, /area/centcom/distress_prep) +"sDT" = ( +/obj/structure/closet/crate, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/random/loot, +/obj/random/contraband, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/hangar/port) "sDU" = ( /obj/effect/shuttle_landmark/escape_pod/transit/pod3, /turf/space/transit/east, /area/template_noop) -"sEb" = ( -/obj/machinery/door/airlock/command{ - dir = 4; - id_tag = "conference_room"; - name = "Conference Room"; - req_one_access = list(19,38,72) +"sDZ" = ( +/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/dark_blue{ + dir = 6 }, -/obj/machinery/door/firedoor, -/obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled, -/area/bridge/meeting_room) +/area/horizon/hangar/intrepid/interstitial) "sEd" = ( /turf/simulated/wall/shuttle/unique/ert{ icon_state = "7,4" }, /area/shuttle/specops) -"sEj" = ( -/obj/structure/disposalpipe/segment{ - icon_state = "pipe-c" +"sEe" = ( +/obj/machinery/light/small{ + dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 +/obj/effect/floor_decal/corner/purple{ + dir = 6 }, /obj/structure/cable/green{ - icon_state = "2-8" + icon_state = "4-8" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/service/custodial/disposals/deck_1) +"sEi" = ( +/obj/machinery/alarm/south, +/obj/effect/floor_decal/corner/mauve{ dir = 10 }, -/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/structure/table/standard, +/obj/machinery/reagentgrinder{ + pixel_x = -6; + pixel_y = 7 + }, +/obj/item/stack/material/phoron{ + pixel_y = 8 + }, +/obj/item/stack/material/phoron{ + pixel_y = 8 + }, +/obj/item/stack/material/phoron{ + pixel_y = 8 + }, +/obj/item/stack/material/phoron{ + pixel_y = 8 + }, +/obj/item/stack/material/phoron{ + pixel_y = 8 + }, +/obj/item/storage/box/fancy/vials{ + pixel_x = 10 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/xenobiology) +"sEm" = ( +/obj/structure/window/shuttle/unique/scc/mining, +/obj/machinery/door/firedoor, /turf/simulated/floor/plating, -/area/maintenance/research_port) -"sEw" = ( +/area/horizon/shuttle/mining) +"sEs" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/effect/floor_decal/corner/yellow{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/aft_airlock) +"sEv" = ( +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 5 }, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark/full, -/area/rnd/xenoarch_atrium) -"sEy" = ( -/obj/structure/table/reinforced/wood, -/obj/item/storage/slide_projector, -/turf/simulated/floor/carpet, -/area/crew_quarters/captain) +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/port/near) "sEA" = ( /turf/unsimulated/wall/steel, /area/antag/burglar) -"sEE" = ( -/obj/machinery/atmospherics/unary/outlet_injector{ - frequency = 1441; - id = "co2_in"; - name = "carbon dioxide injector"; - use_power = 1 +"sEF" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 6 }, -/turf/simulated/floor/reinforced/carbon_dioxide, -/area/engineering/atmos) +/obj/machinery/vending/coffee, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled, +/area/horizon/security/checkpoint2) "sEG" = ( /obj/effect/floor_decal/corner/beige{ dir = 10 @@ -129820,43 +129735,6 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/white, /area/horizon/security/forensic_laboratory) -"sEH" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/effect/floor_decal/corner/brown{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/operations/office) -"sEJ" = ( -/obj/effect/floor_decal/spline/fancy/wood/cee, -/obj/structure/flora/ausbushes/brflowers, -/turf/simulated/floor/grass/no_edge, -/area/horizon/hallway/deck_three/primary/central) -"sEM" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/turf/simulated/floor/tiled/dark, -/area/horizon/longbow) -"sEO" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/operations/lower/machinist/surgicalbay) -"sEP" = ( -/obj/machinery/light/small/emergency{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/dark, -/area/maintenance/wing/port/far) "sES" = ( /obj/machinery/chemical_dispenser/bar_soft/full{ pixel_y = 12 @@ -129867,76 +129745,95 @@ /obj/structure/table/wood, /turf/unsimulated/floor/linoleum, /area/antag/actor) +"sET" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/corner/mauve/diagonal, +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/lab) +"sEU" = ( +/obj/structure/plasticflaps/airtight{ + dir = 4 + }, +/obj/machinery/door/airlock/research{ + dir = 4; + name = "Hazardous Specimens"; + req_access = list(52); + locked = 1; + id_tag = "xeno_bot_hazard" + }, +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 + }, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/rnd/xenobiology/xenoflora) "sEV" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/blood/oil, /turf/simulated/floor/tiled/dark/full, /area/shuttle/skipjack) -"sFd" = ( -/turf/simulated/wall, -/area/rnd/xenoarch_atrium) -"sFf" = ( -/obj/structure/ladder{ - pixel_y = 10 - }, -/obj/structure/lattice, -/turf/simulated/open, -/area/horizon/maintenance/deck_two/fore/port) -"sFi" = ( -/obj/structure/shuttle_part/scc_space_ship{ - icon_state = "d3-5-f" - }, -/turf/simulated/wall, -/area/maintenance/wing/starboard/far) -"sFj" = ( -/obj/machinery/status_display/supply_display{ - pixel_y = 32 - }, -/obj/effect/floor_decal/corner/brown{ - dir = 5 - }, -/obj/structure/filingcabinet/filingcabinet{ - pixel_x = -9; - pixel_y = 1 - }, -/obj/machinery/papershredder{ - pixel_x = 7 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled, -/area/operations/office) -"sFo" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 10 - }, +"sEW" = ( +/obj/structure/lattice/catwalk, /obj/structure/cable/green{ - icon_state = "0-4" + icon_state = "1-4" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/engineer_maintenance/electric{ - dir = 4 - }, -/obj/structure/engineer_maintenance/pipe, -/obj/machinery/power/apc/critical/south, -/turf/simulated/floor/tiled, -/area/horizon/stairwell/central) -"sFp" = ( -/obj/item/crowbar, -/obj/structure/table/rack, -/obj/machinery/light/small{ +/obj/structure/disposalpipe/segment, +/turf/simulated/open, +/area/horizon/maintenance/deck_2/wing/port/near) +"sFm" = ( +/obj/effect/shuttle_landmark/lift/robotics_first_deck, +/turf/simulated/floor/plating, +/area/horizon/rnd/eva) +"sFn" = ( +/obj/structure/closet/emcloset, +/obj/effect/floor_decal/industrial/outline/emergency_closet, +/obj/effect/floor_decal/spline/fancy/wood{ dir = 8 }, -/turf/unsimulated/floor/marble, -/area/antag/wizard) -"sFq" = ( -/obj/machinery/light/floor{ - dir = 1 +/turf/simulated/floor/wood, +/area/horizon/engineering/hallway/interior) +"sFu" = ( +/obj/item/storage/belt/medical/paramedic{ + pixel_y = 4 }, -/obj/machinery/firealarm/north, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) +/obj/item/storage/belt/medical/paramedic{ + pixel_y = 4 + }, +/obj/item/storage/belt/medical{ + pixel_y = -4 + }, +/obj/item/storage/belt/medical{ + pixel_y = -4 + }, +/obj/item/storage/belt/medical{ + pixel_y = -4 + }, +/obj/item/storage/belt/medical{ + pixel_y = -4 + }, +/obj/item/storage/belt/medical{ + pixel_y = -4 + }, +/obj/item/storage/belt/medical{ + pixel_y = -4 + }, +/obj/item/storage/belt/medical{ + pixel_y = -4 + }, +/obj/item/storage/belt/medical{ + pixel_y = -4 + }, +/obj/structure/table/rack, +/obj/effect/floor_decal/corner_wide/green{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/equipment) "sFw" = ( /obj/effect/floor_decal/spline/plain{ dir = 8 @@ -129946,18 +129843,15 @@ }, /turf/simulated/floor/holofloor/tiled, /area/horizon/holodeck/source_gym) -"sFA" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/loading/yellow{ - dir = 4 +"sFy" = ( +/obj/machinery/alarm/east, +/obj/structure/flora/pottedplant{ + icon_state = "plant-33"; + pixel_y = 16 }, +/obj/structure/railing/mapped, /turf/simulated/floor/tiled/dark, -/area/rnd/xenoarch_atrium) +/area/horizon/stairwell/port/deck_3) "sFB" = ( /obj/effect/floor_decal/corner/dark_blue{ dir = 10 @@ -129971,30 +129865,71 @@ /obj/structure/reagent_dispensers/watertank, /turf/unsimulated/floor/plating, /area/centcom/legion) -"sFK" = ( -/obj/machinery/power/sensor{ - name = "Powernet Sensor - Deck 3 Telecommunications Subgrid"; - name_tag = "Deck 3 Telecommunications Subgrid" - }, +"sFD" = ( +/obj/machinery/seed_extractor, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/service/hydroponics/garden) +"sFE" = ( /obj/structure/cable/green{ - icon_state = "0-4" + icon_state = "4-8" }, -/obj/structure/cable/green{ - icon_state = "1-4" +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 }, -/obj/effect/floor_decal/spline/plain{ - dir = 6 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 }, -/turf/simulated/floor/carpet/rubber, -/area/tcommsat/entrance) -"sFN" = ( -/obj/effect/floor_decal/industrial/warning{ +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/aux{ dir = 8 }, -/obj/structure/table/rack, -/obj/random/loot, +/obj/machinery/atmospherics/pipe/simple/hidden/green{ + dir = 8 + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/door/airlock/maintenance{ + dir = 4; + name = "Engineering Maintenance"; + req_access = list(10) + }, /turf/simulated/floor/plating, -/area/maintenance/wing/starboard) +/area/horizon/stairwell/engineering/deck_1) +"sFH" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 9 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/horizon/storage/primary) +"sFO" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/floor_decal/corner/yellow/full{ + dir = 1 + }, +/obj/structure/table/standard, +/obj/machinery/cell_charger, +/obj/item/storage/bag/inflatable{ + pixel_y = 3 + }, +/obj/item/storage/bag/inflatable{ + pixel_y = 3 + }, +/obj/item/storage/bag/inflatable{ + pixel_y = 3 + }, +/turf/simulated/floor/tiled, +/area/horizon/engineering/storage_eva) "sFP" = ( /obj/structure/closet/wardrobe/orange, /turf/unsimulated/floor, @@ -130013,71 +129948,107 @@ }, /turf/unsimulated/floor, /area/centcom/legion/hangar5) -"sFU" = ( -/obj/effect/floor_decal/corner/yellow/full{ +"sFT" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/spline/plain/blue{ + dir = 8 + }, +/obj/effect/floor_decal/spline/plain/red{ dir = 4 }, +/turf/simulated/floor/tiled, +/area/horizon/service/hydroponics/lower) +"sFW" = ( +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/floor_decal/corner/dark_green/full{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/horizon/hangar/intrepid) +"sFY" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 1 + }, +/obj/effect/floor_decal/spline/plain, +/obj/effect/floor_decal/sign/m{ + pixel_x = -10; + pixel_y = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/black{ + dir = 4 + }, +/turf/simulated/floor/carpet/rubber, +/area/horizon/tcommsat/chamber) +"sGd" = ( +/obj/random/dirt_75, +/obj/random/dirt_75, /turf/simulated/floor/tiled/dark, -/area/engineering/engine_waste) -"sFZ" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 5 +/area/horizon/maintenance/deck_2/wing/starboard/nacelle) +"sGi" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/window/eastright{ + name = "Xenoarchaeology Platform Access"; + req_access = list(65) + }, +/obj/structure/railing/mapped, +/obj/structure/platform_stairs/full{ + dir = 4 + }, +/obj/structure/platform{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/rnd/xenoarch/atrium) +"sGj" = ( +/obj/machinery/light, +/obj/effect/floor_decal/corner/mauve/diagonal, +/turf/simulated/floor/tiled/dark, +/area/horizon/storage/eva) +"sGn" = ( +/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/cable/green{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/horizon/crew_quarters/fitness/changing) -"sGb" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 10 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/structure/railing/mapped, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"sGf" = ( -/obj/effect/floor_decal/corner_wide/yellow/full, -/turf/simulated/floor/tiled, -/area/hallway/engineering) -"sGo" = ( -/obj/effect/floor_decal/corner/dark_blue/diagonal, -/obj/effect/floor_decal/spline/plain/black{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/arrow/yellow, -/turf/simulated/floor/tiled/dark, -/area/shuttle/intrepid/junction_compartment) -"sGA" = ( +/turf/simulated/floor/lino, +/area/horizon/service/chapel/main) +"sGu" = ( /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, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/smes/rust) -"sGB" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/corner/dark_green{ - dir = 10 +/obj/machinery/door/firedoor, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/door/airlock/maintenance, +/turf/simulated/floor/plating, +/area/horizon/maintenance/substation/wing_port) +"sGz" = ( +/obj/effect/floor_decal/corner/dark_green/full{ + dir = 4 }, +/obj/machinery/firealarm/east, /turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/starboard) +/area/horizon/hallway/primary/deck_2/central) "sGC" = ( /obj/structure/grille, /obj/machinery/door/firedoor, @@ -130092,37 +130063,47 @@ /obj/structure/window/shuttle/scc_space_ship/cardinal, /turf/simulated/floor/plating, /area/horizon/security/evidence_storage) -"sGE" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable/green{ - icon_state = "1-2" +"sGD" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 10 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor, -/area/horizon/maintenance/deck_three/aft/starboard) +/obj/effect/floor_decal/spline/plain/blue{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/horizon/service/hydroponics/lower) "sGF" = ( /obj/effect/floor_decal/corner/lime{ dir = 5 }, /turf/simulated/floor/tiled/white, /area/shuttle/hapt) -"sGI" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/closet/crate, -/obj/random/loot, -/turf/simulated/floor/tiled/dark/full, -/area/maintenance/wing/cargo_compartment) -"sGJ" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 +"sGH" = ( +/obj/machinery/button/remote/blast_door{ + desc = "A remote control-switch for engine core."; + dir = 8; + id = "EngineVent"; + name = "Supermatter Reactor Emergency Ventilatory Control"; + pixel_x = -21; + pixel_y = 4; + req_access = list(10) }, -/obj/effect/floor_decal/spline/fancy/wood/corner{ +/obj/effect/floor_decal/industrial/hatch/red, +/obj/effect/floor_decal/industrial/warning{ dir = 8 }, -/turf/simulated/floor/wood, -/area/bridge/minibar) +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/reactor/supermatter/mainchamber) +"sGI" = ( +/obj/structure/shuttle_part/scc/scout{ + density = 0; + icon_state = "1,12" + }, +/turf/simulated/floor/plating, +/area/horizon/shuttle/canary) "sGL" = ( /obj/effect/landmark{ name = "Syndicate-Spawn" @@ -130138,40 +130119,89 @@ }, /turf/unsimulated/floor/plating, /area/centcom/ferry) -"sGP" = ( +"sGT" = ( +/obj/effect/floor_decal/corner_wide/yellow{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/horizon/engineering/hallway/aft) +"sGU" = ( +/obj/effect/floor_decal/industrial/warning, /obj/effect/decal/cleanable/dirt, -/obj/effect/floor_decal/industrial/warning{ - dir = 5 +/turf/simulated/floor, +/area/horizon/maintenance/deck_3/aft/port) +"sGZ" = ( +/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/horizon/hangar/auxiliary) +"sHc" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/hatch{ + dir = 1; + id_tag = "airlocks_bunker"; + locked = 1; + name = "Command Bunker"; + req_access = list(19); + secured_wires = 1 + }, +/obj/machinery/door/blast/regular{ + dir = 4; + id = "shutters_bunker"; + name = "Command Bunker Blast Door" }, /obj/structure/cable{ - icon_state = "2-4" - }, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"sHb" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/structure/disposalpipe/junction{ - dir = 4; - icon_state = "pipe-j2" - }, -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/turf/simulated/floor/tiled/full, -/area/horizon/hallway/deck_three/primary/starboard) -"sHo" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ icon_state = "1-2" }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology/foyer) +/turf/simulated/floor/tiled/dark/full, +/area/horizon/command/bridge/aibunker) +"sHg" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 7 + }, +/obj/machinery/alarm/north{ + pixel_y = 0; + dir = 8; + pixel_x = -43 + }, +/turf/simulated/floor/wood, +/area/horizon/repoffice/representative_two) +"sHi" = ( +/obj/machinery/alarm/freezer/west, +/obj/structure/engineer_maintenance/pipe, +/obj/structure/engineer_maintenance/electric{ + dir = 8 + }, +/turf/simulated/floor/tiled/freezer{ + name = "cooled tiles"; + temperature = 253.15 + }, +/area/horizon/service/kitchen/freezer) +"sHl" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/reactor/supermatter/mainchamber) "sHp" = ( /obj/effect/floor_decal/corner/dark_blue{ dir = 6 @@ -130180,18 +130210,28 @@ /obj/effect/floor_decal/industrial/outline/grey, /turf/simulated/floor/tiled, /area/horizon/security/investigations_hallway) -"sHu" = ( -/turf/simulated/floor/tiled, -/area/operations/break_room) -"sHG" = ( -/obj/effect/floor_decal/industrial/warning{ +"sHq" = ( +/obj/effect/floor_decal/corner/dark_green{ dir = 9 }, -/obj/structure/disposaloutlet, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/disposalpipe/trunk, -/turf/simulated/floor/reinforced, -/area/rnd/xenobiology) +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_2/fore) +"sHs" = ( +/obj/random/dirt_75, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/starboard/far) +"sHt" = ( +/obj/structure/trash_pile, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/operations/starboard/far) +"sHz" = ( +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/gravity_gen) +"sHM" = ( +/obj/structure/bed/stool/bar/padded, +/turf/simulated/floor/carpet/rubber, +/area/horizon/rnd/lab) "sHO" = ( /obj/effect/floor_decal/corner/dark_blue{ dir = 10 @@ -130212,19 +130252,23 @@ }, /turf/simulated/floor/tiled, /area/horizon/security/warden) -"sHQ" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 +"sHR" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" }, /obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 10 + }, +/obj/structure/bed/handrail{ + dir = 8 + }, /turf/simulated/floor/plating, -/area/maintenance/wing/port/far) +/area/horizon/shuttle/intrepid/starboard_compartment) "sHU" = ( /obj/machinery/door/airlock/external{ dir = 1; @@ -130248,15 +130292,26 @@ icon_state = "dark_preview" }, /area/centcom/ferry) -"sId" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 +"sIb" = ( +/obj/structure/bed/stool/chair/padded/red{ + dir = 4 }, -/obj/structure/cable/green{ - icon_state = "1-8" +/obj/machinery/alarm/west, +/obj/structure/platform{ + dir = 4 }, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenoarch_storage) +/turf/simulated/floor/wood, +/area/horizon/service/dining_hall) +"sIc" = ( +/obj/structure/grille, +/obj/structure/window/shuttle/scc_space_ship, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/horizon/hallway/primary/deck_3/port/docks) +"sIi" = ( +/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/rnd/xenoarch/atrium) "sIj" = ( /obj/machinery/light{ dir = 4 @@ -130279,69 +130334,107 @@ /obj/effect/floor_decal/industrial/outline/security, /turf/simulated/floor/tiled, /area/horizon/security/holding_cell_a) -"sIp" = ( -/obj/structure/window/shuttle/unique/scc/scout{ - icon_state = "3,3" +"sIr" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 }, -/obj/structure/window/shuttle/unique/scc/scout/over{ - icon_state = "3,3" +/obj/random/loot{ + pixel_x = -10 + }, +/obj/random/dirt_75, +/obj/random/dirt_75, +/turf/simulated/floor/tiled, +/area/horizon/maintenance/deck_2/wing/starboard/nacelle) +"sIs" = ( +/obj/effect/floor_decal/corner/white/diagonal, +/obj/machinery/light, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/machinery/firealarm/south, +/obj/structure/table/standard, +/turf/simulated/floor/tiled, +/area/horizon/medical/paramedic) +"sIw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/rods, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 }, /turf/simulated/floor/plating, -/area/shuttle/canary) -"sIx" = ( -/obj/machinery/door/airlock/glass_research{ - dir = 1; - name = "Containment"; - req_access = list(55) +/area/horizon/maintenance/deck_1/main/starboard) +"sIy" = ( +/obj/structure/cable/green{ + icon_state = "1-2" }, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/firedoor, -/turf/simulated/floor/reinforced, -/area/rnd/xenobiology/hazardous) +/obj/effect/floor_decal/corner/brown{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/horizon/operations/break_room) "sIA" = ( /obj/effect/floor_decal/industrial/warning{ dir = 5 }, /turf/simulated/floor/reinforced/airless, /area/horizon/exterior) -"sIC" = ( -/obj/machinery/power/breakerbox/activated{ - RCon_tag = "Hangar Substation" +"sIF" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + icon_state = "1-2" }, -/turf/simulated/floor/plating, -/area/maintenance/substation/hangar) -"sIN" = ( -/obj/machinery/atmospherics/binary/pump/aux{ - name = "Carbon Dioxide Pump"; - req_one_access = list(26,29,31,48,67,24,47,73) - }, -/obj/effect/floor_decal/corner/black/full{ +/turf/simulated/floor/tiled/dark, +/area/horizon/command/teleporter) +"sIM" = ( +/obj/machinery/vending/frontiervend, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/structure/railing/mapped, +/obj/structure/railing/mapped{ dir = 4 }, -/obj/effect/floor_decal/industrial/warning{ - dir = 6 +/turf/simulated/floor/tiled/dark/full, +/area/horizon/service/cafeteria) +"sIP" = ( +/obj/effect/floor_decal/corner/green/full{ + dir = 4 }, -/turf/simulated/floor/tiled, -/area/hangar/intrepid) -"sIT" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 8 +/obj/structure/sink{ + dir = 4; + pixel_x = 12 }, -/obj/machinery/airlock_sensor{ - dir = 8; - pixel_x = 20 +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 }, -/obj/effect/map_effect/marker/airlock{ - frequency = 2005; - master_tag = "airlock_horizon_deck_2_aft_sm"; - name = "airlock_horizon_deck_2_aft_sm" +/obj/machinery/light/small, +/obj/structure/mirror{ + pixel_x = 25 }, -/turf/simulated/floor/plating, -/area/engineering/engine_room) +/obj/machinery/firealarm/south, +/turf/simulated/floor/tiled/white, +/area/horizon/crew/fitness/showers) +"sIU" = ( +/obj/machinery/door/airlock/glass_service{ + dir = 4; + name = "Kitchen"; + req_access = list(28) + }, +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/map_effect/door_helper/unres{ + dir = 4 + }, +/turf/simulated/floor/tiled/full, +/area/horizon/service/kitchen) +"sIW" = ( +/obj/machinery/portable_atmospherics/hydroponics, +/obj/machinery/atmospherics/portables_connector, +/turf/simulated/floor/tiled/dark, +/area/horizon/rnd/xenobiology/xenoflora) "sJc" = ( /obj/effect/floor_decal/industrial/outline/blue, /obj/structure/table/rack, @@ -130351,6 +130444,62 @@ /obj/item/clothing/shoes/swimmingfins, /turf/simulated/floor/tiled/dark, /area/horizon/holodeck/source_pool) +"sJe" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/horizon/command/bridge/controlroom) +"sJg" = ( +/obj/structure/table/steel, +/obj/item/device/flashlight/lamp, +/turf/simulated/floor/reinforced, +/area/horizon/rnd/xenoarch/isolation_a) +"sJm" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/lattice/catwalk/indoor, +/obj/structure/railing/mapped{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/horizon/engineering/bluespace_drive) +"sJn" = ( +/obj/structure/table/standard, +/obj/structure/platform{ + dir = 4 + }, +/obj/structure/platform{ + dir = 1 + }, +/obj/structure/platform_deco/ledge{ + dir = 10 + }, +/obj/effect/floor_decal/spline/plain{ + dir = 10 + }, +/obj/item/device/integrated_electronics/wirer{ + pixel_x = -3; + pixel_y = 10 + }, +/obj/item/device/integrated_electronics/debugger{ + pixel_x = 5; + pixel_y = 9 + }, +/turf/simulated/floor/carpet/rubber, +/area/horizon/operations/machinist) "sJo" = ( /obj/structure/sign/flag/nanotrasen/large/north, /obj/item/deck/cards, @@ -130359,85 +130508,64 @@ icon_state = "dark_preview" }, /area/centcom/specops) +"sJu" = ( +/obj/machinery/cryopod{ + dir = 4 + }, +/obj/effect/floor_decal/corner/dark_green/diagonal, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled, +/area/horizon/crew/fitness/changing) "sJv" = ( /turf/unsimulated/wall/darkshuttlewall, /area/centcom/suppy) -"sJD" = ( -/obj/structure/cable{ - icon_state = "4-8" +"sJy" = ( +/obj/machinery/recharger/wallcharger{ + pixel_x = 5; + pixel_y = 28 }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/full, -/area/hallway/engineering) -"sJF" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/structure/cable/green{ - icon_state = "2-4" - }, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 8 - }, -/turf/simulated/floor/tiled/full, -/area/engineering/storage_hard) -"sJJ" = ( -/obj/effect/floor_decal/corner/yellow{ - dir = 6 +/obj/effect/floor_decal/corner/dark_blue{ + dir = 5 }, +/turf/simulated/floor/tiled, +/area/horizon/command/bridge/supply) +"sJE" = ( +/obj/structure/bed/stool/chair/office/bridge, /turf/simulated/floor/tiled/dark, -/area/engineering/storage/tech) -"sJQ" = ( -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 8 +/area/horizon/command/bridge/controlroom) +"sJG" = ( +/obj/structure/shuttle_part/scc_space_ship{ + icon_state = "d3-6-f" }, -/obj/effect/floor_decal/industrial/warning/corner{ +/turf/simulated/wall, +/area/horizon/maintenance/deck_2/wing/port) +"sJH" = ( +/obj/effect/floor_decal/industrial/outline/operations, +/obj/machinery/suit_cycler/engineering/prepared, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/storage/eva) +"sJK" = ( +/obj/machinery/suit_storage_unit/standard_unit, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/storage/eva) +"sJO" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_1/central) +"sJP" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 }, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/engine_room/rust) -"sJR" = ( -/obj/effect/floor_decal/corner/mauve/full{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/structure/table/rack{ - dir = 8 - }, -/obj/item/device/suit_cooling_unit, -/obj/item/device/suit_cooling_unit, -/obj/item/tank/jetpack/carbondioxide, -/obj/item/tank/jetpack/carbondioxide, -/turf/simulated/floor/tiled/white, -/area/storage/eva) +/turf/simulated/floor/carpet/rubber, +/area/horizon/rnd/xenobiology/dissection) "sJY" = ( /obj/structure/bed/stool/padded, /obj/machinery/light, /turf/unsimulated/floor, /area/centcom/legion) -"sJZ" = ( -/obj/effect/floor_decal/corner/lime{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/storage/eva) "sKb" = ( /obj/structure/table/standard, /obj/machinery/vending/wallmed1{ @@ -130464,44 +130592,6 @@ icon_state = "white" }, /area/centcom/legion) -"sKd" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/corner/mauve{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology/hazardous) -"sKf" = ( -/obj/machinery/mech_recharger, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/railing/mapped{ - dir = 8 - }, -/mob/living/heavy_vehicle/premade/ripley/loader, -/turf/simulated/floor/tiled/dark, -/area/horizon/grauwolf) -"sKh" = ( -/obj/effect/map_effect/window_spawner/full/reinforced/grille/firedoor, -/obj/structure/cable/green{ - icon_state = "0-2" - }, -/obj/machinery/door/blast/regular/open{ - id = "AICore"; - name = "AI Core Blast Door" - }, -/turf/simulated/floor/tiled/dark/full, -/area/turret_protected/ai_upload) -"sKi" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 9 - }, -/obj/effect/floor_decal/industrial/loading/yellow{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/security/checkpoint2) "sKk" = ( /obj/structure/bed/stool/padded/brown{ dir = 4 @@ -130515,17 +130605,34 @@ icon_state = "carpet" }, /area/antag/raider) -"sKo" = ( -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ +"sKl" = ( +/obj/structure/tank_wall{ + density = 0; + icon_state = "m-11"; + opacity = 0 + }, +/turf/simulated/floor/reinforced/airless, +/area/horizon/engineering/atmos) +"sKn" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/cable{ +/obj/effect/floor_decal/corner/brown{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/structure/cable/green{ icon_state = "1-8" }, -/obj/random/dirt_75, -/turf/simulated/floor/plating, -/area/maintenance/wing/port/far) +/turf/simulated/floor/tiled, +/area/horizon/operations/office) "sKq" = ( /obj/structure/bed/stool/chair/office/bridge{ dir = 1 @@ -130534,20 +130641,39 @@ icon_state = "wood" }, /area/centcom/control) -"sKw" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 +"sKs" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 1 }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/effect/floor_decal/corner/brown{ - dir = 10 +/obj/effect/floor_decal/spline/plain{ + dir = 1 }, -/turf/simulated/floor/tiled, -/area/operations/break_room) +/obj/effect/floor_decal/spline/plain, +/obj/structure/engineer_maintenance/electric/wall, +/turf/simulated/floor/carpet/rubber, +/area/horizon/tcommsat/chamber) "sKx" = ( /obj/effect/floor_decal/corner/lime/diagonal, /turf/unsimulated/floor, /area/antag/jockey) +"sKy" = ( +/obj/effect/floor_decal/spline/plain/green{ + dir = 6 + }, +/obj/structure/bed/stool/chair/office/light{ + dir = 4 + }, +/obj/effect/landmark/start{ + name = "Gardener" + }, +/obj/effect/floor_decal/corner/dark_green{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/horizon/service/hydroponics/lower) "sKB" = ( /obj/structure/cable/green{ icon_state = "1-2" @@ -130575,54 +130701,49 @@ }, /turf/unsimulated/floor, /area/centcom/spawning) -"sKK" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/structure/tank_wall/oxygen{ - icon_state = "o2-15" +"sKI" = ( +/obj/machinery/mech_recharger, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/railing/mapped{ + dir = 8 }, -/obj/machinery/atmospherics/pipe/simple/visible/cyan, -/turf/simulated/floor/plating, -/area/engineering/atmos/air) -"sKP" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 6 +/mob/living/heavy_vehicle/premade/ripley/loader, +/turf/simulated/floor/tiled/dark, +/area/horizon/weapons/grauwolf) +"sKL" = ( +/obj/machinery/door/airlock/medical{ + dir = 1; + name = "Psychiatric Office"; + req_access = list(64) }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor, -/area/horizon/maintenance/deck_three/aft/starboard) -"sKQ" = ( -/obj/effect/floor_decal/sign/cmo, -/obj/structure/cable/green{ - icon_state = "2-8" +/obj/machinery/door/firedoor, +/obj/effect/map_effect/door_helper/unres{ + dir = 1 }, -/obj/effect/floor_decal/corner_wide/green{ - dir = 5 +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 2; + icon_state = "shutter0"; + id = "LCKDshutters"; + name = "Medical Lockdown Shutters"; + opacity = 0 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/hallway/medical/upper) +/turf/simulated/floor/tiled/full, +/area/horizon/medical/psych) "sKR" = ( /obj/effect/floor_decal/corner{ dir = 6 }, /turf/simulated/floor/marble/dark, /area/horizon/holodeck/source_tribunal) -"sKS" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 +"sKV" = ( +/obj/effect/map_effect/window_spawner/full/borosilicate/reinforced, +/obj/machinery/door/blast/regular/open{ + id = "r_ust_core_blast"; + name = "INDRA Reactor Blast Doors" }, -/obj/structure/closet/crate, -/obj/item/stack/material/graphite/full, -/turf/simulated/floor/carpet/rubber, -/area/engineering/engine_room/rust) +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/reactor/indra/mainchamber) "sKZ" = ( /obj/item/paper_bin{ pixel_x = -8; @@ -130637,15 +130758,6 @@ icon_state = "wood" }, /area/centcom/legion/hangar5) -"sLc" = ( -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/tiled/dark, -/area/horizon/stairwell/bridge) "sLf" = ( /obj/structure/table/reinforced/wood, /obj/machinery/camera/network/crescent{ @@ -130664,88 +130776,108 @@ }, /turf/unsimulated/floor, /area/centcom/bar) -"sLg" = ( -/obj/structure/shuttle/engine/propulsion/burst/left{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/shuttle/escape_pod/pod3) -"sLl" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/lattice/catwalk/indoor/grate/dark, +"sLm" = ( /obj/structure/disposalpipe/segment, -/turf/simulated/floor/plating, -/area/maintenance/operations) -"sLn" = ( -/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{ + dir = 5 }, /obj/structure/cable/green{ icon_state = "4-8" }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 }, /turf/simulated/floor/tiled, -/area/horizon/custodial) -"sLu" = ( -/obj/structure/disposalpipe/segment{ +/area/horizon/hangar/intrepid/interstitial) +"sLo" = ( +/obj/effect/floor_decal/industrial/hatch_door/red{ + dir = 1 + }, +/obj/machinery/door/airlock/external, +/obj/effect/map_effect/marker/airlock/shuttle{ + cycle_to_external_air = 1; + master_tag = "airlock_shuttle_intrepid"; + name = "airlock_shuttle_intrepid"; + req_one_access = null; + shuttle_tag = "Intrepid" + }, +/obj/effect/map_effect/marker_helper/airlock/interior, +/obj/machinery/atmospherics/pipe/manifold4w/hidden, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/shuttle/intrepid/main_compartment) +"sLq" = ( +/obj/effect/floor_decal/corner_wide/green{ + dir = 6 + }, +/obj/machinery/power/apc/low/east, +/obj/structure/cable/green{ + icon_state = "0-8" + }, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/equipment) +"sLt" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/horizon/hangar/operations) +"sLw" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/corner_wide/yellow/full{ dir = 4 }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/machinery/alarm/north, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/horizon/engineering/hallway/interior) +"sLy" = ( +/obj/structure/trash_pile, /turf/simulated/floor, -/area/maintenance/security_port) +/area/horizon/maintenance/deck_3/aft/starboard) "sLD" = ( /obj/structure/window/reinforced/crescent{ dir = 4 }, /turf/unsimulated/floor/blue_circuit, /area/centcom/control) -"sLG" = ( -/mob/living/simple_animal/hostile/commanded/baby_harvester, -/obj/structure/window/reinforced{ +"sLJ" = ( +/obj/structure/disposalpipe/segment{ + icon_state = "pipe-c" + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/window/southleft{ - name = "Ives Cage" - }, -/turf/simulated/floor/carpet, -/area/crew_quarters/heads/hor) -"sLL" = ( -/obj/structure/cable/green{ - icon_state = "2-8" - }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/light{ dir = 4 }, -/obj/effect/floor_decal/corner/dark_green/full{ - dir = 1 +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/main/starboard) +"sLK" = ( +/obj/effect/floor_decal/corner/dark_green/full{ + dir = 8 }, -/turf/simulated/floor/tiled, -/area/hangar/intrepid) -"sLM" = ( -/obj/machinery/light, -/obj/effect/floor_decal/industrial/hatch/yellow, /obj/machinery/vending/coffee, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/lobby) +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_2/starboard) "sLQ" = ( /obj/structure/noticeboard{ pixel_y = 31 @@ -130757,6 +130889,18 @@ icon_state = "wood" }, /area/centcom/specops) +"sLS" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/corner/yellow{ + dir = 1 + }, +/obj/effect/floor_decal/corner/dark_blue{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/command/bridge/controlroom) "sLU" = ( /obj/item/device/radio/intercom/west{ frequency = 1213; @@ -130770,95 +130914,75 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled/dark/full, /area/shuttle/mercenary) -"sMe" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 6 +"sLV" = ( +/obj/machinery/door/airlock/maintenance{ + dir = 4; + req_access = list(12) }, -/obj/structure/reagent_dispensers/watertank, -/turf/simulated/floor/plating, -/area/maintenance/hangar/port) -"sMf" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 5 - }, -/turf/simulated/floor/tiled/dark, -/area/maintenance/wing/starboard/far) -"sMl" = ( -/obj/effect/floor_decal/corner/dark_blue{ +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/full, +/area/horizon/stairwell/port/deck_2) +"sMa" = ( +/obj/effect/floor_decal/corner/brown{ dir = 9 }, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/bridge/controlroom) -"sMm" = ( -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard/deck1) -"sMq" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 5 - }, -/obj/machinery/vending/assist, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled, -/area/storage/primary) -"sMx" = ( -/obj/effect/floor_decal/industrial/hatch/red, -/obj/effect/floor_decal/industrial/warning{ - dir = 5 - }, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/custodial/disposals) -"sMy" = ( -/obj/machinery/light, -/obj/structure/flora/ausbushes/sparsegrass, -/obj/machinery/portable_atmospherics/hydroponics/soil, -/turf/simulated/floor/grass/no_edge, -/area/horizon/hydroponics/garden) -"sMD" = ( -/obj/effect/floor_decal/corner/yellow{ - dir = 5 - }, -/obj/machinery/power/apc/north, -/obj/structure/cable/green{ - icon_state = "0-8" +/obj/machinery/requests_console/west{ + department = "Operations Office"; + departmentType = 2; + name = "Operations Requests Console" }, /obj/structure/table/standard, -/obj/item/storage/bag/circuits/basic{ - pixel_y = 6 +/obj/random/pottedplant_small{ + pixel_x = -7; + pixel_y = 5 + }, +/obj/item/clipboard{ + pixel_y = 2; + pixel_x = 5 }, /turf/simulated/floor/tiled, -/area/engineering/lobby) -"sMG" = ( -/obj/structure/flora/ausbushes/sparsegrass, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 +/area/horizon/operations/office) +"sMj" = ( +/obj/machinery/telecomms/server/presets/security, +/turf/simulated/floor/bluegrid, +/area/horizon/tcommsat/chamber) +"sMn" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 5 }, -/turf/simulated/floor/grass/no_edge, -/area/horizon/hydroponics/lower) -"sML" = ( -/obj/item/reagent_containers/blood/OMinus, -/obj/item/reagent_containers/blood/sbs, -/obj/item/reagent_containers/blood/OMinus, -/obj/item/reagent_containers/blood/OMinus, -/obj/structure/closet/walllocker/medical/secure{ - name = "O- Blood Locker"; - pixel_y = 32 +/obj/random/pottedplant, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 }, +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/platform{ + dir = 8; + pixel_y = 13 + }, +/turf/simulated/floor/wood, +/area/horizon/service/dining_hall) +"sMw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/dark, +/area/horizon/storage/eva) +"sMz" = ( /obj/structure/cable/green{ - icon_state = "0-2" + icon_state = "4-8" }, -/obj/machinery/power/apc/west, -/turf/simulated/floor/tiled/freezer{ - name = "cold storage tiles"; - temperature = 278 +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 }, -/area/medical/surgery) +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/effect/floor_decal/corner/dark_green/full{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/horizon/stairwell/starboard/deck_1) "sMP" = ( /obj/effect/floor_decal/industrial/warning/corner, /obj/machinery/light{ @@ -130866,12 +130990,20 @@ }, /turf/unsimulated/floor, /area/centcom/legion/hangar5) +"sMR" = ( +/obj/structure/bed/stool/chair/padded/beige, +/turf/simulated/floor/carpet, +/area/horizon/command/heads/captain) "sMS" = ( /obj/effect/floor_decal/corner/red{ dir = 1 }, /turf/unsimulated/floor, /area/centcom/control) +"sMV" = ( +/obj/structure/foamedmetal, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/port/far) "sMW" = ( /obj/effect/decal/fake_object{ desc = "A Hephaestus Industries Z-Cube! This state-of-the-art gaming console is the premium of the premium. It's almost VR!"; @@ -130893,25 +131025,31 @@ }, /turf/simulated/floor/tiled, /area/merchant_station/warehouse) -"sNc" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/reinforced/airless, -/area/engineering/engine_room/rust) -"sNe" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 +"sNg" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/bed/stool/chair{ + dir = 8 }, /turf/simulated/floor/tiled, -/area/maintenance/wing/port/far) -"sNf" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 5 +/area/horizon/operations/break_room) +"sNk" = ( +/obj/structure/cable{ + icon_state = "4-8" }, -/obj/effect/floor_decal/corner/yellow/diagonal, -/turf/simulated/floor/tiled/dark, -/area/engineering/aft_airlock) +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/substation/medical) +"sNl" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/horizon/service/custodial) "sNn" = ( /obj/machinery/atmospherics/pipe/simple/visible{ dir = 5 @@ -130924,34 +131062,21 @@ /obj/item/storage/box/fancy/donut, /turf/simulated/floor/wood, /area/shuttle/hapt) -"sNv" = ( -/turf/simulated/wall/r_wall, -/area/horizon/stairwell/bridge) -"sNx" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ +"sNw" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4 }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 10 +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 }, -/obj/structure/table/wood, -/obj/machinery/chemical_dispenser/bar_soft/full{ - dir = 1; - pixel_y = -4 +/obj/effect/floor_decal/corner/dark_green{ + dir = 6 }, -/obj/item/reagent_containers/food/drinks/drinkingglass{ - pixel_y = 13 - }, -/obj/item/reagent_containers/food/drinks/drinkingglass{ - pixel_y = 13; - pixel_x = 9 - }, -/obj/item/reagent_containers/food/drinks/drinkingglass{ - pixel_y = 13; - pixel_x = -9 - }, -/turf/simulated/floor/wood, -/area/lawoffice/representative_two) +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_3/central) "sNy" = ( /obj/machinery/light{ dir = 1 @@ -131025,74 +131150,133 @@ }, /turf/unsimulated/floor, /area/antag/mercenary) +"sNz" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/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/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/aft) "sNE" = ( /obj/effect/floor_decal/industrial/warning, /turf/simulated/floor/tiled/dark/full, /area/turbolift/scc_ship/morgue_lift) -"sNH" = ( -/obj/machinery/camera/network/engineering{ - c_tag = "Engineering - Atmospherics Control 4" - }, -/obj/machinery/atmospherics/pipe/manifold/visible/yellow{ - dir = 1 - }, -/obj/effect/floor_decal/corner/yellow{ +"sNF" = ( +/obj/structure/bed/stool/chair/padded/red, +/obj/effect/floor_decal/spline/fancy/wood{ dir = 1 }, +/turf/simulated/floor/wood, +/area/horizon/service/dining_hall) +"sNR" = ( /obj/effect/floor_decal/corner/dark_blue{ dir = 4 }, -/obj/machinery/meter, -/turf/simulated/floor/tiled/dark, -/area/engineering/atmos) -"sNO" = ( -/obj/effect/map_effect/window_spawner/full/reinforced/polarized/grille/firedoor{ - id = "consularA" +/obj/effect/floor_decal/corner/yellow, +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 4 }, -/obj/structure/cable/green, -/turf/simulated/floor, -/area/lawoffice/consular) +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/atmos/turbine) +"sOd" = ( +/obj/structure/closet/secure_closet/hangar_tech, +/obj/effect/floor_decal/corner/brown{ + dir = 6 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled, +/area/horizon/operations/office) "sOe" = ( /obj/effect/floor_decal/industrial/warning/corner, /obj/effect/decal/cleanable/dirt, /turf/unsimulated/floor, /area/antag/raider) -"sOm" = ( -/obj/machinery/computer/cryopod/living_quarters{ - pixel_y = 32 +"sOg" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 5 }, -/obj/effect/floor_decal/corner/dark_green/diagonal, -/obj/structure/cable/green{ - icon_state = "2-4" - }, -/turf/simulated/floor/tiled, -/area/horizon/crew_quarters/fitness/changing) -"sOo" = ( -/obj/machinery/light, -/obj/effect/floor_decal/corner_wide/blue/full{ +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/obj/machinery/atmospherics/unary/vent_pump/on{ +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/effect/floor_decal/spline/plain/purple{ dir = 1 }, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/storage/tech) -"sOp" = ( -/obj/structure/table/standard, -/obj/item/storage/box/fancy/vials, -/obj/machinery/camera/network/research{ - c_tag = "Research - Dissection"; - dir = 1; - network = list("Research","Xeno_Bio") +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology/dissection) +/turf/simulated/floor/tiled, +/area/horizon/service/hydroponics) +"sOh" = ( +/obj/effect/floor_decal/corner/red/diagonal, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/powered/pump/filled, +/obj/effect/floor_decal/industrial/outline/emergency_closet, +/turf/simulated/floor/tiled, +/area/horizon/maintenance/deck_2/research) +"sOk" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/horizon/crew/fitness/changing) +"sOl" = ( +/turf/simulated/floor/tiled, +/area/horizon/command/bridge/controlroom) "sOr" = ( /obj/structure/bed/stool/chair/office/dark{ dir = 8 }, /turf/unsimulated/floor, /area/centcom/legion/hangar5) +"sOs" = ( +/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/structure/cable/green{ + icon_state = "2-8" + }, +/obj/machinery/bluespace_beacon, +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor/plating, +/area/horizon/hallway/primary/deck_2/central) "sOt" = ( /obj/random/pottedplant{ pixel_y = 8 @@ -131102,30 +131286,14 @@ }, /turf/unsimulated/floor, /area/centcom/distress_prep) -"sOA" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, +"sOy" = ( /obj/structure/cable/green{ - icon_state = "1-8" + icon_state = "2-8" }, -/obj/machinery/door/firedoor, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/airlock/glass{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/port) +/obj/structure/disposalpipe/segment, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor, +/area/horizon/maintenance/deck_3/security/port) "sOB" = ( /obj/structure/window/reinforced/crescent{ dir = 8 @@ -131138,58 +131306,28 @@ }, /turf/simulated/floor/grass/no_edge, /area/centcom/holding) -"sOG" = ( -/obj/effect/floor_decal/corner_wide/yellow{ - dir = 6 +"sOC" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 }, /obj/structure/cable/green{ icon_state = "1-8" }, -/obj/structure/cable{ - icon_state = "2-4" - }, +/turf/simulated/floor/wood, +/area/horizon/command/heads/rd) +"sOE" = ( +/obj/machinery/recharge_station, /turf/simulated/floor/tiled, -/area/engineering/bluespace_drive) -"sOH" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/structure/closet/crate, -/obj/random/loot, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard/deck1) -"sOI" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume, -/obj/machinery/light/small/emergency{ +/area/horizon/rnd/xenoarch/atrium) +"sOQ" = ( +/obj/structure/lattice/catwalk/indoor, +/obj/effect/floor_decal/industrial/outline/red, +/obj/structure/bed/handrail{ dir = 4 }, -/obj/effect/map_effect/marker/airlock{ - frequency = 1003; - master_tag = "airlock_horizon_deck_1_aft_propulsion_1"; - name = "airlock_horizon_deck_1_aft_propulsion_1" - }, +/obj/item/hullbeacon/red, /turf/simulated/floor/plating, -/area/engineering/atmos/propulsion/starboard) -"sOO" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/bridge/upperdeck) +/area/horizon/shuttle/intrepid/port_compartment) "sOT" = ( /obj/machinery/door/airlock/centcom{ dir = 1; @@ -131204,54 +131342,29 @@ }, /turf/simulated/floor/tiled/dark, /area/centcom/bar) -"sPg" = ( -/obj/machinery/slime_extractor, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology) -"sPi" = ( -/obj/machinery/power/terminal{ - dir = 1 - }, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/obj/machinery/light, -/turf/simulated/floor/plating, -/area/engineering/engine_room/rust) -"sPj" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 10 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/horizon/hydroponics/garden) -"sPm" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 4 - }, -/obj/machinery/papershredder{ - pixel_x = 7 - }, -/obj/structure/filingcabinet{ - pixel_x = -9 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/heads/hop/xo) "sPo" = ( /obj/structure/lattice, /obj/structure/grille, /turf/space/dynamic, /area/horizon/exterior) -"sPv" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 +"sPq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 }, -/mob/living/silicon/robot/shell, -/obj/machinery/mech_recharger, -/turf/simulated/floor/tiled/dark, -/area/turret_protected/ai_upload_foyer) +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/corner/dark_green{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_3/port) "sPw" = ( /obj/effect/floor_decal/carpet{ dir = 4 @@ -131262,16 +131375,9 @@ }, /turf/simulated/floor/holofloor/carpet, /area/horizon/holodeck/source_biesel) -"sPx" = ( -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/machinery/autolathe, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/carpet/rubber, -/area/operations/lower/machinist) +"sPz" = ( +/turf/simulated/wall/r_wall, +/area/horizon/engineering/reactor/indra/mainchamber) "sPA" = ( /obj/item/toy/stressball{ pixel_x = 5; @@ -131283,104 +131389,107 @@ /turf/simulated/floor/carpet/magenta, /area/horizon/holodeck/source_cafe) "sPC" = ( -/obj/item/device/destTagger, -/obj/structure/table/rack, -/obj/effect/floor_decal/industrial/outline/operations, -/obj/item/storage/box/fancy/candle_box, -/obj/item/stack/packageWrap, -/obj/item/paper_scanner, -/obj/machinery/light/small{ - dir = 4 +/obj/effect/floor_decal/corner/dark_green{ + dir = 5 }, -/obj/item/device/toner{ - pixel_y = 5 +/obj/structure/table/wood, +/turf/simulated/floor/tiled, +/area/horizon/hangar/intrepid) +"sPG" = ( +/obj/structure/cable{ + icon_state = "1-2" }, -/obj/item/device/toner{ - pixel_y = -1 +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" }, -/turf/simulated/floor/lino/diamond, -/area/horizon/library) +/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/horizon/rnd/xenoarch/atrium) "sPI" = ( /obj/effect/floor_decal/corner/red/full{ dir = 1 }, /turf/simulated/floor/marble, /area/horizon/holodeck/source_trinary) -"sPK" = ( -/obj/machinery/power/apc/low/north, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 +"sPN" = ( +/obj/structure/engineer_maintenance/electric/wall, +/turf/simulated/floor/tiled/freezer{ + name = "cooled tiles"; + temperature = 278.15 }, +/area/horizon/medical/morgue) +"sQa" = ( /obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard/far) -"sPP" = ( -/obj/effect/floor_decal/industrial/hatch/red, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/reinforced/airless, -/area/engineering/engine_room/rust) -"sPQ" = ( -/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/disposalpipe/segment{ - dir = 4 +/obj/structure/cable{ + icon_state = "1-8" }, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/aux{ +/obj/random/dirt_75, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/starboard/nacelle) +"sQb" = ( +/turf/simulated/wall/shuttle/scc_space_ship/cardinal, +/area/horizon/service/chapel/office) +"sQc" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ dir = 8 }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/engineering) -"sPZ" = ( -/obj/structure/lattice, -/obj/structure/platform/ledge, -/obj/structure/platform/ledge{ - dir = 1 - }, -/turf/simulated/open, -/area/horizon/hallway/deck_three/primary/central) -"sQf" = ( -/obj/effect/floor_decal/corner_wide/yellow{ - dir = 5 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/platform, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/engineering) +/obj/structure/table/reinforced/steel, +/turf/simulated/floor/tiled/dark, +/area/horizon/rnd/xenoarch/atrium) +"sQe" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/wood, +/area/horizon/command/heads/rd) "sQg" = ( /obj/effect/map_effect/window_spawner/full/reinforced/indestructible, /obj/structure/sign/staff_only, /turf/unsimulated/floor/plating, /area/centcom/bar) +"sQh" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 6 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/firealarm/west{ + dir = 2; + pixel_x = 0; + pixel_y = -25 + }, +/turf/simulated/floor/wood, +/area/horizon/repoffice/representative_one) +"sQi" = ( +/obj/effect/floor_decal/corner/mauve/diagonal, +/turf/simulated/floor/tiled, +/area/horizon/rnd/xenobiology) +"sQk" = ( +/obj/machinery/suit_storage_unit/standard_unit, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/command/bridge/aibunker) "sQo" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/machinery/door/firedoor, @@ -131410,6 +131519,17 @@ icon_state = "wood" }, /area/centcom/legion/hangar5) +"sQt" = ( +/obj/machinery/door/firedoor{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/hatch_door/red, +/obj/machinery/door/airlock/maintenance_hatch{ + dir = 4 + }, +/obj/effect/decal/cleanable/cobweb2, +/turf/simulated/floor/tiled/dark, +/area/horizon/maintenance/deck_2/wing/starboard/nacelle) "sQw" = ( /obj/effect/floor_decal/corner_wide/blue{ dir = 1 @@ -131419,21 +131539,43 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/holodeck/source_pool) -"sQy" = ( -/obj/structure/window/reinforced{ - dir = 8 +"sQC" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 7 }, -/obj/structure/filingcabinet/chestdrawer{ - pixel_x = 10 +/obj/machinery/firealarm/south, +/obj/structure/cable/green{ + icon_state = "4-8" }, -/obj/structure/filingcabinet/filingcabinet{ - pixel_x = -5 +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/machinery/light/small{ - dir = 1 +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 }, -/turf/simulated/floor/lino/diamond, -/area/horizon/library) +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/turf/simulated/floor/wood, +/area/horizon/command/heads/captain) +"sQE" = ( +/obj/effect/floor_decal/corner_wide/yellow{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/horizon/engineering/bluespace_drive) +"sQF" = ( +/obj/machinery/camera/network/command{ + c_tag = "Bridge - Atrium Port"; + dir = 4 + }, +/obj/effect/floor_decal/corner/dark_blue{ + dir = 9 + }, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/machinery/disposal/small/east, +/turf/simulated/floor/tiled/full, +/area/horizon/command/bridge/upperdeck) "sQG" = ( /obj/effect/floor_decal/corner/black/diagonal, /obj/effect/floor_decal/corner/black/diagonal{ @@ -131445,35 +131587,27 @@ /obj/effect/decal/cleanable/dirt, /turf/unsimulated/floor, /area/antag/jockey) -"sQO" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/fuel, -/obj/structure/shuttle_part/scc/scout{ - icon_state = "2,9"; - opacity = 1; - outside_part = 0 +"sQL" = ( +/obj/structure/cable/green{ + icon_state = "1-2" }, -/turf/simulated/floor/reinforced{ - blocks_air = 1; - density = 1; - name = "thruster mount"; - opacity = 1 - }, -/area/shuttle/canary) -"sQR" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 10 - }, -/turf/simulated/floor/reinforced/reactor, -/area/engineering/engine_room) -"sQT" = ( -/obj/machinery/atmospherics/omni/filter{ - name = "hydrogen filter"; - tag_east = 2; - tag_north = 8; - tag_south = 1 +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/hallway/upper) +"sQP" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/engineering{ + dir = 1; + name = "Gravity Generator"; + req_access = list(11) }, +/obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/dark, -/area/engineering/atmos) +/area/horizon/engineering/gravity_gen) "sQU" = ( /obj/structure/table/fancy, /obj/item/flame/candle{ @@ -131490,55 +131624,47 @@ }, /turf/unsimulated/floor/wood, /area/antag/actor) -"sQZ" = ( -/obj/structure/shuttle_part/scc/scout{ - icon_state = "1,9" +"sQX" = ( +/obj/structure/table/standard, +/obj/item/storage/box/fancy/donut, +/obj/machinery/alarm/north{ + dir = 4; + pixel_y = 0; + pixel_x = 10 }, -/obj/machinery/light{ - dir = 4 +/obj/item/storage/box/drinkingglasses{ + pixel_y = 15; + pixel_x = 6 }, -/turf/simulated/floor/plating, -/area/shuttle/canary) -"sRd" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/maintenance_hatch{ +/obj/item/storage/box/drinkingglasses{ + pixel_y = 15; + pixel_x = -9 + }, +/turf/simulated/floor/tiled/full, +/area/horizon/command/bridge/cciaroom) +"sQY" = ( +/obj/machinery/camera/network/service{ + c_tag = "Service - Chapel Port"; dir = 1 }, -/turf/simulated/floor/plating, -/area/maintenance/operations) -"sRe" = ( -/obj/structure/platform_stairs/full/east_west_cap, -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/railing/mapped, -/obj/effect/floor_decal/corner/lime{ - dir = 5 - }, -/turf/simulated/floor/tiled/white{ - name = "cooled white floor"; - temperature = 278.15 - }, -/area/medical/morgue/lower) +/obj/structure/engineer_maintenance/electric, +/turf/simulated/floor/lino, +/area/horizon/service/chapel/main) "sRg" = ( /turf/simulated/wall/shuttle/scc_space_ship/cardinal, /area/horizon/exterior) -"sRm" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ +"sRp" = ( +/obj/effect/floor_decal/corner_wide/yellow{ dir = 9 }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 7 +/obj/structure/cable/green{ + icon_state = "2-8" }, -/obj/machinery/power/apc/south, -/obj/structure/cable/green, -/obj/machinery/light, -/obj/structure/engineer_maintenance/pipe, -/obj/structure/engineer_maintenance/electric{ - dir = 4 +/obj/structure/cable/green{ + icon_state = "1-8" }, -/turf/simulated/floor/wood, -/area/lawoffice/representative_two) +/turf/simulated/floor/tiled, +/area/horizon/engineering/hallway/aft) "sRq" = ( /obj/machinery/librarycomp{ pixel_y = 8 @@ -131546,33 +131672,15 @@ /obj/structure/table/stone/marble, /turf/unsimulated/floor/marble, /area/antag/wizard) -"sRr" = ( -/obj/machinery/door/firedoor/multi_tile{ - dir = 2 +"sRt" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 10 }, -/obj/machinery/door/airlock/multi_tile/glass{ - dir = 2; - name = "Xenoarchaeology and Anomalous Materials"; - req_access = list(47) +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 }, -/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{ - dir = 4; - pixel_x = -32 - }, -/turf/simulated/floor/plating, -/area/horizon/stairwell/central) -"sRu" = ( -/obj/effect/map_effect/window_spawner/full/borosilicate/reinforced/firedoor, -/obj/structure/cable/orange{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/engine_room/rust) +/turf/simulated/floor/tiled, +/area/horizon/service/hydroponics/garden) "sRv" = ( /obj/machinery/vending/zora{ pixel_x = 5 @@ -131582,150 +131690,248 @@ }, /turf/unsimulated/floor/wood, /area/centcom/bar) -"sRB" = ( -/obj/structure/disposalpipe/junction{ - icon_state = "pipe-j2" +"sRx" = ( +/obj/machinery/camera/network/service{ + c_tag = "Custodial - Garage" }, -/obj/effect/floor_decal/corner/red/diagonal, -/obj/effect/floor_decal/spline/plain{ - dir = 8 +/obj/machinery/requests_console/north{ + department = "Custodial"; + departmentType = 1 }, -/obj/machinery/light/floor{ - dir = 8 +/obj/structure/bed/stool/chair/office/dark, +/obj/effect/landmark/start{ + name = "Janitor" }, -/turf/simulated/floor/lino, -/area/horizon/cafeteria) -"sRE" = ( -/obj/effect/floor_decal/corner/beige/full, -/obj/machinery/atmospherics/pipe/simple/hidden/aux{ - dir = 6 +/obj/effect/floor_decal/corner/purple/full{ + dir = 1 }, +/turf/simulated/floor/tiled, +/area/horizon/service/custodial) +"sRy" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor/plating, +/area/horizon/operations/lobby) +"sRD" = ( +/obj/structure/table/wood, +/obj/item/reagent_containers/food/condiment/shaker/salt{ + pixel_x = -6; + pixel_y = 16 + }, +/obj/item/reagent_containers/food/condiment/shaker/peppermill{ + pixel_x = 4; + pixel_y = 16 + }, +/obj/item/flame/candle{ + pixel_y = 16 + }, +/turf/simulated/floor/carpet/red, +/area/horizon/service/dining_hall) +"sRG" = ( /obj/structure/cable/green{ icon_state = "2-4" }, -/turf/simulated/floor/tiled/dark, -/area/bridge/aibunker) -"sRH" = ( -/obj/structure/table/stone/marble, -/obj/random/pottedplant_small{ - pixel_y = -4; - pixel_x = -6 - }, -/obj/machinery/door/firedoor{ - req_one_access = list(24,11,67,73); +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/machinery/door/blast/shutters{ - id = "intrepid_buffet"; - name = "Buffet Desk Shutter"; +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/operations/secure_ammunition_storage) +"sRH" = ( +/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/lobby) +"sRJ" = ( +/turf/simulated/wall/shuttle/scc, +/area/horizon/shuttle/escape_pod/pod1) +"sRK" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, /turf/simulated/floor/tiled/dark/full, -/area/shuttle/intrepid/buffet) -"sRN" = ( -/obj/structure/cable/green{ - icon_state = "0-8" +/area/horizon/engineering/reactor/supermatter/mainchamber) +"sRP" = ( +/obj/effect/floor_decal/corner/mauve/full, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/telesci) +"sRS" = ( +/obj/effect/floor_decal/industrial/warning/corner, +/obj/machinery/light/small/emergency{ + dir = 1 }, -/obj/machinery/power/apc/high/south, -/obj/machinery/atmospherics/pipe/manifold/hidden, /turf/simulated/floor/plating, -/area/medical/cryo) +/area/horizon/maintenance/deck_2/wing/port) +"sRT" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/engineering{ + dir = 4; + name = "Deck 3 Civilian Substation"; + req_one_access = list(11,24) + }, +/turf/simulated/floor, +/area/horizon/maintenance/substation/civ_d3) +"sRU" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/firealarm/south, +/obj/effect/floor_decal/corner/yellow/diagonal, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/horizon/stairwell/engineering/deck_2) "sRV" = ( /obj/structure/bed/padded, /obj/item/bedsheet/black, /turf/simulated/floor/carpet, /area/shuttle/skipjack) -"sSa" = ( -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/machinery/camera/network/engineering{ - c_tag = "Engineering - Deck 2 - Port Pod Substation"; - dir = 1 - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/maintenance/wing/port/far) -"sSe" = ( -/obj/structure/table/steel, -/obj/machinery/cell_charger, -/obj/machinery/recharger/wallcharger{ - pixel_x = -28; - pixel_y = 3 - }, -/obj/machinery/recharger/wallcharger{ - pixel_x = -28; - pixel_y = -10 - }, -/obj/machinery/light/small/emergency{ +"sSb" = ( +/obj/machinery/light{ dir = 8 }, -/turf/simulated/floor/tiled/dark/full, -/area/bridge/aibunker) -"sSf" = ( -/obj/structure/table/glass{ - table_reinf = "glass" +/obj/random/pottedplant, +/obj/structure/engineer_maintenance/electric, +/obj/structure/engineer_maintenance/pipe{ + dir = 8 }, -/obj/item/folder, -/obj/effect/floor_decal/corner_wide/green{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/hallway/medical/upper) -"sSk" = ( -/obj/machinery/telecomms/server/presets/engineering, -/turf/simulated/floor/bluegrid, -/area/tcommsat/chamber) -"sSm" = ( -/obj/structure/bed/stool/chair/shuttle{ - dir = 4 - }, -/obj/machinery/light, -/turf/simulated/floor/shuttle/dark_blue, -/area/shuttle/escape_pod/pod2) -"sSn" = ( -/obj/structure/flora/grass/green, -/turf/simulated/floor/holofloor/snow, -/area/horizon/holodeck/source_snowfield) -"sSv" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard) -"sSF" = ( -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/shuttle/legion) -"sSG" = ( +/turf/simulated/floor/wood, +/area/horizon/medical/psych) +"sSc" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/obj/structure/cable/green{ - icon_state = "4-8" +/obj/effect/floor_decal/corner/dark_blue{ + dir = 6 }, -/obj/effect/floor_decal/spline/plain{ - dir = 5 +/turf/simulated/floor/tiled/dark, +/area/horizon/storage/eva) +"sSd" = ( +/obj/effect/floor_decal/corner_wide/yellow/full{ + dir = 4 }, -/obj/machinery/atmospherics/binary/pump/on{ - name = "Canister to Telecommunications Server Hall"; +/turf/simulated/floor/tiled, +/area/horizon/engineering/reactor/indra/office) +"sSi" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/machinery/camera/network/research{ + c_tag = "Research - Corridor Camera 3"; + network = list("Research","Xeno_Bio") + }, +/obj/effect/floor_decal/corner/mauve/diagonal, +/turf/simulated/floor/tiled, +/area/horizon/rnd/hallway/secondary) +"sSj" = ( +/obj/effect/floor_decal/industrial/warning{ dir = 8 }, -/turf/simulated/floor/carpet/rubber, -/area/tcommsat/entrance) -"sSO" = ( -/obj/effect/floor_decal/corner/blue, -/turf/simulated/floor/holofloor/tiled, -/area/horizon/holodeck/source_lasertag) -"sSS" = ( +/turf/simulated/floor/reinforced/airless, +/area/horizon/engineering/atmos/propulsion) +"sSl" = ( +/obj/structure/cable/orange{ + icon_state = "1-2" + }, +/obj/structure/cable/orange{ + icon_state = "2-8" + }, +/turf/simulated/floor/plating, +/area/horizon/engineering/bluespace_drive) +"sSn" = ( +/obj/structure/flora/grass/green, +/turf/simulated/floor/holofloor/snow, +/area/horizon/holodeck/source_snowfield) +"sSr" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/obj/machinery/camera/network/service{ + c_tag = "Service - Deck 2 - Bar Private Lounge" + }, +/obj/structure/bed/stool/chair/padded/beige, +/turf/simulated/floor/wood, +/area/horizon/service/bar) +"sSw" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/starboard) +"sSx" = ( +/obj/structure/bed/stool/chair{ + dir = 1 + }, +/obj/effect/floor_decal/corner_wide/green{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/hallway) +"sSy" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 4 + }, +/obj/effect/map_effect/window_spawner/full/borosilicate/reinforced/firedoor, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/reactor/supermatter/mainchamber) +"sSD" = ( +/obj/effect/map_effect/window_spawner/full/reinforced/polarized/firedoor{ + id = "Recovery1" + }, +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 2; + icon_state = "shutter0"; + id = "LCKDshutters"; + name = "Medical Lockdown Shutters"; + opacity = 0 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/medical/ward) +"sSF" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/shuttle/legion) +"sSJ" = ( /obj/structure/cable/green{ icon_state = "1-2" }, @@ -131736,7 +131942,21 @@ }, /obj/machinery/alarm/east, /turf/simulated/floor/plating, -/area/maintenance/wing/starboard) +/area/horizon/maintenance/deck_2/wing/port/near) +"sSN" = ( +/obj/machinery/door/blast/regular/open{ + dir = 4; + id = "r_ust_core_blast"; + name = "INDRA Reactor Blast Doors" + }, +/obj/effect/map_effect/window_spawner/full/borosilicate/reinforced, +/obj/machinery/atmospherics/pipe/simple/visible, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/reactor/indra/mainchamber) +"sSO" = ( +/obj/effect/floor_decal/corner/blue, +/turf/simulated/floor/holofloor/tiled, +/area/horizon/holodeck/source_lasertag) "sST" = ( /turf/simulated/wall/shuttle/unique/mercenary/small{ icon_state = "1,8" @@ -131748,119 +131968,54 @@ }, /turf/unsimulated/floor, /area/antag/raider) -"sSY" = ( -/obj/effect/floor_decal/corner_wide/yellow{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/hallway/engineering) -"sTc" = ( -/obj/structure/lattice, -/obj/structure/platform/ledge, -/turf/simulated/open, -/area/operations/office) -"sTj" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden{ +"sSZ" = ( +/obj/machinery/meter, +/obj/machinery/light, +/obj/machinery/atmospherics/pipe/manifold/visible{ dir = 1 }, -/obj/structure/lattice/catwalk/indoor/grate/dark, /turf/simulated/floor/plating, -/area/maintenance/wing/starboard) -"sTo" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/airlock/glass_command{ - dir = 1; - id_tag = ""; - name = "Bridge Officer Preparation"; - req_access = list(19) - }, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "bridge blast"; - name = "Bridge Blast Doors"; - opacity = 0; +/area/horizon/engineering/atmos/air) +"sTh" = ( +/obj/item/trap/animal, +/obj/structure/table/rack, +/obj/item/trap/animal, +/obj/item/trap/animal, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/rnd/xenobiology/foyer) +"sTk" = ( +/obj/structure/bed/stool/chair/padded/brown{ dir = 4 }, -/turf/simulated/floor/tiled/full, -/area/bridge/bridge_crew) -"sTu" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable{ - icon_state = "4-8" +/obj/machinery/ringer/north{ + department = "XO office"; + id = "xo_ringer"; + pixel_y = 30; + req_access = null; + req_one_access = list(57) }, -/obj/machinery/door/airlock/engineering{ - dir = 4; - name = "Deck 1 Civilian Substation"; - req_one_access = list(11,24) - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/full, -/area/maintenance/substation/hangar) +/turf/simulated/floor/carpet, +/area/horizon/command/heads/xo) "sTv" = ( /turf/simulated/wall/shuttle/unique/mercenary/small{ icon_state = "5,2" }, /area/shuttle/syndicate_elite) -"sTw" = ( -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard/deck1) -"sTF" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/dark, -/area/maintenance/wing/port) -"sTH" = ( -/turf/simulated/wall, -/area/operations/office) +"sTA" = ( +/obj/effect/floor_decal/spline/fancy/wood/cee{ + dir = 8 + }, +/obj/structure/engineer_maintenance/pipe{ + dir = 8 + }, +/obj/structure/engineer_maintenance/electric, +/turf/simulated/floor/wood, +/area/horizon/command/bridge/meeting_room) "sTI" = ( /obj/structure/table/wood, /turf/simulated/floor/holofloor/carpet, /area/horizon/holodeck/source_courtroom) -"sTM" = ( -/obj/effect/floor_decal/corner_wide/blue{ - dir = 1 - }, -/obj/effect/floor_decal/corner_wide/yellow{ - dir = 4 - }, -/obj/effect/floor_decal/spline/plain{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos/storage) -"sTT" = ( -/obj/structure/grille, -/turf/simulated/floor, -/area/horizon/maintenance/deck_three/aft/starboard) -"sUb" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/effect/floor_decal/corner/pink/diagonal, -/obj/random/dirt_75, -/obj/random/dirt_75, -/turf/simulated/floor/tiled/dark, -/area/maintenance/wing/port/far) -"sUd" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/effect/floor_decal/corner/green{ - dir = 9 - }, -/obj/machinery/firealarm/west, -/turf/simulated/floor/tiled/white, -/area/operations/break_room) "sUf" = ( /obj/effect/floor_decal/corner/paleblue{ dir = 9 @@ -131879,19 +132034,35 @@ }, /turf/unsimulated/floor, /area/antag/loner) -"sUz" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 6 +"sUy" = ( +/obj/effect/floor_decal/corner/dark_blue/full, +/obj/machinery/light{ + dir = 8 }, -/obj/structure/cable/green{ - icon_state = "1-2" +/obj/structure/table/steel, +/obj/item/storage/box/flares{ + pixel_x = -6 }, -/obj/machinery/camera/network/command{ - c_tag = "Bridge - Port 2"; - dir = 1 +/obj/item/storage/box/flares{ + pixel_x = -6 }, -/turf/simulated/floor/tiled, -/area/bridge/controlroom) +/obj/item/storage/box/flares{ + pixel_x = -7; + pixel_y = 11 + }, +/obj/item/storage/box/flares{ + pixel_x = -6; + pixel_y = 11 + }, +/obj/item/storage/box/tethers{ + pixel_x = 8 + }, +/obj/item/storage/box/led_collars{ + pixel_x = 8; + pixel_y = 11 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/storage/eva) "sUC" = ( /obj/structure/bed/stool/chair/sofa/left/black{ desc = "A pew, how holy!"; @@ -131908,16 +132079,6 @@ dir = 9 }, /area/centcom/legion/hangar5) -"sUE" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 9 - }, -/obj/structure/extinguisher_cabinet/west, -/obj/structure/cable/green{ - icon_state = "2-4" - }, -/turf/simulated/floor/tiled/dark, -/area/horizon/longbow) "sUG" = ( /obj/effect/shuttle_landmark/escape_pod/out/pod4, /turf/space/transit/east, @@ -131929,36 +132090,73 @@ }, /turf/unsimulated/floor/plating, /area/centcom/legion/hangar5) -"sUS" = ( -/obj/effect/floor_decal/industrial/warning{ +"sUI" = ( +/obj/effect/floor_decal/corner/dark_green/full, +/obj/structure/table/standard, +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 1 + }, +/obj/item/pen{ + pixel_x = 2; + pixel_y = 3 + }, +/turf/simulated/floor/tiled, +/area/horizon/engineering/hallway/fore) +"sUQ" = ( +/obj/effect/floor_decal/industrial/warning/corner, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/structure/railing/mapped, +/obj/structure/railing/mapped{ dir = 4 }, -/obj/structure/tank_wall/oxygen{ - icon_state = "o2-7" - }, -/obj/machinery/atmospherics/pipe/simple/visible/cyan{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/engineering/atmos/air) -"sVc" = ( -/turf/simulated/floor, -/area/maintenance/substation/command) -"sVd" = ( /obj/structure/cable/green{ - icon_state = "4-8" + icon_state = "2-4" }, -/obj/effect/floor_decal/corner/mauve{ - dir = 9 +/obj/structure/cable/green{ + icon_state = "2-8" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 +/turf/simulated/floor/tiled/dark/full/airless, +/area/horizon/command/bridge/controlroom) +"sUT" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 5 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/turf/simulated/floor/tiled/white, -/area/storage/eva) +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/spline/plain/purple{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/horizon/service/hydroponics) +"sUV" = ( +/obj/machinery/portable_atmospherics/canister/empty, +/turf/simulated/floor/plating, +/area/horizon/engineering/reactor/indra/office) +"sUY" = ( +/obj/structure/bed/stool/chair/office/dark, +/turf/simulated/floor/tiled/dark, +/area/horizon/rnd/xenoarch/atrium) +"sUZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/engineering/atmos) "sVe" = ( /turf/simulated/floor/holofloor/carpet, /area/horizon/holodeck/source_courtroom) @@ -131987,23 +132185,45 @@ /obj/structure/window/shuttle/scc_space_ship/cardinal, /turf/simulated/floor/plating, /area/horizon/security/autopsy_laboratory) -"sVk" = ( -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/structure/platform_deco/ledge, -/obj/structure/platform/ledge{ - dir = 4 - }, -/turf/simulated/open, -/area/horizon/hallway/deck_three/primary/central) -"sVm" = ( -/obj/structure/foamedmetal, -/obj/structure/shuttle_part/scc_space_ship{ - icon_state = "d2-1-f" +"sVj" = ( +/obj/effect/floor_decal/industrial/outline/red, +/obj/machinery/atmospherics/valve/digital{ + dir = 4; + name = "Thermal Relief Valve" }, /turf/simulated/floor/plating, -/area/maintenance/wing/port/far) +/area/horizon/engineering/reactor/supermatter/mainchamber) +"sVs" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/reactor/indra/mainchamber) +"sVw" = ( +/obj/effect/floor_decal/corner/green/diagonal, +/obj/structure/mirror{ + pixel_y = 36 + }, +/obj/structure/sink{ + pixel_y = 28 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/crew/washroom/deck_2) +"sVA" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/airlock/glass_engineering{ + dir = 1; + name = "Engineering Locker Room"; + req_access = list(11) + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/full, +/area/horizon/engineering/locker_room) "sVC" = ( /obj/effect/floor_decal/corner_wide/paleblue/diagonal{ dir = 8 @@ -132016,6 +132236,25 @@ }, /turf/simulated/floor/tiled/dark, /area/shuttle/mercenary) +"sVD" = ( +/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/white/diagonal, +/obj/machinery/door/airlock/glass_medical{ + dir = 4; + name = "Paramedic Quarters"; + req_access = list(67) + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled, +/area/horizon/medical/paramedic) "sVE" = ( /obj/structure/table/reinforced/steel, /obj/item/gun/custom_ka/frame01/illegal{ @@ -132053,20 +132292,48 @@ /obj/structure/holostool, /turf/simulated/floor/holofloor/wood, /area/horizon/holodeck/source_sauna) -"sVZ" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/machinery/light{ +"sVH" = ( +/turf/simulated/floor/reinforced/nitrogen, +/area/horizon/engineering/atmos/air) +"sVI" = ( +/obj/structure/bed/stool/chair/padded/red{ + dir = 4 + }, +/obj/machinery/alarm/west{ + req_one_access = list(24,11,55) + }, +/turf/simulated/floor/carpet/red, +/area/horizon/service/dining_hall) +"sVN" = ( +/obj/structure/closet/wardrobe/chaplain_black, +/obj/item/storage/box/fancy/crayons, +/obj/item/reagent_containers/food/drinks/bottle/holywater, +/obj/item/reagent_containers/spray/aspergillum, +/obj/item/nullrod/obsidianshards, +/obj/item/storage/box/fancy/candle_box, +/obj/item/storage/box/fancy/candle_box, +/obj/item/stack/packageWrap, +/obj/item/device/destTagger, +/turf/simulated/floor/tiled/dark, +/area/horizon/service/chapel/office) +"sVT" = ( +/obj/effect/floor_decal/spline/plain, +/obj/effect/floor_decal/spline/fancy{ dir = 1 }, -/turf/simulated/floor/reinforced, -/area/rnd/test_range) -"sWa" = ( -/obj/effect/floor_decal/industrial/warning{ +/obj/structure/railing/mapped, +/obj/effect/floor_decal/corner_wide/white{ dir = 10 }, -/obj/random/junk, -/turf/simulated/floor/plating, -/area/maintenance/engineering) +/obj/machinery/light/floor, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/hallway/primary/deck_2/central) +"sVV" = ( +/obj/structure/bed/stool/chair/office/bridge/generic{ + dir = 8 + }, +/turf/simulated/floor/carpet, +/area/horizon/command/heads/chief) "sWb" = ( /obj/item/beach_ball, /turf/simulated/floor/holofloor/beach/sand{ @@ -132083,109 +132350,55 @@ }, /turf/simulated/floor/holofloor/tiled/dark, /area/tdome/tdome1) -"sWi" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/central) "sWm" = ( /obj/effect/floor_decal/corner/paleblue{ dir = 1 }, /turf/unsimulated/floor, /area/centcom/holding) -"sWn" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/carpet/rubber, -/area/rnd/lab) -"sWq" = ( -/obj/structure/bed/handrail{ - dir = 4 +"sWD" = ( +/obj/effect/floor_decal/corner/mauve/diagonal, +/obj/structure/sink{ + dir = 4; + pixel_x = 12 }, /obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/firealarm/south, -/turf/simulated/floor/plating, -/area/shuttle/intrepid/starboard_compartment) -"sWr" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, /turf/simulated/floor/tiled, -/area/operations/storage) -"sWx" = ( -/obj/structure/window/shuttle/scc_space_ship, -/obj/structure/grille, +/area/horizon/rnd/xenobiology/xenoflora) +"sWF" = ( +/obj/machinery/holosign/surgery{ + id = 2 + }, /obj/machinery/door/firedoor, -/obj/machinery/door/blast/shutters{ - dir = 2; - id = "shutters_deck2_hydroponicswindowssafety"; - name = "Viewing Shutter" - }, -/turf/simulated/floor/plating, -/area/horizon/hydroponics/lower) -"sWA" = ( -/obj/structure/table/stone/marble, -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/shutters{ - dir = 8; - id = "bar_shutter"; - name = "Bar Shutter" - }, -/turf/simulated/floor/tiled/dark, -/area/horizon/bar) -"sWB" = ( -/obj/effect/floor_decal/corner/dark_green/full{ - dir = 1 - }, -/obj/machinery/alarm/east, -/turf/simulated/floor/tiled, -/area/hallway/primary/aft) -"sWG" = ( -/obj/effect/floor_decal/spline/fancy/wood, -/obj/structure/railing/mapped, -/obj/random/pottedplant, -/turf/simulated/floor/wood, -/area/horizon/cafeteria) -"sWK" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 5 - }, -/turf/simulated/floor/reinforced, -/area/rnd/xenobiology) -"sWQ" = ( -/obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/map_effect/door_helper/unres, -/obj/machinery/door/firedoor{ - dir = 4 - }, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "bridge blast"; - name = "Bridge Blast Doors"; - opacity = 0 - }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/airlock/glass_command{ +/obj/structure/disposalpipe/segment, +/obj/machinery/door/airlock/medical{ dir = 1; - id_tag = "bridge_foyer"; - name = "Bridge"; - req_one_access = list(19) + name = "Operating Theatre 2"; + req_access = list(45) + }, +/obj/effect/map_effect/door_helper/unres{ + dir = 1 + }, +/turf/simulated/floor/tiled/full, +/area/horizon/medical/surgery) +"sWJ" = ( +/obj/structure/stairs_railing{ + dir = 8 + }, +/turf/simulated/floor/holofloor/tiled/ramp/bottom, +/area/horizon/stairwell/starboard/deck_2) +"sWM" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" }, /turf/simulated/floor/tiled, -/area/bridge) +/area/horizon/engineering/locker_room) +"sWR" = ( +/turf/simulated/wall, +/area/horizon/hangar/operations) "sWS" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -132204,21 +132417,6 @@ }, /turf/simulated/floor/tiled, /area/horizon/security/hallway) -"sWT" = ( -/obj/effect/floor_decal/corner/black/full{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/power/apc/east, -/obj/structure/cable/green{ - icon_state = "0-2" - }, -/turf/simulated/floor/tiled, -/area/operations/lower/machinist) "sWW" = ( /obj/structure/table/stone/marble, /obj/item/reagent_containers/glass/beaker/large{ @@ -132226,16 +132424,36 @@ }, /turf/unsimulated/floor, /area/centcom/bar) +"sXa" = ( +/obj/effect/floor_decal/corner/dark_blue/full{ + dir = 4 + }, +/obj/item/device/radio/intercom/east, +/obj/machinery/button/remote/blast_door{ + dir = 1; + id = "hangarlockdown"; + name = "Hangar Lockdown"; + pixel_y = -25 + }, +/obj/machinery/light/small, +/obj/structure/filingcabinet/filingcabinet{ + pixel_x = 9; + pixel_y = 1 + }, +/obj/machinery/papershredder{ + pixel_x = -6 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/hangar/control) +"sXb" = ( +/obj/effect/floor_decal/industrial/outline/red, +/obj/machinery/iv_drip, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/gen_treatment) "sXe" = ( /obj/item/ore, /turf/unsimulated/floor, /area/antag/raider) -"sXg" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/green{ - dir = 8 - }, -/turf/simulated/wall/shuttle/scc_space_ship/cardinal, -/area/horizon/custodial/disposals) "sXh" = ( /obj/structure/bed, /obj/item/bedsheet/syndie, @@ -132244,6 +132462,14 @@ }, /turf/unsimulated/floor/wood, /area/antag/mercenary) +"sXj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/table/standard{ + no_cargo = 1 + }, +/obj/item/reagent_containers/glass/rag, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/wing/starboard/far) "sXn" = ( /obj/structure/sink{ pixel_y = 16 @@ -132277,146 +132503,178 @@ }, /turf/unsimulated/floor, /area/centcom/holding) -"sXy" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/atmos) -"sXH" = ( -/turf/simulated/wall, -/area/bridge/cciaroom/lounge) -"sXU" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/bed/handrail{ - dir = 8 - }, -/obj/machinery/embedded_controller/radio/airlock/docking_port{ - dir = 8; - pixel_x = 25; - pixel_y = 5 - }, -/obj/machinery/airlock_sensor{ - dir = 8; - pixel_x = 25; - pixel_y = -7 - }, -/obj/effect/map_effect/marker_helper/airlock/out, -/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/pipe/manifold/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 4 - }, -/obj/structure/lattice/catwalk/indoor, -/turf/simulated/floor/plating, -/area/shuttle/mining) -"sXV" = ( -/obj/machinery/appliance/cooker/stove, -/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) -"sYf" = ( -/obj/effect/decal/fake_object/light_source/invisible, -/turf/unsimulated/floor/rubber_carpet, -/area/antag/jockey) -"sYh" = ( -/obj/machinery/door/airlock{ - dir = 1; - id_tag = "central_stall_2"; - name = "Stall 2" - }, -/obj/machinery/door/firedoor{ - dir = 4 - }, -/turf/simulated/floor/tiled/full, -/area/horizon/crew_quarters/washroom/central) -"sYo" = ( -/obj/structure/table/stone/marble, -/obj/machinery/appliance/mixer/candy{ - pixel_y = 6 - }, -/turf/unsimulated/floor, -/area/centcom/bar) -"sYp" = ( -/obj/effect/floor_decal/industrial/warning/corner, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/engine_room/rust) -"sYB" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/warning, -/obj/structure/sign/drop{ - desc = "A warning sign which reads 'DANGER: FALLING HAZARD' and 'THIS EQUIPMENT STARTS AND STOPS AUTOMATICALLY'."; - name = "\improper DANGER: FALLING HAZARD sign"; - pixel_x = 32; - pixel_y = -32 - }, -/turf/simulated/floor/tiled/full, -/area/hallway/primary/central_one) -"sYE" = ( -/obj/structure/shuttle_part/ert{ - icon_state = "10,0" - }, -/turf/unsimulated/floor/plating, -/area/centcom/specops) -"sYG" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/effect/floor_decal/spline/plain{ - dir = 1 - }, -/obj/effect/floor_decal/spline/plain, -/turf/simulated/floor/tiled/white, -/area/horizon/kitchen) -"sYH" = ( -/obj/machinery/computer/shuttle_control/merchant, -/turf/simulated/floor/wood, -/area/merchant_station) -"sYJ" = ( -/obj/effect/floor_decal/corner/green{ - dir = 4 - }, -/turf/unsimulated/floor, -/area/centcom/holding) -"sYP" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 6 - }, +"sXC" = ( /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/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/corner/dark_green/full{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_2/fore) +"sXD" = ( +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/door/airlock/maintenance_hatch{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/research) +"sXR" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/structure/tank_wall/nitrogen{ + icon_state = "n9" + }, +/turf/simulated/floor/plating, +/area/horizon/engineering/atmos/air) +"sXS" = ( +/obj/effect/floor_decal/corner_wide/yellow{ + dir = 6 + }, /turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/port) +/area/horizon/engineering/hallway/aft) +"sYc" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/corner/red{ + dir = 6 + }, +/obj/effect/floor_decal/corner/red{ + dir = 9 + }, +/obj/machinery/door/airlock/glass_medical{ + dir = 1; + frequency = 1379; + id_tag = "processing_airlock_exterior"; + locked = 1; + name = "Isolation Ward Exterior"; + req_access = list(5) + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/dark, +/area/horizon/medical/ward/isolation) +"sYf" = ( +/obj/effect/decal/fake_object/light_source/invisible, +/turf/unsimulated/floor/rubber_carpet, +/area/antag/jockey) +"sYg" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/horizon/operations/loading) +"sYi" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/horizon/maintenance/deck_2/wing/starboard/nacelle) +"sYn" = ( +/obj/effect/floor_decal/industrial/outline/red, +/obj/machinery/iv_drip, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/surgery) +"sYo" = ( +/obj/structure/table/stone/marble, +/obj/machinery/appliance/mixer/candy{ + pixel_y = 6 + }, +/turf/unsimulated/floor, +/area/centcom/bar) +"sYu" = ( +/obj/effect/floor_decal/corner/grey/diagonal, +/obj/effect/floor_decal/spline/plain{ + dir = 1 + }, +/obj/structure/disposalpipe/junction{ + dir = 8; + icon_state = "pipe-j2" + }, +/turf/simulated/floor/tiled/white, +/area/horizon/service/kitchen) +"sYx" = ( +/obj/machinery/light/small/emergency{ + dir = 1 + }, +/obj/effect/map_effect/marker/airlock{ + frequency = 3002; + master_tag = "airlock_horizon_deck_2_port_1"; + name = "airlock_horizon_deck_2_port_1" + }, +/turf/simulated/floor, +/area/horizon/maintenance/deck_2/wing/starboard/far) +"sYE" = ( +/obj/structure/shuttle_part/ert{ + icon_state = "10,0" + }, +/turf/unsimulated/floor/plating, +/area/centcom/specops) +"sYH" = ( +/obj/machinery/computer/shuttle_control/merchant, +/turf/simulated/floor/wood, +/area/merchant_station) +"sYI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/structure/trash_pile, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/operations/starboard/amidships) +"sYJ" = ( +/obj/effect/floor_decal/corner/green{ + dir = 4 + }, +/turf/unsimulated/floor, +/area/centcom/holding) +"sYK" = ( +/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/lattice/catwalk/indoor/grate/dark, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance{ + dir = 4; + req_one_access = list(5,10,12) + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/port/near) "sYV" = ( /obj/machinery/recharger/wallcharger{ pixel_x = 4; @@ -132434,23 +132692,45 @@ }, /turf/unsimulated/floor, /area/centcom/distress_prep) -"sYZ" = ( -/obj/effect/floor_decal/corner/yellow{ - dir = 9 +"sYW" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/machinery/firealarm/west, -/turf/simulated/floor/tiled/dark, -/area/engineering/storage/tech) +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor, +/area/horizon/hallway/primary/deck_3/port) +"sYX" = ( +/obj/effect/floor_decal/spline/fancy{ + dir = 1 + }, +/obj/structure/platform, +/turf/simulated/floor/carpet/rubber, +/area/horizon/command/bridge/controlroom) +"sYY" = ( +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled, +/area/horizon/engineering/lobby) "sZb" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 }, /turf/simulated/floor/tiled, /area/horizon/security/office) -"sZf" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/turf/simulated/floor, -/area/maintenance/wing/port/far) +"sZe" = ( +/obj/structure/bed/stool/chair/office/bridge/pilot{ + dir = 8 + }, +/turf/simulated/floor/shuttle/dark_blue, +/area/horizon/shuttle/escape_pod/pod3) "sZg" = ( /obj/effect/floor_decal/corner/lime/diagonal{ dir = 8 @@ -132465,6 +132745,32 @@ icon_state = "white" }, /area/centcom/legion) +"sZh" = ( +/obj/machinery/door/airlock/external, +/obj/machinery/access_button{ + dir = 1; + pixel_x = 28; + pixel_y = 12 + }, +/obj/effect/map_effect/marker_helper/airlock/exterior, +/obj/effect/map_effect/marker/airlock/docking{ + landmark_tag = "nav_horizon_dock_deck_3_starboard_2"; + master_tag = "airlock_horizon_dock_deck_3_starboard_2"; + name = "airlock_horizon_dock_deck_3_starboard_2" + }, +/turf/simulated/floor/plating, +/area/horizon/hallway/primary/deck_3/port/docks) +"sZl" = ( +/obj/machinery/light/small/emergency{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/port) "sZm" = ( /obj/machinery/embedded_controller/radio/simple_docking_controller{ frequency = 1337; @@ -132478,131 +132784,48 @@ }, /turf/unsimulated/floor, /area/centcom/distress_prep) -"sZo" = ( -/obj/structure/closet/firecloset{ - anchored = 1; - canbemoved = 1 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/engine_room) -"sZp" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard/deck1) -"sZw" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 8 - }, -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/simulated/floor/wood, -/area/bridge/meeting_room) -"sZB" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 6 - }, -/obj/structure/bed/stool/chair/padded/red{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/horizon/hallway/deck_two/fore) -"sZI" = ( -/obj/effect/floor_decal/corner/green/diagonal, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/white, -/area/horizon/crew_quarters/fitness/changing) -"sZJ" = ( -/obj/effect/floor_decal/corner/red/diagonal, -/obj/structure/closet/walllocker/emerglocker/west, -/obj/effect/floor_decal/industrial/outline/emergency_closet, +"sZv" = ( /obj/effect/floor_decal/industrial/warning{ dir = 1 }, +/obj/random/contraband, /turf/simulated/floor/tiled, -/area/maintenance/wing/port) +/area/horizon/maintenance/deck_2/wing/port/nacelle) +"sZy" = ( +/obj/effect/decal/cleanable/spiderling_remains, +/turf/simulated/floor/carpet/rubber, +/area/horizon/maintenance/deck_1/workshop) "sZM" = ( /obj/structure/bed/stool/chair/holochair{ dir = 4 }, /turf/simulated/floor/holofloor/lino, /area/horizon/holodeck/source_courtroom) -"sZQ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 +"sZV" = ( +/obj/effect/floor_decal/industrial/hatch_door/red{ + dir = 1 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 +/turf/simulated/floor/tiled/dark, +/area/horizon/rnd/xenoarch/atrium) +"tad" = ( +/obj/machinery/access_button{ + command = "cycle_interior"; + frequency = 1380; + master_tag = "centcom_shuttle_dock_airlock"; + name = "interior access button"; + pixel_x = -25; + pixel_y = -25; + req_access = list(13) }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/lattice/catwalk/indoor/grate, -/turf/simulated/floor/plating, -/area/hallway/primary/central_one) -"sZW" = ( -/obj/structure/bed/stool/chair/padded/brown{ - dir = 4 - }, -/obj/effect/floor_decal/spline/fancy/wood{ +/obj/machinery/atmospherics/pipe/simple/hidden{ dir = 10 }, -/turf/simulated/floor/wood, -/area/horizon/hallway/deck_three/primary/central) -"taf" = ( -/obj/structure/closet/secure_closet/guncabinet{ - name = "Bridge Defense Equipment"; - req_access = list(60) +/obj/effect/floor_decal/corner/dark_green/full{ + dir = 4 }, -/obj/item/gun/energy/gun, -/obj/item/gun/energy/gun, -/obj/item/gun/energy/gun, -/obj/item/gun/projectile/sec, -/obj/item/gun/projectile/sec, -/obj/item/gun/projectile/sec, -/obj/item/ammo_magazine/c45m, -/obj/item/ammo_magazine/c45m, -/obj/item/ammo_magazine/c45m, -/obj/item/ammo_magazine/c45m, -/obj/item/ammo_magazine/c45m, -/obj/item/ammo_magazine/c45m, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 6 - }, -/obj/effect/floor_decal/industrial/outline/red, /obj/machinery/alarm/east, -/obj/item/melee/baton/loaded, -/obj/item/melee/baton/loaded, -/obj/item/melee/baton/loaded, /turf/simulated/floor/tiled, -/area/bridge/supply) +/area/horizon/security/checkpoint2) "tag" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -132631,24 +132854,93 @@ /obj/item/trash/match, /turf/simulated/floor/marble, /area/horizon/holodeck/source_tribunal) -"taP" = ( -/obj/effect/map_effect/window_spawner/full/shuttle/scc{ - spawn_firedoor = 1; - spawn_grille = 1 +"taq" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 6 }, -/obj/machinery/door/blast/shutters/open{ - dir = 8; - id = "intrepid_bay_windows"; - name = "Intrepid Shutter" +/obj/machinery/power/apc/low/east, +/obj/structure/cable/green{ + icon_state = "0-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/light, +/turf/simulated/floor/tiled/full, +/area/horizon/engineering/reactor/supermatter/airlock) +"tar" = ( +/obj/effect/floor_decal/corner_wide/orange{ + dir = 10 + }, +/obj/effect/floor_decal/industrial/outline/medical, +/obj/structure/closet/wardrobe/pharmacy_white, +/obj/item/storage/box/gloves, +/obj/item/clothing/glasses/safety/goggles, +/obj/item/clothing/glasses/safety/goggles, +/obj/item/modular_computer/laptop/preset/medical, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/pharmacy) +"tav" = ( +/turf/simulated/floor/tiled/full, +/area/horizon/engineering/reactor/indra/office) +"taC" = ( +/obj/effect/floor_decal/corner/grey/diagonal, +/obj/effect/floor_decal/spline/plain{ + dir = 1 + }, +/obj/structure/bed/handrail, +/turf/simulated/floor/tiled/white, +/area/horizon/shuttle/intrepid/buffet) +"taI" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 4 + }, +/obj/effect/floor_decal/spline/fancy{ + dir = 8 + }, +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/effect/floor_decal/corner_wide/white{ + dir = 6 + }, +/obj/machinery/light/floor{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/hallway/primary/deck_2/central) +"taM" = ( +/obj/structure/bed/stool/chair/office/light, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 }, /turf/simulated/floor/plating, -/area/shuttle/intrepid/starboard_compartment) +/area/horizon/engineering/drone_fabrication) +"taQ" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 10 + }, +/obj/structure/sign/emergency/evacuation{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/horizon/stairwell/starboard/deck_1) "taS" = ( /obj/effect/floor_decal/corner{ dir = 9 }, /turf/simulated/floor/marble/dark, /area/horizon/holodeck/source_tribunal) +"taW" = ( +/turf/simulated/wall, +/area/horizon/maintenance/deck_1/wing/starboard/far) +"tbc" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/light/small/emergency{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/security_port) "tbk" = ( /obj/structure/sink{ dir = 4; @@ -132656,73 +132948,44 @@ }, /turf/unsimulated/floor/freezer, /area/centcom/distress_prep) -"tbm" = ( -/obj/effect/floor_decal/corner/lime/diagonal, -/obj/structure/bed/handrail{ - dir = 8 +"tbG" = ( +/obj/effect/floor_decal/corner_wide/yellow/diagonal, +/obj/structure/table/steel, +/obj/structure/noticeboard{ + pixel_y = -32 }, -/turf/simulated/floor/tiled/white, -/area/shuttle/intrepid/medical) -"tbr" = ( -/obj/structure/table/stone/marble, -/obj/machinery/chemical_dispenser/bar_soft/full{ - pixel_x = -10; - pixel_y = 16 +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/item/reagent_containers/food/drinks/shaker{ - pixel_x = 3; - pixel_y = 5 +/obj/machinery/recharger{ + pixel_y = 3 }, -/obj/item/reagent_containers/food/drinks/shaker{ - pixel_x = -9; - pixel_y = 5 +/obj/machinery/camera/network/engineering{ + c_tag = "Engineering - Meeting Room"; + dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/horizon/bar) -"tbt" = ( -/turf/simulated/wall/shuttle/scc_space_ship/cardinal, -/area/hallway/engineering/rust) -"tby" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/horizon/grauwolf) -"tbA" = ( -/turf/simulated/floor/carpet/rubber, -/area/rnd/lab) -"tbH" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/power/apc/north, -/turf/simulated/floor/tiled/dark/full, -/area/maintenance/wing/cargo_compartment) +/area/horizon/engineering/break_room) "tbK" = ( /obj/structure/table/stone/marble, /obj/machinery/chemical_dispenser/coffeemaster/full, /turf/unsimulated/floor, /area/centcom/bar) -"tbR" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 9 +"tbT" = ( +/obj/structure/cable/green{ + icon_state = "1-2" }, -/obj/machinery/light{ +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 8 }, -/turf/simulated/floor/tiled/dark, -/area/storage/eva) -"tbX" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 +/obj/structure/disposalpipe/segment, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 5 }, /turf/simulated/floor/plating, -/area/engineering/storage/lower) +/area/horizon/maintenance/deck_1/main/interstitial) "tca" = ( /obj/effect/map_effect/window_spawner/full/reinforced/indestructible, /obj/structure/sign/pods{ @@ -132731,15 +132994,18 @@ }, /turf/unsimulated/floor/plating, /area/antag/loner) -"tcb" = ( +"tcc" = ( /obj/structure/cable/green{ - icon_state = "1-2" + icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 + dir = 4 }, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/secure_ammunition_storage) +/obj/effect/floor_decal/spline/plain{ + dir = 8 + }, +/turf/simulated/floor/lino, +/area/horizon/service/cafeteria) "tcd" = ( /turf/simulated/wall/shuttle/unique/mercenary/small{ icon_state = "3,2" @@ -132761,25 +133027,36 @@ }, /turf/unsimulated/floor, /area/centcom/legion) -"tci" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/portable_atmospherics/canister/helium, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/engine_room/rust) -"tcj" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/maintenance_hatch{ - dir = 4 +"tcn" = ( +/obj/machinery/light/small/emergency{ + dir = 1 }, -/obj/effect/decal/cleanable/cobweb2{ - icon_state = "cobweb1" +/obj/machinery/embedded_controller/radio/airlock/airlock_controller{ + dir = 8; + pixel_x = 20 + }, +/obj/machinery/airlock_sensor{ + dir = 4; + pixel_x = -20 + }, +/obj/effect/map_effect/marker/airlock{ + frequency = 1003; + master_tag = "airlock_horizon_deck_1_aft_propulsion_2"; + name = "airlock_horizon_deck_1_aft_propulsion_2" }, /turf/simulated/floor/plating, -/area/maintenance/wing/starboard) -"tcn" = ( -/obj/structure/table/rack/retail_shelf, -/turf/simulated/floor/tiled/full, -/area/horizon/commissary) +/area/horizon/engineering/atmos/propulsion/starboard) +"tcr" = ( +/obj/structure/tank_wall/oxygen{ + density = 0; + icon_state = "o2-6"; + opacity = 0 + }, +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 4 + }, +/turf/simulated/floor/reinforced/oxygen, +/area/horizon/engineering/atmos/air) "tcw" = ( /obj/machinery/door/airlock{ dir = 4; @@ -132791,24 +133068,42 @@ }, /turf/simulated/floor/tiled/full, /area/horizon/security/brig) -"tcD" = ( -/obj/structure/railing/mapped, -/obj/structure/lattice, -/obj/structure/platform/ledge{ - dir = 1 - }, -/obj/structure/platform/ledge, -/turf/simulated/open, -/area/horizon/hallway/deck_three/primary/central) -"tcE" = ( -/obj/structure/bed/stool/chair/sofa/red{ +"tcB" = ( +/obj/effect/floor_decal/corner_wide/lime/diagonal, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/obj/machinery/light{ - dir = 8 +/turf/simulated/floor/tiled/white, +/area/horizon/medical/reception) +"tcE" = ( +/obj/effect/floor_decal/corner/lime{ + dir = 10 }, -/turf/simulated/floor/carpet/red, -/area/horizon/library) +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/turf/simulated/floor/tiled, +/area/horizon/medical/morgue) +"tcG" = ( +/turf/simulated/wall/r_wall, +/area/horizon/engineering/storage_eva) +"tcH" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/disposalpipe/segment{ + icon_state = "pipe-c" + }, +/obj/effect/floor_decal/corner/purple{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/horizon/service/custodial) +"tcL" = ( +/obj/item/modular_computer/console/preset/supply, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled, +/area/horizon/operations/lobby) "tcO" = ( /obj/structure/lattice/catwalk/indoor, /turf/unsimulated/floor/plating, @@ -132816,46 +133111,26 @@ "tcP" = ( /turf/simulated/wall/shuttle/scc_space_ship/cardinal, /area/shuttle/merchant) -"tcQ" = ( -/obj/structure/flora/ausbushes/genericbush, -/obj/structure/railing/mapped, -/turf/simulated/floor/grass/no_edge, -/area/horizon/cafeteria) -"tcU" = ( -/obj/effect/floor_decal/corner/mauve/full{ - dir = 1 - }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/white, -/area/rnd/chemistry) -"tcV" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/storage/eva) -"tdb" = ( -/obj/structure/railing/mapped, -/obj/structure/platform/ledge{ - dir = 1 - }, -/obj/structure/platform/ledge{ +"tcW" = ( +/obj/structure/closet/emcloset, +/obj/effect/floor_decal/corner/brown/full{ dir = 8 }, -/obj/structure/platform_deco/ledge{ - dir = 6 +/obj/effect/floor_decal/industrial/outline/emergency_closet, +/obj/machinery/light{ + dir = 8 }, -/turf/simulated/open, -/area/horizon/hallway/deck_three/primary/central) -"tdc" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/engine_monitoring/rust) +/turf/simulated/floor/tiled, +/area/horizon/operations/office) +"tda" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/effect/floor_decal/corner/dark_blue{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_3/central) "tdd" = ( /obj/effect/decal/fake_object/light_source{ density = 1; @@ -132887,74 +133162,54 @@ icon_state = "dark_preview" }, /area/centcom/control) -"tdh" = ( -/obj/structure/bed/stool/chair/office/bridge, -/obj/machinery/atmospherics/pipe/simple/hidden/aux{ +"tdp" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 9 + }, +/obj/machinery/newscaster/west, +/obj/structure/sink/kitchen{ + dir = 4; + name = "water fountain"; + pixel_x = -20 + }, +/obj/effect/floor_decal/industrial/outline/grey, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_3/starboard) +"tdt" = ( +/obj/effect/floor_decal/corner/yellow{ dir = 5 }, -/obj/effect/floor_decal/corner/dark_blue/full{ - dir = 8 +/obj/structure/table/rack, +/obj/item/stack/material/steel{ + amount = 50 }, -/obj/effect/floor_decal/corner/yellow/diagonal, -/obj/structure/cable/green{ - icon_state = "1-4" +/obj/item/stack/material/steel{ + amount = 50 }, -/turf/simulated/floor/tiled/dark, -/area/bridge/aibunker) -"tdl" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 +/obj/item/stack/material/steel{ + amount = 50 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/item/stack/rods/full, +/obj/item/stack/material/aluminium/full{ + pixel_y = 6; + pixel_x = -7 }, -/obj/effect/floor_decal/industrial/warning, -/obj/structure/cable/green{ - icon_state = "4-8" +/obj/item/stack/material/aluminium/full{ + pixel_y = 6; + pixel_x = -7 }, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/bluespace_drive) -"tdo" = ( -/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/disposalpipe/junction{ - dir = 8; - icon_state = "pipe-j2" - }, -/turf/simulated/floor/tiled/full, -/area/hallway/primary/central_one) -"tdq" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/airlock/hatch{ - dir = 1; - id_tag = "engine_electrical_maintenance"; - locked = 1; - name = "Supermatter Reactor SMES"; - req_one_access = list(11,24) - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/smes) -"tdr" = ( -/obj/machinery/light, -/obj/effect/floor_decal/spline/plain, -/obj/item/stock_parts/subspace/treatment, -/obj/item/stock_parts/subspace/treatment, -/obj/item/stock_parts/subspace/treatment, -/obj/structure/table/standard, -/turf/simulated/floor/carpet/rubber, -/area/tcommsat/entrance) +/turf/simulated/floor/tiled, +/area/horizon/engineering/storage_eva) +"tdw" = ( +/obj/effect/floor_decal/corner/dark_green/full, +/obj/structure/railing/mapped, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_2/central) +"tdC" = ( +/obj/machinery/telecomms/server/presets/engineering, +/turf/simulated/floor/bluegrid, +/area/horizon/tcommsat/chamber) "tdE" = ( /obj/effect/floor_decal/corner/lime{ dir = 10 @@ -132964,15 +133219,39 @@ }, /turf/unsimulated/floor, /area/antag/jockey) -"tdL" = ( -/obj/structure/cable/green{ - icon_state = "1-2" +"tdJ" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 5 }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/plating, -/area/maintenance/research_port) +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/horizon/service/hydroponics/garden) +"tdM" = ( +/obj/structure/table/reinforced/steel, +/obj/effect/floor_decal/corner/dark_blue{ + dir = 5 + }, +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = -1 + }, +/obj/item/pen{ + pixel_x = -3 + }, +/obj/machinery/newscaster/security_unit/north, +/turf/simulated/floor/tiled/dark, +/area/horizon/command/bridge/aibunker) "tdN" = ( /obj/structure/closet/secure_closet/security{ name = "officer's locker"; @@ -133001,14 +133280,9 @@ }, /turf/unsimulated/floor, /area/centcom/legion) -"tdQ" = ( -/obj/machinery/door/firedoor, -/obj/effect/floor_decal/corner_wide/green{ - dir = 9 - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/white, -/area/medical/icu) +"tdW" = ( +/turf/simulated/wall, +/area/horizon/command/bridge/supply) "tdY" = ( /obj/machinery/sleeper{ dir = 4 @@ -133020,45 +133294,31 @@ icon_state = "white" }, /area/centcom/legion) -"tdZ" = ( -/obj/structure/cable{ - icon_state = "1-2" +"teg" = ( +/obj/machinery/door/airlock/external{ + dir = 4 }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/lattice/catwalk/indoor/grate, +/obj/machinery/access_button{ + dir = 8; + pixel_x = -12; + pixel_y = -28 + }, +/obj/effect/map_effect/marker/airlock{ + frequency = 1003; + master_tag = "airlock_horizon_deck_1_aft_propulsion_2"; + name = "airlock_horizon_deck_1_aft_propulsion_2" + }, +/obj/effect/map_effect/marker_helper/airlock/exterior, /turf/simulated/floor/plating, -/area/engineering/lobby) -"teb" = ( -/turf/simulated/floor/plating, -/area/engineering/bluespace_drive) -"ted" = ( -/obj/effect/floor_decal/corner/dark_green/full{ - dir = 1 +/area/horizon/engineering/atmos/propulsion/starboard) +"teh" = ( +/obj/effect/floor_decal/spline/plain/corner, +/obj/effect/floor_decal/spline/fancy{ + dir = 9 }, -/obj/machinery/door/window/northright, -/obj/structure/sign/drop{ - desc = "A warning sign which reads 'DANGER: FALLING HAZARD' and 'THIS EQUIPMENT STARTS AND STOPS AUTOMATICALLY'."; - name = "\improper DANGER: FALLING HAZARD sign"; - pixel_x = 32; - pixel_y = 16 - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/port) -"tei" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/structure/tank_wall/air{ - icon_state = "air3" - }, -/turf/simulated/floor/plating, -/area/engineering/atmos/air) +/obj/effect/floor_decal/corner_wide/white, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/hallway/primary/deck_2/central) "tej" = ( /obj/structure/disposaloutlet, /obj/structure/disposalpipe/trunk, @@ -133066,18 +133326,24 @@ /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/full, /area/horizon/security/brig) -"ten" = ( -/obj/effect/floor_decal/corner_wide/blue{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ +"tel" = ( +/obj/structure/closet/crate, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/item/tank/air, +/obj/item/clothing/suit/space/emergency, +/obj/item/clothing/head/helmet/space/emergency, +/obj/item/tank/air, +/obj/item/clothing/suit/space/emergency, +/obj/item/clothing/head/helmet/space/emergency, +/turf/simulated/floor/plating, +/area/horizon/hangar/intrepid) +"tem" = ( +/obj/effect/floor_decal/corner/dark_green{ dir = 5 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/storage/tech) +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled, +/area/horizon/crew/fitness/changing) "teo" = ( /obj/machinery/light/small{ dir = 4 @@ -133093,47 +133359,29 @@ icon_state = "dark_preview" }, /area/centcom/spawning) -"tes" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/airlock/glass_service{ - dir = 4; - name = "Custodial Closet Storage"; - req_access = list(26) - }, -/turf/simulated/floor/tiled, -/area/horizon/custodial) -"tet" = ( -/obj/effect/floor_decal/corner_wide/yellow{ +"tep" = ( +/obj/structure/bed/stool/chair/padded/brown{ dir = 1 }, -/obj/structure/cable/green{ +/obj/machinery/camera/network/supply{ + c_tag = "Operations - Manager's Office"; + dir = 8 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/horizon/command/heads/om) +"teq" = ( +/obj/structure/cable{ icon_state = "4-8" }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + dir = 4 }, -/turf/simulated/floor/tiled, -/area/hallway/engineering) -"teu" = ( -/obj/machinery/maneuvering_engine, -/obj/effect/landmark/entry_point/aft{ - name = "aft, starboard maneuvering engines" - }, -/turf/simulated/wall/shuttle/scc_space_ship/cardinal, -/area/maintenance/wing/starboard/far) +/turf/simulated/floor/tiled/full, +/area/horizon/hallway/primary/deck_3/central) "tew" = ( /obj/structure/closet/crate/freezer/rations, /obj/effect/floor_decal/industrial/outline/yellow, @@ -133156,50 +133404,11 @@ }, /turf/simulated/floor/tiled, /area/horizon/security/holding_cell_b) -"teL" = ( -/obj/machinery/atmospherics/valve{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lime{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora) -"teN" = ( -/obj/machinery/atmospherics/pipe/simple/visible/yellow, +"teU" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/structure/lattice/catwalk/indoor/grate/dark, /turf/simulated/floor/plating, -/area/engineering/engine_room) -"teP" = ( -/obj/item/modular_computer/console/preset/engineering{ - dir = 8 - }, -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/structure/railing/mapped, -/obj/effect/floor_decal/corner/dark_blue/full{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/dark, -/area/bridge/aibunker) -"teQ" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/machinery/door/blast/regular{ - dir = 4; - id = "r-ust_vent"; - name = "INDRA Reactor Vent" - }, -/turf/simulated/floor/reinforced/airless, -/area/engineering/engine_room/rust) +/area/horizon/maintenance/deck_2/wing/port) "teW" = ( /obj/structure/closet/crate/trashcart, /obj/item/broken_bottle, @@ -133218,123 +133427,151 @@ icon_state = "dark_preview" }, /area/centcom/control) -"tfc" = ( +"tfg" = ( /obj/effect/floor_decal/industrial/outline/grey, /obj/structure/closet/crate/plastic{ - name = "camping crate" + name = "outdoor clothing crate" }, -/obj/item/sleeping_bag, -/obj/item/sleeping_bag, -/obj/item/sleeping_bag, -/obj/item/sleeping_bag, -/obj/item/sleeping_bag, -/obj/item/sleeping_bag, -/obj/item/tent, -/obj/item/tent, +/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, /turf/simulated/floor/plating, -/area/hangar/intrepid) -"tfh" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 5 +/area/horizon/hangar/intrepid) +"tfj" = ( +/obj/structure/closet/crate/bin{ + name = "subject clothing" }, -/obj/structure/sign/directions/civ{ - desc = "A sign pointing out that a lift leads to the ship's residential deck."; - dir = 1; - name = "\improper Lift to Residential Deck sign"; - pixel_y = -10 - }, -/obj/machinery/cryopod/living_quarters{ - pixel_y = 8 - }, -/turf/simulated/floor/tiled, -/area/horizon/crew_quarters/cryo/living_quarters_lift) -"tfl" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/machinery/firealarm/west, -/turf/simulated/floor/tiled/dark/full, -/area/turret_protected/ai_upload) -"tfx" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden{ - dir = 1 +/obj/item/clothing/shoes/sneakers, +/obj/item/clothing/shoes/sneakers, +/obj/item/clothing/under/medical_gown/white, +/obj/item/clothing/under/medical_gown/white, +/obj/structure/cable/green{ + icon_state = "0-8" }, /obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/obj/machinery/power/apc/low/south, +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/xenoarch/isolation_c) +"tfm" = ( +/obj/effect/floor_decal/corner/dark_blue/diagonal, +/turf/simulated/floor/tiled/dark, +/area/horizon/command/bridge/aibunker) +"tfn" = ( +/turf/simulated/floor/tiled/dark, +/area/horizon/rnd/hallway) +"tfp" = ( +/obj/machinery/light, +/turf/simulated/floor/tiled/dark, +/area/horizon/service/bar/backroom) +"tfs" = ( +/obj/effect/floor_decal/industrial/hatch_door/red, +/obj/machinery/door/airlock/external{ dir = 8 }, -/turf/simulated/floor, -/area/horizon/maintenance/deck_three/aft/starboard) -"tfA" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 6 + }, +/obj/effect/map_effect/marker/airlock{ + master_tag = "sccv_intrepid_port"; + name = "sccv_intrepid_port"; + req_one_access = null + }, +/obj/effect/map_effect/marker_helper/airlock/interior, +/obj/machinery/access_button{ + pixel_y = 29; + pixel_x = -7; dir = 8 }, -/obj/structure/railing/mapped{ - dir = 8 +/turf/simulated/floor/tiled/dark/full, +/area/horizon/shuttle/intrepid/port_compartment) +"tfw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ + icon_state = "4-8" }, -/obj/structure/bed/handrail{ +/obj/effect/floor_decal/corner/dark_green/diagonal, +/turf/simulated/floor/tiled, +/area/horizon/hangar/auxiliary) +"tfy" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance_hatch{ dir = 1 }, -/obj/effect/floor_decal/corner/dark_blue/diagonal, -/obj/effect/floor_decal/spline/plain/black{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/intrepid/junction_compartment) -"tfB" = ( -/obj/structure/flora/ausbushes/lavendergrass, -/obj/structure/flora/ausbushes/sparsegrass, -/turf/simulated/floor/grass/no_edge, -/area/horizon/hydroponics/lower) +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor/tiled/full, +/area/horizon/maintenance/deck_1/hangar/starboard) "tfC" = ( /turf/simulated/floor/wood, /area/merchant_station/warehouse) -"tfI" = ( -/obj/machinery/door/airlock/highsecurity{ - name = "AI Core Foyer"; - req_access = list(16) +"tfG" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/red{ + dir = 6 }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/door/blast/regular/open{ - id = "AICore"; - name = "AI Core Blast Door"; - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/dark, -/area/turret_protected/ai_upload) +/area/horizon/service/custodial/disposals/deck_1) "tfL" = ( /obj/effect/floor_decal/industrial/warning{ dir = 4 }, /turf/unsimulated/floor/plating, /area/centcom/ferry) -"tfN" = ( -/obj/structure/cable/green, -/obj/structure/bed/stool/chair/shuttle{ - dir = 8 +"tfM" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 }, -/obj/effect/floor_decal/industrial/outline/grey, -/obj/machinery/atmospherics/pipe/simple/hidden{ +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/corner_wide/green{ dir = 10 }, -/obj/machinery/power/apc/mining_shuttle/east{ - req_one_access = list(48,11,74) +/obj/effect/floor_decal/corner_wide/green{ + dir = 1 }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/mining) -"tge" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 +/obj/structure/disposalpipe/trunk{ + dir = 4 }, -/turf/simulated/floor/reinforced/airless, -/area/template_noop) +/obj/machinery/disposal/small/north, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/exam) "tgj" = ( /obj/machinery/suit_cycler/freelancer, /turf/unsimulated/floor, /area/centcom/distress_prep) +"tgm" = ( +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/structure/platform/ledge, +/obj/structure/platform/ledge{ + dir = 8 + }, +/obj/structure/platform_deco/ledge{ + dir = 9 + }, +/obj/structure/platform/ledge{ + dir = 4 + }, +/obj/structure/platform_deco/ledge{ + dir = 5 + }, +/turf/simulated/open, +/area/horizon/hallway/primary/deck_3/central) "tgn" = ( /obj/structure/table/reinforced/steel, /obj/machinery/light{ @@ -133362,31 +133599,58 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/security/office) -"tgv" = ( -/mob/living/simple_animal/chicken, -/turf/simulated/floor/grass/no_edge, -/area/horizon/hydroponics/lower) +"tgu" = ( +/obj/structure/morgue{ + dir = 8 + }, +/obj/effect/floor_decal/spline/plain{ + dir = 6 + }, +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/structure/platform{ + dir = 8 + }, +/turf/simulated/floor/tiled/freezer{ + name = "cooled tiles"; + temperature = 278.15 + }, +/area/horizon/medical/morgue) +"tgw" = ( +/obj/machinery/drone_fabricator, +/turf/simulated/floor/greengrid/nitrogen, +/area/horizon/engineering/drone_fabrication) "tgx" = ( /turf/simulated/floor/holofloor/lino, /area/horizon/holodeck/source_theatre) -"tgE" = ( -/obj/machinery/portable_atmospherics/hydroponics, -/obj/structure/window/reinforced{ - dir = 4 +"tgz" = ( +/obj/machinery/door/firedoor, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/structure/cable/green{ + icon_state = "1-2" }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/alarm/south, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/airlock/glass_command{ + dir = 1; + name = "Expedition EVA Storage"; + req_one_access = list(18,47) + }, +/turf/simulated/floor/tiled/full, +/area/horizon/storage/eva) +"tgH" = ( +/obj/structure/flora/ausbushes/fullgrass, +/turf/simulated/floor/grass/no_edge, +/area/horizon/service/cafeteria) +"tgJ" = ( +/obj/machinery/light/small, +/obj/effect/floor_decal/corner/dark_blue/full, /turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology/xenoflora) -"tgF" = ( -/obj/machinery/camera/network/engineering{ - c_tag = "Engineering - Atmos Locker Room"; - dir = 1 - }, -/obj/effect/floor_decal/industrial/outline/operations, -/obj/machinery/suit_cycler/engineering/prepared/atmos, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/atmos/storage) +/area/horizon/weapons/grauwolf) +"tgK" = ( +/turf/simulated/floor/wood, +/area/horizon/rnd/hallway/secondary) "tgL" = ( /obj/machinery/door/airlock/silver{ dir = 4; @@ -133397,6 +133661,15 @@ /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/dark, /area/shuttle/merchant) +"tgP" = ( +/obj/structure/tank_wall/hydrogen{ + icon_state = "h7" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/airless, +/area/horizon/engineering/atmos) "tgQ" = ( /obj/machinery/door/airlock/centcom{ locked = 1; @@ -133424,69 +133697,30 @@ /obj/structure/table/wood, /turf/unsimulated/floor/wood, /area/centcom/specops) -"tgY" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 +"tgU" = ( +/obj/machinery/door/firedoor/multi_tile{ + dir = 2 }, -/obj/structure/railing/mapped{ - dir = 8 +/obj/machinery/door/airlock/multi_tile/glass{ + dir = 2; + name = "Research Hallway" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/hangar/operations) -"tgZ" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark/full, -/area/rnd/xenoarch_atrium) -"thd" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/hangar/intrepid) -"the" = ( -/obj/effect/floor_decal/corner/dark_blue/full{ - dir = 4 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/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{ +/turf/simulated/floor/tiled/full, +/area/horizon/rnd/hallway) +"tha" = ( +/obj/structure/platform{ dir = 1 }, -/obj/item/device/radio/intercom/expedition/north, -/obj/structure/cable/green{ - icon_state = "4-8" - }, +/obj/machinery/alarm/west, +/obj/structure/railing/mapped, /turf/simulated/floor/tiled, -/area/shuttle/quark/cockpit) +/area/horizon/operations/machinist/surgicalbay) +"thl" = ( +/obj/machinery/atmospherics/pipe/manifold/visible{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/atmos) "thm" = ( /obj/item/tape/engineering{ icon_state = "engineering_door" @@ -133500,135 +133734,110 @@ }, /turf/unsimulated/floor, /area/centcom/legion) -"tht" = ( -/turf/simulated/wall/shuttle/scc_space_ship/cardinal, -/area/maintenance/wing/starboard) -"thu" = ( -/obj/effect/floor_decal/corner/lime/diagonal, -/obj/structure/bed/roller, -/turf/simulated/floor/tiled/white, -/area/shuttle/intrepid/medical) -"thw" = ( -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/machinery/light/small/emergency, -/obj/machinery/light/small/emergency, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard/far) -"thB" = ( -/obj/structure/railing/mapped, -/obj/effect/floor_decal/corner/dark_green{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"thH" = ( -/obj/effect/floor_decal/corner/mauve/full{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/rnd/hallway/secondary) -"thI" = ( -/obj/structure/cable/green{ - icon_state = "4-8" +"tho" = ( +/obj/structure/cable{ + icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor/plating, +/area/horizon/hangar/intrepid/interstitial) +"ths" = ( +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/door/blast/regular/open{ + fail_secure = 1; + id = "xenobio_b"; + name = "Cell Containment Blast Door" + }, +/obj/machinery/disposal/deliveryChute{ + dir = 4 + }, +/obj/machinery/door/window/eastleft{ + req_access = list(55) + }, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/rnd/xenobiology) +"thz" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/vending/snack, +/obj/structure/sign/securearea{ + name = "\improper WARNING: MUNITIONS BAY sign"; + pixel_y = -32 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/hallway/primary/deck_3/starboard) +"thD" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/reactor/supermatter/mainchamber) +"thE" = ( +/turf/simulated/wall/r_wall, +/area/horizon/engineering/storage/tech) +"thL" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/corner/brown/full{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/refinery) -"thK" = ( -/obj/effect/floor_decal/corner/yellow{ - dir = 9 - }, -/obj/machinery/button/remote/blast_door{ - desc = "A remote control-switch for the engine control room blast doors."; - dir = 8; - id = "EngineEmitterPortWest"; - name = "Supermatter Reactor Room Blast Doors"; - pixel_x = -24; - req_one_access = list(11,24) - }, -/turf/simulated/floor/tiled/dark, -/area/engineering/engine_waste) -"thN" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 1 - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/machinery/door/airlock/maintenance{ - dir = 1; - req_one_access = list(12,19) - }, -/turf/simulated/floor, -/area/maintenance/security_port) -"thO" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/operations/storage) -"thS" = ( /obj/structure/cable/green{ - icon_state = "1-2" + icon_state = "4-8" }, -/obj/machinery/door/firedoor, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/atmospherics/pipe/simple/hidden/purple{ - dir = 8 +/obj/structure/platform_deco{ + icon_state = "ledge_deco" }, -/obj/machinery/atmospherics/pipe/simple/hidden/red, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/custodial/disposals) -"thU" = ( -/obj/machinery/conveyor{ - id = "cargo_1" - }, -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/hangar/operations) -"thW" = ( -/obj/effect/floor_decal/corner/white{ - dir = 5 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/corner/mauve{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/effect/floor_decal/corner/dark_blue{ dir = 6 }, -/obj/machinery/disposal/small/south, -/obj/structure/disposalpipe/trunk, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology/xenoflora) -"tig" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ +/turf/simulated/floor/tiled, +/area/horizon/command/bridge/upperdeck) +"thP" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/structure/disposalpipe/junction{ + dir = 8 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/machinery/light/floor{ dir = 1 }, /turf/simulated/floor/tiled, -/area/engineering/storage_eva) +/area/horizon/rnd/hallway) +"tia" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/light/small/emergency{ + dir = 1 + }, +/turf/simulated/floor, +/area/horizon/maintenance/deck_3/aft/starboard) +"tib" = ( +/obj/machinery/atmospherics/unary/vent_pump/siphon/on/atmos{ + dir = 8; + id_tag = "air_out" + }, +/turf/simulated/floor/reinforced/airmix, +/area/horizon/engineering/atmos/air) "tij" = ( /obj/machinery/light{ dir = 1 @@ -133638,125 +133847,204 @@ }, /turf/unsimulated/floor, /area/antag/mercenary) -"tim" = ( -/obj/effect/floor_decal/industrial/outline/operations, -/obj/machinery/suit_cycler/engineering/prepared/atmos, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/atmos/storage) -"tio" = ( -/obj/item/modular_computer/console/preset/medical, -/obj/effect/floor_decal/corner_wide/green{ - dir = 5 +"tik" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/tank_wall/phoron{ + icon_state = "ph3" + }, +/turf/simulated/floor/airless, +/area/horizon/engineering/atmos) +"tin" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 10 + }, +/obj/item/modular_computer/console/preset/engineering, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled, +/area/horizon/engineering/lobby) +"tiq" = ( +/obj/structure/bed/stool/chair/office/bridge{ + dir = 1 + }, +/obj/effect/floor_decal/corner/dark_blue{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/command/bridge/meeting_room) +"tiw" = ( +/turf/simulated/floor/wood, +/area/horizon/service/bar) +"tiz" = ( +/obj/structure/table/standard, +/obj/effect/floor_decal/corner_wide/green/full{ + dir = 8 + }, +/obj/item/storage/firstaid/adv{ + pixel_y = 8 + }, +/obj/item/storage/firstaid/adv{ + pixel_y = 3 }, /turf/simulated/floor/tiled/white, -/area/hallway/medical/upper) -"tir" = ( -/obj/effect/floor_decal/corner_wide/paleblue{ - dir = 5 +/area/horizon/medical/main_storage) +"tiA" = ( +/obj/effect/floor_decal/corner_wide/yellow{ + dir = 10 }, -/obj/machinery/photocopier, -/obj/machinery/power/apc/low/north, -/obj/structure/cable/green{ - icon_state = "0-2" - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/heads/cmo) -"tix" = ( -/obj/machinery/door/airlock/external{ - dir = 4 - }, -/obj/effect/map_effect/marker/airlock{ - frequency = 2003; - master_tag = "airlock_horizon_deck_2_aft_indra"; - name = "airlock_horizon_deck_2_aft_indra" - }, -/obj/machinery/access_button{ - dir = 8; - pixel_x = -12; - pixel_y = -28 - }, -/obj/effect/map_effect/marker_helper/airlock/exterior, -/turf/simulated/floor/plating, -/area/engineering/aft_airlock) -"tiD" = ( +/turf/simulated/floor/tiled, +/area/horizon/engineering/break_room) +"tiC" = ( /obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard) -"tiJ" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 4 +/turf/simulated/floor/tiled/dark/full/airless, +/area/horizon/command/bridge/controlroom) +"tiF" = ( +/obj/effect/floor_decal/corner/black{ + dir = 10 }, -/obj/effect/floor_decal/spline/plain{ +/obj/effect/floor_decal/industrial/loading/yellow{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/hangar/auxiliary) +"tiH" = ( +/obj/effect/floor_decal/industrial/warning{ dir = 8 }, -/obj/machinery/atmospherics/unary/vent_pump{ - external_pressure_bound = 0; - external_pressure_bound_default = 0; - icon_state = "map_vent_in"; - initialize_directions = 1; - internal_pressure_bound = 4000; - internal_pressure_bound_default = 4000; - pressure_checks = 2; - pressure_checks_default = 2; - pump_direction = 0; - use_power = 1 +/obj/structure/tank_wall/phoron{ + icon_state = "ph8" }, -/turf/simulated/floor/carpet/rubber, -/area/tcommsat/chamber) -"tiM" = ( +/obj/machinery/atmospherics/pipe/simple/visible/purple{ + dir = 4 + }, +/turf/simulated/floor/airless, +/area/horizon/engineering/atmos) +"tiI" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/firedoor, /obj/effect/floor_decal/industrial/hatch/yellow, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 +/obj/machinery/door/airlock/glass_command{ + dir = 4; + name = "Expedition EVA Storage"; + req_one_access = list(18,47) }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 +/obj/effect/map_effect/door_helper/unres{ + dir = 4 }, /turf/simulated/floor/tiled/full, -/area/rnd/eva) -"tiR" = ( +/area/horizon/storage/eva) +"tiK" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable{ - icon_state = "4-8" +/obj/structure/cable/yellow{ + icon_state = "1-2" }, -/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{ +/obj/machinery/door/airlock/hatch{ + dir = 1; + id_tag = "r-ust_electrical_maintenance"; + locked = 1; + name = "INDRA Reactor SMES"; + req_access = list(11) + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/reactor/indra/smes) +"tiQ" = ( +/obj/effect/floor_decal/spline/fancy/wood, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 8 }, -/turf/simulated/floor/tiled, -/area/operations/storage) -"tiW" = ( -/obj/structure/noticeboard, -/turf/simulated/wall/r_wall, -/area/lawoffice/consular_two) -"tja" = ( -/obj/machinery/atmospherics/binary/pump/fuel{ - dir = 4 +/obj/machinery/power/apc/north, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" }, -/obj/effect/floor_decal/industrial/warning{ +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 6 }, +/turf/simulated/floor/wood, +/area/horizon/command/heads/hos) +"tiY" = ( +/obj/structure/disposalpipe/segment, /obj/structure/cable/green{ - icon_state = "1-4" + icon_state = "1-2" + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/door/airlock/maintenance{ + dir = 1; + req_one_access = list(12,63) + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/full, +/area/horizon/maintenance/deck_3/security/port) +"tjf" = ( +/obj/structure/table/rack, +/obj/item/storage/box/monkeycubes{ + pixel_x = 5; + pixel_y = -2 + }, +/obj/item/storage/box/monkeycubes, +/obj/item/storage/box/monkeycubes{ + pixel_x = -5; + pixel_y = 2 + }, +/obj/item/reagent_containers/spray/cleaner{ + pixel_x = -4; + pixel_y = -3 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/rnd/xenoarch/atrium) +"tjg" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/horizon/engineering/storage_eva) +"tjj" = ( +/obj/structure/shuttle_part/scc/scout{ + icon_state = "1,10" }, -/obj/machinery/firealarm/south, /turf/simulated/floor/plating, -/area/shuttle/quark/cargo_hold) +/area/horizon/shuttle/canary) "tjm" = ( /obj/effect/floor_decal/corner/beige/full{ dir = 8 }, /turf/simulated/floor/tiled/dark, /area/shuttle/merchant) -"tjs" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/red, -/turf/simulated/wall/shuttle/unique/scc/mining{ - icon_state = "7,7" +"tjn" = ( +/obj/structure/cable/green{ + icon_state = "1-2" }, -/area/shuttle/mining) +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/corner/brown{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/horizon/operations/office) +"tjr" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/turf/simulated/floor/tiled, +/area/horizon/maintenance/deck_2/wing/starboard/auxatmos) "tjt" = ( /obj/machinery/door/airlock/centcom{ name = "Washroom"; @@ -133764,28 +134052,57 @@ }, /turf/unsimulated/floor/freezer, /area/centcom/distress_prep) +"tjy" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/horizon/crew/lounge) +"tjz" = ( +/obj/machinery/light/small/emergency{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/port) "tjE" = ( /obj/structure/shuttle_part/tcfl{ icon_state = "0,5" }, /turf/unsimulated/floor/plating, /area/shuttle/legion) -"tjH" = ( -/obj/structure/railing/mapped{ - dir = 8 +"tjM" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 }, -/obj/machinery/power/apc/north, -/obj/structure/cable/green{ - icon_state = "0-4" - }, -/obj/structure/cable/green{ - icon_state = "2-4" - }, -/obj/machinery/light/floor{ +/obj/machinery/button/remote/airlock{ + id = "xeno_bot_hazard"; + name = "Xenobotany Hazardous Specimens"; + pixel_y = 30; + req_access = list(52); + specialfunctions = 4; dir = 1 }, /turf/simulated/floor/tiled/dark, -/area/horizon/hallway/deck_three/primary/port) +/area/horizon/rnd/xenobiology/xenoflora) +"tjO" = ( +/obj/machinery/door/airlock/mining{ + dir = 1; + name = "Machinist Workshop"; + req_access = list(29) + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/firedoor, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/effect/map_effect/door_helper/unres{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/horizon/operations/machinist) "tjP" = ( /obj/structure/table/wood, /obj/item/flame/candle, @@ -133808,6 +134125,38 @@ }, /turf/unsimulated/floor/plating, /area/antag/mercenary) +"tjX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/corner/dark_blue{ + dir = 1 + }, +/obj/structure/platform_deco{ + dir = 4 + }, +/obj/item/folder/blue{ + pixel_y = 7; + pixel_x = 5 + }, +/obj/item/folder/blue{ + pixel_y = 7; + pixel_x = 5 + }, +/obj/item/pen/red{ + pixel_x = 7; + pixel_y = 3 + }, +/obj/item/pen/blue{ + pixel_x = 5 + }, +/obj/item/clipboard{ + pixel_x = -8; + pixel_y = 5 + }, +/obj/structure/table/reinforced/steel, +/turf/simulated/floor/tiled/dark, +/area/horizon/command/bridge/controlroom) "tjY" = ( /obj/effect/floor_decal/industrial/warning{ dir = 1 @@ -133826,18 +134175,38 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled/dark/full, /area/horizon/security/armoury) -"tkc" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, +"tkf" = ( +/obj/machinery/light/small/emergency, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, /obj/structure/cable/green{ - icon_state = "1-2" + icon_state = "4-8" }, -/obj/effect/floor_decal/corner/dark_blue/full{ - dir = 8 +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/item/trash/mollusc_shell, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/starboard/near) +"tkg" = ( +/obj/random/loot, +/obj/structure/railing/mapped{ + dir = 4 }, -/turf/simulated/floor/tiled, -/area/bridge) +/obj/structure/closet, +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/main/starboard) +"tkk" = ( +/turf/simulated/floor/shuttle/dark_blue, +/area/horizon/shuttle/escape_pod/pod1) "tkn" = ( /obj/structure/window/reinforced/crescent{ dir = 4 @@ -133859,88 +134228,124 @@ }, /turf/simulated/floor/tiled/dark, /area/centcom/spawning) -"tkq" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/shuttle/scc_space_ship/cardinal, -/obj/structure/cable/green, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "bridge blast"; - name = "Bridge Blast Doors"; - opacity = 0 +"tkp" = ( +/obj/effect/floor_decal/corner/green/full{ + dir = 1 }, -/obj/machinery/door/blast/shutters{ - dir = 4; - id = "shutters_deck3_captain"; - name = "Safety Shutter" +/obj/structure/sink{ + pixel_y = 28 }, -/turf/simulated/floor/plating, -/area/crew_quarters/captain) -"tkx" = ( -/obj/effect/floor_decal/corner_wide/yellow{ - dir = 6 +/obj/machinery/light/small{ + dir = 4 }, +/obj/structure/mirror{ + pixel_x = 27 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/crew/washroom/deck_3) +"tks" = ( +/obj/machinery/hologram/holopad/long_range, +/obj/effect/floor_decal/corner/mauve/diagonal, +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/lab) +"tku" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 5 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, /obj/structure/cable/green{ icon_state = "1-2" }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/simulated/floor/tiled, +/area/horizon/operations/lobby) +"tky" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 10 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/survey_probe/ground, +/turf/simulated/floor/tiled, +/area/horizon/operations/mining_main/refinery) +"tkz" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/aux, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/main/port) +"tkB" = ( +/obj/machinery/atmospherics/binary/pump/on{ + dir = 8; + name = "Distro to Starboard Docks"; + target_pressure = 200 + }, +/obj/effect/floor_decal/industrial/warning/cee{ dir = 8 }, +/obj/machinery/alarm/north, +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor/plating, +/area/horizon/hallway/primary/deck_3/port/docks) +"tkE" = ( +/obj/machinery/alarm/north{ + req_one_access = list(24,11,55) + }, +/obj/structure/reagent_dispensers/watertank, +/obj/item/reagent_containers/glass/bucket, +/obj/effect/floor_decal/industrial/outline/security, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/service/hydroponics) +"tkF" = ( +/obj/structure/disposalpipe/junction/yjunction{ + dir = 8 + }, +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor/plating, +/area/horizon/hallway/primary/deck_1/central) +"tkG" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/effect/floor_decal/spline/fancy/wood/corner{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/horizon/command/heads/captain) +"tkN" = ( +/obj/structure/closet/crate, +/obj/random/loot, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/wing/starboard) +"tkO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/turf/simulated/floor/tiled, -/area/hallway/engineering) -"tkK" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/effect/floor_decal/corner_wide/black{ - dir = 1 - }, -/obj/effect/floor_decal/corner_wide/black{ - dir = 10 - }, -/obj/effect/floor_decal/industrial/warning, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/visible/green{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/engineering/atmos/propulsion) -"tkS" = ( -/obj/effect/floor_decal/corner_wide/black{ - dir = 6 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/visible/black{ +/obj/effect/floor_decal/corner/brown{ dir = 5 }, -/turf/simulated/floor/tiled/dark, -/area/engineering/atmos/propulsion) -"tkX" = ( -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/machinery/alarm/north, -/turf/simulated/floor/plating, -/area/maintenance/operations) +/obj/machinery/status_display/supply_display{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled, +/area/horizon/hangar/operations) +"tkR" = ( +/obj/machinery/computer/telecomms/server{ + network = "tcommsat" + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/tcommsat/entrance) "tkZ" = ( /obj/structure/reagent_dispensers/water_cooler, /obj/effect/floor_decal/corner/red/full, @@ -133950,6 +134355,15 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/security/interrogation) +"tlf" = ( +/obj/effect/floor_decal/corner_wide/purple/full{ + dir = 4 + }, +/obj/structure/platform{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/xenoarch/atrium) "tli" = ( /obj/structure/bed/stool/chair/office/dark{ dir = 1 @@ -133958,35 +134372,18 @@ icon_state = "dark_preview" }, /area/centcom/spawning) -"tls" = ( -/obj/machinery/light{ +"tlo" = ( +/obj/structure/bed/stool/chair/office/light{ dir = 4 }, -/obj/structure/disposalpipe/up{ - dir = 8 +/obj/effect/landmark/start{ + name = "Lab Assistant" }, -/obj/structure/engineer_maintenance/electric{ - dir = 4 - }, -/obj/machinery/disposal/small/west, -/obj/structure/engineer_maintenance/pipe, /obj/effect/floor_decal/spline/fancy/wood{ - dir = 6 + dir = 9 }, /turf/simulated/floor/wood, -/area/operations/qm) -"tlx" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/fuel, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/shuttle/intrepid/starboard_compartment) +/area/horizon/rnd/conference) "tlz" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 5 @@ -134001,34 +134398,6 @@ }, /turf/simulated/floor/lino, /area/horizon/security/investigators_office) -"tlA" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 9 - }, -/obj/effect/floor_decal/spline/plain{ - dir = 8 - }, -/obj/structure/bed/stool/chair/office/light{ - dir = 8 - }, -/obj/machinery/ringer/west{ - pixel_y = 32; - department = "Hydroponics"; - id = "ringer_hydroponics"; - req_access = list(35) - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/horizon/hydroponics) -"tlB" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 6 - }, -/turf/simulated/floor, -/area/maintenance/wing/port/far) "tlF" = ( /obj/structure/flora/ausbushes/leafybush, /obj/effect/floor_decal/spline/plain/corner{ @@ -134045,27 +134414,67 @@ icon_state = "white" }, /area/centcom/legion) +"tlI" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/universal, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 4 + }, +/obj/machinery/bluespace_beacon, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/shuttle/canary) +"tlJ" = ( +/obj/item/rig/medical/equipped{ + pixel_x = 4; + pixel_y = 5 + }, +/obj/item/rig/medical/equipped{ + pixel_x = -5; + pixel_y = 5 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/table/rack{ + pixel_y = 5 + }, +/obj/machinery/door/window/southleft, +/turf/simulated/floor/tiled, +/area/horizon/medical/paramedic) +"tlM" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/wing/starboard) +"tlN" = ( +/obj/random/junk, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/maintenance/deck_2/wing/starboard) "tlO" = ( /obj/effect/floor_decal/corner/teal{ dir = 10 }, /turf/unsimulated/floor/marble, /area/antag/wizard) -"tlU" = ( -/obj/effect/floor_decal/corner_wide/purple{ - dir = 6 - }, -/obj/effect/floor_decal/corner_wide/purple{ - dir = 8 - }, +"tlV" = ( /obj/structure/cable/green{ icon_state = "1-2" }, -/obj/structure/platform{ - dir = 8 - }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/white, -/area/rnd/xenoarch_atrium) +/area/horizon/medical/hallway/upper) "tmf" = ( /obj/effect/floor_decal/corner/yellow{ dir = 9 @@ -134075,59 +134484,24 @@ }, /turf/simulated/floor/marble/dark, /area/horizon/holodeck/source_trinary) -"tmg" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/camera/network/third_deck{ - c_tag = "Third Deck - Central Ring Elevator" - }, -/obj/effect/floor_decal/corner/dark_green{ - dir = 5 +"tmh" = ( +/obj/effect/floor_decal/corner/mauve, +/obj/structure/platform_deco{ + icon_state = "ledge_deco" }, /turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/central) -"tmk" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/railing/mapped{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard) +/area/horizon/rnd/hallway/secondary) "tml" = ( /obj/item/hullbeacon/red, /obj/effect/floor_decal/industrial/warning, /turf/simulated/floor/reinforced/airless, /area/horizon/exterior) -"tmt" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/substation/medical) -"tmu" = ( -/obj/effect/floor_decal/corner/brown{ - dir = 6 - }, -/obj/machinery/firealarm/east, -/obj/machinery/light{ +"tmm" = ( +/obj/machinery/atmospherics/unary/vent_pump/aux{ dir = 4 }, -/obj/effect/landmark/start{ - name = "Shaft Miner" - }, -/turf/simulated/floor/tiled/dark, -/area/outpost/mining_main/eva) +/turf/simulated/floor/tiled/dark/full, +/area/horizon/command/bridge/aibunker) "tmw" = ( /obj/effect/floor_decal/industrial/warning/corner{ dir = 4 @@ -134143,63 +134517,152 @@ }, /turf/simulated/floor/carpet/cyan, /area/centcom/ferry) -"tmB" = ( -/obj/effect/floor_decal/corner/green/diagonal, -/obj/structure/table/standard, -/obj/structure/bedsheetbin{ +"tmF" = ( +/obj/structure/shuttle_part/scc/scout{ + icon_state = "2,4"; + outside_part = 0 + }, +/obj/structure/ship_weapon_dummy, +/turf/simulated/floor/reinforced{ + blocks_air = 1; + density = 1; + name = "thruster mount"; + opacity = 1 + }, +/area/horizon/shuttle/canary) +"tmI" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/maintenance/deck_2/wing/port/nacelle) +"tmM" = ( +/obj/effect/floor_decal/corner_wide/yellow/diagonal, +/obj/structure/table/steel, +/obj/item/storage/box/fancy/crayons/chalkbox{ pixel_y = 5 }, -/turf/simulated/floor/tiled/white, -/area/medical/ward/isolation) -"tmE" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, +/obj/item/storage/box/fancy/crayons/chalkbox, /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/break_room) +"tmR" = ( +/obj/structure/foamedmetal, +/obj/structure/shuttle_part/scc_space_ship{ + icon_state = "d2-2" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/cargo_compartment) +"tmX" = ( +/obj/machinery/door/airlock/external, +/obj/effect/floor_decal/industrial/hatch/red, +/obj/effect/floor_decal/industrial/warning/cee{ dir = 4 }, -/turf/simulated/floor/tiled/full, -/area/hallway/primary/central_one) -"tmN" = ( -/turf/simulated/wall, -/area/medical/reception) -"tnb" = ( -/obj/machinery/portable_atmospherics/canister/air/airlock, -/obj/machinery/atmospherics/portables_connector, -/obj/effect/decal/cleanable/cobweb2, -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"tnm" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, -/obj/structure/cable/green{ - icon_state = "2-8" +/obj/structure/cable{ + icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, -/obj/structure/lattice/catwalk/indoor/grate, -/turf/simulated/floor, -/area/bridge) -"tns" = ( -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/simple/visible/universal, -/obj/machinery/alarm/west, +/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/engineering/atmos/air) -"tny" = ( -/turf/simulated/wall/r_wall, -/area/hallway/primary/aft) +/area/horizon/shuttle/quark/cargo_hold) +"tmY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 9 + }, +/obj/machinery/alarm/south, +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/atmos/propulsion/starboard) +"tng" = ( +/obj/structure/tank_wall/hydrogen{ + density = 0; + icon_state = "h12"; + opacity = 0 + }, +/obj/machinery/atmospherics/unary/outlet_injector{ + frequency = 1441; + id = "h_in"; + name = "hydrogen injector"; + use_power = 1 + }, +/turf/simulated/floor/reinforced/hydrogen, +/area/horizon/engineering/atmos) +"tni" = ( +/obj/machinery/computer/drone_control{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/horizon/engineering/drone_fabrication) +"tnj" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/wood, +/area/horizon/repoffice/representative_two) +"tnk" = ( +/obj/effect/map_effect/window_spawner/full/reinforced/grille/firedoor, +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/obj/machinery/door/blast/regular/open{ + id = "AICore"; + name = "AI Core Blast Door" + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/ai/upload) +"tnl" = ( +/turf/simulated/wall, +/area/horizon/crew/lounge) +"tnt" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 9 + }, +/obj/machinery/hologram/holopad/long_range, +/obj/structure/bed/stool/chair/office/bridge{ + dir = 4 + }, +/obj/effect/landmark/start{ + name = "Bridge Crew" + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/command/bridge/meeting_room) +"tnv" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner/yellow{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/horizon/engineering/hallway/fore) "tnz" = ( /turf/simulated/wall/shuttle/unique/ert{ icon_state = "7,4" }, /area/centcom/specops) +"tnA" = ( +/obj/effect/map_effect/window_spawner/full/reinforced/polarized/firedoor{ + id = "Bar_Private_Lounge" + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/service/bar) "tnC" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 @@ -134215,12 +134678,20 @@ }, /turf/simulated/floor/tiled, /area/horizon/security/brig) -"tnI" = ( -/obj/structure/shuttle_part/scc_space_ship{ - icon_state = "d3-4-f" +"tnJ" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 1; + frequency = 1380; + id_tag = "centcom_shuttle_dock_pump" }, -/turf/simulated/wall, -/area/maintenance/wing/starboard/far) +/obj/effect/map_effect/marker/airlock{ + master_tag = "airlock_horizon_bunker"; + name = "airlock_horizon_bunker"; + frequency = 1109; + req_one_access = list(19) + }, +/turf/simulated/floor, +/area/horizon/ai/upload_foyer) "tnN" = ( /obj/structure/table/standard, /obj/item/paper_scanner{ @@ -134251,33 +134722,90 @@ }, /turf/unsimulated/floor/plating, /area/centcom/legion) -"tnS" = ( -/obj/structure/closet/walllocker/medical/firstaid{ - pixel_y = 32 +"tnP" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 9 }, -/obj/effect/floor_decal/corner/dark_green{ - dir = 5 +/turf/simulated/floor/reinforced, +/area/horizon/weapons/grauwolf) +"tnT" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 }, -/turf/simulated/floor/tiled, -/area/security/checkpoint2) +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + icon_state = "pipe-c" + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/wing/starboard) "tnV" = ( /obj/machinery/r_n_d/server/centcom, /turf/unsimulated/floor{ icon_state = "dark_preview" }, /area/centcom/control) -"tol" = ( -/obj/effect/map_effect/window_spawner/full/reinforced/polarized/grille/firedoor{ - id = "hra" +"tnW" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" }, -/obj/structure/cable/green{ - icon_state = "0-4" +/turf/simulated/floor/wood, +/area/horizon/command/heads/captain) +"toa" = ( +/obj/effect/floor_decal/corner_wide/yellow/diagonal, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/light, /obj/structure/cable/green{ icon_state = "4-8" }, -/turf/simulated/floor, -/area/bridge/cciaroom) +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/break_room) +"toc" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/corner/red/diagonal, +/obj/structure/extinguisher_cabinet/west, +/obj/random/dirt_75, +/turf/simulated/floor/tiled, +/area/horizon/maintenance/deck_2/wing/port) +"tod" = ( +/obj/structure/platform/ledge{ + dir = 1 + }, +/obj/structure/platform/ledge{ + dir = 4 + }, +/obj/structure/platform_deco/ledge{ + dir = 10 + }, +/turf/simulated/open, +/area/horizon/hallway/primary/deck_3/central) +"tok" = ( +/obj/structure/disposalpipe/junction{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/horizon/command/bridge/upperdeck) "ton" = ( /obj/structure/sign/double/map/left{ pixel_y = 32 @@ -134300,85 +134828,48 @@ icon_state = "white" }, /area/centcom/legion) -"top" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/horizon/bar) -"tou" = ( -/turf/simulated/floor/shuttle/dark_blue, -/area/shuttle/escape_pod/pod2) -"toy" = ( -/obj/effect/floor_decal/spline/fancy/wood/corner{ - dir = 8 - }, -/obj/effect/floor_decal/spline/fancy/wood/corner{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ +"tor" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ dir = 4 }, -/obj/structure/platform_deco{ - dir = 8 +/obj/effect/map_effect/marker/airlock{ + frequency = 1002; + master_tag = "airlock_horizon_deck_3_fore_starboard_1"; + name = "airlock_horizon_deck_3_fore_starboard_1" }, -/turf/simulated/floor/wood, -/area/horizon/crew_quarters/lounge/bar) -"toD" = ( -/obj/structure/bed/stool/bar/padded/red, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard) -"toF" = ( -/obj/effect/floor_decal/corner/black{ - dir = 5 +/turf/simulated/floor, +/area/horizon/maintenance/deck_3/bridge) +"tos" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 }, +/obj/effect/floor_decal/corner/dark_blue/diagonal, +/obj/machinery/firealarm/west, /turf/simulated/floor/tiled/dark, -/area/hangar/intrepid) -"toI" = ( -/obj/structure/cable/green{ - icon_state = "1-2" +/area/horizon/security/checkpoint) +"toA" = ( +/turf/simulated/floor/carpet/rubber, +/area/horizon/engineering/bluespace_drive/monitoring) +"toM" = ( +/obj/effect/floor_decal/industrial/hatch/red, +/obj/item/smes_coil{ + pixel_x = 3; + pixel_y = -3 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/corner/brown{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/operations/office) -"toL" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/structure/reagent_dispensers/extinguisher, /turf/simulated/floor/plating, -/area/maintenance/engineering) -"toR" = ( -/obj/effect/floor_decal/corner/brown{ +/area/horizon/maintenance/deck_2/wing/starboard/nacelle) +"toS" = ( +/obj/effect/floor_decal/corner/dark_green{ dir = 10 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, /turf/simulated/floor/tiled, -/area/operations/office) +/area/horizon/stairwell/port/deck_2) "toU" = ( /obj/structure/table/rack, /obj/item/tank/oxygen/red, @@ -134395,24 +134886,19 @@ /obj/effect/decal/cleanable/dirt, /turf/unsimulated/floor, /area/antag/burglar) -"toW" = ( -/obj/effect/floor_decal/corner/mauve{ - dir = 5 +"tpj" = ( +/obj/machinery/door/blast/shutters{ + dir = 2; + id = "cargo_desk" }, -/obj/effect/floor_decal/corner/white{ - dir = 10 +/obj/structure/table/reinforced, +/obj/machinery/door/window/desk/southleft{ + name = "Operations Desk Interior Access"; + req_access = list(50) }, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology/xenoflora) -"tpn" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/wood, -/area/medical/psych) +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/operations/office) "tpo" = ( /obj/effect/floor_decal/corner/dark_blue{ dir = 9 @@ -134423,67 +134909,23 @@ }, /turf/simulated/floor/tiled, /area/horizon/security/investigations_hallway) -"tpq" = ( -/obj/machinery/atmospherics/pipe/simple/visible/black{ - dir = 4 - }, -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/structure/window/shuttle/scc_space_ship, -/turf/simulated/floor/plating, -/area/engineering/engine_room) "tpt" = ( /obj/structure/table/wood, /turf/simulated/floor/holofloor/lino, /area/horizon/holodeck/source_meetinghall) -"tpD" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 8 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/engineering/lobby) -"tpF" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 8 - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/heads/hor) -"tpG" = ( -/obj/structure/disposalpipe/junction{ - dir = 8 - }, +"tpv" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/bluespace_beacon, /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 - }, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/central) -"tpJ" = ( -/obj/machinery/atmospherics/pipe/simple/visible/cyan{ - dir = 5 + d1 = 1; + d2 = 2; + icon_state = "1-2" }, /turf/simulated/floor/plating, -/area/engineering/engine_room) +/area/horizon/shuttle/intrepid/main_compartment) "tpK" = ( /obj/effect/floor_decal/industrial/warning{ dir = 4 @@ -134501,34 +134943,48 @@ }, /turf/simulated/floor/plating, /area/merchant_station/warehouse) -"tpM" = ( +"tpS" = ( +/obj/machinery/light_switch{ + dir = 8; + pixel_x = -24; + pixel_y = -29 + }, +/turf/simulated/floor/tiled/freezer{ + name = "cooled tiles"; + temperature = 253.15 + }, +/area/horizon/service/kitchen/freezer) +"tpV" = ( +/obj/machinery/door/window{ + req_access = list(37); + name = "Library Desk" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/lino/diamond, +/area/horizon/service/library) +"tqa" = ( +/obj/structure/shuttle_part/scc/scout{ + icon_state = "1,2" + }, +/turf/simulated/floor/plating, +/area/horizon/shuttle/canary) +"tqb" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, /obj/structure/cable/green{ icon_state = "4-8" }, -/obj/effect/floor_decal/industrial/loading/engineering, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/bluespace_drive) -"tpR" = ( -/obj/random/junk, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/aux, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/maintenance/engineering) -"tpW" = ( -/obj/structure/closet/emcloset, -/obj/effect/floor_decal/corner/dark_green{ - dir = 9 - }, -/obj/effect/floor_decal/industrial/outline/emergency_closet, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_two) +/obj/machinery/hologram/holopad, +/turf/simulated/floor/wood, +/area/horizon/repoffice/representative_one) "tqc" = ( /obj/structure/window/reinforced{ dir = 1; @@ -134552,25 +135008,12 @@ }, /turf/simulated/floor/tiled/dark/full, /area/shuttle/mercenary) -"tqd" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ +"tqg" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/light, -/obj/effect/floor_decal/corner/brown{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/operations/office) +/turf/simulated/floor/wood, +/area/horizon/medical/psych) "tqj" = ( /obj/item/storage/box/fancy/candle_box{ icon_state = "candlepack5" @@ -134583,22 +135026,29 @@ /obj/structure/table/reinforced/wood, /turf/unsimulated/floor, /area/antag/raider) -"tql" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/floor_decal/corner/yellow/full{ +"tqk" = ( +/obj/structure/railing/mapped{ dir = 8 }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/closet/secure_closet/engineering_welding, -/turf/simulated/floor/tiled, -/area/engineering/storage_eva) -"tqs" = ( -/turf/simulated/wall/shuttle/unique/scc/mining{ - icon_state = "fix2" +/obj/machinery/computer/ship/engines{ + dir = 4 }, -/area/shuttle/mining) +/obj/effect/floor_decal/corner/dark_blue{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/command/bridge/aibunker) +"tqr" = ( +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/effect/floor_decal/corner/dark_blue{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/dark, +/area/horizon/security/checkpoint2) "tqt" = ( /obj/effect/decal/fake_object{ icon = 'icons/obj/doors/rapid_pdoor.dmi'; @@ -134609,99 +135059,60 @@ /obj/structure/table/reinforced/wood, /turf/unsimulated/floor, /area/antag/raider) -"tqC" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 10 +"tqz" = ( +/obj/effect/floor_decal/industrial/outline/grey, +/obj/structure/closet/crate{ + name = "materials crate" }, -/obj/structure/extinguisher_cabinet/south, -/obj/machinery/light/floor, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"tqD" = ( +/obj/item/stack/material/plastic/full, +/obj/item/stack/material/plastic/full, +/obj/item/stack/material/steel/full{ + pixel_x = 4 + }, +/obj/item/stack/rods/full, +/turf/simulated/floor/plating, +/area/horizon/hangar/intrepid) +"tqA" = ( +/obj/effect/floor_decal/corner/yellow/full{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/reactor/supermatter/waste) +"tqB" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/effect/floor_decal/corner/dark_green{ - dir = 10 +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/research) +"tqD" = ( +/turf/simulated/wall, +/area/horizon/engineering/hallway/aft) +"tqK" = ( +/obj/structure/cable/green{ + icon_state = "4-8" }, -/obj/machinery/camera/network/research{ - c_tag = "Research - Corridor Camera 1"; +/obj/effect/floor_decal/corner/brown{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 1 }, /turf/simulated/floor/tiled, -/area/rnd/hallway) -"tqE" = ( -/obj/machinery/alarm/east, -/obj/structure/flora/pottedplant{ - icon_state = "plant-33"; - pixel_y = 16 - }, -/obj/structure/railing/mapped, -/turf/simulated/floor/tiled/dark, -/area/horizon/hallway/deck_three/primary/port) -"tqF" = ( -/turf/simulated/wall/shuttle/scc_space_ship/cardinal, -/area/maintenance/security_port) -"tqH" = ( -/obj/structure/cable/green{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, +/area/horizon/hangar/operations) +"tqS" = ( /obj/effect/floor_decal/industrial/warning{ dir = 4 }, -/obj/structure/railing/mapped, /turf/simulated/floor/plating, -/area/maintenance/wing/starboard) -"tqJ" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/port) -"tqM" = ( -/obj/structure/bed/stool/chair/padded/red{ - dir = 8 - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 1 - }, -/obj/structure/cable/green{ - icon_state = "4-8"; - d1 = 4; - d2 = 8 - }, -/obj/structure/engineer_maintenance/electric/wall, -/turf/simulated/floor/wood, -/area/horizon/crew_quarters/lounge/bar) -"tqT" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/platform_stairs/full/east_west_cap, -/turf/simulated/floor/plating, -/area/maintenance/engineering) -"trc" = ( -/obj/effect/floor_decal/industrial/hatch/red, -/obj/effect/floor_decal/industrial/warning{ - dir = 9 - }, -/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) +/area/horizon/maintenance/deck_1/operations/starboard/far) +"tqZ" = ( +/obj/structure/sign/flag/scc, +/turf/simulated/wall, +/area/horizon/hangar/intrepid/interstitial) "tre" = ( /obj/machinery/atmospherics/pipe/zpipe/down/black{ dir = 1 @@ -134709,38 +135120,22 @@ /obj/structure/lattice, /turf/simulated/open/airless, /area/horizon/exterior) -"trg" = ( -/obj/machinery/door/airlock/glass_research{ - dir = 1; - name = "Telescience"; - req_access = list(7) - }, +"trf" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/green{ - icon_state = "1-2" + icon_state = "1-4" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/firedoor, /obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/dark/full, -/area/rnd/telesci) -"tri" = ( -/obj/machinery/atmospherics/unary/outlet_injector{ - frequency = 1441; - id = "n_in"; - name = "nitrogen injector"; - use_power = 1 - }, -/turf/simulated/floor/reinforced/nitrogen, -/area/engineering/atmos/air) -"trj" = ( -/obj/machinery/vending/cigarette, -/obj/effect/floor_decal/spline/fancy/wood{ +/turf/simulated/floor/tiled, +/area/horizon/command/bridge/upperdeck) +"trh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/emergency{ dir = 1 }, -/turf/simulated/floor/wood, -/area/crew_quarters/lounge/secondary) +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/wing/port/far) "trn" = ( /obj/structure/railing/mapped{ dir = 8 @@ -134748,20 +135143,6 @@ /obj/structure/table/wood, /turf/simulated/floor/holofloor/lino, /area/horizon/holodeck/source_theatre) -"tro" = ( -/obj/structure/platform_deco{ - dir = 8 - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 8 - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/wood, -/area/bridge/meeting_room) "trp" = ( /obj/machinery/vending/engivend, /obj/effect/floor_decal/industrial/outline/yellow, @@ -134769,41 +135150,84 @@ icon_state = "dark_preview" }, /area/centcom/specops) -"tru" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/structure/window/shuttle/scc_space_ship/cardinal, -/turf/simulated/floor/tiled/dark/full, -/area/crew_quarters/heads/hor) -"trD" = ( -/obj/structure/cable/green{ - icon_state = "1-2" +"trs" = ( +/obj/structure/bed/stool/chair{ + dir = 8 }, -/obj/structure/cable/green, -/obj/effect/map_effect/window_spawner/full/reinforced/polarized/grille/firedoor{ - id = "bridgeconf" +/obj/effect/floor_decal/spline/fancy/wood/cee, +/turf/simulated/floor/wood, +/area/horizon/operations/machinist/surgicalbay) +"trv" = ( +/obj/effect/floor_decal/corner_wide/paleblue/full{ + dir = 4 }, -/turf/simulated/floor, -/area/bridge/meeting_room) -"trP" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/obj/structure/disposalpipe/segment{ +/obj/structure/table/standard, +/obj/machinery/button/switch/windowtint{ dir = 4; - icon_state = "pipe-c" + id = "surgery2"; + pixel_x = 21; + pixel_y = 10; + req_access = list(66) }, -/turf/simulated/floor/tiled/full, -/area/hallway/primary/central_two) +/obj/item/storage/box/gloves, +/obj/item/storage/box/masks{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/machinery/button/switch/holosign{ + dir = 4; + id = 2; + pixel_x = 21 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/surgery) +"trx" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 5 + }, +/obj/structure/displaycase/captain_revolver, +/obj/machinery/button/remote/blast_door{ + dir = 1; + id = "shutters_deck3_captain"; + name = "External Shutters"; + pixel_y = 26 + }, +/turf/simulated/floor/wood, +/area/horizon/command/heads/captain) +"trB" = ( +/obj/machinery/chem_heater, +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/floor_decal/corner_wide/orange{ + dir = 6 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/pharmacy) +"trK" = ( +/obj/structure/bed/stool/chair/padded/brown{ + dir = 4 + }, +/obj/effect/floor_decal/corner/white/diagonal, +/obj/effect/floor_decal/spline/plain{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/hallway/primary/deck_3/central) +"trL" = ( +/obj/structure/railing/mapped, +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/obj/structure/cable/green{ + icon_state = "12-0" + }, +/obj/machinery/atmospherics/pipe/zpipe/up/supply, +/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers, +/obj/effect/floor_decal/industrial/warning/full, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/research) "trQ" = ( /obj/machinery/light/small{ dir = 8 @@ -134812,22 +135236,45 @@ /obj/structure/lattice/catwalk/indoor/grate/dark, /turf/simulated/floor/plating, /area/shuttle/skipjack) +"trS" = ( +/obj/machinery/light/small/emergency{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 1; + frequency = 1337; + id_tag = "merchant_shuttle_dock_pump" + }, +/obj/machinery/embedded_controller/radio/airlock/docking_port{ + frequency = 1337; + id_tag = "merchant_shuttle_dock"; + pixel_x = 29; + req_access = list(13); + tag_airpump = "merchant_shuttle_dock_pump"; + tag_chamber_sensor = "merchant_shuttle_dock_sensor"; + tag_exterior_door = "merchant_shuttle_dock_outer"; + tag_interior_door = "merchant_shuttle_dock_inner" + }, +/obj/machinery/airlock_sensor{ + frequency = 1337; + id_tag = "merchant_shuttle_dock_sensor"; + pixel_x = -27 + }, +/turf/simulated/floor/plating, +/area/horizon/security/checkpoint2) "trV" = ( /obj/machinery/light, /turf/unsimulated/floor/plating, /area/centcom/evac) +"trW" = ( +/turf/simulated/floor/carpet, +/area/horizon/command/heads/hos) "trX" = ( /obj/machinery/telecomms/hub/preset_cent, /turf/unsimulated/floor{ icon_state = "dark_preview" }, /area/centcom/control) -"trY" = ( -/obj/effect/floor_decal/corner/black{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/hangar/intrepid) "trZ" = ( /obj/structure/bed/stool/chair/office/hover{ can_buckle = 0; @@ -134835,25 +135282,48 @@ }, /turf/unsimulated/floor/blue_circuit, /area/antag/wizard) +"tsa" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 5 + }, +/turf/simulated/floor/plating, +/area/horizon/shuttle/intrepid/starboard_compartment) +"tsb" = ( +/obj/machinery/door/airlock/glass{ + dir = 1; + name = "Tool Storage" + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/horizon/storage/primary) +"tsc" = ( +/obj/structure/closet/firecloset/full, +/obj/effect/floor_decal/industrial/outline/red, +/turf/simulated/floor/tiled/full, +/area/horizon/command/bridge/upperdeck) "tse" = ( /obj/effect/floor_decal/corner/lime{ dir = 1 }, /turf/unsimulated/floor, /area/centcom/legion) -"tsg" = ( -/obj/structure/table/standard, -/obj/item/storage/box/beakers{ - pixel_x = 5; - pixel_y = 5 - }, -/obj/item/storage/box/syringes{ - pixel_y = 2; - pixel_x = -8 - }, -/obj/effect/floor_decal/corner/mauve/diagonal, -/turf/simulated/floor/tiled/white, -/area/rnd/chemistry) +"tsf" = ( +/turf/simulated/floor/carpet/rubber, +/area/horizon/operations/machinist) "tsl" = ( /obj/effect/floor_decal/corner_wide/paleblue/full{ dir = 8 @@ -134871,88 +135341,27 @@ /obj/item/gun/projectile/sec/unloaded, /turf/simulated/floor/tiled/dark/full, /area/horizon/security/armoury) -"tsn" = ( -/obj/effect/floor_decal/industrial/warning{ +"tsq" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black{ dir = 4 }, -/turf/simulated/floor/reinforced{ - blocks_air = 1; - density = 1; - name = "thruster mount" +/turf/simulated/wall/shuttle/scc_space_ship/cardinal, +/area/horizon/engineering/atmos/propulsion/starboard) +"tss" = ( +/turf/simulated/wall/shuttle/scc_space_ship/cardinal, +/area/horizon/maintenance/deck_1/operations/starboard/far) +"tsA" = ( +/obj/machinery/sleeper{ + dir = 4 }, -/area/engineering/atmos/propulsion/starboard) -"tso" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/corner/dark_green{ +/obj/effect/floor_decal/corner/beige{ dir = 10 }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/horizon/stairwell/central) -"tst" = ( -/obj/machinery/door/airlock{ - dir = 4; - name = "Public Office" - }, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/security/vacantoffice) -"tsv" = ( -/obj/structure/table/rack{ - dir = 8 - }, -/obj/effect/floor_decal/corner/yellow/diagonal, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/item/circuitboard/rdtechprocessor{ - pixel_y = 8 - }, -/obj/item/circuitboard/unary_atmos/heater{ - pixel_y = 4 - }, -/obj/item/circuitboard/rdconsole, -/obj/item/circuitboard/rdserver{ - pixel_y = -4 - }, -/obj/item/circuitboard/unary_atmos/cooler{ - pixel_y = -8 - }, -/obj/machinery/light/small, /turf/simulated/floor/tiled/dark, -/area/engineering/storage/tech) -"tsE" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/lattice/catwalk/indoor/grate, -/turf/simulated/floor/plating, -/area/hallway/primary/central_two) +/area/horizon/medical/icu) +"tsJ" = ( +/turf/simulated/wall/shuttle/scc_space_ship/cardinal, +/area/horizon/engineering/aft_airlock) "tsK" = ( /obj/machinery/light{ dir = 4 @@ -134961,6 +135370,38 @@ icon_state = "dark_preview" }, /area/centcom/control) +"tsM" = ( +/obj/structure/disposalpipe/junction{ + dir = 8; + icon_state = "pipe-j2" + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/full, +/area/horizon/command/bridge/upperdeck) +"tsO" = ( +/obj/structure/table/rack, +/obj/item/clothing/suit/hazmat/anomaly, +/obj/item/clothing/mask/gas/alt, +/obj/item/clothing/glasses/safety/goggles/science, +/obj/item/tank/oxygen, +/obj/item/clothing/head/hazmat/anomaly, +/obj/item/storage/box/gloves, +/obj/item/clothing/head/hazmat/anomaly, +/obj/item/tank/oxygen, +/obj/item/clothing/glasses/safety/goggles/science, +/obj/item/clothing/mask/gas/alt, +/obj/item/clothing/suit/hazmat/anomaly, +/obj/item/storage/box/gloves, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/rnd/xenoarch/storage) "tsQ" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 4 @@ -134973,67 +135414,81 @@ }, /turf/simulated/floor/shuttle/tan, /area/centcom/bar) -"ttb" = ( -/obj/effect/floor_decal/corner/dark_blue/full{ - dir = 4 +"tsW" = ( +/obj/structure/cable{ + icon_state = "1-2" }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/shields) +"tte" = ( +/obj/effect/floor_decal/corner/dark_green, +/obj/effect/floor_decal/corner/brown{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_2/starboard) +"ttf" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/central) -"ttd" = ( -/obj/structure/table/rack, -/obj/item/reagent_containers/hypospray{ - pixel_y = 4 - }, -/obj/item/reagent_containers/hypospray{ - pixel_y = 4 - }, -/obj/item/reagent_containers/hypospray{ - pixel_y = 4 - }, -/obj/item/reagent_containers/hypospray{ - pixel_y = 4 - }, -/obj/item/reagent_containers/hypospray{ - pixel_y = -4 - }, -/obj/item/reagent_containers/hypospray{ - pixel_y = -4 - }, -/obj/item/reagent_containers/hypospray{ - pixel_y = -4 - }, -/obj/item/reagent_containers/hypospray{ - pixel_y = -4 - }, -/obj/effect/floor_decal/corner_wide/green/full, -/turf/simulated/floor/tiled/white, -/area/medical/equipment) -"ttg" = ( -/obj/effect/floor_decal/corner_wide/paleblue/full{ - dir = 4 - }, -/obj/random/pottedplant, -/obj/machinery/firealarm/south, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/heads/cmo) -"ttk" = ( /obj/structure/cable/green{ - icon_state = "4-8" + icon_state = "1-2" }, -/obj/structure/disposalpipe/segment{ +/turf/simulated/floor/tiled/full, +/area/horizon/hallway/primary/deck_2/fore) +"ttj" = ( +/obj/structure/bed/stool/chair/office/light{ + dir = 8 + }, +/obj/effect/floor_decal/corner/mauve/full, +/obj/effect/floor_decal/corner/white{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ +/turf/simulated/floor/tiled/dark, +/area/horizon/rnd/xenobiology/xenoflora) +"ttl" = ( +/obj/effect/floor_decal/industrial/outline_straight/yellow{ + dir = 8 + }, +/obj/effect/floor_decal/corner/yellow{ + dir = 6 + }, +/obj/machinery/button/remote/airlock{ + dir = 4; + id = "hydro_hazard"; + name = "Hazardous Specimens Bolt Control"; + specialfunctions = 4; + pixel_y = -4; + pixel_x = 20; + req_access = list(35) + }, +/obj/machinery/light/colored/blue{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ +/obj/machinery/button/remote/airlock{ + id = "hydro_hazard"; + name = "Hazardous Specimens Door Control"; + pixel_y = 8; + req_access = list(35); + dir = 4; + pixel_x = 20 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden{ dir = 4 }, -/turf/simulated/floor/tiled, -/area/operations/lobby) +/turf/simulated/floor/tiled/dark, +/area/horizon/service/hydroponics/lower) +"ttm" = ( +/obj/effect/decal/remains/rat, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor, +/area/horizon/maintenance/deck_3/aft/port/far) +"ttn" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/carpet, +/area/horizon/hallway/primary/deck_2/starboard) "tto" = ( /obj/item/gun/launcher/grenade{ pixel_x = -2; @@ -135090,19 +135545,26 @@ /obj/structure/table/reinforced/steel, /turf/unsimulated/floor/plating, /area/centcom/specops) -"ttx" = ( -/obj/effect/floor_decal/industrial/outline/service, -/obj/machinery/portable_atmospherics/hydroponics, -/obj/machinery/atmospherics/portables_connector{ - dir = 8 +"ttq" = ( +/obj/structure/plasticflaps/airtight, +/obj/machinery/door/airlock/freezer{ + dir = 1; + name = "Freezer"; + req_one_access = list(35,28) }, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/hydroponics/lower) -"tty" = ( -/obj/structure/table/standard, -/obj/item/deck/cards, -/turf/simulated/floor/tiled, -/area/operations/break_room) +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/full, +/area/horizon/service/kitchen/freezer) "ttB" = ( /obj/effect/overlay/palmtree_r, /obj/effect/overlay/coconut, @@ -135113,50 +135575,46 @@ icon_state = "desert" }, /area/centcom/shared_dream) -"ttC" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ +"ttG" = ( +/obj/machinery/firealarm/south, +/obj/effect/floor_decal/corner/yellow, +/obj/effect/floor_decal/corner/dark_blue{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/visible{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 +/obj/machinery/meter, +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/atmos) +"ttJ" = ( +/obj/machinery/button/remote/blast_door{ + dir = 4; + id = "r-ust_north"; + name = "INDRA Reactor Storage Shutters"; + pixel_x = 24; + pixel_y = 7 + }, +/obj/effect/floor_decal/corner_wide/yellow{ + dir = 6 }, /turf/simulated/floor/tiled, -/area/hangar/auxiliary) -"ttK" = ( -/obj/structure/cable{ +/area/horizon/engineering/reactor/indra/mainchamber) +"ttT" = ( +/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/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/machinery/door/airlock/maintenance{ - dir = 4; - req_one_access = list(12,47) - }, -/turf/simulated/floor/tiled/full, -/area/horizon/crew_quarters/cryo/living_quarters_lift) -"ttN" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/white, -/area/hallway/medical/upper) -"ttU" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 10 - }, /turf/simulated/floor/tiled, -/area/engineering/lobby) +/area/horizon/hallway/primary/deck_3/central) "ttV" = ( /obj/structure/morgue{ dir = 2; @@ -135172,6 +135630,12 @@ }, /turf/unsimulated/floor/monotile, /area/antag/mercenary) +"tua" = ( +/obj/structure/window/shuttle/scc_space_ship, +/obj/structure/grille, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/wing/starboard/far) "tuc" = ( /obj/structure/table/reinforced/wood, /obj/machinery/chemical_dispenser/bar_soft/full{ @@ -135180,6 +135644,12 @@ }, /turf/unsimulated/floor, /area/centcom/bar) +"tuf" = ( +/obj/machinery/porta_turret, +/obj/effect/floor_decal/industrial/warning/full, +/obj/machinery/alarm/west, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/ai/upload) "tuh" = ( /obj/item/storage/box/drinkingglasses{ pixel_x = -7; @@ -135193,46 +135663,12 @@ }, /turf/unsimulated/floor, /area/antag/raider) -"tuj" = ( -/obj/machinery/light/small/emergency, -/obj/structure/disposalpipe/segment{ - dir = 4 +"tuo" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/item/trash/mollusc_shell, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"tun" = ( -/obj/machinery/alarm/north, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/corner/brown{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/light/floor{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/rnd/hallway) +/turf/simulated/floor/tiled/white, +/area/horizon/medical/pharmacy) "tup" = ( /obj/machinery/light{ dir = 1 @@ -135243,122 +135679,52 @@ }, /turf/unsimulated/floor, /area/centcom/legion) -"tuq" = ( -/obj/machinery/door/firedoor, -/obj/structure/platform_stairs/full{ +"tuz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ dir = 4 }, -/obj/structure/platform{ - dir = 1 +/obj/structure/cable/green{ + icon_state = "2-8" }, -/obj/machinery/light, -/turf/simulated/floor/tiled/dark, -/area/horizon/crew_quarters/lounge/bar) -"tur" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/floor_decal/corner/dark_green/full{ - dir = 1 - }, -/obj/structure/sign/directions/prop{ - dir = 4; - pixel_y = 34 - }, -/turf/simulated/floor/tiled, -/area/engineering/lobby) -"tus" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled, -/area/operations/break_room) -"tux" = ( -/obj/effect/floor_decal/spline/fancy/wood{ +/turf/simulated/floor/carpet/rubber, +/area/horizon/rnd/server) +"tuF" = ( +/obj/effect/floor_decal/industrial/warning{ dir = 9 }, -/obj/structure/table/reinforced/wood, -/obj/item/stamp/captain{ - pixel_x = -8; - pixel_y = 15 - }, -/obj/item/paper_bin{ - pixel_x = -6 - }, -/obj/item/stamp/denied{ - pixel_x = 1; - pixel_y = 15 - }, -/obj/machinery/newscaster/security_unit/north{ - pixel_y = 4; - dir = 8; - pixel_x = -10 - }, -/obj/machinery/recharger/wallcharger{ - pixel_x = 5; - pixel_y = 20 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/item/pen/fountain/captain{ - pixel_x = -5 - }, -/obj/item/folder/sec{ - pixel_y = 5; - pixel_x = 9 - }, -/obj/item/folder/red{ - pixel_x = 9 - }, -/obj/item/paper/monitorkey{ - pixel_y = -6; - pixel_x = 9 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/captain) -"tuy" = ( -/turf/simulated/wall/shuttle/unique/scc/mining{ - icon_state = "4,2" - }, -/area/shuttle/mining) -"tuK" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/blast/shutters{ - dir = 8; - id = "r-ust_north"; - name = "INDRA Reactor Fore Storage Shutters" - }, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/engine_room/rust) -"tuL" = ( -/turf/simulated/wall/shuttle/unique/scc/mining{ - icon_state = "fix1" - }, -/area/shuttle/mining) +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plating, +/area/horizon/rnd/xenoarch/atrium) "tuM" = ( /obj/effect/floor_decal/corner/dark_blue{ dir = 6 }, /turf/simulated/floor/tiled/dark, /area/horizon/security/firing_range) -"tuP" = ( -/obj/structure/cable/green{ - icon_state = "2-4" +"tuN" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 6 }, -/obj/machinery/power/apc/north, -/obj/structure/cable/green{ - icon_state = "0-2" - }, -/turf/simulated/floor/plating, -/area/maintenance/substation/engineering/lower) -"tuR" = ( -/obj/structure/bed/handrail{ - dir = 1 - }, -/obj/effect/floor_decal/corner/brown{ +/obj/structure/bed/stool/bar/padded/black{ dir = 8 }, +/turf/simulated/floor/wood, +/area/horizon/service/dining_hall) +"tuO" = ( +/obj/structure/bed/stool/chair/office/dark, +/obj/effect/floor_decal/spline/plain{ + dir = 1 + }, /turf/simulated/floor/tiled/dark, -/area/shuttle/intrepid/starboard_compartment) +/area/horizon/engineering/break_room) +"tuQ" = ( +/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/horizon/hallway/primary/deck_2/central) "tuS" = ( /obj/structure/table/reinforced/wood, /obj/machinery/chemical_dispenser/coffee/full{ @@ -135373,50 +135739,39 @@ icon_state = "dark_preview" }, /area/centcom/control) -"tuX" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 1 +"tuU" = ( +/obj/effect/floor_decal/corner_wide/green{ + dir = 10 }, -/obj/structure/bed/stool/chair/padded/brown{ - dir = 4 +/obj/machinery/iv_drip, +/obj/effect/floor_decal/industrial/outline/red, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/hallway) +"tuY" = ( +/turf/simulated/wall/r_wall, +/area/horizon/rnd/hallway) +"tuZ" = ( +/obj/effect/landmark/entry_point/starboard{ + name = "starboard, engineering spare storage" }, -/obj/effect/landmark/start{ - name = "Passenger" +/turf/simulated/wall/shuttle/scc_space_ship/cardinal, +/area/horizon/engineering/atmos/propulsion) +"tvd" = ( +/obj/structure/bed/stool/chair/shuttle{ + dir = 8 }, -/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/item/device/radio/intercom/south, +/turf/simulated/floor/shuttle/dark_blue, +/area/horizon/shuttle/escape_pod/pod4) +"tvp" = ( +/obj/structure/shuttle_part/scc/scout{ + icon_state = "7,9" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 +/obj/machinery/light{ + dir = 8 }, -/turf/simulated/floor/tiled/dark/full, -/area/rnd/xenoarch_atrium) -"tvh" = ( -/obj/structure/closet/emcloset, -/obj/effect/floor_decal/corner/dark_green/diagonal, -/obj/effect/floor_decal/industrial/outline/emergency_closet, -/turf/simulated/floor/tiled, -/area/security/checkpoint2) -"tvn" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/corner/purple{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/horizon/custodial) +/turf/simulated/floor/plating, +/area/horizon/shuttle/canary) "tvs" = ( /obj/effect/floor_decal/corner_wide/blue{ dir = 8 @@ -135426,46 +135781,12 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/holodeck/source_pool) -"tvu" = ( -/obj/structure/bed/handrail{ - dir = 8 - }, -/obj/effect/map_effect/marker/airlock/shuttle{ - cycle_to_external_air = 1; - master_tag = "airlock_shuttle_intrepid"; - name = "airlock_shuttle_intrepid"; - req_one_access = null; - shuttle_tag = "Intrepid" - }, -/obj/machinery/embedded_controller/radio/airlock/docking_port{ - dir = 8; - pixel_x = 21; - pixel_y = 6 - }, -/obj/machinery/airlock_sensor{ - dir = 8; - pixel_x = 22; - pixel_y = -6 - }, -/obj/machinery/atmospherics/unary/vent_pump/high_volume, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/shuttle/intrepid/main_compartment) -"tvw" = ( -/obj/effect/floor_decal/industrial/warning/corner{ +"tvx" = ( +/obj/machinery/atmospherics/pipe/manifold/visible{ dir = 1 }, -/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) +/area/horizon/maintenance/deck_2/wing/starboard/auxatmos) "tvz" = ( /obj/random/pottedplant{ pixel_y = 8 @@ -135475,37 +135796,68 @@ }, /turf/unsimulated/floor, /area/centcom/distress_prep) -"tvF" = ( -/turf/simulated/wall/r_wall, -/area/medical/pharmacy) -"tvI" = ( -/obj/effect/floor_decal/corner/mauve{ +"tvC" = ( +/obj/structure/shuttle/engine/heater{ dir = 1 }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/structure/railing/mapped, +/turf/simulated/floor/plating, +/area/horizon/engineering/atmos/propulsion/starboard) +"tvE" = ( +/obj/effect/floor_decal/industrial/warning/full, +/obj/machinery/porta_turret, +/obj/machinery/alarm/west, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/storage/secure) +"tvG" = ( +/obj/machinery/power/smes/buildable{ + RCon_tag = "INDRA - Containment"; + charge = 2000000; + input_attempt = 1; + input_level = 150000; + input_level_max = 350000; + is_critical = 1; + output_attempt = 1; + output_level = 150000; + output_level_max = 350000 + }, +/obj/structure/cable/orange{ + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/horizon/engineering/reactor/indra/mainchamber) +"tvJ" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/effect/floor_decal/corner/dark_green{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_2/starboard) +"tvL" = ( /obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ - icon_state = "1-2" + icon_state = "4-8" }, -/turf/simulated/floor/tiled/white, -/area/rnd/telesci) +/obj/effect/floor_decal/corner/red/diagonal, +/obj/effect/floor_decal/spline/plain{ + dir = 6 + }, +/turf/simulated/floor/lino, +/area/horizon/service/cafeteria) "tvP" = ( /turf/unsimulated/floor/stairs{ dir = 4 }, /area/antag/raider) -"tvU" = ( -/obj/structure/bed/stool/chair/padded/red{ - dir = 4 - }, -/obj/machinery/alarm/west{ - req_one_access = list(24,11,55) - }, -/turf/simulated/floor/carpet/red, -/area/horizon/crew_quarters/lounge/bar) "tvW" = ( /obj/machinery/door/airlock/hatch{ dir = 1; @@ -135536,51 +135888,121 @@ /obj/effect/floor_decal/corner/white, /turf/simulated/floor/holofloor/tiled, /area/horizon/holodeck/source_battlemonsters) -"twq" = ( -/obj/structure/tank_wall/hydrogen{ - icon_state = "h2" +"twe" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 10 }, -/obj/effect/floor_decal/industrial/warning{ +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_3/central) +"twf" = ( +/obj/structure/table/reinforced/wood, +/obj/machinery/chemical_dispenser/bar_soft{ + dir = 1; + pixel_y = 1 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 7 + }, +/obj/item/reagent_containers/food/drinks/drinkingglass{ + pixel_y = 16; + pixel_x = 7 + }, +/obj/item/reagent_containers/food/drinks/drinkingglass{ + pixel_y = 16 + }, +/turf/simulated/floor/wood, +/area/horizon/command/heads/xo) +"twl" = ( +/obj/structure/table/standard, +/obj/item/material/folding_table, +/obj/item/material/folding_table, +/obj/item/material/stool/chair/folding, +/obj/item/material/stool/chair/folding, +/turf/simulated/floor/plating, +/area/horizon/engineering/drone_fabrication) +"twm" = ( +/obj/effect/floor_decal/corner_wide/yellow{ + dir = 9 + }, +/obj/effect/floor_decal/spline/plain{ + dir = 4 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/horizon/engineering/break_room) +"twp" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/light/small/emergency{ + dir = 4 + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/service/starboard) +"twr" = ( +/obj/effect/floor_decal/spline/fancy/wood{ dir = 1 }, -/turf/simulated/floor/airless, -/area/engineering/atmos) -"twv" = ( +/obj/structure/bed/stool/chair/wood{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/horizon/service/cafeteria) +"twt" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor, +/area/horizon/maintenance/deck_3/aft/starboard) +"twA" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner/mauve{ + dir = 6 + }, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/white, +/area/horizon/storage/eva/expedition) +"twB" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 5 + }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/window/southright{ - name = "Pun Pun's Cage"; - req_access = list(25) - }, -/turf/simulated/floor/carpet, -/area/horizon/bar/backroom) -"twC" = ( -/obj/effect/floor_decal/corner_wide/orange/full{ dir = 4 }, -/obj/structure/table/rack/retail_shelf, -/turf/simulated/floor/tiled/white, -/area/medical/pharmacy) -"twE" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 6 +/obj/structure/cable/green{ + icon_state = "4-8" }, -/turf/simulated/wall, -/area/maintenance/engineering_ladder) -"twI" = ( -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/dark, -/area/horizon/longbow) -"twK" = ( -/turf/simulated/wall/r_wall, -/area/maintenance/wing/port/far) +/turf/simulated/floor/tiled, +/area/horizon/crew/fitness/changing) +"twH" = ( +/obj/effect/floor_decal/corner/mauve/full, +/obj/machinery/light/floor{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/horizon/rnd/hallway/secondary) +"twM" = ( +/obj/machinery/light, +/obj/effect/floor_decal/corner/dark_green{ + dir = 10 + }, +/obj/structure/closet/athletic_mixed, +/turf/simulated/floor/tiled, +/area/horizon/crew/fitness/changing) "twO" = ( /obj/effect/floor_decal/corner/dark_blue/full{ dir = 4 @@ -135590,97 +136012,6 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/security/firing_range) -"twR" = ( -/obj/machinery/shipsensors/weak/scc_shuttle{ - pixel_y = -21 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 6 - }, -/turf/simulated/floor/reinforced, -/area/shuttle/intrepid/flight_deck) -"twU" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/corner/yellow{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/engineering/storage_eva) -"twX" = ( -/obj/machinery/light/small/emergency{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/maintenance/operations) -"txa" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/corner/dark_green{ - dir = 6 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hangar/intrepid) -"txc" = ( -/obj/machinery/door/firedoor, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/machinery/light/small/emergency{ - dir = 4 - }, -/turf/simulated/floor, -/area/maintenance/security_port) -"txd" = ( -/obj/structure/bed/stool/padded/red, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/lino, -/area/horizon/crew_quarters/lounge/bar) -"txg" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/light/small, -/obj/machinery/power/apc/west{ - req_access = null; - req_one_access = list(11, 24, 47, 65) - }, -/obj/structure/cable/green, -/turf/simulated/floor/tiled/dark/full, -/area/shuttle/intrepid/junction_compartment) -"txj" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/dark, -/area/horizon/longbow) -"txk" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 10 - }, -/obj/structure/closet/crate/bin, -/obj/random/loot, -/turf/simulated/floor/plating, -/area/maintenance/operations) "txl" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -135698,12 +136029,22 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/tiled/full, /area/horizon/security/hallway) -"txs" = ( -/obj/effect/floor_decal/corner_wide/green{ - dir = 8 +"txn" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 5 }, -/turf/simulated/floor/tiled/white, -/area/hallway/medical) +/turf/simulated/floor/wood, +/area/horizon/service/chapel/main) +"txw" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + dir = 4 + }, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/auxatmos) "txz" = ( /obj/effect/floor_decal/corner/green/full{ dir = 4 @@ -135713,74 +136054,140 @@ }, /turf/simulated/floor/holofloor/tiled, /area/horizon/holodeck/source_thunderdomecourt) -"txE" = ( -/obj/effect/floor_decal/corner_wide/yellow/full{ - dir = 8 +"txC" = ( +/obj/structure/bed/stool/bar/padded/red, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/wood, +/area/horizon/maintenance/deck_2/wing/port) +"txD" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + icon_state = "1-2" }, -/turf/simulated/floor/tiled, -/area/hallway/engineering/rust) -"txJ" = ( -/obj/machinery/alarm/north, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 4 - }, -/obj/effect/floor_decal/corner/yellow{ - dir = 1 - }, -/obj/machinery/atmospherics/portables_connector{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/dark, -/area/engineering/engine_room/turbine) -"txK" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable{ - icon_state = "2-8" +/turf/simulated/floor/tiled/white, +/area/horizon/medical/gen_treatment) +"txH" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/hidden/yellow, /obj/structure/lattice/catwalk/indoor/grate/dark, /turf/simulated/floor/plating, -/area/engineering/storage/lower) +/area/horizon/maintenance/deck_1/hangar/starboard) +"txO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/corner/brown{ + dir = 10 + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/horizon/operations/break_room) +"txP" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 4 + }, +/obj/structure/cable/orange{ + icon_state = "1-2" + }, +/obj/structure/table/reinforced/steel, +/obj/machinery/button/remote/blast_door{ + desc = "A remote control-switch for the engine control room blast doors."; + dir = 1; + id = "EngineBlast"; + name = "Supermatter Reactor Monitoring Room Blast Doors"; + pixel_y = -3; + req_one_access = list(11,24) + }, +/obj/machinery/button/remote/blast_door{ + desc = "A remote control-switch for the engine charging port."; + dir = 1; + id = "SupermatterPort"; + name = "Supermatter Reactor Crystal Viewing Blast Doors"; + pixel_x = -6; + pixel_y = 7; + req_one_access = list(11,24) + }, +/obj/machinery/button/remote/emitter{ + desc = "A remote control-switch for the supermatter reactor's emitter."; + dir = 1; + id = "ReactorEmitter"; + name = "Supermatter Reactor Emitter"; + pixel_x = 6; + pixel_y = 7; + req_one_access = list(11,24) + }, +/turf/simulated/floor/plating, +/area/horizon/engineering/reactor/supermatter/mainchamber) "txS" = ( /obj/structure/shuttle_part/tcfl{ icon_state = "15,0" }, /turf/unsimulated/floor/plating, /area/shuttle/legion) -"txT" = ( -/obj/structure/table/rack, -/obj/item/clothing/suit/hazmat/anomaly, -/obj/item/clothing/mask/gas/alt, -/obj/item/clothing/glasses/safety/goggles/science, -/obj/item/tank/oxygen, -/obj/item/clothing/head/hazmat/anomaly, -/obj/item/storage/box/gloves, -/obj/item/clothing/head/hazmat/anomaly, -/obj/item/tank/oxygen, -/obj/item/clothing/glasses/safety/goggles/science, -/obj/item/clothing/mask/gas/alt, -/obj/item/clothing/suit/hazmat/anomaly, -/obj/item/storage/box/gloves, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/machinery/light{ +"txU" = ( +/obj/effect/floor_decal/corner_wide/green/full{ dir = 8 }, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenoarch_storage) -"tye" = ( -/obj/effect/floor_decal/industrial/outline/service, -/obj/machinery/vending/hydronutrients/hydroponics, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/hydroponics) -"tyh" = ( -/obj/machinery/telecomms/server/presets/security, -/turf/simulated/floor/bluegrid, -/area/tcommsat/chamber) +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/computer/shuttle_control/lift/wall{ + dir = 4; + pixel_x = -32; + shuttle_tag = "Morgue Lift" + }, +/obj/structure/railing/mapped{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/hallway) +"txV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/wood, +/area/horizon/repoffice/representative_one) +"tyb" = ( +/obj/machinery/door/airlock/maintenance{ + dir = 1; + name = "Machinist Workshop Maintenance"; + req_access = list(29) + }, +/obj/machinery/door/firedoor, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled, +/area/horizon/operations/machinist/surgicalbay) +"tyc" = ( +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/structure/platform_deco/ledge{ + dir = 8 + }, +/obj/structure/platform/ledge{ + dir = 4 + }, +/turf/simulated/open, +/area/horizon/hallway/primary/deck_3/central) +"tyf" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/horizon/hangar/intrepid/interstitial) "tyi" = ( /obj/structure/table/stone/marble, /obj/machinery/door/window/southright{ @@ -135789,35 +136196,46 @@ }, /turf/simulated/floor/wood, /area/shuttle/merchant) -"tym" = ( -/obj/machinery/door/airlock/research{ - name = "Dissection Observation"; - req_access = list(7) +"typ" = ( +/obj/structure/table/wood, +/obj/machinery/recharger{ + pixel_y = 8 }, -/obj/machinery/door/firedoor, /obj/structure/cable/green{ - icon_state = "1-2" + icon_state = "4-8" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/dark/full, -/area/rnd/xenobiology/dissection) +/obj/item/stamp/denied{ + pixel_x = -9; + pixel_y = -1 + }, +/obj/item/stamp{ + name = "consular stamp"; + pixel_y = -1 + }, +/turf/simulated/floor/carpet, +/area/horizon/repoffice/consular_one) +"tyr" = ( +/obj/effect/map_effect/window_spawner/full/reinforced/polarized/grille/firedoor{ + id = "XO" + }, +/turf/simulated/floor, +/area/horizon/command/heads/xo) +"tys" = ( +/obj/machinery/conveyor_switch/oneway{ + id = "cargo_1" + }, +/obj/structure/railing/mapped, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/horizon/hangar/operations) "tyt" = ( /obj/effect/floor_decal/industrial/warning{ dir = 6 }, /turf/unsimulated/floor, /area/antag/mercenary) -"tyw" = ( -/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, -/obj/machinery/door/blast/shutters/open{ - id = "shutters_hangarseccp"; - name = "Security Checkpoint Shutter" - }, -/turf/simulated/floor/tiled/dark/full, -/area/security/checkpoint) "tyA" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 8 @@ -135825,13 +136243,6 @@ /obj/structure/table/wood, /turf/simulated/floor/holofloor/wood, /area/horizon/holodeck/source_sauna) -"tyF" = ( -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/structure/railing/mapped, -/turf/simulated/floor/lino, -/area/horizon/crew_quarters/lounge/bar) "tyG" = ( /obj/structure/sign/directions/cryo{ dir = 8; @@ -135858,33 +136269,45 @@ }, /turf/simulated/floor/exoplanet/grass/grove, /area/centcom/shared_dream) -"tyR" = ( -/obj/structure/table/reinforced/wood, -/obj/item/storage/box/fancy/cookiesnack, -/obj/item/storage/box/fancy/cookiesnack{ - pixel_y = 9 +"tyQ" = ( +/obj/structure/bed/stool/chair/sofa/red{ + dir = 4 }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/carpet/red, +/area/horizon/service/library) +"tyT" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/disposalpipe/up{ + dir = 8 + }, +/obj/structure/engineer_maintenance/electric{ + dir = 4 + }, +/obj/machinery/disposal/small/west, +/obj/structure/engineer_maintenance/pipe, /obj/effect/floor_decal/spline/fancy/wood{ - dir = 10 + dir = 6 }, /turf/simulated/floor/wood, -/area/crew_quarters/heads/hop/xo) -"tyX" = ( -/obj/structure/bed/stool, -/turf/simulated/floor/plating, -/area/maintenance/wing/port) -"tzb" = ( -/obj/structure/cable/green{ - icon_state = "1-8" +/area/horizon/command/heads/om) +"tyU" = ( +/obj/effect/floor_decal/corner/black{ + dir = 9 }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 1 +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/cable{ + icon_state = "1-2" }, -/turf/simulated/floor/wood, -/area/crew_quarters/lounge) +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/hangar/intrepid) "tze" = ( /obj/effect/floor_decal/corner/dark_blue{ dir = 6 @@ -135902,34 +136325,9 @@ }, /turf/simulated/floor/tiled, /area/horizon/security/warden) -"tzh" = ( -/obj/machinery/hologram/holopad, -/turf/simulated/floor/wood, -/area/bridge/minibar) -"tzi" = ( -/obj/effect/floor_decal/corner_wide/purple{ - dir = 10 - }, -/obj/effect/floor_decal/corner_wide/purple{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/platform{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenoarch_atrium) +"tzf" = ( +/turf/simulated/floor/lino, +/area/horizon/service/dining_hall) "tzm" = ( /obj/item/material/ashtray/bronze{ pixel_x = -25; @@ -135939,20 +136337,6 @@ /obj/structure/table/wood, /turf/unsimulated/floor/carpet, /area/centcom/specops) -"tzo" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/camera/network/supply{ - c_tag = "Operations - Hangar Port Fore"; - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hangar/operations) "tzp" = ( /obj/effect/ghostspawpoint{ identifier = "SyndERTSpawn"; @@ -135977,22 +136361,21 @@ }, /turf/simulated/floor/tiled, /area/horizon/security/brig) -"tzw" = ( -/obj/machinery/porta_turret, -/obj/effect/floor_decal/industrial/warning/full, -/obj/item/device/radio/intercom/south, -/turf/simulated/floor/tiled/dark, -/area/turret_protected/ai_upload_foyer) -"tzx" = ( -/obj/effect/floor_decal/corner/dark_blue/diagonal, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 +"tzt" = ( +/obj/effect/landmark/entry_point/port{ + name = "port, ballast aft" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 +/turf/simulated/wall/shuttle/scc_space_ship/cardinal, +/area/horizon/maintenance/deck_2/wing/starboard/nacelle) +"tzu" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 }, -/turf/simulated/floor/tiled/dark, -/area/security/checkpoint2) +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/airless, +/area/horizon/hangar/operations) "tzy" = ( /obj/machinery/light{ dir = 1 @@ -136002,42 +136385,29 @@ }, /turf/unsimulated/floor, /area/centcom/spawning) -"tzA" = ( -/obj/effect/floor_decal/corner/green/diagonal{ - dir = 8 +"tzE" = ( +/obj/structure/table/steel, +/obj/item/device/gps/science, +/obj/item/device/gps/science, +/obj/item/device/gps/science, +/obj/item/device/gps/science, +/obj/effect/floor_decal/corner/dark_blue{ + dir = 6 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/white, -/area/medical/ward) -"tzD" = ( -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/machinery/alarm/north, -/obj/effect/floor_decal/industrial/warning{ +/obj/machinery/light{ dir = 4 }, -/obj/random/junk, -/turf/simulated/floor/plating, -/area/maintenance/wing/port/far) -"tzG" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/wood, -/area/horizon/library) -"tzI" = ( -/obj/structure/railing/mapped{ - dir = 8 +/turf/simulated/floor/tiled/dark, +/area/horizon/storage/eva) +"tzF" = ( +/obj/effect/floor_decal/corner/black{ + dir = 9 }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard) -"tzM" = ( -/obj/structure/railing/mapped{ - dir = 8 +/obj/effect/floor_decal/industrial/loading/yellow{ + dir = 4 }, -/obj/effect/floor_decal/industrial/outline/grey, -/turf/simulated/floor/plating, -/area/hangar/auxiliary) +/turf/simulated/floor/tiled/dark, +/area/horizon/hangar/auxiliary) "tzO" = ( /obj/effect/decal/fake_object{ color = "#545c68"; @@ -136051,32 +136421,33 @@ density = 1 }, /area/antag/ninja) -"tAd" = ( -/obj/effect/floor_decal/spline/fancy{ - dir = 10 - }, -/obj/machinery/recharger{ - pixel_x = -6; - pixel_y = 8 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/structure/railing/mapped{ +"tzQ" = ( +/obj/effect/floor_decal/corner/green/diagonal, +/obj/machinery/light{ dir = 8 }, -/obj/item/device/radio/off{ - pixel_x = 12; - pixel_y = 15 +/turf/simulated/floor/tiled/white, +/area/horizon/crew/fitness/showers) +"tzV" = ( +/obj/machinery/atmospherics/pipe/simple/visible/green{ + dir = 4 }, -/obj/item/device/radio/off{ - pixel_x = 12; - pixel_y = 7 +/turf/simulated/floor/plating, +/area/horizon/engineering/reactor/supermatter/airlock) +"tAc" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, -/obj/structure/railing/mapped, -/obj/structure/table/reinforced/steel, -/turf/simulated/floor/carpet/rubber, -/area/bridge/controlroom) +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor, +/area/horizon/maintenance/deck_3/aft/port) "tAf" = ( /obj/machinery/door/airlock/centcom{ locked = 1; @@ -136087,71 +136458,80 @@ icon_state = "whiteshiny" }, /area/centcom/bar) +"tAh" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/simulated/floor/carpet/rubber, +/area/horizon/maintenance/deck_1/workshop) "tAi" = ( /obj/structure/shuttle/engine/propulsion/burst/left{ dir = 8 }, /turf/unsimulated/floor/plating, /area/centcom/legion) +"tAl" = ( +/obj/machinery/atmospherics/pipe/manifold/visible{ + dir = 1 + }, +/obj/machinery/light/floor{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/rnd/xenobiology/xenoflora) +"tAq" = ( +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/workshop) "tAz" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 1 }, /turf/unsimulated/floor/wood, /area/antag/actor) +"tAA" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/corner/brown{ + dir = 9 + }, +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/obj/structure/railing/mapped{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/horizon/operations/lobby) +"tAD" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/structure/railing/mapped, +/obj/machinery/light/small/emergency{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/port/near) "tAE" = ( /obj/effect/floor_decal/spline/plain{ dir = 1 }, /turf/unsimulated/floor, /area/antag/mercenary) -"tAG" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/effect/floor_decal/corner/dark_green{ - dir = 5 - }, -/obj/machinery/door/firedoor{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/full, -/area/engineering/lobby) -"tAJ" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/portable_atmospherics/hydroponics, +"tAH" = ( +/obj/effect/floor_decal/corner/dark_green/full, +/obj/structure/closet/toolcloset, /obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology/xenoflora) -"tAP" = ( -/obj/machinery/conveyor_switch/oneway{ - id = "warehousetomail"; - pixel_x = -19; - pixel_y = -10 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/effect/floor_decal/industrial/loading/yellow{ - dir = 8 - }, /turf/simulated/floor/tiled, -/area/operations/storage) -"tAT" = ( -/obj/effect/floor_decal/spline/fancy/wood/cee{ - dir = 8 - }, -/obj/machinery/light, -/obj/structure/sign/poster/command/bay_41{ - pixel_y = -32 - }, -/turf/simulated/floor/wood, -/area/bridge/cciaroom) +/area/horizon/storage/primary) +"tAI" = ( +/turf/simulated/wall/r_wall, +/area/horizon/maintenance/deck_2/aft) "tAX" = ( /obj/machinery/light{ dir = 1 @@ -136161,117 +136541,150 @@ }, /turf/unsimulated/floor/blue_circuit, /area/centcom/control) +"tAY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/industrial/hatch/red, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/command/bridge/selfdestruct) +"tBa" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/atmospherics/pipe/simple/visible/universal{ + dir = 4 + }, +/obj/machinery/meter, +/turf/simulated/floor/plating, +/area/horizon/rnd/xenoarch/atrium) "tBb" = ( /obj/effect/floor_decal/corner/blue{ dir = 5 }, /turf/simulated/floor/holofloor/tiled, /area/horizon/holodeck/source_lasertag) -"tBf" = ( -/obj/effect/floor_decal/corner/mauve{ - dir = 5 - }, -/obj/effect/floor_decal/corner/black{ - dir = 5 - }, -/obj/machinery/ringer_button{ - id = "robo_ringer"; - pixel_x = -2; - pixel_y = 32 - }, -/obj/effect/floor_decal/corner/brown{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"tBg" = ( -/obj/machinery/telecomms/server/presets/supply, -/turf/simulated/floor/bluegrid, -/area/tcommsat/chamber) -"tBh" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/machinery/power/apc/super/south, -/obj/machinery/atmospherics/pipe/simple/visible/green{ +"tBc" = ( +/obj/structure/bed/stool/bar/padded/teal{ dir = 4 }, -/obj/structure/closet/firecloset/full, -/obj/effect/floor_decal/industrial/outline/firefighting_closet, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 8 +/obj/effect/floor_decal/corner/red/diagonal, +/obj/effect/floor_decal/spline/plain{ + dir = 4 }, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/atmos/propulsion) +/turf/simulated/floor/lino, +/area/horizon/service/cafeteria) +"tBi" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_2/fore) "tBm" = ( /obj/structure/flora/tree/adhomai, /turf/simulated/floor/holofloor/snow, /area/horizon/holodeck/source_adhomai) -"tBo" = ( -/obj/effect/floor_decal/corner_wide/grey/diagonal, -/obj/structure/noticeboard{ - pixel_x = 32 - }, +"tBr" = ( /obj/structure/table/standard, -/obj/item/storage/box/snack{ - desc = "A box full of snack foods. A label is attached that reads, 'Sorry about the microwaves.'"; - name = "corporate care package" - }, -/obj/effect/floor_decal/spline/plain, -/turf/simulated/floor/tiled/white, -/area/operations/break_room) -"tBz" = ( -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/simple/visible{ +/obj/effect/floor_decal/corner/black{ dir = 6 }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/requests_console/east{ + name = "Machinist Request Console"; + department = "Machinist Workshop" + }, +/obj/item/paper_bin{ + pixel_x = 5 + }, +/obj/item/pen/black{ + pixel_x = 7 + }, +/obj/item/folder/yellow{ + pixel_x = -6 + }, /turf/simulated/floor/tiled, -/area/maintenance/aux_atmospherics/deck_2/starboard/wing) -"tBF" = ( +/area/horizon/operations/machinist) +"tBC" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/corner/brown{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/operations/storage) -"tBG" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/bridge) +/turf/simulated/floor/tiled/full, +/area/horizon/engineering/hallway/aft) "tBI" = ( /obj/machinery/disposal/small/south, /obj/effect/floor_decal/corner/brown/diagonal, /obj/structure/disposalpipe/trunk, /turf/simulated/floor/tiled/dark, /area/horizon/holodeck_control/beta) +"tBN" = ( +/obj/effect/floor_decal/spline/fancy/wood/corner{ + dir = 8 + }, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 5 + }, +/turf/simulated/floor/wood, +/area/horizon/command/bridge/cciaroom) +"tBP" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_3/central) "tBQ" = ( /obj/effect/floor_decal/industrial/warning{ dir = 4 }, /turf/unsimulated/floor, /area/antag/mercenary) -"tBT" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 +"tCa" = ( +/obj/machinery/door/blast/shutters/open{ + dir = 2; + id = "shutters_deck2_eng_frontdesk"; + name = "Engineering Front Desk Shutter" }, -/obj/structure/tank_wall/carbon_dioxide{ - icon_state = "co2-2" - }, -/turf/simulated/floor/airless, -/area/engineering/atmos) +/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/lobby) "tCb" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/blocker/steel, @@ -136289,31 +136702,48 @@ dir = 4 }, /area/shuttle/transport1) -"tCi" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 +"tCd" = ( +/obj/structure/cable{ + icon_state = "1-8" }, -/obj/structure/railing/mapped{ - dir = 8 +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 }, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/starboard/far) +"tCj" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 7 }, -/obj/structure/grille, -/turf/simulated/floor/tiled/dark/full/airless, -/area/bridge/controlroom) +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/horizon/repoffice/representative_one) +"tCq" = ( +/turf/simulated/floor/plating, +/area/horizon/engineering/reactor/indra/office) "tCs" = ( /obj/effect/floor_decal/carpet{ dir = 1 }, /turf/simulated/floor/carpet/magenta, /area/horizon/holodeck/source_cafe) +"tCu" = ( +/obj/structure/grille, +/obj/structure/window/shuttle/scc_space_ship/cardinal, +/obj/machinery/door/blast/shutters{ + dir = 4; + id = "shutters_deck2_hydroponicswindowssafety"; + name = "Viewing Shutter" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/horizon/service/hydroponics) "tCv" = ( /obj/item/deck/cards, /obj/effect/decal/cleanable/dirt, @@ -136322,112 +136752,90 @@ }, /turf/unsimulated/floor/carpet, /area/antag/raider) -"tCw" = ( -/obj/structure/table/steel, -/obj/item/aiModule/reset, -/obj/effect/floor_decal/corner/dark_blue/full{ +"tCx" = ( +/obj/effect/floor_decal/corner_wide/blue{ dir = 1 }, -/obj/machinery/light{ +/obj/effect/floor_decal/corner_wide/yellow{ + dir = 4 + }, +/obj/effect/floor_decal/spline/plain{ dir = 1 }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/dark, -/area/turret_protected/ai_upload_foyer) -"tCA" = ( -/obj/structure/shuttle_part/scc/mining{ - icon_state = "5,1"; - outside_part = 0 - }, -/obj/effect/landmark/entry_point/fore{ - name = "fore, cockpit" +/turf/simulated/floor/tiled, +/area/horizon/engineering/atmos/storage) +"tCy" = ( +/obj/structure/tank_wall, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 }, /turf/simulated/floor/plating, -/area/shuttle/mining) -"tCG" = ( -/obj/machinery/atmospherics/unary/freezer{ - dir = 8; - icon_state = "freezer" +/area/horizon/engineering/atmos) +"tCz" = ( +/obj/structure/railing/mapped, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/research) +"tCC" = ( +/obj/effect/floor_decal/corner/red/diagonal, +/obj/effect/floor_decal/spline/plain{ + dir = 6 }, -/obj/effect/floor_decal/corner/yellow/full{ +/turf/simulated/floor/lino, +/area/horizon/service/cafeteria) +"tCL" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 10 + }, +/obj/machinery/camera/network/research{ + c_tag = "Research - Corridor Camera"; dir = 1 }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/dark, -/area/engineering/engine_waste) -"tCN" = ( -/obj/structure/railing/mapped{ +/turf/simulated/floor/tiled, +/area/horizon/rnd/hallway) +"tCP" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner/dark_green{ + dir = 10 + }, +/obj/structure/railing/mapped, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_3/central) +"tCR" = ( +/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 = 8 }, -/obj/effect/floor_decal/corner/dark_blue/full{ - dir = 8 +/obj/structure/sign/emergency/evacuation{ + dir = 8; + pixel_x = -32 + }, +/obj/effect/floor_decal/corner/dark_green{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/horizon/hangar/intrepid) +"tCZ" = ( +/obj/structure/cable/green{ + icon_state = "1-8" }, /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 }, -/obj/item/device/radio/intercom/north, -/obj/structure/table/reinforced/steel, -/obj/item/folder/blue{ - pixel_y = 7; - pixel_x = 5 +/turf/simulated/floor/tiled/freezer{ + name = "cooled tiles"; + temperature = 253.15 }, -/obj/item/clipboard{ - pixel_x = -4; - pixel_y = 2 - }, -/obj/item/pen/blue{ - pixel_x = 5 - }, -/obj/item/pen/red{ - pixel_x = 7; - pixel_y = 3 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge/controlroom) -"tCX" = ( -/turf/simulated/wall/r_wall, -/area/bridge/upperdeck) -"tDa" = ( -/obj/machinery/firealarm/south, -/obj/machinery/computer/ship/navigation/terminal{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/dark/full, -/area/shuttle/intrepid/port_compartment) -"tDb" = ( -/obj/machinery/iv_drip, -/obj/effect/floor_decal/corner_wide/green{ - dir = 6 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/equipment) -"tDe" = ( -/obj/effect/map_effect/window_spawner/full/reinforced/polarized/firedoor{ - id = "surgery1" - }, -/turf/simulated/floor/tiled/dark/full, -/area/medical/ors) -"tDi" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/aux, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/machinery/light/small/emergency{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/engineering) +/area/horizon/service/kitchen/freezer) "tDj" = ( /obj/machinery/computer/shuttle_control/lift{ pixel_y = -1; @@ -136445,17 +136853,24 @@ }, /turf/simulated/floor/tiled/dark, /area/shuttle/legion) -"tDp" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/closet/crate, -/obj/random/loot, -/obj/random/contraband, -/turf/simulated/floor/tiled/dark/full, -/area/maintenance/wing/cargo_compartment) -"tDq" = ( -/obj/structure/flora/tree/jungle/small/patience, -/turf/simulated/floor/grass/no_edge, -/area/horizon/cafeteria) +"tDl" = ( +/obj/structure/morgue{ + dir = 8 + }, +/obj/effect/floor_decal/spline/plain{ + dir = 4 + }, +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/structure/platform{ + dir = 8 + }, +/turf/simulated/floor/tiled/freezer{ + name = "cooled tiles"; + temperature = 278.15 + }, +/area/horizon/medical/morgue) "tDr" = ( /obj/structure/cable/green{ icon_state = "1-2" @@ -136466,42 +136881,66 @@ /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{ +"tDs" = ( +/obj/structure/platform_stairs, +/turf/simulated/floor/tiled/dark, +/area/horizon/maintenance/deck_2/wing/starboard) +"tDt" = ( +/obj/structure/window/shuttle/scc_space_ship, +/obj/structure/grille, +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/shutters{ + id = "shutters_disposals"; + name = "\improper Viewing Shutter" + }, +/obj/effect/landmark/entry_point/aft{ + name = "aft, waste disposals" + }, +/turf/simulated/floor/plating, +/area/horizon/service/custodial/disposals/deck_1) +"tDA" = ( +/obj/structure/lattice/catwalk, +/obj/structure/disposalpipe/trunk{ dir = 8 }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 +/obj/machinery/disposal/deliveryChute{ + dir = 4 }, -/obj/effect/floor_decal/corner/purple{ +/turf/template_noop, +/area/horizon/exterior) +"tDE" = ( +/obj/effect/floor_decal/corner_wide/purple{ + dir = 8 + }, +/obj/effect/floor_decal/corner_wide/purple{ dir = 5 }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/junction{ + dir = 8; + icon_state = "pipe-j2" + }, /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, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/carpet/rubber, -/area/engineering/engine_room/rust) -"tDM" = ( -/obj/effect/floor_decal/spline/plain, -/obj/effect/floor_decal/spline/plain/corner{ - dir = 1 - }, -/obj/effect/floor_decal/spline/plain/corner{ +/obj/machinery/alarm/north, +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/xenoarch/atrium) +"tDN" = ( +/obj/structure/bed/stool/chair/padded/red{ dir = 4 }, -/obj/machinery/light, -/obj/machinery/atmospherics/pipe/manifold/hidden/black, -/turf/simulated/floor/carpet/rubber, -/area/tcommsat/chamber) +/obj/machinery/camera/network/service{ + c_tag = "Service - Deck 2 - Booth 2"; + dir = 4 + }, +/turf/simulated/floor/carpet/red, +/area/horizon/service/dining_hall) "tDO" = ( /obj/item/device/radio/intercom/north{ desc = "Talk through this. Evilly"; @@ -136532,40 +136971,57 @@ }, /turf/unsimulated/floor, /area/centcom/spawning) -"tDV" = ( -/obj/structure/window/reinforced{ - dir = 4 +"tDZ" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 6 }, -/obj/machinery/atmospherics/pipe/simple/visible{ +/obj/machinery/hologram/holopad/long_range, +/turf/simulated/floor/tiled/dark, +/area/horizon/command/bridge/meeting_room) +"tEa" = ( +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/power/apc/north, +/obj/effect/floor_decal/industrial/outline/service, +/obj/machinery/portable_atmospherics/hydroponics, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/service/hydroponics) +"tEd" = ( +/obj/structure/railing/mapped, +/obj/effect/floor_decal/corner/lime{ dir = 10 }, -/obj/structure/table/standard, -/obj/structure/flora/pottedplant{ - pixel_y = 16 +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled, +/area/horizon/medical/morgue) +"tEe" = ( +/obj/machinery/disposal/small/north, +/obj/structure/disposalpipe/trunk{ + dir = 1 }, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology/xenoflora) -"tEc" = ( -/obj/machinery/door/blast/shutters{ - dir = 2; - id = "miningbay"; - name = "Mining Bay" - }, -/obj/machinery/door/firedoor, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/full, -/area/outpost/mining_main/refinery) -"tEi" = ( -/obj/effect/floor_decal/corner/mauve/full, -/obj/machinery/camera/network/research{ - c_tag = "Research - Corridor Camera 4"; - dir = 4 - }, -/obj/machinery/light/floor{ +/obj/effect/floor_decal/corner/dark_green/full, +/obj/machinery/light{ dir = 8 }, +/obj/machinery/newscaster/south, /turf/simulated/floor/tiled, -/area/rnd/hallway/secondary) +/area/horizon/crew/resdeck/living_quarters_lift) +"tEh" = ( +/obj/machinery/atmospherics/binary/pump/high_power{ + dir = 4; + name = "Phoron to Propellant Line" + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/atmos/propulsion/starboard) "tEl" = ( /obj/effect/floor_decal/industrial/warning, /obj/effect/floor_decal/industrial/warning{ @@ -136573,17 +137029,12 @@ }, /obj/structure/railing/mapped, /turf/simulated/floor/tiled/dark/full/airless, -/area/horizon/exterior) -"tEp" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/bridge/controlroom) +/area/horizon/command/bridge/controlroom) +"tEm" = ( +/obj/machinery/anti_bluespace, +/obj/effect/floor_decal/industrial/warning/full, +/turf/simulated/floor/reinforced, +/area/horizon/command/bridge/selfdestruct) "tEq" = ( /turf/simulated/floor/exoplanet/water/shallow{ dir = 9; @@ -136591,6 +137042,13 @@ icon_state = "beach" }, /area/horizon/holodeck/source_moghes) +"tEt" = ( +/obj/machinery/portable_atmospherics/canister/air/airlock, +/obj/machinery/atmospherics/portables_connector, +/obj/effect/decal/cleanable/cobweb2, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/auxatmos) "tEu" = ( /obj/item/reagent_containers/food/snacks/liquidfood{ pixel_x = -2; @@ -136621,79 +137079,94 @@ icon_state = "wood" }, /area/centcom/legion) +"tEv" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/atmospherics/binary/pump/fuel{ + name = "Canister to Fuel Tank"; + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/shuttle/mining) "tEx" = ( /turf/unsimulated/floor/plating, /area/centcom/holding) -"tEM" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 9 +"tEy" = ( +/obj/machinery/door/airlock/glass_research{ + dir = 1; + name = "Telescience"; + req_access = list(7) }, +/obj/structure/disposalpipe/segment, /obj/structure/cable/green{ - icon_state = "2-8" + icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/firedoor, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/effect/map_effect/door_helper/unres, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/rnd/telesci) +"tEH" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 8 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/central) -"tET" = ( /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, +/area/horizon/hallway/primary/deck_1/central) +"tEQ" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 4 + }, /obj/structure/cable/green{ icon_state = "4-8" }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ - dir = 10 - }, -/turf/simulated/floor/plating, -/area/maintenance/engineering) -"tEY" = ( -/obj/structure/grille, -/obj/structure/window/shuttle/scc_space_ship, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/chapel/office) -"tFa" = ( -/obj/effect/floor_decal/corner/dark_blue/full{ +/obj/machinery/atmospherics/pipe/simple/visible/black, +/obj/effect/floor_decal/corner/yellow, +/obj/effect/floor_decal/corner/dark_blue{ dir = 4 }, -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/structure/railing/mapped, -/obj/structure/table/reinforced/steel, -/obj/item/device/destTagger{ - pixel_y = 5 - }, -/obj/item/stack/packageWrap{ - pixel_y = 19; - pixel_x = -2 - }, /turf/simulated/floor/tiled/dark, -/area/bridge/controlroom) -"tFb" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 9 +/area/horizon/engineering/atmos) +"tFe" = ( +/obj/effect/floor_decal/corner/red/diagonal, +/obj/effect/floor_decal/spline/plain{ + dir = 4 }, -/obj/effect/floor_decal/spline/plain/corner/green{ - dir = 1 +/obj/random/junk, +/turf/simulated/floor/tiled, +/area/horizon/maintenance/deck_3/aft/holodeck) +"tFf" = ( +/obj/effect/floor_decal/corner_wide/purple{ + dir = 6 }, -/obj/effect/floor_decal/spline/plain/corner/blue, -/obj/machinery/atmospherics/pipe/manifold/hidden{ +/obj/effect/floor_decal/corner_wide/purple{ dir = 8 }, -/turf/simulated/floor/tiled, -/area/horizon/hydroponics/lower) +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/xenoarch/atrium) +"tFk" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/airlock/research{ + dir = 1; + name = "Spectrometry"; + req_access = list(65) + }, +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/rnd/xenoarch/spectrometry) "tFp" = ( /obj/effect/floor_decal/corner/grey{ dir = 6 @@ -136712,6 +137185,19 @@ /obj/structure/flora/ausbushes/stalkybush, /turf/simulated/floor/grass/no_edge, /area/centcom/spawning) +"tFw" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/light, +/obj/effect/floor_decal/corner/dark_green{ + dir = 10 + }, +/obj/machinery/atm{ + pixel_y = -10 + }, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_3/central) "tFx" = ( /obj/structure/table/reinforced/steel, /obj/item/paper_bin, @@ -136724,6 +137210,34 @@ /obj/structure/lattice/catwalk/indoor/grate/dark, /turf/simulated/floor/plating, /area/shuttle/skipjack) +"tFC" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 10 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/wood, +/area/horizon/command/heads/om) +"tFD" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/aux, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/operations/starboard/amidships) "tFE" = ( /obj/effect/floor_decal/industrial/warning{ dir = 1 @@ -136764,6 +137278,28 @@ color = "#792f27" }, /area/centcom/ferry) +"tFK" = ( +/obj/machinery/recharge_station, +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/effect/floor_decal/corner/brown/full{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled, +/area/horizon/operations/office_aux) +"tFL" = ( +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/effect/floor_decal/corner/dark_green/full{ + dir = 1 + }, +/obj/structure/closet/emcloset, +/obj/effect/floor_decal/industrial/outline/emergency_closet, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_3/starboard) "tFM" = ( /obj/structure/ladder/up{ pixel_y = 13 @@ -136771,12 +137307,31 @@ /obj/structure/lattice/catwalk/indoor, /turf/space/dynamic, /area/horizon/exterior) -"tFO" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ +"tFQ" = ( +/obj/structure/ladder{ + pixel_y = 10 + }, +/turf/simulated/open, +/area/horizon/maintenance/deck_2/service/port) +"tFR" = ( +/obj/structure/table/standard, +/obj/item/paper_bin, +/obj/item/pen{ + pixel_x = -4 + }, +/obj/item/pen/red{ + pixel_x = -1; + pixel_y = 4 + }, +/obj/item/pen/blue{ + pixel_x = 3; + pixel_y = 7 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 }, -/turf/simulated/floor/tiled, -/area/operations/storage) +/turf/simulated/floor/carpet/rubber, +/area/horizon/rnd/lab) "tFV" = ( /obj/effect/floor_decal/corner/paleblue/full{ dir = 1 @@ -136784,6 +137339,25 @@ /obj/structure/bed/stool/chair, /turf/unsimulated/floor, /area/centcom/ferry) +"tFW" = ( +/obj/structure/window/shuttle/scc_space_ship, +/obj/structure/grille/diagonal, +/obj/machinery/door/blast/shutters/open{ + dir = 2; + id = "shutters_deck3_bridgesafety"; + name = "Safety Shutter" + }, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id = "bridge blast"; + name = "Bridge Blast Doors"; + opacity = 0 + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/horizon/command/bridge/minibar) "tFY" = ( /obj/effect/floor_decal/corner/dark_blue{ dir = 5 @@ -136795,61 +137369,69 @@ /obj/effect/floor_decal/industrial/outline/security, /turf/simulated/floor/tiled, /area/horizon/security/hallway) -"tGj" = ( -/obj/effect/floor_decal/industrial/warning{ +"tGa" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black{ dir = 4 }, /obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/structure/shuttle_part/scc/scout{ - density = 0; - icon_state = "2,3"; - outside_part = 0 - }, -/obj/structure/ship_weapon_dummy, -/obj/machinery/light{ dir = 1 }, -/turf/simulated/floor/reinforced, -/area/shuttle/canary) +/obj/machinery/meter, +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/atmos/propulsion) +"tGf" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 5 + }, +/obj/structure/sink/kitchen{ + dir = 8; + name = "sink"; + pixel_x = 19 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/horizon/service/bar) +"tGl" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/gen_treatment) "tGn" = ( /obj/structure/bed/stool/chair/office/dark{ dir = 4 }, /turf/unsimulated/floor/monotile, /area/antag/burglar) -"tGr" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 +"tGp" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + icon_state = "1-2" }, -/turf/simulated/floor/plating, -/area/hangar/auxiliary) +/obj/structure/platform_deco{ + icon_state = "ledge_deco" + }, +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor, +/area/horizon/command/bridge/upperdeck) "tGt" = ( /obj/effect/floor_decal/industrial/warning/corner{ dir = 8 }, /turf/simulated/floor/reinforced/airless, /area/horizon/exterior) -"tGw" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ +"tGz" = ( +/obj/effect/floor_decal/corner/dark_green{ dir = 4 }, -/obj/effect/floor_decal/corner/blue/diagonal, -/turf/simulated/floor/tiled/white, -/area/bridge/bridge_crew) -"tGA" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/structure/table/rack, -/turf/simulated/floor/plating, -/area/maintenance/wing/port/deck1) -"tGB" = ( -/turf/simulated/wall/r_wall, -/area/rnd/hallway) -"tGC" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -136857,23 +137439,25 @@ dir = 4 }, /obj/structure/cable/green{ - icon_state = "2-8" - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/engineering/storage/lower) -"tGE" = ( -/obj/structure/cable{ icon_state = "4-8" }, -/obj/structure/cable{ - icon_state = "2-8" +/obj/structure/cable/green{ + icon_state = "1-4" }, -/turf/simulated/floor/plating, -/area/maintenance/substation/hangar) +/turf/simulated/floor/tiled, +/area/horizon/crew/fitness/changing) +"tGD" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/rnd/xenobiology/xenoflora) "tGI" = ( /obj/effect/floor_decal/corner/beige/full{ dir = 1 @@ -136892,140 +137476,140 @@ }, /turf/simulated/floor/tiled/white, /area/horizon/security/forensic_laboratory) -"tGK" = ( -/obj/structure/cable/green{ - icon_state = "4-8" +"tGM" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/table/steel, +/obj/item/storage/box/flares{ + pixel_x = -6; + pixel_y = 11 }, -/obj/structure/cable/green{ - icon_state = "2-8" +/obj/item/storage/box/led_collars{ + pixel_x = 8; + pixel_y = 11 }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 +/obj/item/storage/box/flares{ + pixel_x = -6; + pixel_y = 2 }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 +/obj/item/storage/box/tethers{ + pixel_x = 8; + pixel_y = 2 }, -/obj/structure/lattice/catwalk/indoor/grate/dark, /turf/simulated/floor/plating, -/area/maintenance/engineering) -"tGP" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 1 +/area/horizon/hangar/intrepid) +"tGN" = ( +/obj/machinery/portable_atmospherics/powered/scrubber, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/plating, +/area/horizon/hangar/auxiliary) +"tGY" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/structure/cable{ - icon_state = "1-2" +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 }, -/turf/simulated/floor, -/area/maintenance/security_port) -"tGT" = ( -/obj/machinery/door/firedoor, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/machinery/door/airlock/maintenance{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard/far) -"tGU" = ( -/obj/effect/floor_decal/corner/purple{ - dir = 10 - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/atmospherics/pipe/simple/hidden/purple{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/horizon/custodial/disposals) +/obj/effect/floor_decal/spline/fancy/wood, +/turf/simulated/floor/wood, +/area/horizon/command/heads/rd) "tHc" = ( /obj/effect/floor_decal/carpet, /turf/simulated/floor/holofloor/carpet, /area/horizon/holodeck/source_meetinghall) -"tHd" = ( -/obj/structure/plasticflaps/airtight{ +"tHe" = ( +/obj/effect/floor_decal/corner/dark_blue/full{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 }, -/obj/machinery/door/airlock/research{ - dir = 4; - name = "Hazardous Specimens"; - req_access = list(52); - locked = 1; - id_tag = "xeno_bot_hazard" - }, -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 4 - }, -/obj/machinery/door/firedoor{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/dark/full, -/area/rnd/xenobiology/xenoflora) +/turf/simulated/floor/tiled/dark, +/area/horizon/command/bridge/meeting_room) "tHf" = ( /obj/structure/shuttle_part/scc_space_ship{ icon_state = "d3-3-f" }, /turf/simulated/floor/reinforced/airless, -/area/template_noop) -"tHg" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/operations/storage) -"tHk" = ( -/obj/structure/table/reinforced/steel, -/obj/item/storage/bag/circuits/basic, +/area/horizon/exterior) +"tHh" = ( /obj/machinery/light/small/emergency{ dir = 1 }, -/turf/simulated/floor/carpet/rubber, -/area/maintenance/engineering/auxillary) +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 4 + }, +/obj/machinery/airlock_sensor{ + dir = 1; + pixel_x = -6; + pixel_y = -20 + }, +/obj/machinery/embedded_controller/radio/airlock/airlock_controller{ + dir = 1; + pixel_x = 6; + pixel_y = -20 + }, +/obj/effect/map_effect/marker/airlock{ + frequency = 2003; + master_tag = "airlock_horizon_deck_2_aft_indra"; + name = "airlock_horizon_deck_2_aft_indra" + }, +/turf/simulated/floor/plating, +/area/horizon/engineering/aft_airlock) +"tHj" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/horizon/operations/lobby) +"tHl" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/effect/floor_decal/corner/dark_blue{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/command/bridge/controlroom) +"tHo" = ( +/obj/structure/table/stone/marble, +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/shutters{ + dir = 8; + id = "bar_shutter"; + name = "Bar Shutter" + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/service/bar) "tHp" = ( /turf/simulated/floor/holofloor/beach/sand{ dir = 8; icon_state = "beachcorner" }, /area/horizon/holodeck/source_desert) -"tHu" = ( -/obj/structure/table/standard, -/obj/effect/floor_decal/corner_wide/green/full{ - dir = 8 - }, -/obj/item/device/mass_spectrometer{ - pixel_x = -7; - pixel_y = 1 - }, -/obj/machinery/alarm/west, -/obj/item/auto_cpr{ - pixel_x = 6; - pixel_y = 3 - }, -/obj/item/auto_cpr{ - pixel_x = 6; - pixel_y = -1 - }, -/obj/item/auto_cpr{ - pixel_x = 6; - pixel_y = -5 - }, -/obj/machinery/status_display{ - pixel_y = 32 - }, -/turf/simulated/floor/tiled/white, -/area/medical/gen_treatment) -"tHv" = ( -/obj/structure/cable/green{ +"tHq" = ( +/obj/effect/floor_decal/corner/dark_blue/diagonal, +/turf/simulated/floor/tiled/dark, +/area/horizon/ai/upload_foyer) +"tHr" = ( +/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/disposalpipe/segment, -/obj/effect/floor_decal/corner/brown{ - dir = 6 +/obj/effect/floor_decal/corner/dark_green{ + dir = 5 + }, +/obj/structure/cable/green{ + icon_state = "4-8" }, /turf/simulated/floor/tiled, -/area/outpost/mining_main/refinery) +/area/horizon/engineering/hallway/fore) "tHw" = ( /obj/item/gun/energy/rifle{ pixel_y = 6 @@ -137036,15 +137620,60 @@ /obj/structure/table/reinforced/steel, /turf/unsimulated/floor/plating, /area/centcom/specops) -"tHy" = ( -/obj/structure/bed/stool/chair/office/dark{ - dir = 4 +"tHC" = ( +/obj/structure/bed/stool/chair/shuttle/double{ + pixel_x = -8 }, -/obj/effect/landmark/start{ - name = "Psychiatrist" +/obj/structure/bed/stool/chair/shuttle/double{ + pixel_x = 8 }, -/turf/simulated/floor/carpet, -/area/medical/psych) +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 1 + }, +/obj/effect/floor_decal/spline/plain/black{ + dir = 10 + }, +/obj/machinery/alarm/north{ + req_one_access = list(11, 24, 47, 65) + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/shuttle/intrepid/starboard_compartment) +"tHH" = ( +/obj/effect/floor_decal/corner/lime{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/horizon/rnd/xenobiology/xenoflora) +"tHL" = ( +/obj/machinery/mass_driver{ + _wifi_id = "waste"; + dir = 1; + id = "waste" + }, +/obj/effect/floor_decal/industrial/hatch/red, +/turf/simulated/floor/reinforced{ + roof_type = null + }, +/area/horizon/service/custodial/disposals/deck_1) +"tHN" = ( +/turf/simulated/open, +/area/horizon/hallway/primary/deck_3/central) +"tHO" = ( +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/power/apc/north{ + req_one_access = list(11, 24, 47, 65); + req_access = null + }, +/obj/structure/bed/handrail, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel, +/turf/simulated/floor/tiled/dark, +/area/horizon/shuttle/intrepid/port_storage) "tHP" = ( /obj/machinery/recharger{ pixel_y = 4 @@ -137055,51 +137684,24 @@ }, /turf/simulated/floor/holofloor/tiled/dark, /area/tdome/tdome2) -"tIc" = ( -/obj/machinery/computer/operating, -/obj/effect/floor_decal/corner_wide/paleblue{ +"tIl" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 10 }, -/turf/simulated/floor/tiled/white, -/area/medical/ors) -"tIg" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 9 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/structure/table/wood, -/obj/machinery/power/outlet, -/turf/simulated/floor/wood, -/area/horizon/bar) -"tIk" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/effect/floor_decal/corner/dark_blue/full{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ icon_state = "2-4" }, -/turf/simulated/floor/tiled/dark, -/area/turret_protected/ai_upload_foyer) -"tIp" = ( -/obj/machinery/door/firedoor, -/obj/structure/sink{ - dir = 4; - pixel_x = 12 +/obj/structure/disposalpipe/segment{ + icon_state = "pipe-c" }, /obj/effect/floor_decal/corner_wide/green{ - dir = 6 + dir = 5 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/effect/floor_decal/industrial/warning/corner, /turf/simulated/floor/tiled/white, -/area/medical/icu) +/area/horizon/medical/icu) "tIt" = ( /obj/machinery/body_scanconsole{ dir = 8 @@ -137117,139 +137719,116 @@ }, /turf/simulated/floor/tiled/dark, /area/shuttle/hapt) -"tIz" = ( -/obj/effect/floor_decal/industrial/warning{ +"tIA" = ( +/obj/effect/floor_decal/spline/fancy/wood/cee{ dir = 1 }, -/obj/structure/tank_wall/nitrogen, -/turf/simulated/floor/plating, -/area/engineering/atmos/air) -"tIG" = ( -/obj/effect/floor_decal/corner_wide/purple{ +/obj/structure/flora/ausbushes/lavendergrass, +/obj/structure/flora/ausbushes/palebush, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/grass/no_edge, +/area/horizon/hallway/primary/deck_3/starboard) +"tIC" = ( +/obj/structure/railing/mapped{ dir = 8 }, -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/effect/floor_decal/corner_wide/purple{ +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/stairwell/bridge/deck_2) +"tID" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor/plating, +/area/horizon/hallway/primary/deck_2/starboard) +"tIR" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/grass/no_edge, +/area/horizon/service/hydroponics/lower) +"tIZ" = ( +/obj/effect/floor_decal/corner/red/diagonal, +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/spline/plain/corner{ + dir = 4 + }, +/turf/simulated/floor/lino, +/area/horizon/service/cafeteria) +"tJd" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 10 + }, +/obj/structure/table/wood, +/obj/machinery/chemical_dispenser/bar_soft/full{ + dir = 1; + pixel_y = -4 + }, +/obj/item/reagent_containers/food/drinks/drinkingglass{ + pixel_y = 13 + }, +/obj/item/reagent_containers/food/drinks/drinkingglass{ + pixel_y = 13; + pixel_x = 9 + }, +/obj/item/reagent_containers/food/drinks/drinkingglass{ + pixel_y = 13; + pixel_x = -9 + }, +/turf/simulated/floor/wood, +/area/horizon/repoffice/representative_two) +"tJf" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/full, +/area/horizon/engineering/hallway/interior) +"tJm" = ( +/obj/effect/floor_decal/corner/black{ dir = 5 }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenoarch_atrium) -"tIH" = ( -/obj/structure/table/rack, -/obj/structure/window/reinforced{ - dir = 4 +/obj/effect/floor_decal/corner/brown{ + dir = 5 }, -/obj/structure/window/reinforced, -/turf/simulated/floor/tiled/freezer, -/area/horizon/crew_quarters/fitness/showers) -"tII" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/maintenance{ - dir = 4; - name = "Engineering Locker Room Maintenance"; - req_access = list(11) - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/full, -/area/engineering/locker_room) -"tIP" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_2/central) +"tJw" = ( +/obj/effect/floor_decal/corner/dark_blue/full{ dir = 8 }, -/obj/machinery/door/airlock/engineering{ - name = "C-Goliath Drive Control Room"; - req_one_access = list(11,24); - dir = 4 - }, -/turf/simulated/floor/plating, -/area/engineering/bluespace_drive/monitoring) -"tIS" = ( -/obj/machinery/conveyor{ - dir = 8; - id = "mining_1" - }, -/turf/simulated/floor/plating, -/area/outpost/mining_main/refinery) -"tIU" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/blast/shutters/open{ - dir = 2; - id = "warehouse2"; - name = "Warehouse Shutter" - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/full, -/area/operations/storage) -"tIY" = ( -/turf/simulated/wall/shuttle/scc_space_ship/cardinal, -/area/lawoffice/representative_two) -"tJb" = ( -/turf/simulated/floor/tiled/dark, -/area/engineering/storage/tech) -"tJg" = ( -/obj/effect/decal/cleanable/dirt, -/obj/random/junk, -/turf/simulated/floor/tiled, -/area/maintenance/operations) -"tJj" = ( -/obj/structure/disposaloutlet{ - dir = 1; - spread = 90; - spread_point = 1 +/obj/machinery/disposal, +/obj/structure/sign/deathsposal{ + name = "\improper SPENT MUNITIONS EJECTION CHUTE sign"; + pixel_x = -32 }, /obj/structure/disposalpipe/trunk{ dir = 8 }, -/obj/effect/floor_decal/industrial/hatch/red, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/structure/sign/drop{ - pixel_x = 32; - pixel_y = 32 - }, /turf/simulated/floor/tiled/dark, -/area/horizon/custodial/disposals) -"tJq" = ( -/obj/machinery/atmospherics/pipe/simple/visible/black, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/engineering/atmos/propulsion/starboard) -"tJy" = ( -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/obj/machinery/light/small/emergency{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/substation/medical) -"tJD" = ( -/obj/machinery/light/small/emergency{ - dir = 1 - }, -/obj/effect/floor_decal/corner_wide/blue{ - dir = 10 - }, -/obj/effect/floor_decal/corner_wide/yellow{ - dir = 5 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/reinforced, -/area/bridge/selfdestruct) +/area/horizon/weapons/grauwolf) "tJE" = ( /obj/machinery/atmospherics/binary/passive_gate{ dir = 1; @@ -137266,50 +137845,19 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/security/firing_range) -"tJI" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, +"tJJ" = ( +/turf/simulated/wall/shuttle/scc_space_ship/cardinal, +/area/horizon/engineering/atmos/propulsion/starboard) +"tJN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, /obj/effect/floor_decal/corner/brown{ - dir = 9 - }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/structure/disposalpipe/junction{ - dir = 1 + dir = 10 }, /turf/simulated/floor/tiled, -/area/operations/lobby) -"tJK" = ( -/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ - dir = 4 - }, -/turf/simulated/floor/reinforced/airless, -/area/engineering/atmos/propulsion/starboard) -"tJR" = ( -/obj/machinery/light/spot{ - dir = 1 - }, -/obj/random/pottedplant, -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/structure/railing/mapped, -/obj/effect/floor_decal/spline/fancy/wood/full, -/turf/simulated/floor/wood, -/area/hangar/auxiliary) -"tJS" = ( -/obj/machinery/newscaster/east, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/journalistoffice) +/area/horizon/operations/break_room) "tJU" = ( /obj/effect/floor_decal/corner/dark_blue{ dir = 10 @@ -137328,6 +137876,9 @@ }, /turf/simulated/floor/tiled, /area/horizon/security/brig) +"tJW" = ( +/turf/simulated/wall, +/area/horizon/medical/morgue) "tKa" = ( /obj/machinery/vending/wallmed1{ name = "Medical Supplies"; @@ -137350,88 +137901,87 @@ }, /turf/unsimulated/floor, /area/antag/raider) -"tKf" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 +"tKd" = ( +/obj/effect/floor_decal/corner_wide/green{ + dir = 10 }, /obj/structure/cable/green{ - icon_state = "4-8" + icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/obj/effect/floor_decal/corner/brown{ - dir = 6 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/intrepid/main_compartment) -"tKg" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 6 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor, -/area/maintenance/engineering_ladder) -"tKi" = ( -/obj/effect/floor_decal/corner/dark_blue/diagonal, -/turf/simulated/floor/tiled/dark, -/area/hangar/control) -"tKj" = ( +/obj/effect/floor_decal/sign/p, /obj/structure/disposalpipe/segment, -/obj/structure/cable/green{ - icon_state = "2-4" +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/sign/p, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/hallway) +"tKk" = ( +/obj/machinery/atmospherics/omni/filter{ + name = "carbon dioxide filter"; + tag_east = 2; + tag_north = 5; + tag_west = 1 }, -/obj/structure/platform_deco{ - dir = 4 - }, -/obj/structure/platform_deco{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/effect/floor_decal/corner/dark_blue/diagonal{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/bridge) -"tKm" = ( -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/random/dirt_75, -/turf/simulated/floor/plating, -/area/maintenance/wing/port/far) +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/atmos) "tKo" = ( /obj/effect/floor_decal/carpet{ dir = 8 }, /turf/simulated/floor/holofloor/carpet, /area/horizon/holodeck/source_meetinghall) -"tKv" = ( +"tKq" = ( +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/wing/starboard/far) +"tKs" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/main/port) +"tKu" = ( /obj/structure/cable/green{ icon_state = "4-8" }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, /turf/simulated/floor/tiled/white, -/area/hallway/medical) +/area/horizon/medical/hallway) +"tKx" = ( +/obj/effect/floor_decal/industrial/outline/operations, +/obj/structure/fireaxecabinet/east, +/obj/structure/closet/secure_closet/atmos_personal, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/atmos/storage) +"tKy" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/effect/floor_decal/corner/brown/diagonal, +/turf/simulated/floor/tiled/dark, +/area/horizon/operations/mining_main/eva) "tKA" = ( /obj/effect/decal/fake_object{ desc = "An automated turret."; @@ -137444,37 +137994,6 @@ "tKC" = ( /turf/simulated/floor/holofloor/tiled, /area/horizon/holodeck/source_thunderdomecourt) -"tKE" = ( -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/effect/floor_decal/corner/purple{ - dir = 10 - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/firealarm/south, -/turf/simulated/floor/tiled, -/area/horizon/custodial) -"tKH" = ( -/obj/structure/table/standard, -/obj/effect/floor_decal/corner_wide/green{ - dir = 10 - }, -/obj/item/reagent_containers/spray/cleaner{ - pixel_y = 2 - }, -/obj/structure/railing/mapped, -/turf/simulated/floor/tiled/white, -/area/hallway/medical) -"tKI" = ( -/obj/structure/window/borosilicate{ - dir = 4 - }, -/obj/structure/closet/secure_closet/scientist, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/white, -/area/rnd/lab) "tKN" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 10 @@ -137483,34 +138002,103 @@ icon_state = "wood" }, /area/centcom/specops) -"tKQ" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 +"tKO" = ( +/obj/structure/closet/secure_closet/medical3, +/obj/effect/floor_decal/corner_wide/green/full{ + dir = 8 }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/engine_room/rust) +/turf/simulated/floor/tiled/white, +/area/horizon/medical/equipment) "tKS" = ( /obj/structure/lattice/catwalk/indoor/grate/dark, /obj/structure/railing/mapped, /turf/simulated/floor/plating, /area/centcom/shared_dream) -"tKZ" = ( -/obj/effect/floor_decal/industrial/outline/emergency_closet, -/obj/structure/closet/emcloset, -/turf/simulated/floor/tiled/dark, -/area/horizon/hallway/deck_three/primary/central) -"tLq" = ( -/obj/effect/floor_decal/corner_wide/purple/full{ +"tLb" = ( +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/structure/platform{ +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/gravity_gen) +"tLe" = ( +/obj/effect/floor_decal/spline/plain{ dir = 8 }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenoarch_atrium) +/obj/machinery/computer/ship/navigation{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/service/bar) +"tLf" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/effect/floor_decal/corner/dark_green{ + dir = 10 + }, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled, +/area/horizon/stairwell/port/deck_2) +"tLh" = ( +/obj/structure/cable/orange{ + icon_state = "1-4" + }, +/turf/simulated/floor/plating, +/area/horizon/engineering/reactor/supermatter/mainchamber) +"tLj" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 8 + }, +/obj/machinery/embedded_controller/radio/airlock/airlock_controller{ + dir = 8; + pixel_x = 20 + }, +/obj/effect/map_effect/marker/airlock{ + frequency = 2001; + master_tag = "airlock_horizon_deck_2_starboard_aft"; + name = "airlock_horizon_deck_2_starboard_aft" + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/port/near) +"tLl" = ( +/obj/structure/table/stone/marble, +/obj/item/storage/box/fancy/cigarettes/cigar{ + pixel_x = -5; + pixel_y = 4 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/shutters{ + dir = 2; + id = "bar_shutter"; + name = "Bar Shutter" + }, +/obj/machinery/power/outlet, +/turf/simulated/floor/tiled/dark, +/area/horizon/service/bar) +"tLn" = ( +/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/horizon/rnd/xenoarch/spectrometry) "tLt" = ( /obj/machinery/power/apc/south, /obj/effect/floor_decal/corner/green/diagonal, @@ -137525,6 +138113,30 @@ }, /turf/simulated/floor/tiled/white, /area/horizon/security/washroom) +"tLu" = ( +/obj/machinery/door/airlock/external{ + dir = 4 + }, +/obj/effect/map_effect/marker/airlock{ + frequency = 2003; + master_tag = "airlock_horizon_deck_2_aft_indra"; + name = "airlock_horizon_deck_2_aft_indra" + }, +/obj/machinery/access_button{ + dir = 8; + pixel_x = -12; + pixel_y = -28 + }, +/obj/effect/map_effect/marker_helper/airlock/exterior, +/turf/simulated/floor/plating, +/area/horizon/engineering/aft_airlock) +"tLw" = ( +/obj/effect/floor_decal/corner/dark_green/full{ + dir = 4 + }, +/obj/random/pottedplant, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_3/port) "tLB" = ( /obj/machinery/light{ dir = 1 @@ -137535,211 +138147,107 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/security/firing_range) -"tLE" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/tiled/full, -/area/engineering/storage_hard) -"tLH" = ( -/obj/structure/filingcabinet/chestdrawer{ - pixel_x = 8 - }, -/obj/structure/filingcabinet{ - pixel_x = -8 - }, -/turf/simulated/floor/carpet, -/area/lawoffice/representative) -"tLK" = ( -/obj/effect/floor_decal/industrial/warning{ +"tLD" = ( +/obj/machinery/door/firedoor{ + req_one_access = list(24,11,67,73); dir = 4 }, -/obj/random/junk, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/maintenance/engineering) -"tLO" = ( -/obj/structure/cable/green{ - icon_state = "1-2" +/obj/effect/floor_decal/industrial/hatch_door/yellow, +/obj/machinery/computer/guestpass{ + pixel_y = 32 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/railing/mapped{ - dir = 8 +/turf/simulated/floor/tiled/dark/full, +/area/horizon/shuttle/intrepid/main_compartment) +"tLN" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/structure/railing/mapped{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard) -"tLT" = ( -/turf/simulated/wall/r_wall, -/area/engineering/engine_room) -"tLU" = ( -/obj/effect/floor_decal/corner_wide/purple{ - dir = 6 - }, -/obj/effect/floor_decal/corner_wide/purple/diagonal, -/turf/simulated/floor/tiled/white, -/area/rnd/test_range) -"tMa" = ( -/obj/structure/stairs_railing{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/operations/storage) -"tMb" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/cable/green{ - icon_state = "2-8" +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/bridge/bridge_crew) -"tMe" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/central) -"tMl" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 10 - }, -/turf/simulated/floor/reinforced, -/area/rnd/xenobiology) -"tMm" = ( -/obj/effect/map_effect/window_spawner/full/reinforced/polarized/firedoor{ - id = "chapel_outer" - }, -/turf/simulated/floor/tiled/dark/full, -/area/chapel/main) -"tMp" = ( -/obj/structure/cable/green{ - icon_state = "0-2" - }, -/obj/effect/floor_decal/corner/yellow{ - dir = 5 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/item/stock_parts/console_screen{ - pixel_y = 8 - }, -/obj/item/stock_parts/console_screen, -/obj/item/circuitboard/arcade/orion_trail{ - pixel_y = -4 - }, -/obj/item/circuitboard/arcade/battle{ - pixel_y = -8 - }, -/obj/structure/table/rack{ - dir = 8 - }, -/obj/machinery/power/apc/north, -/turf/simulated/floor/tiled/dark, -/area/engineering/storage/tech) -"tMt" = ( /obj/structure/cable{ icon_state = "4-8" }, -/obj/structure/disposalpipe/segment{ +/turf/simulated/floor/tiled/ramp/bottom{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard) -"tMv" = ( -/obj/structure/table/steel, -/obj/effect/floor_decal/corner/purple{ - dir = 5 - }, -/obj/item/stack/material/steel/full{ - pixel_x = -6; - pixel_y = 9 - }, -/turf/simulated/floor/tiled, -/area/maintenance/wing/starboard) -"tMA" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"tMB" = ( -/obj/effect/floor_decal/corner_wide/green{ - dir = 9 +/area/horizon/maintenance/deck_1/main/port) +"tLY" = ( +/obj/machinery/portable_atmospherics/hydroponics, +/obj/machinery/atmospherics/portables_connector{ + dir = 1 }, +/obj/machinery/firealarm/south, +/turf/simulated/floor/tiled/dark, +/area/horizon/rnd/xenobiology/xenoflora) +"tMh" = ( /obj/effect/floor_decal/industrial/warning{ dir = 1 }, -/turf/simulated/floor/tiled/white, -/area/medical/icu) -"tMH" = ( -/obj/item/material/shard{ - icon_state = "small" +/obj/structure/cable/green{ + icon_state = "2-4" }, -/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/turf/simulated/floor/tiled/full, +/area/horizon/engineering/storage_hard) +"tMk" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/shutters/open{ + dir = 8; + id = "lounge_window_shutters"; + name = "Lounge Window Shutter" + }, +/obj/structure/grille, +/obj/structure/window/shuttle/scc_space_ship, /turf/simulated/floor/plating, -/area/maintenance/wing/starboard) -"tMS" = ( -/obj/structure/table/standard, -/obj/item/paper_bin, -/obj/item/pen{ - pixel_x = -4 +/area/horizon/service/dining_hall) +"tMs" = ( +/obj/structure/closet/secure_closet/medical3, +/obj/effect/floor_decal/corner_wide/green{ + dir = 9 }, -/obj/item/pen/red{ - pixel_x = -1; - pixel_y = 4 +/turf/simulated/floor/tiled/white, +/area/horizon/medical/equipment) +"tMC" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 }, -/obj/item/pen/blue{ - pixel_x = 3; - pixel_y = 7 +/turf/simulated/floor/tiled, +/area/horizon/engineering/locker_room) +"tMF" = ( +/obj/machinery/light/spot{ + dir = 8 }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ +/obj/structure/sign/emergency/evacuation/pods{ + pixel_x = -32 + }, +/turf/simulated/floor/tiled, +/area/horizon/hangar/operations) +"tMK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 7 + }, +/obj/machinery/power/apc/south, +/obj/structure/cable/green, +/obj/machinery/light, +/obj/structure/engineer_maintenance/pipe, +/obj/structure/engineer_maintenance/electric{ dir = 4 }, -/turf/simulated/floor/carpet/rubber, -/area/rnd/lab) +/turf/simulated/floor/wood, +/area/horizon/repoffice/representative_two) "tMW" = ( /obj/structure/flora/ausbushes/fullgrass, /turf/simulated/floor/exoplanet/grass/grove, /area/centcom/shared_dream) -"tMX" = ( -/obj/machinery/disposal/small/west, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/lounge) "tNc" = ( /obj/effect/floor_decal/corner/blue{ dir = 6 @@ -137750,52 +138258,15 @@ /obj/effect/floor_decal/industrial/outline/security, /turf/simulated/floor/tiled/white, /area/horizon/security/autopsy_laboratory) -"tNd" = ( -/obj/machinery/door/firedoor{ - req_one_access = list(24,11,67,73); - dir = 4 - }, -/obj/effect/map_effect/door_helper/unres{ +"tNo" = ( +/obj/structure/window/reinforced{ dir = 8 }, -/obj/machinery/door/airlock/engineering{ - dir = 4; - name = "Engineering Lobby"; - req_one_access = list(10) - }, -/turf/simulated/floor/tiled/full, -/area/engineering/lobby) -"tNe" = ( -/obj/random/pottedplant, -/obj/effect/floor_decal/corner_wide/lime{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/medical/reception) -"tNk" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/firedoor{ - dir = 4 - }, -/turf/simulated/floor/tiled/full, -/area/engineering/lobby) -"tNp" = ( -/turf/unsimulated/wall/fakepdoor{ - dir = 4 - }, -/area/hangar/operations) +/obj/machinery/portable_atmospherics/hydroponics, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/light, +/turf/simulated/floor/tiled/dark, +/area/horizon/rnd/xenobiology/xenoflora) "tNr" = ( /obj/effect/floor_decal/corner/grey{ dir = 5 @@ -137809,104 +138280,109 @@ }, /turf/simulated/floor/reinforced/airless, /area/horizon/exterior) -"tNu" = ( -/obj/machinery/portable_atmospherics/canister/air, -/obj/structure/window/reinforced{ - dir = 8 +"tNt" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/effect/floor_decal/industrial/warning, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 }, -/obj/machinery/light/small/emergency{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/wing/port/far) -"tNx" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 +/obj/machinery/door/airlock/multi_tile/glass{ + autoclose = 0; + name = "Warehouse Elevator"; + req_one_access = list(26,29,31,48,67) }, +/obj/machinery/door/firedoor/multi_tile, /turf/simulated/floor/tiled/dark, -/area/storage/eva) -"tNE" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 7 - }, -/obj/effect/floor_decal/spline/fancy/wood/corner{ +/area/horizon/operations/loading) +"tNF" = ( +/obj/machinery/door/firedoor{ + req_one_access = list(24,11,67,73); dir = 4 }, -/obj/structure/cable/green{ - icon_state = "4-8" +/obj/machinery/door/airlock/maintenance{ + dir = 4; + name = "Library Maintenance"; + req_access = list(37) }, -/turf/simulated/floor/wood, -/area/crew_quarters/captain) -"tNL" = ( -/obj/structure/table/wood, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/service/library) +"tNI" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 }, -/turf/simulated/floor/carpet, -/area/lawoffice/representative_two) -"tNP" = ( -/turf/simulated/wall/shuttle/scc_space_ship/cardinal, -/area/journalistoffice) -"tOe" = ( -/obj/structure/disposalpipe/up, -/obj/machinery/atmospherics/pipe/zpipe/up/supply, -/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers, -/obj/structure/railing/mapped, -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning/cee, -/obj/structure/cable{ - icon_state = "0-2" - }, -/obj/structure/cable{ - icon_state = "12-0" +/turf/simulated/floor/tiled/dark, +/area/horizon/rnd/xenobiology/dissection) +"tNX" = ( +/obj/machinery/light/small/emergency{ + dir = 1 }, /turf/simulated/floor/plating, -/area/maintenance/aft) -"tOh" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/lattice/catwalk/indoor/grate, -/turf/simulated/floor, -/area/bridge) -"tOj" = ( -/obj/effect/floor_decal/corner/dark_green/full{ +/area/horizon/maintenance/deck_2/wing/starboard) +"tOc" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced, +/obj/structure/lattice, +/turf/simulated/open, +/area/horizon/maintenance/deck_2/wing/port) +"tOd" = ( +/obj/effect/floor_decal/corner_wide/blue, +/obj/effect/floor_decal/corner_wide/yellow{ + dir = 4 + }, +/obj/effect/floor_decal/spline/plain{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 }, -/obj/machinery/firealarm/west, /turf/simulated/floor/tiled, -/area/hallway/primary/central_one) +/area/horizon/engineering/atmos/storage) +"tOf" = ( +/obj/structure/bed/stool/chair/office/dark, +/turf/simulated/floor/carpet/rubber, +/area/horizon/rnd/lab) +"tOi" = ( +/obj/machinery/porta_turret, +/obj/effect/floor_decal/industrial/warning/full, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/ai/upload) +"tOl" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/obj/structure/sign/securearea{ + desc = "A caution sign which reads 'DISPOSALS' and 'AUTHORIZED PERSONNEL ONLY'."; + name = "\improper DISPOSALS sign"; + pixel_y = 32 + }, +/obj/structure/sign/directions/prop{ + dir = 8; + pixel_x = -32; + pixel_y = -10 + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/main/interstitial) "tOp" = ( /obj/structure/railing/mapped{ dir = 4 }, /turf/simulated/open/airless, /area/template_noop) -"tOs" = ( -/obj/effect/floor_decal/corner/dark_green/diagonal, -/obj/structure/disposalpipe/segment{ - dir = 4 +"tOq" = ( +/obj/structure/platform_stairs/full/east_west_cap{ + dir = 8 }, -/turf/simulated/floor/tiled, -/area/horizon/hydroponics) -"tOw" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/horizon/cafeteria) +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/starboard/far) +"tOz" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/atmos/turbine) "tOD" = ( /obj/effect/floor_decal/industrial/warning{ dir = 1 @@ -137917,6 +138393,9 @@ }, /turf/unsimulated/floor/plating, /area/antag/raider) +"tOE" = ( +/turf/simulated/wall/shuttle/scc_space_ship/cardinal, +/area/horizon/service/hydroponics) "tOG" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/green{ @@ -137936,15 +138415,6 @@ }, /turf/simulated/floor/tiled, /area/horizon/security/hallway) -"tOK" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 6 - }, -/turf/simulated/floor/reinforced, -/area/rnd/xenobiology) "tON" = ( /obj/item/reagent_containers/food/snacks/skrellsnacks{ pixel_x = -10; @@ -137981,63 +138451,58 @@ /obj/structure/sign/flag/scc, /turf/simulated/floor/wood, /area/horizon/security/meeting_room) -"tOQ" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 1 +"tOS" = ( +/obj/structure/cable/green{ + icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 4 }, -/obj/effect/floor_decal/corner/dark_blue, -/turf/simulated/floor/tiled/dark, -/area/bridge/controlroom) -"tPa" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/light/floor{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/bridge) -"tPc" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 +/obj/structure/cable{ + icon_state = "4-8" }, /obj/effect/floor_decal/corner/dark_green{ - dir = 10 - }, -/obj/machinery/camera/network/second_deck{ - c_tag = "Second Deck - Medical Entrance"; - dir = 1 - }, -/obj/machinery/ringer_button{ - id = "ringers_custodialaux"; - name = "\improper Auxiliary Custodial Ringer"; - pixel_x = 8; - pixel_y = -22 + dir = 6 }, /turf/simulated/floor/tiled, -/area/hallway/primary/central_two) +/area/horizon/hangar/intrepid) +"tOT" = ( +/obj/structure/flora/ausbushes/sparsegrass, +/obj/structure/flora/ausbushes/ppflowers, +/obj/machinery/camera/network/second_deck{ + c_tag = "Second Deck - Service Hallway"; + dir = 8 + }, +/turf/simulated/floor/grass/no_edge, +/area/horizon/hallway/primary/deck_2/fore) +"tOV" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/rnd/xenoarch/storage) +"tOZ" = ( +/obj/machinery/atmospherics/binary/pump{ + dir = 8; + name = "Air to Connector" + }, +/turf/simulated/floor/plating, +/area/horizon/engineering/atmos/air) +"tPb" = ( +/obj/machinery/vending/overloaders, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/rnd/hallway) "tPe" = ( /obj/effect/floor_decal/corner/teal{ dir = 9 }, /turf/unsimulated/floor/marble, /area/antag/wizard) -"tPg" = ( -/obj/structure/platform_deco{ - dir = 1 - }, -/obj/machinery/atmospherics/binary/pump{ - dir = 4; - name = "Trays to Scrubbers" - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology/xenoflora) "tPh" = ( /obj/structure/disposalpipe/segment, /obj/effect/floor_decal/corner/blue/diagonal, @@ -138045,106 +138510,86 @@ icon_state = "white" }, /area/tdome/tdomeobserve) -"tPn" = ( -/obj/item/device/taperecorder{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/briefcase, -/obj/item/device/flash, -/obj/item/storage/secure/briefcase, -/obj/item/device/eftpos{ - eftpos_name = "Internal Affairs EFTPOS scanner" - }, -/obj/item/clothing/under/suit_jacket/really_black, -/obj/item/clothing/shoes/laceup, -/obj/item/clothing/shoes/laceup, -/obj/item/clipboard, -/obj/item/pen/multi, -/obj/item/device/camera, -/obj/structure/closet/lawcloset, -/obj/item/paper_scanner, -/obj/item/folder/red, -/obj/item/folder/yellow, -/obj/item/device/destTagger, -/obj/item/stack/packageWrap, -/turf/simulated/floor/carpet, -/area/lawoffice/consular_two) -"tPq" = ( -/obj/structure/table/wood, -/obj/item/reagent_containers/food/condiment/shaker/salt{ - pixel_x = -6; - pixel_y = 16 - }, -/obj/item/reagent_containers/food/condiment/shaker/peppermill{ - pixel_x = 4; - pixel_y = 16 - }, -/obj/item/flame/candle{ - pixel_y = 16 - }, -/obj/random/pottedplant_small{ - spawn_nothing_percentage = 25; - name = "random potted plant, small (25% nothing)"; - pixel_x = -4; - pixel_y = -2 - }, -/obj/machinery/power/outlet, -/turf/simulated/floor/wood, -/area/horizon/crew_quarters/lounge/bar) -"tPs" = ( -/obj/machinery/atmospherics/pipe/simple/visible/black, -/obj/machinery/meter, -/turf/simulated/floor/plating, -/area/engineering/atmos/air) -"tPx" = ( -/obj/machinery/power/apc/west, +"tPk" = ( /obj/structure/cable/green{ - icon_state = "0-4" + icon_state = "1-2" }, -/obj/structure/table/rack, -/obj/item/clothing/suit/hazmat/anomaly, -/obj/item/tank/oxygen, -/obj/item/clothing/head/hazmat/anomaly, -/obj/item/clothing/mask/gas/alt, -/obj/item/clothing/glasses/safety/goggles/science, -/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 +/turf/simulated/floor/wood, +/area/horizon/command/heads/xo) +"tPl" = ( +/obj/machinery/atmospherics/pipe/simple/visible/purple, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/atmospherics/binary/pump{ + dir = 8; + name = "Phoron to Connector" }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hangar/auxiliary) -"tPG" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/atmos) +"tPm" = ( +/obj/machinery/door/firedoor{ + req_one_access = list(24,11,67,73); dir = 4 }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/obj/effect/floor_decal/corner/brown/full{ - dir = 8 +/obj/machinery/door/airlock/glass_mining{ + dir = 4; + name = "Commissary Backroom"; + req_one_access = list(26,29,31,48,67,35,25,28,37) }, -/obj/machinery/button/remote/blast_door{ - dir = 8; - id = "warehouse2"; - name = "Warehouse Shutter"; - pixel_x = -22; - pixel_y = -28 +/obj/effect/map_effect/door_helper/unres{ + dir = 4 }, -/obj/machinery/light/small{ +/turf/simulated/floor/tiled/dark/full, +/area/horizon/operations/commissary) +"tPu" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/floor_decal/corner/dark_green{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_3/central) +"tPw" = ( +/obj/structure/table/standard, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/obj/item/paper_bin{ + pixel_x = -2; + pixel_y = 5 + }, +/obj/item/pen, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/horizon/service/chapel/office) +"tPD" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/spline/plain/red, +/obj/effect/floor_decal/spline/plain{ dir = 1 }, -/obj/structure/engineer_maintenance/pipe/wall, /turf/simulated/floor/tiled, -/area/operations/storage) +/area/horizon/service/hydroponics) "tPH" = ( /obj/effect/decal/fake_object{ dir = 4; @@ -138166,17 +138611,36 @@ name = "shallow water" }, /area/horizon/holodeck/source_konyang) -"tPL" = ( -/obj/structure/cable/orange{ - icon_state = "4-8" +"tPK" = ( +/obj/machinery/door/blast/regular/open{ + id = "iso_b"; + name = "Safety Blast Door" }, -/obj/effect/floor_decal/industrial/warning/corner, -/obj/structure/cable/orange{ - icon_state = "1-4" +/obj/effect/map_effect/window_spawner/full/borosilicate/reinforced/firedoor, +/obj/machinery/alarm/south{ + alarm_id = 1502; + breach_detection = 0; + dir = 4; + name = "Isolation B"; + pixel_x = -24; + rcon_setting = 3; + report_danger_level = 0; + req_one_access = list(7,47,24,11) }, -/obj/machinery/light/spot, -/turf/simulated/floor/plating, -/area/engineering/engine_room) +/turf/simulated/floor/tiled/dark/full, +/area/horizon/rnd/xenoarch/isolation_b) +"tPN" = ( +/obj/machinery/camera/network/research{ + c_tag = "Research - Xenobio Fore"; + network = list("Research","Xeno_Bio") + }, +/obj/machinery/smartfridge/secure/extract{ + density = 0; + pixel_y = 17 + }, +/obj/effect/floor_decal/industrial/outline_corner/yellow, +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/xenobiology) "tPS" = ( /obj/machinery/light{ dir = 4 @@ -138189,15 +138653,22 @@ icon_state = "dark_preview" }, /area/centcom/holding) -"tPZ" = ( -/obj/machinery/door/blast/shutters/open{ - dir = 4; - id = "shutters_deck2_eng_frontdesk"; - name = "Engineering Front Desk Shutter" +"tPX" = ( +/obj/item/modular_computer/console/preset/engineering{ + dir = 8 }, -/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/lobby) +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/structure/railing/mapped, +/obj/effect/floor_decal/corner/dark_blue/full{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/command/bridge/aibunker) "tQl" = ( /turf/simulated/wall/shuttle/unique/tcfl{ icon_state = "1,5" @@ -138209,6 +138680,25 @@ /obj/item/trash/cigbutt, /turf/unsimulated/floor, /area/centcom/legion) +"tQs" = ( +/obj/structure/lattice/catwalk, +/obj/structure/ladder/up{ + pixel_y = 10 + }, +/turf/space/dynamic, +/area/horizon/exterior) +"tQt" = ( +/obj/effect/map_effect/window_spawner/full/borosilicate/reinforced/firedoor, +/obj/machinery/door/blast/shutters/open{ + id = "exploratory_chem_shutters"; + dir = 4 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/rnd/chemistry) +"tQz" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/wing/port/far) "tQA" = ( /obj/structure/dueling_table{ icon_state = "center_right" @@ -138218,26 +138708,6 @@ }, /turf/simulated/floor/holofloor/wood, /area/horizon/holodeck/source_battlemonsters) -"tQE" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/central) -"tQM" = ( -/obj/structure/tank_wall/nitrous_oxide{ - density = 0; - icon_state = "h5"; - opacity = 0 - }, -/obj/machinery/atmospherics/pipe/simple/visible/red{ - dir = 4 - }, -/turf/simulated/floor/reinforced/n20, -/area/engineering/atmos/air) "tQR" = ( /obj/effect/floor_decal/corner/grey{ dir = 6 @@ -138250,12 +138720,67 @@ }, /turf/unsimulated/floor/wood, /area/centcom/evac) -"tRd" = ( -/obj/structure/railing/mapped{ +"tQU" = ( +/obj/structure/sign/securearea{ + icon_state = "radiation" + }, +/turf/simulated/wall/r_wall, +/area/horizon/engineering/gravity_gen) +"tQV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/shuttle/intrepid/junction_compartment) +"tRf" = ( +/obj/machinery/power/breakerbox{ + RCon_tag = "Supermatter Grid Bypass" + }, +/obj/machinery/camera/network/reactor{ + c_tag = "Engineering - SMES Room"; dir = 4 }, -/turf/simulated/open, -/area/operations/office) +/obj/structure/sign/radiation{ + pixel_y = 32 + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/horizon/engineering/smes) +"tRj" = ( +/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/horizon/shuttle/quark/cargo_hold) "tRk" = ( /obj/effect/floor_decal/corner/lime{ dir = 10 @@ -138264,26 +138789,6 @@ icon_state = "dark_preview" }, /area/centcom/holding) -"tRm" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/portable_atmospherics/hydroponics, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/light, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology/xenoflora) -"tRp" = ( -/obj/structure/tank_wall/oxygen{ - density = 0; - icon_state = "o2-6"; - opacity = 0 - }, -/obj/machinery/atmospherics/pipe/simple/visible/cyan{ - dir = 4 - }, -/turf/simulated/floor/reinforced/oxygen, -/area/engineering/atmos/air) "tRq" = ( /obj/structure/shuttle_part/mercenary/small{ icon_state = "7,1" @@ -138324,18 +138829,6 @@ }, /turf/simulated/floor/tiled/dark, /area/shuttle/mercenary) -"tRA" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/effect/floor_decal/corner/dark_green/full{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/operations/lobby) "tRB" = ( /obj/effect/floor_decal/corner/beige{ dir = 10 @@ -138354,6 +138847,17 @@ /obj/structure/table/wood, /turf/simulated/floor/tiled/dark, /area/horizon/holodeck/source_biesel) +"tRI" = ( +/turf/simulated/floor/tiled/white, +/area/horizon/medical/gen_treatment) +"tRJ" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/light/small/emergency{ + dir = 1 + }, +/obj/structure/trash_pile, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/port) "tRO" = ( /obj/machinery/vending/snack{ name = "hacked Getmore Chocolate Corp"; @@ -138376,136 +138880,47 @@ icon_state = "plating" }, /area/centcom/holding) -"tRQ" = ( -/obj/structure/cable/green{ - icon_state = "2-4" +"tRS" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/machinery/camera/network/reactor{ + c_tag = "Engineering - Waste Handling 1" }, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/substation/supply) -"tRT" = ( /obj/effect/floor_decal/industrial/outline/red, -/obj/structure/table/rack, -/obj/item/ship_ammunition/francisca{ - pixel_y = 8 +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/reactor/supermatter/waste) +"tRZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 }, -/obj/item/ship_ammunition/francisca{ - pixel_y = 8 - }, -/obj/item/ship_ammunition/francisca/ap, -/obj/item/ship_ammunition/francisca/ap, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/item/ship_ammunition/francisca{ - pixel_y = 8 - }, -/obj/item/ship_ammunition/francisca{ - pixel_y = 8 - }, -/obj/item/ship_ammunition/francisca{ - pixel_y = 8 - }, -/obj/item/ship_ammunition/francisca{ - pixel_y = 8 - }, -/obj/item/ship_ammunition/francisca/ap, -/obj/item/ship_ammunition/francisca/ap, -/obj/item/ship_ammunition/francisca/ap, -/obj/item/ship_ammunition/francisca/ap, -/obj/item/ship_ammunition/francisca/frag{ - pixel_y = 4 - }, -/obj/item/ship_ammunition/francisca/frag{ - pixel_y = 4 - }, -/obj/item/ship_ammunition/francisca/frag{ - pixel_y = 4 - }, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/secure_ammunition_storage) -"tRX" = ( -/obj/random/junk, -/turf/simulated/floor/tiled/dark/full, -/area/maintenance/wing/port) -"tSa" = ( -/obj/structure/tank_wall/phoron{ - density = 0; - icon_state = "ph12"; - opacity = 0 - }, -/obj/machinery/atmospherics/unary/vent_pump/siphon/on/atmos{ - id_tag = "ph_out" - }, -/turf/simulated/floor/reinforced/phoron, -/area/engineering/atmos) -"tSb" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/lattice/catwalk/indoor/grate, -/turf/simulated/floor, -/area/bridge) -"tSc" = ( -/obj/structure/foamedmetal, -/obj/structure/shuttle_part/scc_space_ship{ - icon_state = "d2-2" - }, -/obj/effect/landmark/entry_point/fore{ - name = "fore, commissary" +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 }, +/obj/structure/lattice/catwalk/indoor/grate/dark, /turf/simulated/floor/plating, -/area/maintenance/wing/cargo_compartment) -"tSe" = ( -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 8 +/area/horizon/maintenance/deck_1/teleporter) +"tSd" = ( +/obj/structure/cable/green{ + icon_state = "1-2" }, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/engine_room/rust) -"tSn" = ( -/obj/machinery/door/airlock/maintenance{ - dir = 1; - name = "Machinist Workshop Maintenance"; - req_access = list(29) +/obj/machinery/alarm/east{ + req_one_access = list(24,11,55) }, -/obj/machinery/door/firedoor, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled, -/area/operations/lower/machinist/surgicalbay) -"tSp" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 10 - }, -/obj/machinery/camera/network/second_deck{ - c_tag = "Second Deck - Chapel Entrance"; +/turf/simulated/floor/tiled/white, +/area/horizon/medical/surgery) +"tSi" = ( +/obj/structure/bed/stool/chair/shuttle/double{ + pixel_x = -8; dir = 1 }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_two) -"tSr" = ( -/obj/structure/window/shuttle/scc_space_ship, -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/effect/landmark/entry_point/aft{ - name = "aft, medical equipment room" +/obj/structure/bed/stool/chair/shuttle/double{ + pixel_x = 8; + dir = 1 }, -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 2; - icon_state = "shutter0"; - id = "LCKDshutters"; - name = "MedBay Lockdown Shutters"; - opacity = 0 +/obj/effect/floor_decal/spline/plain/cee/black{ + dir = 1 }, -/turf/simulated/floor/plating, -/area/medical/equipment) -"tSs" = ( -/obj/structure/table/steel, -/obj/random/junk, -/turf/simulated/floor, -/area/maintenance/security_port) +/turf/simulated/floor/tiled/dark/full, +/area/horizon/shuttle/intrepid/starboard_compartment) "tSz" = ( /obj/structure/table/rack, /obj/item/storage/belt/medical/paramedic/combat/full{ @@ -138519,51 +138934,12 @@ }, /turf/unsimulated/floor, /area/centcom/legion/hangar5) -"tSA" = ( -/obj/structure/foamedmetal, -/obj/effect/landmark/entry_point/aft{ - name = "aft, starboard ballast maintenance, far end" - }, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard) -"tSH" = ( -/obj/effect/floor_decal/corner/dark_green{ +"tSC" = ( +/obj/structure/bed/stool/chair/office/dark{ dir = 8 }, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/starboard) -"tSL" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/structure/lattice/catwalk/indoor/grate, -/turf/simulated/floor/plating, -/area/horizon/hallway/deck_two/fore) -"tSO" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 5 - }, -/obj/random/dirt_75, -/turf/simulated/floor/tiled, -/area/maintenance/wing/port/far) -"tSR" = ( -/obj/machinery/door/airlock{ - dir = 4; - id_tag = "cargobreak_shower"; - name = "Shower" - }, -/obj/machinery/door/firedoor{ - dir = 4 - }, -/turf/simulated/floor/tiled/full, -/area/operations/break_room) +/turf/simulated/floor/tiled/dark, +/area/horizon/rnd/xenoarch/atrium) "tST" = ( /obj/structure/table/rack, /obj/item/clothing/head/helmet/legion{ @@ -138587,22 +138963,12 @@ }, /turf/unsimulated/floor, /area/centcom/legion/hangar5) -"tSX" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ +"tSY" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security{ - dir = 4; - name = "Security Checkpoint"; - req_access = list(63) - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/full, -/area/security/checkpoint) +/turf/simulated/floor/tiled/dark/full, +/area/horizon/operations/machinist) "tTb" = ( /obj/machinery/atmospherics/pipe/simple/heat_exchanging{ dir = 4 @@ -138613,15 +138979,30 @@ /obj/effect/floor_decal/spline/fancy/wood, /turf/simulated/floor/holofloor/lino, /area/horizon/holodeck/source_courtroom) -"tTh" = ( -/obj/random/loot, -/obj/structure/closet, -/turf/simulated/floor/tiled/dark, -/area/maintenance/wing/starboard) -"tTl" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/yellow, -/turf/simulated/floor/tiled/dark, -/area/engineering/atmos) +"tTf" = ( +/obj/structure/railing/mapped, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_3/aft/starboard) +"tTp" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/effect/floor_decal/corner/dark_green{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_2/central) "tTr" = ( /obj/structure/lattice/catwalk/indoor/grate/dark, /obj/structure/railing/mapped{ @@ -138630,23 +139011,24 @@ /obj/structure/railing/mapped, /turf/simulated/floor/plating, /area/centcom/shared_dream) -"tTs" = ( -/obj/machinery/alarm/north, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard) -"tTw" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 +"tTt" = ( +/obj/structure/shuttle/engine/heater{ + dir = 1 }, -/obj/effect/floor_decal/spline/fancy/wood{ +/obj/machinery/atmospherics/pipe/simple/hidden/fuel, +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/turf/simulated/floor/plating, +/area/horizon/shuttle/quark/cargo_hold) +"tTy" = ( +/obj/machinery/power/portgen/basic, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/light{ dir = 8 }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/hologram/holopad, -/turf/simulated/floor/wood, -/area/lawoffice/representative) +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/storage_hard) "tTz" = ( /obj/effect/floor_decal/corner/red/full{ dir = 4 @@ -138663,43 +139045,15 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/security/interrogation) -"tTF" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 8 - }, -/obj/effect/floor_decal/corner/yellow, -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/manifold/visible/red, -/turf/simulated/floor/tiled/dark, -/area/engineering/engine_room/turbine) -"tTJ" = ( -/obj/effect/floor_decal/industrial/warning, +"tTM" = ( /obj/effect/decal/cleanable/dirt, -/obj/random/junk, -/turf/simulated/floor, -/area/maintenance/engineering_ladder) -"tTL" = ( -/obj/machinery/light{ +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/obj/structure/flora/pottedplant{ - icon_state = "plant-33" - }, -/obj/effect/floor_decal/spline/fancy/wood/full, -/obj/structure/sign/directions/dock{ - dir = 4; - pixel_x = 32; - pixel_y = -8 - }, -/turf/simulated/floor/wood, -/area/horizon/hallway/deck_three/primary/port) -"tTN" = ( -/obj/structure/flora/pottedplant/dead, -/obj/structure/sign/nosmoking_1{ - pixel_y = -32 - }, -/turf/simulated/floor/plating, -/area/maintenance/research_port) +/obj/effect/decal/cleanable/dirt, +/obj/structure/bed/stool/bar/padded/red, +/turf/simulated/floor/tiled/dark, +/area/horizon/maintenance/deck_3/aft/port/far) "tTQ" = ( /obj/machinery/button/remote/blast_door{ dir = 1; @@ -138714,45 +139068,11 @@ }, /turf/unsimulated/floor, /area/centcom/legion/hangar5) -"tTT" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/aux, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/maintenance/engineering) -"tTU" = ( -/obj/machinery/camera/network/engineering{ - c_tag = "Engineering - C-Goliath Drive Room 3"; - dir = 1 - }, -/obj/structure/cable/orange{ - icon_state = "4-8" - }, -/obj/effect/floor_decal/corner_wide/yellow{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/engineering/bluespace_drive) -"tUc" = ( -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/structure/lattice, -/obj/structure/platform/ledge, -/obj/structure/platform/ledge{ - dir = 8 - }, -/obj/structure/platform_deco/ledge{ - dir = 9 - }, -/turf/simulated/open, -/area/hallway/primary/central_one) +"tUe" = ( +/obj/machinery/hologram/holopad/long_range, +/obj/effect/overmap/visitable/ship/landable/quark, +/turf/simulated/floor/tiled/dark, +/area/horizon/shuttle/quark/cockpit) "tUg" = ( /obj/structure/bed/stool/padded/brown{ dir = 8 @@ -138766,119 +139086,105 @@ icon_state = "wood" }, /area/centcom/legion/hangar5) -"tUh" = ( -/obj/structure/platform/ledge{ - dir = 4 - }, -/obj/structure/platform/ledge{ - dir = 8 - }, -/turf/simulated/open, -/area/operations/office) -"tUl" = ( -/obj/machinery/door/blast/regular{ - dir = 4; - id = "EngineVent"; - name = "Reactor Vent" - }, -/obj/effect/floor_decal/industrial/hatch/red, -/obj/effect/floor_decal/industrial/warning/cee, -/turf/simulated/floor/reinforced/airless, -/area/engineering/engine_room) -"tUv" = ( -/turf/simulated/floor/shuttle/dark_blue, -/area/shuttle/escape_pod/pod3) -"tUF" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/corner/dark_blue{ +"tUo" = ( +/obj/effect/floor_decal/corner/brown{ dir = 10 }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/survey_probe/magnet, /turf/simulated/floor/tiled, -/area/bridge/supply) -"tUH" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 4 +/area/horizon/operations/mining_main/refinery) +"tUq" = ( +/obj/effect/floor_decal/industrial/hatch/red, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 }, -/obj/effect/floor_decal/spline/plain{ - dir = 8 +/turf/simulated/floor/reinforced/reactor, +/area/horizon/engineering/reactor/supermatter/mainchamber) +"tUs" = ( +/obj/effect/floor_decal/corner/dark_green/diagonal, +/turf/simulated/floor/tiled, +/area/horizon/security/checkpoint2) +"tUz" = ( +/obj/effect/floor_decal/spline/plain/grey{ + dir = 6 }, -/obj/machinery/atmospherics/pipe/simple/hidden/black, -/turf/simulated/floor/carpet/rubber, -/area/tcommsat/chamber) -"tUL" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 +/obj/random/dirt_75, +/turf/simulated/floor/reinforced, +/area/horizon/crew/fitness/gym) +"tUB" = ( +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/dark, +/area/horizon/service/bar) +"tUG" = ( +/obj/structure/cable{ + icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/obj/structure/disposalpipe/segment{ +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/door/airlock{ +/obj/machinery/door/airlock/maintenance{ dir = 4; - name = "Locker Room" + req_one_access = list(12,63) }, -/turf/simulated/floor/tiled, -/area/horizon/crew_quarters/fitness/changing) -"tUM" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 5 +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/regular/open{ + id = "hangarlockdown"; + name = "Hangar Lockdown" }, -/turf/simulated/floor/carpet/rubber, -/area/engineering/engine_monitoring/rust) +/turf/simulated/floor/plating, +/area/horizon/hangar/auxiliary) +"tUK" = ( +/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/horizon/engineering/hallway/aft) "tUN" = ( /obj/effect/floor_decal/corner/blue{ dir = 9 }, /turf/simulated/floor/holofloor/tiled, /area/horizon/holodeck/source_lasertag) -"tUU" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/firedoor{ - dir = 4 +"tUP" = ( +/obj/effect/floor_decal/spline/plain, +/obj/item/stock_parts/subspace/filter, +/obj/item/stock_parts/subspace/filter, +/obj/item/stock_parts/subspace/filter, +/obj/item/stock_parts/subspace/crystal, +/obj/item/stock_parts/subspace/crystal, +/obj/item/stock_parts/subspace/crystal, +/obj/structure/table/standard, +/turf/simulated/floor/carpet/rubber, +/area/horizon/tcommsat/entrance) +"tUW" = ( +/obj/machinery/telecomms/processor/preset_one, +/turf/simulated/floor/bluegrid, +/area/horizon/tcommsat/chamber) +"tUZ" = ( +/obj/structure/table/wood, +/obj/item/storage/pill_bottle/dice/tajara{ + pixel_x = 5; + pixel_y = 12 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 +/obj/item/storage/pill_bottle/dice/gaming{ + pixel_x = 1; + pixel_y = 8 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 +/obj/machinery/power/outlet, +/obj/item/storage/pill_bottle/dice{ + pixel_x = 7; + pixel_y = 1 }, -/obj/machinery/door/airlock/glass_research{ - dir = 4; - name = "Conference Room"; - req_access = list(47) - }, -/obj/effect/map_effect/door_helper/unres{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/conference) -"tUX" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 9 - }, -/obj/structure/engineer_maintenance/electric{ - dir = 8 - }, -/obj/structure/engineer_maintenance/pipe, /turf/simulated/floor/wood, -/area/crew_quarters/captain) +/area/horizon/service/library) "tVa" = ( /obj/effect/floor_decal/spline/fancy/wood/cee{ dir = 8 @@ -138887,65 +139193,14 @@ /obj/structure/flora/ausbushes/pointybush, /turf/simulated/floor/holofloor/grass, /area/horizon/holodeck/source_picnicarea) -"tVd" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/light_switch{ - dir = 4; - pixel_x = 22; - pixel_y = 12 - }, -/turf/simulated/floor/carpet/rubber, -/area/rnd/xenobiology/dissection) -"tVe" = ( -/obj/effect/floor_decal/corner_wide/purple{ - dir = 4 - }, -/obj/effect/floor_decal/corner_wide/purple{ - dir = 8 - }, -/obj/effect/floor_decal/corner_wide/purple{ +"tVc" = ( +/obj/structure/shuttle/engine/heater{ dir = 1 }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenoarch_atrium) -"tVf" = ( -/obj/machinery/door/firedoor{ - req_one_access = list(24,11,67,73); - dir = 4 - }, -/obj/effect/floor_decal/industrial/hatch_door/yellow, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark/full, -/area/shuttle/intrepid/starboard_compartment) -"tVi" = ( -/obj/item/modular_computer/console/preset/civilian, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/unsimulated/floor/marble, -/area/antag/wizard) +/obj/structure/railing/mapped, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/starboard/nacelle) "tVj" = ( /obj/machinery/light, /obj/machinery/door/window/brigdoor/westright{ @@ -138964,40 +139219,102 @@ }, /turf/simulated/floor/shuttle/black, /area/shuttle/distress) -"tVw" = ( -/obj/machinery/light/small/emergency{ +"tVt" = ( +/obj/structure/shuttle_part/scc_space_ship{ + icon_state = "d3-4" + }, +/turf/simulated/wall, +/area/horizon/maintenance/deck_2/wing/starboard/far) +"tVA" = ( +/turf/simulated/floor/reinforced, +/area/horizon/weapons/grauwolf) +"tVF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 1 }, -/obj/effect/map_effect/marker/airlock{ - frequency = 3002; - master_tag = "airlock_horizon_deck_2_port_1"; - name = "airlock_horizon_deck_2_port_1" +/obj/effect/landmark/start{ + name = "Bartender" }, -/turf/simulated/floor, -/area/maintenance/wing/port/far) -"tVy" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/heads/chief) +/obj/structure/bed/stool/padded/red, +/turf/simulated/floor/tiled/dark, +/area/horizon/service/bar/backroom) "tVG" = ( /obj/machinery/atmospherics/pipe/tank/air{ dir = 8 }, /turf/simulated/floor/plating, /area/shuttle/skipjack) -"tVI" = ( -/turf/simulated/wall/shuttle/unique/scc/mining{ - icon_state = "2,1" +"tVK" = ( +/obj/effect/floor_decal/corner_wide/yellow{ + dir = 5 }, -/area/shuttle/mining) +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/alarm/north, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/structure/platform, +/turf/simulated/floor/tiled, +/area/horizon/engineering/hallway/interior) +"tVN" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 9 + }, +/obj/structure/sign/directions/custodial{ + dir = 8; + pixel_x = -32; + pixel_y = 9 + }, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_1/central) "tVO" = ( /obj/machinery/atmospherics/pipe/simple/visible/red, /obj/structure/lattice/catwalk/indoor, /obj/machinery/atmospherics/pipe/simple/visible/fuel, /turf/space/dynamic, /area/horizon/exterior) +"tVP" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/starboard/far) +"tVW" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/corner_wide/green{ + dir = 6 + }, +/obj/structure/railing/mapped{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/hallway/upper) "tWb" = ( /turf/unsimulated/floor/rubber_carpet, /area/antag/jockey) @@ -139007,58 +139324,22 @@ }, /turf/unsimulated/floor/wood, /area/antag/mercenary) -"tWi" = ( +"tWl" = ( /obj/structure/cable/green{ - icon_state = "1-2" + icon_state = "4-8" }, -/obj/effect/floor_decal/corner/brown{ - dir = 6 +/obj/effect/floor_decal/corner/dark_green{ + dir = 10 }, +/obj/machinery/light/floor, +/obj/structure/railing/mapped, /turf/simulated/floor/tiled, -/area/operations/break_room) -"tWm" = ( -/obj/structure/window/shuttle/unique/scc/scout{ - icon_state = "5,5" - }, -/obj/structure/window/shuttle/unique/scc/scout/over{ - icon_state = "5,5" - }, -/turf/simulated/floor/plating, -/area/shuttle/canary) -"tWn" = ( -/obj/machinery/door/firedoor/multi_tile, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/airlock/multi_tile/glass{ - name = "Human Resources Lounge" - }, -/turf/simulated/floor/tiled, -/area/bridge/cciaroom/lounge) -"tWq" = ( -/obj/structure/table/standard, -/obj/random/loot{ - pixel_x = 2; - pixel_y = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/maintenance/wing/port/far) -"tWw" = ( -/obj/structure/table/standard, -/obj/item/paper_bin{ - pixel_y = 2 - }, -/obj/item/pen, -/turf/simulated/floor/carpet/purple, -/area/crew_quarters/heads/hor) -"tWx" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/table/stone/marble, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/kitchen) +/area/horizon/hallway/primary/deck_3/central) +"tWt" = ( +/obj/structure/bed/stool/chair/office/dark, +/obj/effect/floor_decal/corner/mauve/diagonal, +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/lab) "tWy" = ( /obj/structure/table/steel, /obj/item/anobattery{ @@ -139078,41 +139359,11 @@ pixel_y = 5 }, /turf/simulated/floor/tiled, -/area/outpost/research/anomaly_harvest) +/area/horizon/rnd/xenoarch/anomaly_harvest) "tWz" = ( /turf/unsimulated/wall/darkshuttlewall, /area/centcom/evac) -"tWA" = ( -/turf/simulated/wall, -/area/maintenance/substation/civilian_east) -"tWC" = ( -/obj/effect/floor_decal/corner/green/full{ - dir = 1 - }, -/obj/structure/sink{ - pixel_y = 28 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/structure/mirror{ - pixel_x = 27 - }, -/turf/simulated/floor/tiled/white, -/area/horizon/crew_quarters/cryo/washroom) -"tWQ" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/turf/simulated/floor/wood, -/area/journalistoffice) -"tWZ" = ( +"tWB" = ( /obj/effect/floor_decal/corner/dark_blue{ dir = 5 }, @@ -139133,36 +139384,74 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/bridge/controlroom) +/area/horizon/command/bridge/controlroom) +"tWF" = ( +/obj/structure/closet/crate, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/auxatmos) +"tWH" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/corner_wide/green{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/hallway) +"tWI" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/corner/dark_blue/diagonal, +/turf/simulated/floor/tiled/dark, +/area/horizon/security/checkpoint) +"tWK" = ( +/obj/structure/tank_wall/nitrous_oxide{ + density = 0; + icon_state = "h6"; + opacity = 0 + }, +/turf/simulated/floor/reinforced/n20, +/area/horizon/engineering/atmos/air) +"tWL" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor, +/area/horizon/maintenance/deck_3/aft/starboard/far) +"tWP" = ( +/turf/simulated/wall, +/area/horizon/operations/office) +"tWW" = ( +/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/storage_eva) +"tXa" = ( +/turf/simulated/floor/tiled/dark, +/area/horizon/rnd/xenoarch/atrium) "tXb" = ( /obj/effect/floor_decal/spline/plain/corner{ dir = 1 }, /turf/simulated/floor/exoplanet/barren/raskara, /area/centcom/shared_dream) -"tXe" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" +"tXi" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 }, -/obj/structure/bed/stool/chair/padded/black, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 4 - }, -/turf/simulated/floor/carpet, -/area/lawoffice/representative_two) -"tXk" = ( -/turf/simulated/wall/r_wall, -/area/lawoffice/consular_two) -"tXl" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/computer/guestpass{ - pixel_x = 32 - }, -/turf/simulated/floor/lino, -/area/horizon/crew_quarters/lounge/bar) +/turf/simulated/floor/reinforced/airless, +/area/horizon/engineering/reactor/indra/mainchamber) "tXm" = ( /obj/effect/floor_decal/corner_wide/paleblue{ dir = 5 @@ -139174,34 +139463,32 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/security/armoury) -"tXo" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/light/spot{ - dir = 8 - }, -/obj/effect/floor_decal/corner/dark_green{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/hangar/intrepid) -"tXp" = ( -/obj/structure/bed/handrail{ - dir = 4 - }, -/obj/structure/bed/stool/bar/padded/red{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark/full, -/area/shuttle/intrepid/junction_compartment) "tXr" = ( /obj/machinery/light{ dir = 8 }, /turf/simulated/floor/lino, /area/horizon/security/investigators_office) +"tXt" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/hidden/aux{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 8 + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/operations/starboard/amidships) "tXw" = ( /obj/machinery/door/airlock/centcom{ name = "Auxillary Cryogenics" @@ -139210,36 +139497,69 @@ icon_state = "dark_preview" }, /area/centcom/ferry) -"tXB" = ( -/turf/simulated/wall/r_wall, -/area/rnd/isolation_b) -"tXL" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ +"tXx" = ( +/obj/effect/floor_decal/corner/green/diagonal{ dir = 8 }, -/obj/machinery/embedded_controller/radio/airlock/airlock_controller{ - dir = 8; - pixel_x = 20 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/ward) +"tXC" = ( +/obj/structure/bed/stool/chair/office/light{ + dir = 8 }, -/obj/effect/map_effect/marker/airlock{ - frequency = 3002; - master_tag = "airlock_horizon_deck_2_port_1"; - name = "airlock_horizon_deck_2_port_1" +/obj/effect/floor_decal/spline/plain/lime{ + dir = 10 }, -/turf/simulated/floor, -/area/maintenance/wing/port/far) -"tXQ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/maintenance/wing/port/far) -"tXS" = ( -/obj/structure/sign/emergency/evacuation{ - dir = 8; - pixel_x = -32 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 }, -/turf/simulated/floor/tiled, -/area/hangar/operations) +/turf/simulated/floor/tiled/dark, +/area/horizon/operations/commissary) +"tXJ" = ( +/obj/structure/bed/stool/chair/padded/brown{ + dir = 1 + }, +/obj/effect/landmark/start{ + name = "Passenger" + }, +/turf/simulated/floor/carpet/art, +/area/horizon/crew/lounge) +"tXP" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/maintenance{ + dir = 4; + name = "Chaplain Office's Maintenance"; + req_access = list(22) + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/full, +/area/horizon/service/chapel/office) +"tXV" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/closet/secure_closet/miner, +/turf/simulated/floor/tiled/dark, +/area/horizon/operations/mining_main/eva) +"tXX" = ( +/obj/machinery/conveyor{ + dir = 8 + }, +/obj/structure/railing/mapped{ + dir = 8 + }, +/turf/simulated/floor/carpet/rubber, +/area/horizon/crew/fitness/gym) "tYb" = ( /obj/machinery/door/airlock/glass_centcom{ dir = 4; @@ -139250,6 +139570,29 @@ icon_state = "dark_preview" }, /area/centcom/control) +"tYd" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/floor_decal/corner/dark_green{ + dir = 6 + }, +/obj/machinery/vending/cola, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled, +/area/horizon/security/checkpoint2) +"tYe" = ( +/obj/effect/map_effect/marker/airlock/shuttle{ + cycle_to_external_air = 1; + master_tag = "airlock_shuttle_intrepid"; + name = "airlock_shuttle_intrepid"; + req_one_access = null; + shuttle_tag = "Intrepid" + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/shuttle/intrepid/main_compartment) "tYg" = ( /obj/effect/floor_decal/industrial/warning{ dir = 1 @@ -139260,40 +139603,20 @@ }, /turf/simulated/floor/plating, /area/merchant_station/warehouse) -"tYl" = ( -/obj/machinery/light/small/emergency{ - dir = 8 +"tYn" = ( +/obj/structure/cable/green{ + icon_state = "0-2" }, -/obj/effect/map_effect/marker/airlock{ - frequency = 1001; - master_tag = "airlock_horizon_deck_3_aft_1"; - name = "airlock_horizon_deck_3_aft_1" +/obj/machinery/power/apc/low/east, +/obj/machinery/power/sensor{ + name = "Powernet Sensor - Deck 2 Engineering Subgrid"; + name_tag = "Deck 2 Engineering Subgrid" }, -/turf/simulated/floor, -/area/horizon/maintenance/deck_three/aft/starboard) -"tYm" = ( -/obj/machinery/door/airlock/external{ - dir = 4; - frequency = 1380; - icon_state = "door_locked"; - id_tag = "escape_pod_4_hatch"; - locked = 1; - name = "Escape Pod Hatch"; - req_access = list(13) +/obj/machinery/light/small{ + dir = 1 }, -/turf/simulated/floor/tiled, -/area/shuttle/escape_pod/pod4) -"tYp" = ( -/obj/structure/tank_wall/phoron{ - density = 0; - icon_state = "ph11"; - opacity = 0 - }, -/obj/machinery/atmospherics/unary/vent_pump/siphon/on/atmos{ - id_tag = "ph_out_starboardthruster" - }, -/turf/simulated/floor/reinforced/phoron, -/area/engineering/atmos) +/turf/simulated/floor/plating, +/area/horizon/maintenance/substation/engineering) "tYr" = ( /obj/structure/closet/crate/drop, /obj/item/pickaxe/diamonddrill{ @@ -139309,12 +139632,6 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled/dark/full, /area/shuttle/mercenary) -"tYw" = ( -/obj/structure/shuttle_part/scc_space_ship{ - icon_state = "d2-2-f" - }, -/turf/simulated/wall, -/area/maintenance/wing/port/far) "tYD" = ( /obj/structure/lattice/catwalk/indoor, /obj/machinery/atmospherics/pipe/simple/visible/green{ @@ -139325,19 +139642,6 @@ }, /turf/space/dynamic, /area/horizon/exterior) -"tYE" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/carpet/purple, -/area/crew_quarters/heads/hor) -"tYJ" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/structure/trash_pile, -/turf/simulated/floor/plating, -/area/maintenance/wing/port) "tYM" = ( /obj/machinery/papershredder, /obj/structure/sign/poster{ @@ -139345,66 +139649,57 @@ }, /turf/unsimulated/floor, /area/centcom/control) -"tYN" = ( -/obj/item/device/radio/intercom/south, -/obj/effect/floor_decal/corner/dark_green{ - dir = 10 - }, -/obj/machinery/camera/network/first_deck{ - c_tag = "First Deck - Central Stairwell"; - dir = 1 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/horizon/stairwell/central) -"tYO" = ( -/obj/structure/table/glass{ - table_reinf = "glass" - }, -/obj/effect/floor_decal/corner/paleblue/diagonal, -/obj/item/modular_computer/laptop/preset/medical/cmo{ - pixel_y = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/heads/cmo) -"tYP" = ( -/obj/structure/bed/stool/chair{ - dir = 1 - }, -/obj/machinery/power/apc/south{ - is_critical = 1 - }, -/obj/effect/floor_decal/corner_wide/green{ - dir = 10 - }, -/obj/structure/cable/green, -/turf/simulated/floor/tiled/white, -/area/hallway/medical) +"tYQ" = ( +/obj/structure/anomaly_container, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/reinforced, +/area/horizon/rnd/xenoarch/isolation_a) "tYT" = ( /obj/structure/flora/ausbushes/brflowers, /turf/simulated/floor/holofloor/grass, /area/horizon/holodeck/source_wildlife) -"tZc" = ( +"tYW" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 + dir = 4 }, -/obj/effect/floor_decal/corner/dark_green{ - dir = 10 +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 }, -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) +/obj/machinery/door/airlock/multi_tile/glass{ + dir = 2; + name = "Deck 3 Starboard Docks" + }, +/turf/simulated/floor/tiled/full, +/area/horizon/hallway/primary/deck_3/port/docks) +"tYZ" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/blast/shutters{ + density = 0; + icon_state = "shutter0"; + id = "LCKDshutters"; + name = "Medical Lockdown Shutters"; + opacity = 0 + }, +/obj/machinery/door/airlock/medical{ + dir = 1; + name = "Recovery"; + req_access = list(5); + id_tag = "RecoveryWard" + }, +/obj/machinery/door/firedoor, +/obj/effect/map_effect/door_helper/unres{ + dir = 1 + }, +/turf/simulated/floor/tiled/full, +/area/horizon/medical/ward) "tZe" = ( /obj/effect/floor_decal/corner/red{ dir = 9 @@ -139415,39 +139710,39 @@ /obj/effect/floor_decal/ss13/odin4, /turf/unsimulated/floor, /area/centcom/evac) -"tZl" = ( -/obj/structure/table/standard, -/obj/item/storage/box/fancy/vials, -/obj/item/reagent_containers/dropper/electronic_pipette, -/obj/effect/floor_decal/corner/mauve/full, -/obj/item/reagent_containers/glass/beaker/large, -/obj/machinery/alarm/south, -/turf/simulated/floor/tiled/white, -/area/rnd/chemistry) +"tZj" = ( +/obj/effect/floor_decal/corner/red/diagonal, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/lino, +/area/horizon/service/cafeteria) +"tZk" = ( +/obj/structure/shuttle_part/scc/mining{ + icon_state = "7,2" + }, +/turf/simulated/floor/plating, +/area/horizon/shuttle/mining) +"tZm" = ( +/turf/simulated/wall, +/area/horizon/rnd/lab) "tZn" = ( /obj/structure/lattice, /obj/effect/map_effect/perma_light/starlight, /turf/space/dynamic, /area/template_noop) -"tZs" = ( -/obj/structure/table/steel, -/obj/item/material/ashtray/bronze{ - pixel_x = -8; - pixel_y = -5 +"tZo" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/railing/mapped{ + dir = 8 }, -/obj/random/pottedplant_small{ - pixel_x = 9; - pixel_y = 3 - }, -/obj/machinery/button/remote/blast_door{ - dir = 1; - id = "shutters_deck3_engibreakwindows"; - name = "Viewing Shutters"; - pixel_x = -7; - pixel_y = 7 - }, -/turf/simulated/floor/tiled/dark, -/area/engineering/break_room) +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_3/central) +"tZu" = ( +/turf/simulated/wall, +/area/horizon/crew/washroom/deck_3) "tZv" = ( /obj/effect/floor_decal/spline/plain{ dir = 6 @@ -139473,52 +139768,100 @@ }, /turf/unsimulated/floor/plating, /area/centcom/legion/hangar5) -"tZK" = ( +"tZB" = ( +/obj/structure/table/standard, +/obj/machinery/camera/network/engineering{ + c_tag = "Engineering - Locker Room"; + dir = 4 + }, +/obj/item/hoist_kit, +/obj/item/ladder_mobile, +/obj/effect/floor_decal/corner/yellow{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/horizon/engineering/locker_room) +"tZG" = ( +/obj/effect/floor_decal/corner_wide/black{ + dir = 10 + }, +/obj/effect/floor_decal/industrial/warning, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 1 + dir = 8 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - icon_state = "1-2" +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 }, +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/atmos/propulsion) +"tZH" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/horizon/maintenance/deck_2/wing/port/nacelle) +"tZI" = ( /obj/effect/floor_decal/corner/dark_blue{ dir = 5 }, +/obj/structure/table/reinforced/steel, +/obj/machinery/photocopier/faxmachine{ + anchored = 0; + department = "SCCV Horizon Bridge"; + pixel_y = 4 + }, +/turf/simulated/floor/tiled, +/area/horizon/command/bridge/controlroom) +"tZL" = ( +/obj/structure/closet/walllocker/firecloset{ + pixel_x = 32 + }, +/obj/effect/floor_decal/industrial/outline/firefighting_closet, /turf/simulated/floor/tiled/dark, -/area/teleporter) -"tZM" = ( -/obj/effect/floor_decal/corner/green/diagonal, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ +/area/horizon/hangar/auxiliary) +"tZO" = ( +/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/horizon/hangar/auxiliary) +"tZP" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/corner_wide/green{ dir = 10 }, -/obj/structure/cable/green{ - icon_state = "2-8" - }, /turf/simulated/floor/tiled/white, -/area/medical/ward/isolation) +/area/horizon/medical/hallway/upper) "tZQ" = ( /obj/structure/sign/securearea, /turf/unsimulated/wall/darkshuttlewall, /area/centcom/specops) -"tZV" = ( -/obj/structure/lattice/catwalk, -/obj/structure/railing/mapped{ - dir = 8 +"tZT" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 }, -/obj/structure/railing/mapped, -/turf/simulated/open/airless, -/area/template_noop) -"uab" = ( -/obj/machinery/alarm/south{ - req_one_access = list(11, 24, 47, 65) +/obj/random/junk, +/turf/simulated/floor/tiled/dark, +/area/horizon/maintenance/deck_2/wing/starboard/nacelle) +"tZU" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 9 }, -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/structure/table/stone/marble, +/obj/machinery/disposal/small/east, +/obj/structure/disposalpipe/trunk, /turf/simulated/floor/tiled/white, -/area/shuttle/intrepid/buffet) +/area/horizon/rnd/xenological) "uac" = ( /obj/structure/cable/green{ icon_state = "0-2" @@ -139532,19 +139875,23 @@ /obj/machinery/power/apc/low/east, /turf/simulated/floor/tiled, /area/horizon/security/office) +"uad" = ( +/obj/effect/floor_decal/spline/fancy/wood/corner, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/wood, +/area/horizon/command/bridge/cciaroom) "uaf" = ( /obj/effect/floor_decal/industrial/warning{ dir = 10 }, /turf/unsimulated/floor/rubber_carpet, /area/antag/jockey) -"uah" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/engineering/aft_airlock) "uai" = ( /obj/effect/floor_decal/corner/paleblue{ dir = 10 @@ -139554,100 +139901,115 @@ }, /turf/unsimulated/floor, /area/centcom/holding) -"uap" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ +"uan" = ( +/obj/machinery/newscaster/north, +/obj/effect/floor_decal/spline/plain{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/structure/cable{ - icon_state = "2-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/wing/port) -"uau" = ( -/turf/simulated/wall/r_wall, -/area/horizon/grauwolf) -"uax" = ( -/obj/effect/floor_decal/corner_wide/yellow{ - dir = 10 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/turf/simulated/floor/tiled, -/area/engineering/engine_room/rust) -"uaD" = ( -/obj/structure/shuttle_part/scc/scout{ - icon_state = "7,3" - }, -/turf/simulated/floor/plating, -/area/shuttle/canary) -"uaJ" = ( -/obj/structure/bed/stool/chair/office/bridge{ - dir = 4 - }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 6 - }, -/obj/item/device/radio/intercom/east{ - pixel_y = 36 - }, -/obj/machinery/keycard_auth{ - pixel_x = 31; - pixel_y = 26 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge/aibunker) -"uaK" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 5 - }, -/obj/effect/floor_decal/spline/plain/green, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ +/obj/structure/engineer_maintenance/electric{ dir = 8 }, -/turf/simulated/floor/tiled, -/area/horizon/hydroponics/lower) -"uaL" = ( +/obj/structure/engineer_maintenance/electric{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/hallway/primary/deck_2/central) +"uaw" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 5 + }, +/obj/machinery/alarm/north, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/horizon/service/chapel/main) +"uaA" = ( +/obj/structure/morgue, /obj/effect/floor_decal/spline/plain{ + dir = 8 + }, +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/structure/platform{ + dir = 4 + }, +/turf/simulated/floor/tiled/freezer{ + name = "cooled tiles"; + temperature = 278.15 + }, +/area/horizon/medical/morgue) +"uaB" = ( +/obj/effect/floor_decal/industrial/warning{ dir = 6 }, -/obj/structure/table/reinforced/steel, -/obj/random/hardhat, -/turf/simulated/floor/carpet/rubber, -/area/engineering/bluespace_drive/monitoring) -"uaM" = ( +/obj/machinery/meter{ + name = "Air Reserve" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/horizon/shuttle/intrepid/engineering) +"uaE" = ( +/obj/machinery/light{ + dir = 8 + }, /obj/effect/floor_decal/corner/brown{ - dir = 6 + dir = 9 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/operations/mining_main/eva) +"uaH" = ( +/obj/structure/table/standard, +/obj/item/stack/packageWrap{ + pixel_y = -8 + }, +/obj/item/device/destTagger{ + pixel_y = 6; + pixel_x = -4 }, /turf/simulated/floor/tiled, -/area/operations/loading) +/area/horizon/engineering/lobby) +"uaN" = ( +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled/dark, +/area/horizon/maintenance/deck_2/wing/port/nacelle) "uaR" = ( /obj/effect/floor_decal/industrial/warning, /turf/unsimulated/floor/plating, /area/antag/mercenary) -"uaU" = ( +"uaS" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/computer/cryopod/living_quarters{ + pixel_y = 32 + }, +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/effect/landmark/latejoin, +/turf/simulated/floor/tiled, +/area/horizon/crew/resdeck/living_quarters_lift) +"uaV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 9 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 +/obj/structure/cable/green{ + icon_state = "1-8" }, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 1 +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 10 }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/maintenance/hangar/starboard) +/turf/simulated/floor/wood, +/area/horizon/service/cafeteria) "uaY" = ( /obj/effect/floor_decal/corner/blue/full, /obj/machinery/firealarm/south, @@ -139658,32 +140020,6 @@ }, /turf/simulated/floor/tiled/white, /area/horizon/security/autopsy_laboratory) -"ubb" = ( -/turf/simulated/floor/lino, -/area/chapel/main) -"ubg" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/firealarm/north, -/obj/effect/floor_decal/corner/brown{ - dir = 5 - }, -/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 @@ -139691,23 +140027,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden, /turf/simulated/floor/tiled/dark, /area/shuttle/mercenary) -"ubq" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/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, @@ -139719,15 +140038,42 @@ /obj/structure/window/shuttle/scc_space_ship/cardinal, /turf/simulated/floor/plating, /area/shuttle/merchant) -"ubC" = ( -/obj/machinery/door/airlock/maintenance{ - dir = 1; - name = "Research and Development Maintenance"; - req_access = list(7) +"ubx" = ( +/obj/machinery/status_display/supply_display{ + pixel_y = 32 }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/dark, -/area/rnd/lab) +/obj/effect/floor_decal/corner/brown{ + dir = 5 + }, +/obj/structure/filingcabinet/filingcabinet{ + pixel_x = -9; + pixel_y = 1 + }, +/obj/machinery/papershredder{ + pixel_x = 7 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled, +/area/horizon/operations/office) +"ubz" = ( +/obj/effect/floor_decal/spline/fancy/wood/cee{ + dir = 8 + }, +/obj/structure/filingcabinet/chestdrawer{ + pixel_x = 8 + }, +/obj/structure/filingcabinet{ + pixel_x = -8 + }, +/turf/simulated/floor/wood, +/area/horizon/repoffice/representative_two) +"ubA" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/alarm/north, +/turf/simulated/floor/tiled/freezer, +/area/horizon/medical/washroom) "ubD" = ( /obj/effect/floor_decal/industrial/warning{ dir = 4 @@ -139745,19 +140091,23 @@ /obj/effect/decal/cleanable/dirt, /turf/unsimulated/floor, /area/antag/jockey) -"ubJ" = ( -/obj/effect/floor_decal/corner/dark_green{ +"ubG" = ( +/obj/machinery/light/small/emergency{ + dir = 1 + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/aft) +"ubH" = ( +/obj/effect/floor_decal/spline/fancy/wood, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/port) -"ubO" = ( -/obj/effect/floor_decal/corner/mauve{ - dir = 9 +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 }, -/turf/simulated/floor/tiled, -/area/rnd/hallway/secondary) +/turf/simulated/floor/wood, +/area/horizon/service/dining_hall) "ubQ" = ( /obj/structure/closet/hazmat/security, /obj/effect/floor_decal/corner/dark_blue/full{ @@ -139784,76 +140134,97 @@ name = "coast" }, /area/horizon/holodeck/source_konyang) -"ucb" = ( -/obj/structure/cable{ - icon_state = "4-8" +"ubV" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 9 }, +/turf/simulated/floor/tiled/dark, +/area/horizon/maintenance/deck_2/wing/port/nacelle) +"ubZ" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/camera/network/reactor{ + c_tag = "Engineering - Supermatter Reactor 4" + }, +/obj/structure/extinguisher_cabinet/north, +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/canister/nitrogen/prechilled, +/turf/simulated/floor/plating, +/area/horizon/engineering/reactor/supermatter/mainchamber) +"ucf" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 5 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_2/central) +"uch" = ( /obj/machinery/light, +/obj/structure/sign/directions/dock{ + dir = 4; + pixel_y = -32 + }, /obj/effect/floor_decal/corner/dark_green{ dir = 10 }, -/obj/machinery/atm{ - pixel_y = -10 - }, /turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/central) -"uck" = ( -/obj/machinery/portable_atmospherics/canister/nitrogen/prechilled, -/obj/machinery/atmospherics/portables_connector, -/obj/machinery/light{ +/area/horizon/hallway/primary/deck_3/central) +"uco" = ( +/obj/structure/window/reinforced{ dir = 1 }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/table/reinforced/steel, +/obj/item/device/flashlight/lamp, +/turf/simulated/floor/tiled/dark, +/area/horizon/rnd/xenoarch/atrium) +"ucq" = ( +/turf/simulated/wall/shuttle/scc_space_ship/cardinal, +/area/horizon/engineering/atmos/air) +"uct" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 1 + }, +/obj/structure/table/reinforced/steel, +/obj/machinery/button/remote/blast_door{ + desc = "A remote control-switch for the engine control room blast doors."; + dir = 1; + id = "EngineBlast"; + name = "Supermatter Reactor Monitoring Room Blast Doors"; + pixel_y = -3; + req_one_access = list(11,24) + }, +/obj/machinery/button/remote/emitter{ + desc = "A remote control-switch for the supermatter reactor's emitter."; + dir = 1; + id = "ReactorEmitter"; + name = "Supermatter Reactor Emitter"; + pixel_x = 6; + pixel_y = 7; + req_one_access = list(11,24) + }, +/obj/machinery/button/remote/blast_door{ + desc = "A remote control-switch for the engine charging port."; + dir = 1; + id = "SupermatterPort"; + name = "Supermatter Reactor Crystal Viewing Blast Doors"; + pixel_x = -6; + pixel_y = 7; + req_one_access = list(11,24) + }, /turf/simulated/floor/carpet/rubber, -/area/server) -"ucp" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/corner_wide/green/full{ - dir = 1 - }, -/obj/effect/floor_decal/sign/w, -/turf/simulated/floor/tiled/white, -/area/hallway/medical) -"ucw" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/aux{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/item/device/radio/intercom/south, -/turf/simulated/floor/tiled/dark, -/area/bridge/aibunker) -"ucx" = ( -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/central) -"ucA" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/shutters/open{ - dir = 2; - id = "seconddeckdockext"; - name = "Security Checkpoint External Shutter" - }, -/turf/simulated/floor/tiled/dark/full, -/area/security/checkpoint2) -"ucG" = ( +/area/horizon/engineering/reactor/supermatter/monitoring) +"ucz" = ( +/obj/random/loot, /obj/effect/floor_decal/industrial/warning{ - dir = 6 + dir = 4 }, +/obj/structure/closet, /turf/simulated/floor/plating, -/area/maintenance/hangar/port) +/area/horizon/maintenance/deck_2/wing/port/far) "ucJ" = ( /obj/effect/floor_decal/corner/grey/diagonal{ dir = 4 @@ -139870,14 +140241,6 @@ }, /turf/unsimulated/floor, /area/centcom/holding) -"ucL" = ( -/obj/structure/table/standard, -/obj/structure/window/reinforced, -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/machinery/firealarm/east, -/obj/structure/roller_rack/three, -/turf/simulated/floor/tiled/white, -/area/medical/reception) "ucM" = ( /obj/effect/floor_decal/corner/paleblue{ dir = 6 @@ -139898,12 +140261,34 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/security/investigators_office) -"ucP" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/universal{ +"ucO" = ( +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lime{ + dir = 9 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/computer/shuttle_control/lift{ + pixel_x = -3; + pixel_y = 23; + shuttle_tag = "Morgue Lift" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/horizon/medical/morgue) +"ucQ" = ( +/obj/random/loot, +/obj/structure/table/rack, +/obj/effect/floor_decal/industrial/warning{ dir = 4 }, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology/xenoflora) +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/port) "ucR" = ( /obj/effect/floor_decal/corner/dark_blue, /obj/machinery/flasher{ @@ -139915,161 +140300,179 @@ }, /turf/simulated/floor/tiled, /area/horizon/security/brig) -"ucS" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/bed/stool/chair{ +"ucU" = ( +/obj/structure/platform/cutout{ dir = 8 }, -/turf/simulated/floor/tiled, -/area/operations/break_room) -"uda" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/effect/floor_decal/industrial/warning{ +/obj/structure/platform_stairs/full/east_west_cap, +/obj/structure/platform{ + dir = 1 + }, +/obj/structure/railing/mapped, +/turf/simulated/floor/tiled/dark, +/area/horizon/command/bridge/controlroom) +"ucW" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/obj/structure/sink{ - dir = 4; - pixel_x = 12 - }, -/obj/machinery/shower{ - dir = 8; - pixel_y = 1 - }, -/turf/simulated/floor/tiled/full, -/area/engineering/engine_airlock) -"udc" = ( -/obj/machinery/disposal/small/north, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/structure/sign/flag/idris{ - pixel_y = -32 - }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 6 - }, -/turf/simulated/floor/wood, -/area/horizon/cafeteria) -"udh" = ( -/obj/effect/floor_decal/corner_wide/green{ - dir = 6 - }, -/obj/structure/closet/crate, -/obj/item/cane/crutch, -/obj/item/cane/crutch, -/obj/item/cane/crutch, -/obj/item/cane/crutch, -/obj/item/cane, -/obj/item/cane, -/obj/item/storage/box/rxglasses, -/turf/simulated/floor/tiled/white, -/area/medical/main_storage) -"udq" = ( -/obj/effect/floor_decal/corner/dark_blue{ +/obj/effect/floor_decal/corner/brown{ dir = 5 }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/starboard/docks) -"udv" = ( -/obj/effect/floor_decal/corner/brown{ - dir = 6 - }, -/obj/effect/floor_decal/spline/plain/black{ - dir = 6 - }, -/obj/structure/bed/stool/chair/shuttle/double{ - pixel_x = -8; - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/intrepid/main_compartment) -"udw" = ( -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 4 - }, -/obj/structure/railing/mapped{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"udA" = ( -/turf/simulated/wall, -/area/storage/shields) -"udC" = ( -/obj/effect/floor_decal/corner/dark_green/full{ - dir = 8 - }, -/obj/machinery/disposal/small/south, -/obj/structure/disposalpipe/trunk, -/turf/simulated/floor/tiled, -/area/hangar/intrepid) -"udS" = ( -/obj/structure/table/reinforced/glass, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 1 - }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor/wood, -/area/rnd/conference) -"udV" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/corner/brown{ - dir = 9 - }, +/obj/item/device/radio/intercom/north, /obj/structure/cable/green{ icon_state = "2-4" }, -/obj/structure/railing/mapped{ - dir = 8 - }, /turf/simulated/floor/tiled, -/area/operations/lobby) -"udW" = ( -/obj/effect/floor_decal/corner/dark_green/full, -/obj/machinery/firealarm/west, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/structure/disposalpipe/trunk{ +/area/horizon/hangar/operations) +"udd" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance_hatch{ dir = 4 }, -/obj/machinery/disposal, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/port) -"udX" = ( -/obj/effect/floor_decal/corner/mauve{ - dir = 10 +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/port/far) +"udk" = ( +/obj/structure/cable/green{ + icon_state = "1-2" }, -/turf/simulated/floor/tiled, -/area/rnd/hallway) -"uec" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 10 - }, -/turf/simulated/floor, -/area/maintenance/wing/port/far) -"ued" = ( -/obj/machinery/light/small/emergency{ - dir = 4 +/obj/effect/floor_decal/corner/dark_green{ + dir = 5 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - icon_state = "2-8" +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 }, +/turf/simulated/floor/tiled, +/area/horizon/stairwell/port/deck_3) +"uds" = ( +/obj/structure/table/wood, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/item/pen{ + pixel_x = 6 + }, +/obj/item/paper_bin{ + pixel_x = 7 + }, +/turf/simulated/floor/carpet, +/area/horizon/repoffice/representative_one) +"udt" = ( +/obj/structure/cable/green{ + 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/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/horizon/hangar/intrepid) +"udz" = ( +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/structure/railing/mapped, +/obj/structure/bed/stool/chair/sofa/right/purple{ + dir = 4 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 10 + }, +/turf/simulated/floor/wood, +/area/horizon/rnd/hallway/secondary) +"udG" = ( +/obj/machinery/hologram/holopad/long_range, +/turf/simulated/floor/tiled, +/area/horizon/operations/office) +"udI" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/service/port) +"udJ" = ( +/obj/effect/floor_decal/corner_wide/black{ + dir = 9 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/atmospherics/binary/pump/high_power{ + dir = 4; + name = "Phoron to Burn Mix" + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/atmos/propulsion/starboard) +"udL" = ( +/obj/effect/floor_decal/corner/purple/full{ + dir = 4 + }, +/obj/machinery/alarm/east, +/obj/structure/table/steel, +/obj/item/storage/toolbox/mechanical, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/structure/reagent_dispensers/peppertank/spacecleaner{ + pixel_y = -32 + }, +/obj/machinery/camera/network/service{ + c_tag = "Service - Auxiliary Custodial Closet"; + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/horizon/service/custodial/auxiliary) +"udQ" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/structure/closet, +/obj/random/colored_jumpsuit, +/obj/item/clothing/under/color/black, +/obj/item/clothing/gloves/black, /turf/simulated/floor, -/area/maintenance/engineering_ladder) +/area/horizon/maintenance/deck_3/aft/port/far) +"udR" = ( +/obj/effect/map_effect/window_spawner/full/borosilicate/reinforced/firedoor, +/obj/machinery/door/blast/regular/open{ + dir = 4; + id = "r-ust_monitoring_blast"; + name = "INDRA Monitoring Blast Doors" + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/reactor/indra/monitoring) +"udY" = ( +/obj/machinery/light/small{ + must_start_working = 1 + }, +/obj/effect/floor_decal/corner/dark_blue{ + dir = 8 + }, +/obj/effect/floor_decal/corner/yellow, +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/atmos/turbine) "uee" = ( /obj/effect/decal/fake_object/light_source/invisible{ light_color = "#64C864"; @@ -140079,21 +140482,21 @@ }, /turf/simulated/floor/beach/water/alt, /area/centcom/shared_dream) -"ueg" = ( -/obj/structure/closet/crate, -/obj/structure/railing/mapped{ +"uef" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/random/loot, -/obj/effect/decal/cleanable/cobweb2{ - icon_state = "cobweb1" +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 }, -/obj/structure/railing/mapped{ - density = 0; - icon_state = "railing0-0" +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 }, -/turf/simulated/floor/plating, -/area/maintenance/operations) +/turf/simulated/floor/tiled/full, +/area/horizon/engineering/hallway/fore) "ueh" = ( /obj/effect/floor_decal/corner/red{ dir = 9 @@ -140104,67 +140507,100 @@ }, /turf/unsimulated/floor, /area/centcom/evac) -"uei" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 4 +"uem" = ( +/obj/structure/cable/green{ + icon_state = "1-2" }, -/obj/structure/bed/stool/chair/padded/beige{ +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/airlock/glass_engineering{ + dir = 1; + name = "Supermatter Reactor Monitoring Room"; + req_one_access = list(11,24) + }, +/obj/machinery/door/firedoor, +/obj/effect/map_effect/door_helper/unres{ dir = 1 }, -/turf/simulated/floor/wood, -/area/bridge/minibar) -"uek" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/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 - }, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/central) +/turf/simulated/floor/tiled/full, +/area/horizon/engineering/reactor/supermatter/monitoring) "uen" = ( /obj/effect/floor_decal/corner{ dir = 1 }, /turf/simulated/floor/holofloor/tiled, /area/template_noop) -"uez" = ( -/obj/machinery/atmospherics/pipe/simple/visible/black, -/obj/machinery/light{ - dir = 8 +"ueu" = ( +/obj/structure/cable/green{ + icon_state = "1-2" }, -/turf/simulated/floor/plating, -/area/engineering/atmos/air) -"ueG" = ( -/obj/effect/floor_decal/corner/mauve{ +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/service{ + dir = 1; + id_tag = "chapdoor"; + name = "Chaplain's Office"; + req_access = list(22) + }, +/obj/effect/map_effect/door_helper/unres, +/turf/simulated/floor/tiled/dark, +/area/horizon/service/chapel/office) +"uev" = ( +/obj/effect/floor_decal/corner/dark_blue{ dir = 9 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ +/obj/effect/floor_decal/corner/dark_blue{ + dir = 6 + }, +/obj/structure/railing/mapped{ 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/machinery/alarm/west, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1; + level = 2 }, /turf/simulated/floor/tiled, -/area/rnd/hallway/secondary) -"ueH" = ( -/obj/effect/floor_decal/corner/black{ - dir = 1 +/area/horizon/stairwell/bridge) +"ueC" = ( +/obj/structure/bed/stool/bar/padded/red, +/turf/simulated/floor/wood, +/area/horizon/maintenance/deck_2/wing/port) +"ueI" = ( +/obj/effect/floor_decal/corner_wide/purple{ + dir = 9 }, -/turf/simulated/floor/tiled/dark, -/area/hangar/intrepid) +/obj/effect/floor_decal/corner_wide/purple{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/visible/yellow{ + dir = 8 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/structure/platform_deco{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/xenoarch/atrium) +"ueJ" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/obj/machinery/atmospherics/unary/outlet_injector{ + frequency = 1441; + id = "fusion_injector_air"; + injecting = 1; + use_power = 1 + }, +/obj/effect/floor_decal/industrial/outline/red, +/turf/simulated/floor/reinforced/airless, +/area/horizon/engineering/reactor/indra/mainchamber) "ueO" = ( /obj/structure/window/reinforced/holowindow/disappearing{ dir = 4 @@ -140174,44 +140610,28 @@ }, /turf/simulated/floor/holofloor/tiled, /area/horizon/holodeck/source_thunderdomecourt) -"ufa" = ( -/obj/effect/floor_decal/corner_wide/blue, -/obj/effect/floor_decal/corner_wide/yellow{ - dir = 8 +"ueQ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + icon_state = "1-2" }, -/obj/effect/floor_decal/spline/plain, -/obj/machinery/atmospherics/pipe/simple/hidden/universal{ +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/full, +/area/horizon/operations/office_aux) +"ueS" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4 }, -/obj/machinery/meter, -/turf/simulated/floor/tiled, -/area/engineering/atmos/storage) -"ufd" = ( /obj/structure/cable/green{ - icon_state = "0-8" - }, -/obj/machinery/power/apc/low/north, -/obj/effect/floor_decal/corner/dark_green/full{ - dir = 1 - }, -/obj/effect/floor_decal/spline/plain/red, -/obj/random/pottedplant, -/obj/structure/sink/kitchen{ - dir = 8; - name = "sink"; - pixel_x = 19 - }, -/turf/simulated/floor/tiled, -/area/horizon/hydroponics/lower) -"uff" = ( -/obj/effect/floor_decal/corner/lime{ - dir = 10 + icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 + dir = 10 }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora) +/turf/simulated/floor/tiled/dark, +/area/horizon/stairwell/bridge/deck_2) "ufg" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -140228,17 +140648,6 @@ }, /turf/simulated/floor/tiled, /area/horizon/security/investigations_hallway) -"ufi" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/sink{ - dir = 4; - pixel_x = 5 - }, -/obj/structure/railing/mapped, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenoarch_atrium) "ufk" = ( /obj/structure/sign/directions/civ{ dir = 4; @@ -140247,17 +140656,6 @@ }, /turf/unsimulated/floor/plating, /area/antag/mercenary) -"ufp" = ( -/obj/effect/floor_decal/corner/dark_blue/diagonal, -/obj/machinery/disposal/small/south, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/machinery/camera/network/security{ - c_tag = "Security - First Deck Checkpoin" - }, -/turf/simulated/floor/tiled/dark, -/area/security/checkpoint) "ufq" = ( /obj/machinery/door/airlock/external{ dir = 1; @@ -140274,15 +140672,30 @@ /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled, /area/shuttle/merchant) -"ufy" = ( -/obj/machinery/chemical_dispenser/full{ - dir = 1 +"uft" = ( +/obj/machinery/embedded_controller/radio/simple_docking_controller/escape_pod_berth{ + dir = 4; + frequency = 1380; + id_tag = "escape_pod_3_berth"; + pixel_x = -25; + tag_door = "escape_pod_3_berth_hatch" }, -/obj/effect/floor_decal/spline/plain{ - dir = 5 +/turf/simulated/floor/tiled, +/area/horizon/hangar/operations) +"ufB" = ( +/obj/machinery/portable_atmospherics/powered/pump/filled, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/alarm/west, +/turf/simulated/floor/tiled, +/area/horizon/hangar/operations) +"ufE" = ( +/obj/effect/floor_decal/corner/grey/diagonal{ + dir = 8 }, -/turf/simulated/floor/carpet/rubber, -/area/medical/pharmacy) +/obj/structure/extinguisher_cabinet/north, +/obj/machinery/appliance/cooker/oven, +/turf/simulated/floor/tiled/white, +/area/horizon/service/cafeteria) "ufG" = ( /obj/structure/bed/stool/chair/padded/black{ dir = 4 @@ -140292,6 +140705,21 @@ }, /turf/unsimulated/floor, /area/centcom/holding) +"ufH" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/effect/floor_decal/corner/purple{ + dir = 9 + }, +/obj/item/modular_computer/telescreen/preset/trashcompactor{ + pixel_x = -32 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/green{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/service/custodial/disposals/deck_1) "ufK" = ( /obj/effect/floor_decal/corner/dark_blue{ dir = 10 @@ -140308,16 +140736,6 @@ }, /turf/simulated/floor/tiled, /area/horizon/security/brig) -"ufX" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 8 - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 4 - }, -/obj/structure/flora/ausbushes/brflowers, -/turf/simulated/floor/grass/no_edge, -/area/horizon/hallway/deck_three/primary/port) "ufY" = ( /obj/structure/table/wood, /obj/effect/decal/fake_object{ @@ -140349,56 +140767,85 @@ }, /turf/unsimulated/floor/rubber_carpet, /area/antag/jockey) -"uga" = ( -/obj/structure/cable/green{ - icon_state = "1-2" +"ufZ" = ( +/obj/effect/floor_decal/spline/fancy/wood/cee{ + dir = 1 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/firealarm/east, -/obj/effect/floor_decal/spline/plain{ +/obj/structure/railing/mapped{ dir = 4 }, -/turf/simulated/floor/carpet/rubber, -/area/engineering/bluespace_drive/monitoring) +/obj/structure/bed/stool/chair/padded/black{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/horizon/hallway/primary/deck_2/central) +"ugh" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/dark, +/area/horizon/shuttle/intrepid/main_compartment) "ugk" = ( /obj/structure/sign/vacuum{ pixel_x = -32 }, /turf/unsimulated/floor/plating, /area/centcom/ferry) -"ugm" = ( -/obj/effect/floor_decal/industrial/warning/corner{ +"ugq" = ( +/obj/structure/bed/stool/chair/padded/red{ + dir = 8 + }, +/obj/machinery/alarm/east{ + req_one_access = list(24,11,55) + }, +/turf/simulated/floor/carpet/red, +/area/horizon/service/dining_hall) +"ugs" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 10 + }, +/obj/machinery/camera/network/mining{ + c_tag = "Mining - Suit Storage"; + dir = 1 + }, +/obj/structure/table/standard, +/obj/item/stack/rods/full{ + pixel_y = 7 + }, +/obj/item/storage/toolbox/mechanical{ + pixel_y = 1; + pixel_x = -1 + }, +/turf/simulated/floor/tiled, +/area/horizon/operations/mining_main/refinery) +"ugw" = ( +/obj/machinery/light/small/emergency{ dir = 4 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + icon_state = "2-8" + }, /obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/structure/railing/mapped{ - dir = 4 +/turf/simulated/floor, +/area/horizon/maintenance/deck_3/aft/port) +"ugG" = ( +/obj/effect/map_effect/window_spawner/full/shuttle/scc{ + spawn_firedoor = 1; + spawn_grille = 1 }, -/obj/structure/railing/mapped{ - dir = 1 +/obj/effect/landmark/entry_point/fore{ + name = "fore, cockpit" }, -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/turf/simulated/floor/tiled/dark/full/airless, -/area/bridge/controlroom) -"ugx" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 9 - }, -/obj/machinery/disposal/small/east, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/machinery/camera/network/command{ - c_tag = "Bridge - Starboard 1"; - dir = 4 - }, -/turf/simulated/floor/tiled/dark/full, -/area/bridge/controlroom) +/turf/simulated/floor/plating, +/area/horizon/shuttle/quark/cockpit) "ugK" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 10 @@ -140410,114 +140857,77 @@ /obj/effect/shuttle_landmark/escape_pod/out/pod1, /turf/space/transit/east, /area/template_noop) -"ugN" = ( -/obj/effect/floor_decal/corner/brown{ - dir = 6 +"ugR" = ( +/obj/random/junk, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + icon_state = "1-2" }, -/obj/effect/floor_decal/industrial/loading/yellow{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/closet/crate, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/refinery) -"ugQ" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 4 - }, -/obj/machinery/embedded_controller/radio/airlock/airlock_controller{ - dir = 4; - pixel_x = -20 - }, -/obj/effect/map_effect/marker/airlock{ - master_tag = "airlock_horizon_deck_3_aft_1"; - name = "airlock_horizon_deck_3_aft_1"; - frequency = 1001 - }, -/turf/simulated/floor, -/area/horizon/maintenance/deck_three/aft/starboard) -"ugT" = ( -/obj/structure/shuttle_part/scc_space_ship{ - icon_state = "d3-4-f" - }, -/turf/simulated/wall, -/area/maintenance/wing/starboard) -"ugW" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/aux, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel, /obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/structure/cable/green{ - icon_state = "4-8" - }, /turf/simulated/floor/plating, -/area/maintenance/hangar/starboard) -"ugY" = ( -/obj/machinery/button/remote/blast_door{ - dir = 1; - id = "shutters_deck2_portstairwellsec"; - name = "Elevator Security Shutters"; - pixel_x = -7; - pixel_y = 28; - req_one_access = list(1,19) - }, -/obj/random/pottedplant, -/obj/structure/railing/mapped{ +/area/horizon/maintenance/deck_1/main/port) +"ugS" = ( +/obj/effect/floor_decal/corner/dark_green{ dir = 8 }, +/turf/simulated/floor/tiled/dark, +/area/horizon/hangar/intrepid) +"ugV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/bed/stool/bar/padded/red, +/turf/simulated/floor, +/area/horizon/maintenance/deck_3/aft/port/far) +"ugX" = ( +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/obj/structure/cable/green{ + icon_state = "12-0" + }, +/obj/effect/floor_decal/industrial/warning/full, /obj/structure/railing/mapped{ - dir = 4 - }, -/obj/structure/railing/mapped, -/obj/effect/floor_decal/spline/fancy/wood/full, -/obj/machinery/computer/shuttle_control/multi/lift/wall/robotics{ - pixel_x = 4; - pixel_y = 28 - }, -/turf/simulated/floor/wood, -/area/hangar/auxiliary) -"uhe" = ( -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/structure/platform/ledge{ dir = 1 }, -/obj/structure/platform/ledge{ +/obj/structure/railing/mapped{ dir = 4 }, -/obj/structure/platform_deco/ledge{ - dir = 10 - }, -/turf/simulated/open, -/area/horizon/hallway/deck_three/primary/central) -"uhi" = ( -/obj/effect/floor_decal/industrial/outline/red, -/obj/structure/closet/walllocker/firecloset{ - pixel_y = -32 - }, -/obj/structure/cable, -/obj/machinery/power/terminal{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark/full, -/area/bridge/aibunker) -"uhl" = ( -/obj/structure/window/shuttle/scc_space_ship, -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/shutters/open{ - dir = 8; - id = "bar_viewing_shutters"; - name = "Bar Viewing Shutters" +/obj/structure/disposalpipe/up{ + dir = 4 }, /turf/simulated/floor/plating, -/area/horizon/bar) -"uhn" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" +/area/horizon/maintenance/deck_1/hangar/port) +"uhd" = ( +/obj/effect/floor_decal/corner/green/diagonal{ + dir = 8 }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor, -/area/maintenance/engineering_ladder) +/obj/structure/table/standard, +/obj/item/deck/kotahi{ + pixel_x = -2; + pixel_y = 4 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/ward) +"uhr" = ( +/obj/machinery/atmospherics/binary/pump{ + dir = 8; + name = "Oxygen to Mix" + }, +/turf/simulated/floor/plating, +/area/horizon/engineering/atmos/air) +"uhs" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/structure/railing/mapped{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/operations/starboard/far) "uhu" = ( /obj/effect/floor_decal/corner/red{ dir = 10 @@ -140526,77 +140936,15 @@ icon_state = "dark_preview" }, /area/centcom/holding) -"uhB" = ( -/obj/machinery/atmospherics/pipe/simple/visible/cyan{ - dir = 4 - }, -/obj/machinery/door/airlock/hatch{ - dir = 4; - locked = 1; - name = "Supermatter Reactor Crystal Access"; - req_one_access = list(11,24); - id_tag = "engine_access_hatch" - }, -/obj/machinery/door/firedoor{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"uhC" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/vending/dinnerware/metal, -/obj/effect/floor_decal/industrial/hatch/grey, -/turf/simulated/floor/tiled/full, -/area/bridge/minibar) -"uhE" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/effect/floor_decal/corner/purple{ - dir = 10 - }, -/obj/machinery/light, -/turf/simulated/floor/tiled, -/area/horizon/custodial) -"uhF" = ( -/obj/machinery/power/apc/north, -/obj/structure/cable/green{ - icon_state = "0-4" - }, -/obj/effect/floor_decal/corner/brown/full{ - dir = 8 - }, -/obj/machinery/camera/network/supply{ - c_tag = "Operations - Main Desk"; - dir = 4 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/table/standard, -/obj/item/stack/material/glass/full, -/obj/item/stack/material/steel/full, -/obj/item/stack/material/plastic/full, -/obj/item/stack/material/aluminium/full, -/obj/item/storage/belt/utility, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/operations/office) -"uhI" = ( +"uhK" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 + dir = 4 }, -/obj/effect/floor_decal/corner/dark_green{ - dir = 10 +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 }, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/central) +/turf/simulated/floor/wood, +/area/horizon/crew/lounge) "uhM" = ( /obj/effect/floor_decal/industrial/warning, /obj/item/clothing/accessory/storage/bandolier, @@ -140606,25 +140954,47 @@ /obj/structure/table/rack, /turf/unsimulated/floor/plating, /area/centcom/specops) -"uhN" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 6 +"uhS" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 10 }, -/turf/simulated/floor, -/area/maintenance/security_port) -"uhP" = ( -/turf/simulated/floor/carpet, -/area/lawoffice/consular) -"uhY" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 5 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/machinery/light, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_3/starboard/docks) +"uhV" = ( +/obj/machinery/r_n_d/server/advanced/core, +/turf/simulated/floor/bluegrid/server, +/area/horizon/rnd/server) +"uhW" = ( +/obj/machinery/camera/network/engineering{ + c_tag = "Engineering - Atmospherics Tanks 2"; + dir = 1 + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/atmospherics/portables_connector{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/outline, /turf/simulated/floor/plating, -/area/hangar/intrepid) -"uia" = ( -/obj/machinery/atm, +/area/horizon/engineering/atmos/air) +"uhZ" = ( +/turf/simulated/wall, +/area/horizon/crew/washroom/deck_2) +"uif" = ( +/obj/structure/table/steel, +/obj/item/storage/toolbox/mechanical{ + pixel_y = 8 + }, +/obj/machinery/recharger, /turf/simulated/floor/tiled/dark, -/area/horizon/bar) +/area/horizon/hangar/control) "uig" = ( /obj/effect/floor_decal/corner/dark_blue{ dir = 6 @@ -140633,11 +141003,35 @@ /obj/effect/floor_decal/industrial/outline/grey, /turf/simulated/floor/tiled, /area/horizon/security/investigations_hallway) -"uio" = ( -/obj/effect/floor_decal/industrial/outline/emergency_closet, -/obj/structure/closet/emcloset, -/turf/simulated/floor/tiled/full, -/area/horizon/hallway/deck_two/fore) +"uih" = ( +/obj/structure/bed/stool/chair/office/dark{ + dir = 8 + }, +/obj/effect/floor_decal/spline/plain, +/obj/effect/floor_decal/spline/plain{ + dir = 1 + }, +/obj/effect/landmark/start{ + name = "Machinist" + }, +/turf/simulated/floor/carpet/rubber, +/area/horizon/operations/machinist) +"uik" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/firealarm/north, +/obj/effect/floor_decal/corner/brown{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/horizon/hangar/operations) "uis" = ( /obj/item/storage/box/fancy/matches{ pixel_x = -8; @@ -140660,18 +141054,6 @@ }, /turf/unsimulated/floor/marble, /area/antag/wizard) -"uit" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/railing/mapped, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard) "uiu" = ( /obj/structure/sink{ pixel_y = 16 @@ -140684,21 +141066,6 @@ }, /turf/unsimulated/floor/freezer, /area/antag/mercenary) -"uix" = ( -/obj/effect/floor_decal/corner_wide/yellow{ - dir = 10 - }, -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/turf/simulated/floor/tiled, -/area/hallway/engineering/rust) "uiz" = ( /obj/structure/window/shuttle/unique/tcfl{ icon_state = "17,2"; @@ -140706,35 +141073,58 @@ }, /turf/unsimulated/floor/plating, /area/shuttle/legion) -"uiE" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 +"uiC" = ( +/obj/structure/cable{ + icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 + dir = 10 }, -/obj/structure/cable{ - icon_state = "2-4" +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/aux{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 10 }, /obj/structure/lattice/catwalk/indoor/grate/dark, /turf/simulated/floor/plating, -/area/maintenance/wing/port/far) +/area/horizon/maintenance/deck_1/main/port) "uiF" = ( /obj/machinery/light{ dir = 4 }, /turf/unsimulated/floor/plating, /area/centcom/spawning) -"uiH" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 5 +"uiJ" = ( +/obj/structure/window/reinforced{ + dir = 4 }, -/obj/machinery/disposal/small/west, -/obj/structure/disposalpipe/trunk{ +/obj/machinery/portable_atmospherics/hydroponics, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark, +/area/horizon/rnd/xenobiology/xenoflora) +"uiK" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 9 + }, +/obj/structure/bed/stool/chair/padded/black{ + dir = 4 + }, +/obj/machinery/light{ dir = 8 }, /turf/simulated/floor/wood, -/area/rnd/hallway/secondary) +/area/horizon/command/bridge/cciaroom/lounge) +"uiM" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/random/dirt_75, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/starboard/far) "uiR" = ( /obj/machinery/iv_drip{ pixel_x = -3 @@ -140744,28 +141134,33 @@ }, /turf/simulated/floor/tiled/freezer, /area/shuttle/skipjack) -"uiT" = ( -/obj/structure/disposalpipe/segment{ +"uiZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, /obj/structure/cable/green{ - icon_state = "1-8" + icon_state = "4-8" }, -/obj/structure/cable/green{ - icon_state = "1-4" +/obj/machinery/door/airlock/glass_service{ + dir = 4; + name = "Bar - Preparations"; + req_access = list(25) }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/structure/lattice/catwalk/indoor/grate, -/turf/simulated/floor, -/area/horizon/hallway/deck_three/primary/central) -"uiY" = ( -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/structure/cable/green{ - icon_state = "2-8" +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/full, +/area/horizon/service/bar) +"uja" = ( +/obj/structure/window/shuttle/scc_space_ship, +/obj/structure/grille, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/purple{ + dir = 6 }, /turf/simulated/floor/plating, -/area/maintenance/wing/starboard) +/area/horizon/engineering/atmos) "ujn" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/floor_decal/corner/grey{ @@ -140773,143 +141168,113 @@ }, /turf/unsimulated/floor, /area/antag/raider) -"ujo" = ( -/obj/item/device/radio/intercom/east, -/obj/structure/disposalpipe/trunk{ +"ujt" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/obj/effect/floor_decal/spline/fancy/wood{ dir = 8 }, -/obj/machinery/disposal/small/west, -/obj/effect/floor_decal/corner/grey/diagonal, -/turf/simulated/floor/tiled/white, -/area/horizon/kitchen) +/turf/simulated/floor/wood, +/area/horizon/command/bridge/cciaroom) "uju" = ( /obj/structure/grille, /obj/machinery/door/firedoor, /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" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_engineering{ - dir = 4; - name = "Engineering Hallway"; - req_access = list(10) - }, -/turf/simulated/floor/tiled, -/area/hallway/engineering/rust) -"ujz" = ( -/turf/simulated/wall/r_wall, -/area/rnd/lab) -"ujD" = ( -/obj/structure/window/shuttle/scc_space_ship, -/obj/structure/grille/diagonal{ - dir = 8 - }, -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 4; - icon_state = "shutter0"; - id = "LCKDshutters"; - name = "MedBay Lockdown Shutters"; - opacity = 0 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/medical/smoking) -"ujG" = ( -/obj/machinery/atmospherics/pipe/simple/visible/cyan{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, +"ujy" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 + dir = 4 }, -/obj/structure/railing/mapped{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"ujH" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/obj/structure/disposalpipe/segment{ +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark, +/area/horizon/rnd/xenoarch/atrium) +"ujB" = ( +/obj/structure/bed/stool/chair/office/light{ dir = 4 }, +/obj/effect/landmark/start{ + name = "Scientist" + }, /obj/effect/floor_decal/spline/fancy/wood{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 8 }, -/obj/structure/cable/green{ - icon_state = "4-8"; - d1 = 4; - d2 = 8 - }, /turf/simulated/floor/wood, -/area/horizon/library) -"ujK" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/structure/railing/mapped{ +/area/horizon/rnd/conference) +"ujE" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 }, -/obj/effect/floor_decal/corner/black{ - dir = 9 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/hangar/intrepid) -"ujN" = ( -/obj/structure/cable/green{ - icon_state = "4-8" +/obj/effect/floor_decal/corner/dark_green{ + dir = 10 }, /turf/simulated/floor/tiled, -/area/engineering/storage_eva) -"ujP" = ( -/turf/simulated/floor/tiled/dark/full, -/area/engineering/bluespace_drive) +/area/horizon/hallway/primary/deck_1/central) +"ujH" = ( +/obj/structure/grille, +/obj/machinery/door/firedoor, +/obj/structure/window/shuttle/scc_space_ship/cardinal, +/turf/simulated/floor/plating, +/area/horizon/hallway/primary/deck_3/starboard) +"ujO" = ( +/turf/simulated/wall, +/area/horizon/engineering/atmos/storage) "ujU" = ( /obj/effect/floor_decal/industrial/warning{ dir = 4 }, /turf/unsimulated/floor, /area/antag/jockey) -"uke" = ( -/obj/effect/map_effect/window_spawner/full/reinforced/polarized/firedoor{ - id = "library" +"ujV" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor, +/area/horizon/maintenance/deck_3/aft/port) +"ujW" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 5 }, /turf/simulated/floor/tiled/dark/full, -/area/horizon/hydroponics/garden) +/area/horizon/engineering/reactor/supermatter/mainchamber) +"ujZ" = ( +/obj/structure/shuttle_part/scc/scout{ + icon_state = "6,4"; + outside_part = 0 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel, +/turf/simulated/floor/reinforced{ + blocks_air = 1; + density = 1; + name = "thruster mount"; + opacity = 1 + }, +/area/horizon/shuttle/canary) +"ukc" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8"; + d1 = 4; + d2 = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/horizon/service/library) "ukf" = ( /obj/structure/window/shuttle/scc_space_ship, /obj/structure/grille, @@ -140933,71 +141298,64 @@ /obj/structure/cable/green, /turf/simulated/floor/plating, /area/horizon/security/brig) -"ukl" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/structure/tank_wall/phoron{ - icon_state = "ph7" - }, -/turf/simulated/floor/airless, -/area/engineering/atmos) -"ukr" = ( -/obj/effect/floor_decal/corner_wide/yellow/full{ - dir = 8 - }, -/obj/structure/table/standard, -/obj/machinery/recharger{ - pixel_y = -1; - pixel_x = -8 - }, -/obj/machinery/cell_charger{ - pixel_y = 13; - pixel_x = -2 - }, -/obj/machinery/firealarm/north, -/turf/simulated/floor/tiled, -/area/engineering/lobby) -"ukv" = ( +"ukk" = ( /obj/structure/cable/green{ - icon_state = "4-8" + icon_state = "2-4" }, +/obj/structure/lattice/catwalk/indoor/grate/dark, /obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/service/starboard) +"ukq" = ( +/obj/random/junk, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/main/port) +"uku" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/main/port) +"ukx" = ( +/obj/structure/platform_stairs/full{ dir = 4 }, +/obj/structure/platform{ + dir = 1 + }, +/obj/structure/railing/mapped, +/turf/simulated/floor/tiled/full, +/area/horizon/command/bridge/upperdeck) +"ukz" = ( +/obj/machinery/atmospherics/pipe/simple/visible/purple, /obj/effect/floor_decal/corner/yellow{ - dir = 5 + dir = 1 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 +/obj/structure/cable/yellow{ + icon_state = "1-2" }, -/obj/machinery/ringer/north{ - department = "Engineering"; - id = "engie_ringer"; - pixel_y = 30; - req_access = null; - req_one_access = list(11,24) +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/atmos/turbine) +"ukD" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/machinery/door/airlock/external, +/obj/machinery/access_button{ + pixel_x = -24 }, -/turf/simulated/floor/tiled, -/area/engineering/lobby) -"ukA" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 +/obj/effect/map_effect/marker_helper/airlock/interior, +/obj/effect/map_effect/marker/airlock/docking{ + landmark_tag = "nav_horizon_dock_deck_3_starboard_2"; + master_tag = "airlock_horizon_dock_deck_3_starboard_2"; + name = "airlock_horizon_dock_deck_3_starboard_2" }, -/turf/simulated/floor/tiled, -/area/engineering/storage_eva) -"ukC" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/lounge/secondary) +/turf/simulated/floor/plating, +/area/horizon/hallway/primary/deck_3/port/docks) "ukI" = ( /obj/machinery/portable_atmospherics/hydroponics, /obj/effect/floor_decal/corner/dark_blue/full{ @@ -141015,6 +141373,19 @@ }, /turf/simulated/floor/tiled, /area/horizon/security/brig) +"ukL" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 6 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled, +/area/horizon/security/checkpoint2) "ukN" = ( /obj/machinery/door/airlock/glass_security{ desc = "It opens and closes. Hazardous lifeforms ahead. Caution advised!"; @@ -141040,207 +141411,121 @@ use_starlight = 0 }, /area/centcom/shared_dream) -"ukS" = ( -/turf/simulated/wall, -/area/hangar/operations) -"ukU" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 +"ukP" = ( +/obj/structure/sign/examroom{ + pixel_y = 32 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 +/obj/machinery/camera/network/medbay{ + c_tag = "Medical - Hallway 2" }, -/obj/structure/cable/green{ - icon_state = "4-8" +/obj/structure/railing/mapped{ + dir = 8 }, -/obj/effect/floor_decal/spline/plain{ - dir = 4 +/obj/effect/floor_decal/corner_wide/green/full{ + dir = 8 }, -/obj/effect/landmark/start{ - name = "Chef" +/obj/effect/floor_decal/industrial/warning{ + dir = 8 }, +/obj/structure/table/standard, +/obj/item/material/stool/chair/wheelchair, +/obj/item/material/stool/chair/wheelchair, +/obj/item/material/stool/chair/wheelchair, +/obj/item/material/stool/chair/wheelchair, /turf/simulated/floor/tiled/white, -/area/horizon/kitchen) -"ulc" = ( -/obj/structure/window/reinforced{ +/area/horizon/medical/hallway) +"ukQ" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/hangar/starboard) +"ukT" = ( +/obj/machinery/light{ dir = 1 }, -/obj/structure/table/reinforced/steel, -/obj/item/clothing/head/welding, -/obj/item/storage/toolbox/mechanical, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenoarch_atrium) -"ull" = ( -/obj/structure/table/wood, -/obj/effect/floor_decal/corner/white/diagonal, -/obj/effect/floor_decal/spline/plain{ - dir = 4 - }, -/obj/random/pottedplant_small{ - pixel_x = -5; - pixel_y = 6 - }, -/obj/machinery/power/outlet{ - pixel_y = 3; - pixel_x = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/horizon/hallway/deck_three/primary/central) -"ulp" = ( -/obj/structure/shuttle_part/scc/scout{ - icon_state = "6,10"; - opacity = 1; - outside_part = 0 - }, -/obj/structure/shuttle_part/scc/scout{ - icon = 'icons/obj/spaceship/scc/ship_engine.dmi'; - icon_state = "nozzle"; - opacity = 1; - outside_part = 0 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel, -/turf/simulated/floor/reinforced{ - blocks_air = 1; - density = 1; - name = "thruster mount"; - opacity = 1 - }, -/area/shuttle/canary) -"ulq" = ( -/obj/machinery/door/airlock/vault/bolted{ - dir = 4; - id_tag = "Vault_Airlock"; - req_one_access = list(20,41) - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/firedoor, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/sign/securearea{ - pixel_y = -32 - }, -/obj/machinery/turretid/lethal{ - dir = 4; - name = "Vault Turret Control"; - pixel_x = 6; - pixel_y = 32; - req_access = null; - req_one_access = list(20,41) - }, -/turf/simulated/floor/tiled/full, -/area/storage/secure) -"ult" = ( -/obj/machinery/camera/network/service{ - c_tag = "Service - Hydroponics Lower 1"; - dir = 4 - }, -/obj/machinery/atmospherics/unary/freezer{ - dir = 4; - icon_state = "freezer" +/obj/structure/extinguisher_cabinet/west, +/obj/machinery/portable_atmospherics/hydroponics, +/obj/effect/floor_decal/industrial/outline/service, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/service/hydroponics) +"ulh" = ( +/obj/effect/map_effect/window_spawner/full/reinforced/polarized/firedoor{ + id = "psych" }, /turf/simulated/floor/tiled/dark/full, -/area/horizon/hydroponics/lower) +/area/horizon/medical/psych) "ulu" = ( /obj/structure/holostool{ dir = 1 }, /turf/simulated/floor/holofloor/beach/sand, /area/horizon/holodeck/source_picnicarea) -"ulB" = ( -/obj/effect/floor_decal/spline/plain, -/obj/effect/floor_decal/spline/fancy{ +"ulw" = ( +/obj/structure/platform/ledge{ dir = 1 }, -/obj/structure/railing/mapped, -/obj/effect/floor_decal/corner_wide/white{ - dir = 10 - }, -/obj/machinery/light/floor, -/turf/simulated/floor/tiled/dark/full, -/area/hallway/primary/central_one) -"ulE" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/effect/floor_decal/industrial/warning, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/operations/loading) -"ulJ" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/structure/tank_wall/carbon_dioxide{ - icon_state = "co2-16" - }, -/obj/machinery/atmospherics/pipe/simple/visible/black, -/turf/simulated/floor/airless, -/area/engineering/atmos) -"ulL" = ( -/obj/effect/floor_decal/corner/mauve{ - dir = 5 - }, -/obj/structure/table/standard, -/obj/machinery/power/apc/north, -/obj/structure/cable/green{ - icon_state = "0-2" - }, -/obj/machinery/button/remote/blast_door{ - dir = 10; - id = "hazardous_lockdown"; - name = "Area lockdown"; - req_access = list(47); - pixel_y = 5 - }, -/obj/machinery/camera/network/research{ - c_tag = "Research - Xenobiology Hazardous Containment"; - network = list("Research","Xeno_Bio") - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology/hazardous) -"ulN" = ( -/obj/structure/table/wood, -/obj/item/paper_bin{ - pixel_x = 6 - }, -/obj/item/pen{ - pixel_x = 6 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ +/obj/structure/platform/ledge{ dir = 4 }, -/turf/simulated/floor/carpet, -/area/lawoffice/representative_two) -"ulO" = ( -/obj/random/dirt_75, -/turf/simulated/floor/carpet/rubber, -/area/horizon/crew_quarters/fitness/gym) -"ulQ" = ( -/obj/effect/floor_decal/industrial/warning{ +/obj/structure/platform_deco/ledge{ + dir = 10 + }, +/turf/simulated/open, +/area/horizon/hallway/primary/deck_2/central) +"ulx" = ( +/obj/structure/railing/mapped, +/obj/effect/floor_decal/corner_wide/yellow{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/horizon/engineering/break_room) +"ulz" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/reactor/indra/mainchamber) +"ulI" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/obj/machinery/door/airlock/glass_research{ + dir = 4; + name = "Conference Room"; + req_access = list(47) + }, +/obj/effect/map_effect/door_helper/unres{ dir = 8 }, +/turf/simulated/floor/tiled/dark, +/area/horizon/rnd/conference) +"ulM" = ( +/obj/structure/shuttle_part/scc_space_ship{ + icon_state = "d2-1-f" + }, +/turf/simulated/wall, +/area/horizon/maintenance/deck_2/wing/starboard/far) +"ulQ" = ( +/obj/machinery/light/small/emergency{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning, /turf/simulated/floor/plating, -/area/maintenance/engineering) +/area/horizon/maintenance/deck_1/main/port) "ulW" = ( /obj/effect/floor_decal/industrial/outline/yellow, /obj/machinery/vending/cigarette/hacked, /turf/unsimulated/floor/linoleum, /area/antag/actor) -"ulX" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 4 +"uma" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, -/turf/simulated/floor/wood, -/area/crew_quarters/heads/hop/xo) +/turf/simulated/floor/tiled/white, +/area/horizon/medical/gen_treatment) "umb" = ( /obj/structure/curtain/black{ icon_state = "open"; @@ -141248,6 +141533,40 @@ }, /turf/simulated/floor/wood, /area/merchant_station) +"ume" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lime{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/horizon/rnd/xenobiology/xenoflora) +"umg" = ( +/obj/effect/floor_decal/corner_wide/yellow{ + dir = 6 + }, +/obj/structure/sign/radiation{ + pixel_x = 32 + }, +/turf/simulated/floor/tiled, +/area/horizon/engineering/reactor/indra/mainchamber) +"umh" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/computer/general_air_control/large_tank_control/terminal{ + sensors = list("co2_sensor"="Tank"); + output_tag = "co2_out"; + name = "Carbon Dioxide Supply Console"; + input_tag = "co2_in" + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/atmos) "umm" = ( /obj/structure/railing/mapped{ name = "adjusted railing" @@ -141255,12 +141574,39 @@ /obj/effect/floor_decal/spline/plain, /turf/unsimulated/floor, /area/centcom/checkpoint/aft) -"ums" = ( +"umn" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/structure/sign/directions/prop{ + dir = 1; + pixel_y = 22 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/aux{ + dir = 6 + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/auxatmos) +"umo" = ( /obj/effect/floor_decal/corner/dark_green{ - dir = 1 + dir = 9 + }, +/obj/effect/floor_decal/spline/plain/corner/lime{ + dir = 4 }, /turf/simulated/floor/tiled, -/area/security/checkpoint2) +/area/horizon/hallway/primary/deck_2/fore) +"umw" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/platform_stairs/full/east_west_cap{ + dir = 8 + }, +/obj/structure/platform/cutout, +/turf/simulated/floor/tiled, +/area/horizon/engineering/hallway/interior) "umx" = ( /obj/structure/window/reinforced/crescent{ dir = 1 @@ -141271,22 +141617,6 @@ /obj/machinery/light, /turf/simulated/floor/grass/no_edge, /area/centcom/spawning) -"umB" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/effect/floor_decal/corner/brown{ - dir = 10 - }, -/obj/structure/table/standard, -/obj/item/device/suit_cooling_unit, -/obj/item/storage/toolbox/mechanical, -/obj/item/storage/belt/utility, -/obj/item/stack/rods/full{ - pixel_y = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/outpost/mining_main/eva) "umF" = ( /obj/effect/floor_decal/corner/orange/diagonal, /obj/effect/decal/fake_object/light_source/invisible, @@ -141294,29 +141624,18 @@ icon_state = "white" }, /area/tdome/tdomeadmin) -"umH" = ( +"umL" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/green{ + d1 = 1; + d2 = 2; icon_state = "1-2" }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/horizon/maintenance/deck_two/fore/starboard) -"umK" = ( -/obj/structure/disposalpipe/segment{ - icon_state = "pipe-c" +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor, -/area/maintenance/security_port) +/turf/simulated/floor/tiled/dark, +/area/horizon/service/bar/backroom) "umM" = ( /obj/effect/floor_decal/spline/fancy/wood/corner{ dir = 1 @@ -141324,21 +141643,9 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/wood, /area/shuttle/skipjack) -"umQ" = ( -/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/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/central) +"umN" = ( +/turf/simulated/wall/r_wall, +/area/horizon/hallway/primary/deck_1/central) "umT" = ( /obj/effect/decal/fake_object{ density = 1; @@ -141349,89 +141656,92 @@ }, /turf/simulated/floor/tiled/dark, /area/supply/dock) -"umW" = ( -/obj/structure/cable/green{ - icon_state = "1-2" +"umX" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 5 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/white, -/area/medical/gen_treatment) +/obj/machinery/alarm/north, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_3/starboard/docks) "una" = ( /obj/effect/step_trigger/thrower/shuttle/south, /turf/space/transit/north, /area/template_noop) +"une" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/hallway) "ung" = ( /turf/simulated/wall/shuttle/unique/mercenary/small{ icon_state = "5,9" }, /area/shuttle/syndicate_elite) -"unm" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/cyan, -/obj/structure/tank_wall/oxygen{ - density = 0; - icon_state = "o2-12"; - opacity = 0 - }, -/turf/simulated/floor/reinforced/oxygen, -/area/engineering/atmos/air) "unn" = ( /turf/unsimulated/wall/darkshuttlewall, /area/centcom/legion/hangar5) +"uns" = ( +/obj/structure/shuttle_part/scc_space_ship{ + icon_state = "d2-1" + }, +/turf/simulated/wall, +/area/horizon/operations/lobby) "unt" = ( /obj/effect/step_trigger/thrower/shuttle/southwest, /turf/space/transit/east, /area/template_noop) +"unw" = ( +/obj/machinery/light/floor{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/horizon/rnd/xenobiology/xenoflora) +"unx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/grass/no_edge, +/area/horizon/service/hydroponics/lower) "uny" = ( /obj/structure/shuttle_part/tcfl{ icon_state = "2,6" }, /turf/unsimulated/floor/plating, /area/shuttle/legion) -"unA" = ( -/obj/effect/shuttle_landmark/horizon/dock/deck_3/starboard_2, -/obj/machinery/door/airlock/external, -/obj/machinery/access_button{ - dir = 1; - pixel_x = -28; - pixel_y = 12 +"unB" = ( +/obj/structure/cable{ + icon_state = "1-2" }, -/obj/effect/map_effect/marker_helper/airlock/exterior, -/obj/effect/map_effect/marker/airlock/docking{ - landmark_tag = "nav_horizon_dock_deck_3_starboard_2"; - master_tag = "airlock_horizon_dock_deck_3_starboard_2"; - name = "airlock_horizon_dock_deck_3_starboard_2" - }, -/turf/simulated/floor/plating, -/area/horizon/hallway/deck_three/primary/starboard/docks) -"unD" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/corner/dark_green{ dir = 4 }, -/obj/effect/floor_decal/corner/black/full{ - dir = 8 - }, /turf/simulated/floor/tiled, -/area/operations/lower/machinist) +/area/horizon/hallway/primary/deck_3/central) "unH" = ( /obj/structure/bed/stool/chair/office/dark{ dir = 4 }, /turf/unsimulated/floor, /area/centcom/specops) -"unI" = ( -/obj/effect/floor_decal/corner/green{ - dir = 9 +"unJ" = ( +/obj/effect/floor_decal/corner/black/full{ + dir = 8 }, -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/turf/simulated/floor/tiled/white, -/area/horizon/crew_quarters/fitness/showers) +/turf/simulated/floor/tiled/dark, +/area/horizon/hangar/intrepid) "unK" = ( /obj/effect/floor_decal/industrial/warning{ dir = 1 @@ -141443,46 +141753,62 @@ }, /turf/unsimulated/floor/plating, /area/centcom/specops) -"unS" = ( -/obj/effect/landmark/entry_point/aft{ - name = "aft engines, starboard 2" +"unO" = ( +/obj/effect/floor_decal/corner/dark_green/full, +/obj/effect/floor_decal/spline/plain{ + dir = 10 }, -/turf/space/dynamic, -/area/engineering/atmos/propulsion/starboard) -"unV" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/structure/table/reinforced, +/obj/item/holomenu{ + pixel_y = 6; + pixel_x = -8 }, -/obj/structure/railing/mapped{ - dir = 1 +/obj/machinery/requests_console/north{ + department = "Hydroponics"; + departmentType = 2; + name = "Hydroponics Requests Console"; + dir = 8; + pixel_y = 2; + pixel_x = -12 }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"unW" = ( -/obj/structure/cable/green{ - icon_state = "4-8" +/obj/item/device/radio/intercom/south, +/obj/item/material/ashtray/glass{ + pixel_x = -8; + pixel_y = 9 }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 4 - }, -/obj/structure/filingcabinet{ - pixel_x = -9 - }, -/obj/machinery/papershredder{ - pixel_x = 7 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/captain) -"unZ" = ( -/obj/machinery/light/spot{ - dir = 8 - }, -/obj/structure/sign/emergency/evacuation/pods{ - pixel_x = -32 +/obj/item/device/quikpay{ + pixel_y = 4; + pixel_x = 4 }, /turf/simulated/floor/tiled, -/area/hangar/operations) +/area/horizon/service/hydroponics) +"unR" = ( +/obj/machinery/atmospherics/pipe/simple/visible/universal{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/horizon/maintenance/deck_2/wing/starboard/auxatmos) +"unU" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/tank_wall/oxygen{ + icon_state = "o2-3" + }, +/turf/simulated/floor/plating, +/area/horizon/engineering/atmos/air) +"unX" = ( +/obj/effect/floor_decal/spline/plain/green{ + dir = 1 + }, +/obj/effect/floor_decal/spline/plain/blue, +/obj/machinery/atmospherics/binary/pump{ + dir = 8; + name = "Distro to Trays" + }, +/obj/effect/floor_decal/industrial/hatch_tiny/service, +/turf/simulated/floor/tiled, +/area/horizon/service/hydroponics/lower) "uoa" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -141492,36 +141818,6 @@ }, /turf/simulated/floor/tiled, /area/horizon/security/hallway) -"uob" = ( -/obj/machinery/atmospherics/pipe/simple/visible/black{ - dir = 4 - }, -/obj/machinery/door/airlock/external{ - dir = 4; - frequency = 1379; - icon_state = "door_locked"; - id_tag = "starboard_combustion"; - locked = 1; - name = "Combustion Chamber"; - req_access = list(13) - }, -/obj/machinery/door/blast/regular{ - id = "interiorpropulsionstarboard" - }, -/turf/simulated/floor/reinforced, -/area/engineering/atmos/propulsion/starboard) -"uoc" = ( -/obj/machinery/door/airlock/glass_research{ - name = "Research and Development"; - req_access = list(7); - dir = 4 - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/firedoor{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark/full, -/area/rnd/lab) "uoe" = ( /obj/machinery/door/airlock/centcom{ locked = 1; @@ -141536,58 +141832,22 @@ }, /turf/simulated/floor/exoplanet/barren, /area/centcom/shared_dream) -"uoj" = ( -/obj/effect/floor_decal/industrial/warning/cee{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/horizon/maintenance/deck_two/fore/starboard) -"uok" = ( -/obj/effect/floor_decal/industrial/warning/full, -/obj/machinery/door/blast/regular/open{ - dir = 2; - fail_secure = 1; - id = "xenobio_c"; - name = "Cell Containment Blast Door" - }, -/obj/machinery/door/window/holowindoor{ - dir = 8; - req_access = list(55) - }, -/obj/machinery/door/window/holowindoor{ - dir = 4; - req_access = list(55) - }, -/obj/machinery/door/firedoor{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark/full, -/area/rnd/xenobiology) -"uol" = ( -/obj/effect/floor_decal/spline/fancy/wood/cee{ - dir = 4 - }, -/obj/structure/table/standard, -/obj/random/plushie, -/turf/simulated/floor/wood, -/area/bridge/upperdeck) -"uox" = ( -/obj/machinery/door/airlock/multi_tile/glass{ - dir = 2; - name = "Research Hallway" - }, -/obj/machinery/door/firedoor/multi_tile{ - dir = 2 - }, +"uot" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/effect/floor_decal/corner/dark_green{ - dir = 10 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 }, -/turf/simulated/floor/tiled/full, -/area/hallway/primary/central_one) +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/starboard/near) "uoy" = ( /obj/item/tape/engineering{ icon_state = "engineering_door" @@ -141601,62 +141861,25 @@ }, /turf/unsimulated/floor, /area/centcom/legion) -"uoF" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 9 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hangar/intrepid/interstitial) -"uoG" = ( -/obj/machinery/light/small/emergency{ - dir = 1 - }, -/obj/machinery/embedded_controller/radio/airlock/airlock_controller{ - dir = 8; - pixel_x = 20 - }, -/obj/machinery/airlock_sensor{ - dir = 4; - pixel_x = -20 - }, -/obj/effect/map_effect/marker/airlock{ - frequency = 1003; - master_tag = "airlock_horizon_deck_1_aft_propulsion_2"; - name = "airlock_horizon_deck_1_aft_propulsion_2" - }, -/turf/simulated/floor/plating, -/area/engineering/atmos/propulsion) -"uoI" = ( -/obj/effect/floor_decal/industrial/outline/engineering, -/turf/simulated/floor/tiled, -/area/operations/storage) -"uoJ" = ( -/obj/structure/bed/stool/chair/office/light{ - dir = 8 - }, -/obj/effect/landmark/start{ - name = "Xenobotanist" - }, -/obj/effect/floor_decal/spline/fancy/wood{ +"uoD" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/turf/simulated/floor/wood, -/area/rnd/conference) -"uoK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/effect/floor_decal/industrial/warning, -/obj/machinery/camera/network/research{ - dir = 1; - c_tag = "Xenobio - Cell B"; - network = list("Xeno_Bio") +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/light/small/emergency{ + dir = 1 }, -/turf/simulated/floor/reinforced, -/area/rnd/xenobiology) +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/research) "uoL" = ( /obj/item/device/flashlight/flare/torch, /obj/item/device/flashlight/flare/torch{ @@ -141671,12 +141894,6 @@ name = "overgrowth" }, /area/horizon/holodeck/source_moghes) -"uoO" = ( -/obj/structure/railing/mapped{ - dir = 1 - }, -/turf/simulated/floor/reinforced/airless, -/area/template_noop) "uoP" = ( /obj/effect/floor_decal/corner/beige/diagonal, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -141690,185 +141907,207 @@ }, /turf/simulated/floor/tiled/white, /area/horizon/security/forensic_laboratory) -"uoV" = ( -/obj/machinery/atmospherics/omni/filter{ - name = "nitrogen filter"; - tag_east = 2; - tag_north = 4; - tag_west = 1 - }, -/turf/simulated/floor/plating, -/area/engineering/atmos/air) -"uoY" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ +"uoQ" = ( +/obj/effect/floor_decal/spline/fancy/wood{ dir = 9 }, +/obj/structure/table/reinforced/wood, +/obj/item/pinpointer{ + pixel_x = 7; + pixel_y = -2 + }, +/obj/item/disk/nuclear{ + pixel_x = 10; + pixel_y = 6 + }, +/obj/machinery/button/remote/blast_door{ + desc = "A remote control-switch for shutters."; + dir = 1; + id = "cap_office_desk"; + name = "Desk Privacy Shutter"; + pixel_x = -6; + pixel_y = 8 + }, +/obj/machinery/button/remote/airlock{ + dir = 1; + pixel_x = -6; + name = "Command Foyer Doors"; + id = "command_foyer"; + pixel_y = -3 + }, +/turf/simulated/floor/wood, +/area/horizon/command/heads/captain) +"uoT" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 6 + }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 + dir = 4 }, -/turf/simulated/floor/tiled/full, -/area/engineering/lobby) +/turf/simulated/floor/tiled/dark, +/area/horizon/shuttle/intrepid/main_compartment) +"upa" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_2/central) +"upe" = ( +/obj/effect/floor_decal/corner/mauve/full{ + dir = 1 + }, +/obj/random/pottedplant, +/obj/machinery/alarm/north, +/turf/simulated/floor/tiled, +/area/horizon/rnd/hallway) "upg" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 8 }, /turf/simulated/floor/holofloor/wood, /area/horizon/holodeck/source_theatre) -"uph" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 +"upn" = ( +/turf/simulated/wall/shuttle/scc_space_ship/cardinal, +/area/horizon/command/bridge/cciaroom) +"upo" = ( +/obj/effect/landmark/entry_point/aft{ + name = "aft engines, starboard 3" }, -/turf/simulated/floor/tiled/white, -/area/medical/main_storage) -"upm" = ( -/obj/machinery/atmospherics/unary/freezer{ +/turf/space/dynamic, +/area/horizon/engineering/atmos/propulsion) +"upw" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ dir = 1; - icon_state = "freezer" + name = "Tech Storage" }, -/obj/effect/floor_decal/corner/yellow, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 8 +/obj/structure/cable/green{ + icon_state = "1-2" }, -/turf/simulated/floor/tiled/dark, -/area/engineering/atmos) -"upp" = ( -/obj/effect/floor_decal/corner/dark_green/diagonal, -/obj/effect/floor_decal/industrial/loading/yellow, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"upq" = ( -/obj/item/reagent_containers/glass/beaker/cryoxadone{ - pixel_x = 5; - pixel_y = 5 +/turf/simulated/floor/tiled/full, +/area/horizon/operations/lobby) +"upx" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 5 }, -/obj/item/reagent_containers/glass/beaker/cryoxadone{ - pixel_x = -6; - pixel_y = 5 - }, -/obj/structure/table/steel, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/medical/gen_treatment) -"ups" = ( -/obj/machinery/firealarm/west, -/obj/structure/bed/stool/chair/padded/brown{ - dir = 4 +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/cargo_compartment) +"upy" = ( +/turf/simulated/wall/r_wall, +/area/horizon/weapons/longbow) +"upK" = ( +/obj/machinery/power/apc/east, +/obj/structure/cable, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/starboard) +"upL" = ( +/obj/structure/cable{ + icon_state = "1-2" }, /obj/effect/floor_decal/corner/dark_green{ - dir = 9 + dir = 6 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/camera/network/third_deck{ + c_tag = "Third Deck - Central Ring Aft"; + dir = 8 }, /turf/simulated/floor/tiled, -/area/engineering/lobby) -"upt" = ( -/obj/machinery/light{ - dir = 4 +/area/horizon/hallway/primary/deck_3/central) +"upR" = ( +/obj/machinery/door/firedoor, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/full, +/area/horizon/maintenance/deck_2/research) +"upU" = ( +/obj/machinery/door/airlock/engineering{ + dir = 1; + name = "Deck 2 Civilian Substation"; + req_one_access = list(11,24) }, -/obj/machinery/power/apc/east, -/obj/structure/cable/green, -/obj/structure/closet/secure_closet/engineering_personal, -/obj/effect/floor_decal/corner/yellow/full{ - dir = 4 +/obj/structure/cable{ + icon_state = "1-2" }, -/obj/effect/floor_decal/industrial/outline/operations, -/turf/simulated/floor/tiled, -/area/engineering/locker_room) -"upv" = ( -/obj/structure/lattice, -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/structure/railing/mapped{ - dir = 1 - }, -/turf/simulated/open, -/area/horizon/hallway/deck_three/primary/starboard) -"upA" = ( -/obj/item/modular_computer/console/preset/command/captain{ - dir = 1 - }, -/obj/structure/railing/mapped, -/turf/simulated/floor/tiled/dark, -/area/bridge/aibunker) -"upE" = ( -/obj/effect/floor_decal/industrial/outline_straight/service{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/outline_straight/service{ - dir = 4 - }, -/obj/machinery/meter, -/obj/effect/landmark/start{ - name = "Gardener" - }, -/obj/machinery/atmospherics/pipe/manifold4w/hidden, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/hydroponics/lower) -"upG" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/engine_room/turbine) -"upH" = ( -/obj/machinery/newscaster/east, -/obj/effect/floor_decal/corner/dark_green/full{ - dir = 1 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"upJ" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/flora/ausbushes/sparsegrass, -/obj/machinery/portable_atmospherics/hydroponics/soil, -/obj/structure/engineer_maintenance/pipe/wall, -/turf/simulated/floor/grass/no_edge, -/area/horizon/hydroponics/garden) -"upT" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/corner/brown{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/operations/break_room) +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/full, +/area/horizon/maintenance/substation/civ_d2) "upV" = ( /obj/effect/floor_decal/spline/plain, /turf/unsimulated/floor/monotile, /area/antag/mercenary) +"upW" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/obj/structure/railing/mapped{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/horizon/service/cafeteria) +"uqa" = ( +/obj/machinery/door/firedoor, +/obj/structure/table/reinforced/steel, +/obj/item/paper_bin, +/obj/item/pen, +/obj/machinery/door/blast/shutters{ + dir = 2; + id = "shutters_hangarseccpdesk"; + name = "Security Checkpoint Desk Shutter" + }, +/obj/machinery/door/window/desk/northleft{ + name = "Arrivals Checkpoint Processing Desk"; + req_access = list(63) + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/security/checkpoint) +"uqd" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 5 + }, +/obj/machinery/camera/network/mining{ + c_tag = "Mining - Locker Room" + }, +/obj/structure/table/standard, +/obj/item/device/suit_cooling_unit, +/obj/item/storage/toolbox/mechanical, +/obj/item/storage/belt/utility, +/obj/item/stack/rods/full{ + pixel_y = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/operations/mining_main/eva) "uqe" = ( /obj/machinery/firealarm/west, /obj/effect/floor_decal/corner/dark_blue/diagonal, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/horizon/security/investigations_hallway) +"uqi" = ( +/obj/structure/table/rack, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/unsimulated/floor/dark_monotile, +/area/antag/actor) +"uqj" = ( +/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/dark_green{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/horizon/hangar/intrepid) "uql" = ( /obj/machinery/light{ dir = 4 @@ -141878,111 +142117,146 @@ }, /turf/unsimulated/floor, /area/centcom/holding) -"uqn" = ( -/obj/effect/floor_decal/corner/dark_green/full, -/turf/simulated/floor/tiled, -/area/hangar/intrepid/interstitial) -"uqq" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 +"uqm" = ( +/obj/structure/table/wood, +/obj/effect/floor_decal/corner/dark_green{ + dir = 5 }, +/obj/random/pottedplant_small{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/machinery/newscaster/north, /obj/structure/cable/green{ icon_state = "4-8" }, -/obj/structure/cable/green{ - icon_state = "1-8" - }, +/turf/simulated/floor/tiled, +/area/horizon/engineering/hallway/fore) +"uqx" = ( +/obj/effect/floor_decal/corner/dark_blue/diagonal, +/obj/structure/bed/stool/chair/office/bridge, /turf/simulated/floor/tiled/dark, -/area/horizon/longbow) -"uqE" = ( -/obj/structure/trash_pile, -/turf/simulated/floor/plating, -/area/maintenance/operations) +/area/horizon/shuttle/intrepid/flight_deck) +"uqy" = ( +/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/machinery/door/firedoor, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/airlock/glass_medical{ + dir = 1; + name = "Medical Equipment" + }, +/turf/simulated/floor/tiled/full, +/area/horizon/medical/equipment) +"uqz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/corner/dark_blue/diagonal, +/turf/simulated/floor/tiled/dark, +/area/horizon/hangar/control) +"uqA" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor, +/area/horizon/hallway/primary/deck_3/port) +"uqC" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/horizon/operations/loading) "uqF" = ( /obj/structure/flora/grass/both, /turf/simulated/floor/holofloor/snow, /area/horizon/holodeck/source_snowfield) -"uqJ" = ( -/obj/structure/cable{ - icon_state = "1-2" +"uqT" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - icon_state = "1-4" - }, -/turf/simulated/floor, -/area/maintenance/substation/command) -"uqK" = ( -/obj/effect/floor_decal/corner/mauve{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/structure/disposalpipe/junction{ - dir = 8 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/obj/machinery/light/floor{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/rnd/hallway) -"uqM" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/effect/floor_decal/spline/plain, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/machinery/disposal/small/north, -/turf/simulated/floor/tiled/white, -/area/horizon/kitchen) -"uqR" = ( -/obj/effect/floor_decal/corner/purple{ - dir = 10 - }, -/obj/structure/table/steel, -/obj/item/storage/box/lights/mixed, -/obj/machinery/requests_console/south{ - department = "Custodial"; - departmentType = 1; - name = "\improper Custodial Requests Console" - }, -/turf/simulated/floor/tiled, -/area/horizon/custodial/auxiliary) +/turf/simulated/floor/wood, +/area/horizon/crew/lounge) "uqU" = ( /obj/structure/table/wood, /turf/simulated/floor/tiled/dark, /area/horizon/holodeck/source_pool) -"urg" = ( -/obj/structure/table/standard, -/obj/item/grenade/chem_grenade, -/obj/item/grenade/chem_grenade, -/obj/item/grenade/chem_grenade, -/obj/item/grenade/chem_grenade, -/obj/item/device/assembly/igniter, -/obj/item/device/assembly/igniter, -/obj/item/device/assembly/igniter, -/obj/item/device/assembly/igniter, -/obj/item/device/assembly/timer, -/obj/item/device/assembly/timer, -/obj/item/device/assembly/timer, -/obj/item/device/assembly/timer, -/obj/structure/closet/crate/drop/grey{ - desc = "A large, sturdy crate, that stores grenade components."; - name = "grenade crate"; - pixel_y = -4; - tablestatus = -1 +"uqY" = ( +/obj/item/device/radio/intercom/north{ + listening = 0; + name = "Custom Channel" }, -/obj/effect/floor_decal/corner_wide/orange{ - dir = 10 +/obj/item/device/radio/intercom/north{ + frequency = 1343; + name = "Private Channel" + }, +/obj/effect/landmark/start{ + name = "AI" + }, +/obj/effect/floor_decal/industrial/warning/full, +/obj/structure/cable/green{ + icon_state = "0-8" + }, +/obj/machinery/button/remote/blast_door{ + desc = "A remote control-switch for the AI core maintenance door."; + dir = 1; + id = "AICore"; + name = "AI Core Blast Doors"; + pixel_x = 25; + pixel_y = 25; + req_access = list(20) + }, +/obj/machinery/button/remote/blast_door{ + dir = 1; + id = "ai_upload"; + name = "AI Upload Blast Door"; + pixel_x = 39; + pixel_y = 25; + req_access = list(16) + }, +/turf/simulated/floor/bluegrid{ + name = "cooled mainframe floor"; + temperature = 278 + }, +/area/horizon/ai/chamber) +"ura" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/cable/green{ + icon_state = "4-8" }, /turf/simulated/floor/tiled/white, -/area/medical/pharmacy) +/area/horizon/rnd/conference) "urh" = ( /obj/structure/bed/stool/chair/holochair{ dir = 1 @@ -141995,77 +142269,52 @@ }, /turf/simulated/floor/holofloor/carpet, /area/horizon/holodeck/source_courtroom) -"urr" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/effect/floor_decal/industrial/outline/emergency_closet, -/turf/simulated/floor/plating, -/area/engineering/atmos/air) -"uru" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/effect/map_effect/marker/airlock/docking{ - landmark_tag = "nav_horizon_dock_deck_3_starboard_1"; - master_tag = "airlock_horizon_dock_deck_3_starboard_1"; - name = "airlock_horizon_dock_deck_3_starboard_1" - }, -/turf/simulated/floor/plating, -/area/horizon/hallway/deck_three/primary/starboard/docks) -"urv" = ( -/obj/machinery/door/airlock/engineering{ - dir = 1; - name = "Deck 2 Civilian Substation"; - req_one_access = list(11,24) - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/full, -/area/maintenance/substation/civilian_west) -"urx" = ( -/obj/structure/window/shuttle/scc_space_ship, -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/effect/map_effect/map_helper/ruler_tiles_3{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/crew_quarters/lounge) -"urB" = ( -/obj/structure/window/shuttle/scc_space_ship, -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/shutters/open{ - id = "shutters_deck3_engibreakwindows"; - name = "Viewing Shutter" - }, -/turf/simulated/floor/plating, -/area/engineering/break_room) -"urC" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/floor_decal/corner_wide/black{ - dir = 5 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 +"urj" = ( +/obj/structure/cable/green{ + icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 + dir = 4 }, -/turf/simulated/floor/tiled/dark, -/area/engineering/atmos/propulsion/starboard) -"urJ" = ( -/obj/effect/floor_decal/industrial/warning{ +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/corner/brown{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/horizon/operations/mining_main/refinery) +"urk" = ( +/obj/effect/floor_decal/corner/brown/full, +/obj/machinery/firealarm/west, +/obj/structure/engineer_maintenance/electric{ + dir = 8 + }, +/obj/structure/engineer_maintenance/pipe, +/obj/structure/bed/stool/chair/office/dark{ + dir = 1 + }, +/obj/item/device/radio/intercom/north{ + dir = 2; + pixel_y = 0 + }, +/turf/simulated/floor/tiled, +/area/horizon/operations/office) +"urn" = ( +/obj/effect/floor_decal/corner/black{ dir = 8 }, /turf/simulated/floor/tiled, -/area/maintenance/wing/port/far) +/area/horizon/operations/machinist) +"urI" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/horizon/storage/primary) "urL" = ( /obj/machinery/light{ dir = 1 @@ -142078,13 +142327,31 @@ }, /turf/unsimulated/floor/wood, /area/antag/mercenary) -"urQ" = ( -/obj/structure/railing/mapped{ - dir = 8 +"urO" = ( +/obj/machinery/power/fusion_core{ + anchored = 1; + initial_id_tag = "horizon_fusion" }, -/obj/effect/floor_decal/corner/dark_green/diagonal, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/port) +/obj/effect/floor_decal/industrial/hatch/red, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/turf/simulated/floor/reinforced/airless, +/area/horizon/engineering/reactor/indra/mainchamber) +"urR" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/shuttle/intrepid/main_compartment) "urS" = ( /obj/machinery/light/small{ dir = 8; @@ -142101,6 +142368,28 @@ /obj/effect/decal/cleanable/dirt, /turf/unsimulated/floor, /area/centcom/legion) +"usa" = ( +/obj/structure/stairs/south, +/turf/simulated/floor/tiled, +/area/horizon/stairwell/port/deck_2) +"usb" = ( +/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/effect/floor_decal/corner/dark_green{ + dir = 6 + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_1/central) "usc" = ( /obj/effect/floor_decal/corner/red{ dir = 9 @@ -142110,41 +142399,74 @@ }, /turf/simulated/floor/holofloor/tiled, /area/horizon/holodeck/source_lasertag) -"uss" = ( -/obj/effect/floor_decal/corner_wide/purple/full{ +"usd" = ( +/obj/effect/floor_decal/corner_wide/blue{ + dir = 1 + }, +/obj/effect/floor_decal/corner_wide/yellow{ + dir = 4 + }, +/obj/effect/floor_decal/corner_wide/yellow{ dir = 8 }, -/obj/machinery/light{ +/obj/effect/floor_decal/spline/plain{ dir = 8 }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenoarch_atrium) +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/horizon/engineering/atmos/storage) +"usl" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/camera/network/research{ + dir = 1; + c_tag = "Xenobio - Cell D"; + network = list("Xeno_Bio") + }, +/turf/simulated/floor/reinforced, +/area/horizon/rnd/xenobiology) +"usq" = ( +/obj/machinery/door/airlock/glass_research{ + name = "Research and Development"; + req_access = list(7); + dir = 4 + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/rnd/lab) "ust" = ( /obj/structure/bed/stool/chair/shuttle{ dir = 8 }, /turf/simulated/floor/tiled/dark, /area/shuttle/mercenary) -"usu" = ( -/obj/effect/landmark/latejoinlift, -/obj/structure/disposalpipe/junction{ - dir = 8; - icon_state = "pipe-j2" - }, +"usv" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/structure/disposalpipe/segment, /obj/structure/cable{ - icon_state = "4-8" + icon_state = "1-2" }, -/obj/effect/floor_decal/corner/dark_green{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4 }, -/turf/simulated/floor/tiled, -/area/horizon/crew_quarters/cryo/living_quarters_lift) +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/main/starboard) "usw" = ( /obj/machinery/door/firedoor, /obj/structure/cable/green, @@ -142176,12 +142498,6 @@ /obj/structure/window/shuttle/scc_space_ship, /turf/simulated/floor/plating, /area/horizon/security/brig) -"usz" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_two/fore) "usA" = ( /obj/machinery/light/small{ dir = 8 @@ -142190,11 +142506,19 @@ icon_state = "wood" }, /area/centcom/legion/hangar5) -"usF" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/structure/trash_pile, -/turf/simulated/floor/plating, -/area/maintenance/engineering) +"usC" = ( +/obj/machinery/atmospherics/unary/outlet_injector{ + frequency = 1441; + id = "o2_in"; + name = "oxygen injector"; + use_power = 1 + }, +/turf/simulated/floor/reinforced/oxygen, +/area/horizon/engineering/atmos/air) +"usH" = ( +/obj/machinery/telecomms/message_server/preset, +/turf/simulated/floor/bluegrid, +/area/horizon/tcommsat/chamber) "usJ" = ( /obj/structure/bed/stool/chair/padded/blue{ dir = 8 @@ -142204,37 +142528,6 @@ color = "#792f27" }, /area/centcom/ferry) -"usP" = ( -/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/structure/cable/green{ - icon_state = "2-4" - }, -/obj/structure/lattice/catwalk/indoor/grate, -/turf/simulated/floor/plating, -/area/hangar/intrepid) -"usX" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 5 - }, -/obj/structure/bed/stool/chair/padded/brown{ - dir = 4 - }, -/obj/effect/landmark/start{ - name = "Assistant" - }, -/turf/simulated/floor/tiled, -/area/operations/lobby) "uta" = ( /obj/effect/floor_decal/industrial/warning{ dir = 10 @@ -142248,22 +142541,21 @@ }, /turf/unsimulated/floor, /area/centcom/legion/hangar5) -"utm" = ( -/obj/structure/shuttle_part/scc/mining{ - icon_state = "0,7"; - outside_part = 0; - pixel_x = -32 +"utj" = ( +/obj/structure/cable{ + icon_state = "1-2" }, -/obj/effect/landmark/entry_point/starboard{ - name = "starboard, compartment" +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment{ + icon_state = "pipe-c" }, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 5 - }, -/turf/simulated/wall/shuttle/unique/scc/mining{ - icon_state = "1,7" - }, -/area/shuttle/mining) +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/hidden/aux, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/operations/starboard/amidships) "utn" = ( /obj/machinery/embedded_controller/radio/simple_docking_controller{ frequency = 1380; @@ -142283,27 +142575,26 @@ /obj/structure/grille, /turf/simulated/floor/reinforced/airless, /area/horizon/exterior) -"utw" = ( +"uty" = ( +/turf/simulated/wall, +/area/horizon/maintenance/deck_3/security/starboard) +"utB" = ( +/obj/effect/floor_decal/corner/dark_blue/diagonal, +/obj/machinery/door/firedoor, /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 +/obj/machinery/door/airlock/security{ + dir = 4; + name = "Security Checkpoint"; + req_access = list(63) }, /obj/structure/cable/green{ icon_state = "4-8" }, -/obj/structure/lattice/catwalk/indoor/grate, -/turf/simulated/floor, -/area/horizon/hallway/deck_three/primary/starboard) -"utx" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/simulated/floor, -/area/maintenance/substation/command) +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/full, +/area/horizon/security/checkpoint) "utC" = ( /obj/effect/floor_decal/corner/paleblue{ dir = 5 @@ -142313,80 +142604,93 @@ }, /turf/unsimulated/floor, /area/centcom/spawning) +"utD" = ( +/obj/machinery/papershredder, +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/structure/railing/mapped, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/hallway) +"utF" = ( +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/machinery/light/small/emergency{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/substation/medical) +"utG" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor, +/area/horizon/maintenance/deck_3/aft/port) +"utJ" = ( +/obj/effect/floor_decal/corner/dark_green/full, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_1/central) "utK" = ( /obj/structure/shuttle_part/ccia{ icon_state = "12,4" }, /turf/unsimulated/floor/plating, /area/shuttle/transport1) -"utL" = ( -/obj/structure/disposalpipe/segment{ - icon_state = "pipe-c" - }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/light_switch{ - dir = 4; - pixel_x = 23 - }, -/obj/effect/floor_decal/corner_wide/green/full{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/exam) -"utP" = ( -/obj/structure/window/shuttle/unique/scc/scout{ - icon_state = "5,3" - }, -/obj/structure/window/shuttle/unique/scc/scout/over{ - icon_state = "5,3" - }, -/turf/simulated/floor/plating, -/area/shuttle/canary) -"utS" = ( -/obj/machinery/power/apc/north, -/obj/structure/cable/green{ - icon_state = "0-2" - }, -/obj/effect/floor_decal/corner/mauve{ - dir = 5 - }, -/obj/structure/engineer_maintenance/pipe{ +"utR" = ( +/obj/structure/bed/stool/chair/padded/red{ dir = 1 }, -/obj/structure/engineer_maintenance/electric{ +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 6 + }, +/obj/structure/platform{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/horizon/service/dining_hall) +"utU" = ( +/obj/effect/floor_decal/corner_wide/yellow{ + dir = 5 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/platform_deco{ dir = 8 }, /turf/simulated/floor/tiled, -/area/rnd/hallway) +/area/horizon/engineering/hallway/interior) "utV" = ( /obj/effect/shuttle_landmark/distress/interim, /turf/space/transit/east, /area/template_noop) -"utX" = ( -/obj/machinery/atmospherics/pipe/simple/visible/universal{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/maintenance/aux_atmospherics/deck_2/starboard/wing) "uub" = ( /turf/unsimulated/floor/plating, /area/centcom/evac) -"uue" = ( -/obj/structure/flora/ausbushes/sparsegrass, -/obj/structure/flora/bush/grove, -/obj/machinery/light{ - dir = 4 +"uud" = ( +/obj/structure/platform_stairs/full/east_west_cap, +/obj/structure/platform/cutout{ + dir = 8 }, -/turf/simulated/floor/grass/no_edge, -/area/horizon/hallway/deck_two/fore) +/obj/structure/platform{ + dir = 1 + }, +/turf/simulated/floor/carpet/purple, +/area/horizon/command/heads/rd) "uuj" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -142397,217 +142701,135 @@ }, /turf/simulated/floor/tiled, /area/horizon/security/hallway) -"uun" = ( -/obj/structure/bed/stool/chair/sofa/right/brown{ +"uup" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/obj/structure/bed/stool/bar/padded/red{ dir = 4 }, /turf/simulated/floor/wood, -/area/medical/psych) -"uur" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 +/area/horizon/service/bar) +"uuq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 }, -/turf/simulated/floor/tiled, -/area/operations/lower/machinist) -"uus" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ +/obj/machinery/hologram/holopad, +/obj/item/device/radio/intercom/south, +/turf/simulated/floor/wood/walnut, +/area/horizon/medical/smoking) +"uuu" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/structure/platform_deco{ - dir = 10 +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 }, +/turf/simulated/floor/carpet/rubber, +/area/horizon/engineering/reactor/indra/monitoring) +"uuJ" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/lattice/catwalk/indoor/grate, /turf/simulated/floor/plating, -/area/maintenance/wing/starboard/far) -"uux" = ( -/obj/machinery/light/small/emergency{ - dir = 1 +/area/horizon/hangar/intrepid/interstitial) +"uuM" = ( +/obj/structure/cable/green{ + icon_state = "1-2" }, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard) -"uuB" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 8 - }, -/obj/effect/floor_decal/corner/yellow{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/visible/purple, -/turf/simulated/floor/tiled/dark, -/area/engineering/engine_room/turbine) -"uuD" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/turf/simulated/floor/tiled/full, -/area/hallway/primary/central_one) -"uuO" = ( -/obj/machinery/atmospherics/binary/pump{ - dir = 4; - name = "Reactor to Mix" - }, -/obj/effect/floor_decal/corner/yellow/diagonal, -/obj/effect/floor_decal/industrial/warning/full, -/turf/simulated/floor/tiled/dark, -/area/engineering/engine_waste) -"uuR" = ( -/obj/machinery/door/airlock/multi_tile/glass{ - name = "Server Hall"; - req_access = list(47) - }, -/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, -/area/rnd/hallway/secondary) -"uuS" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 6 - }, +/area/horizon/operations/lobby) +"uuU" = ( +/obj/effect/floor_decal/corner/green/diagonal, +/obj/machinery/firealarm/north, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/ward/isolation) +"uvb" = ( +/turf/simulated/floor/tiled/white, +/area/horizon/medical/hallway) +"uvc" = ( /obj/structure/cable/green{ icon_state = "4-8" }, -/turf/simulated/floor/tiled/dark, -/area/horizon/longbow) -"uuX" = ( -/obj/structure/closet, -/obj/random/contraband, -/obj/random/contraband, -/turf/simulated/floor/plating, -/area/maintenance/wing/port) -"uuZ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 +/obj/effect/floor_decal/corner/brown{ + dir = 9 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/random/junk, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/maintenance/hangar/starboard) -"uvj" = ( -/obj/structure/disposalpipe/junction{ - dir = 1; - icon_state = "pipe-j2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/structure/lattice/catwalk/indoor/grate, -/turf/simulated/floor, -/area/bridge/upperdeck) -"uvm" = ( -/obj/effect/floor_decal/corner/dark_green/full{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/outline/emergency_closet, -/obj/structure/closet/emcloset, /turf/simulated/floor/tiled, -/area/operations/lobby) +/area/horizon/operations/warehouse) +"uve" = ( +/obj/machinery/door/airlock/external{ + dir = 4 + }, +/obj/effect/map_effect/marker/airlock/docking{ + landmark_tag = "nav_horizon_dock_deck_3_port_5"; + master_tag = "airlock_horizon_dock_deck_3_port_5"; + name = "airlock_horizon_dock_deck_3_port_5" + }, +/obj/effect/map_effect/marker_helper/airlock/exterior, +/obj/machinery/access_button{ + dir = 4; + pixel_x = 12; + pixel_y = -28 + }, +/turf/simulated/floor/plating, +/area/horizon/hallway/primary/deck_3/starboard/docks) +"uvi" = ( +/obj/effect/decal/cleanable/liquid_fuel, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/carpet/rubber, +/area/horizon/maintenance/deck_1/workshop) +"uvl" = ( +/obj/structure/table/standard, +/obj/item/paper/monitorkey{ + pixel_x = -8 + }, +/obj/random/pottedplant_small{ + pixel_x = 2; + pixel_y = 12 + }, +/obj/item/stamp/ce{ + pixel_x = -1 + }, +/turf/simulated/floor/carpet, +/area/horizon/command/heads/chief) "uvn" = ( /turf/unsimulated/wall/riveted, /area/horizon/holodeck/source_lasertag) -"uvp" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 10 - }, -/obj/machinery/light/floor, -/obj/structure/window/reinforced, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 10 - }, -/obj/structure/reagent_dispensers/water_cooler, -/turf/simulated/floor/wood, -/area/bridge/upperdeck) "uvr" = ( /obj/machinery/light, /turf/unsimulated/floor, /area/centcom/legion) -"uvy" = ( -/obj/machinery/button/remote/blast_door{ - id = "seconddeckdockint"; - name = "Interior Checkpoint Shutters"; - pixel_x = 5; - pixel_y = 7 - }, -/obj/machinery/button/remote/blast_door{ - id = "seconddeckdockext"; - name = "Exterior Checkpoint Shutters"; - pixel_x = 5; - pixel_y = -2 +"uvt" = ( +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/simple/visible/black, +/obj/effect/floor_decal/corner/yellow{ + dir = 1 }, /obj/effect/floor_decal/corner/dark_blue{ - dir = 6 + dir = 4 }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 +/obj/machinery/camera/network/engineering{ + c_tag = "Engineering - Atmospherics Control 3" }, -/obj/structure/table/steel, -/obj/machinery/button/remote/blast_door{ - id = "seconddeckdocksaf"; - name = "Checkpoint Safety Shutters"; - pixel_x = -5; - pixel_y = 7 - }, -/obj/machinery/button/remote/blast_door{ - id = "seconddeckdockdesk"; - name = "Checkpoint Desk Shutter"; - pixel_x = -5; - pixel_y = -2 - }, -/obj/machinery/light{ +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/atmos) +"uvv" = ( +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/wing/starboard) +"uvw" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/security/checkpoint2) -"uvE" = ( -/obj/machinery/door/airlock/external{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/obj/effect/map_effect/marker/airlock{ - master_tag = "airlock_horizon_bunker"; - name = "airlock_horizon_bunker"; - frequency = 1109; - req_one_access = list(19) - }, -/obj/effect/map_effect/marker_helper/airlock/interior, -/obj/machinery/access_button{ - pixel_x = -9; - pixel_y = 27; - dir = 8 - }, -/turf/simulated/floor, -/area/turret_protected/ai_upload_foyer) -"uvF" = ( -/obj/effect/floor_decal/corner_wide/green{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/medical/equipment) +/area/horizon/engineering/atmos/propulsion) +"uvG" = ( +/turf/simulated/wall/shuttle/scc_space_ship/cardinal, +/area/horizon/operations/warehouse) "uvL" = ( /obj/structure/window/reinforced{ dir = 4 @@ -142627,6 +142849,19 @@ }, /turf/simulated/floor/tiled/dark, /area/shuttle/merchant) +"uvV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/port/far) "uvY" = ( /obj/structure/table/wood, /obj/effect/floor_decal/spline/fancy/wood, @@ -142636,73 +142871,56 @@ /obj/structure/window/reinforced/holowindow, /turf/simulated/floor/holofloor/wood, /area/horizon/holodeck/source_courtroom) -"uwa" = ( -/obj/machinery/portable_atmospherics/canister/air, -/obj/machinery/atmospherics/portables_connector{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/outline/blue, -/turf/simulated/floor/tiled/dark/full, -/area/tcommsat/entrance) "uwb" = ( /obj/structure/lattice/catwalk/indoor, /turf/simulated/open/airless, /area/horizon/exterior) -"uwf" = ( -/obj/effect/shuttle_landmark/lift/robotics_first_deck, -/turf/simulated/floor/plating, -/area/rnd/eva) -"uwg" = ( -/obj/machinery/computer/telecomms/monitor{ - network = "tcommsat" - }, -/turf/simulated/floor/tiled/dark/full, -/area/tcommsat/entrance) -"uwj" = ( -/obj/structure/platform/cutout{ - dir = 8 - }, -/obj/structure/platform_stairs/full/east_west_cap, -/obj/structure/platform{ +"uwk" = ( +/obj/machinery/light{ dir = 1 }, -/obj/structure/railing/mapped, -/turf/simulated/floor/tiled/dark, -/area/bridge/controlroom) -"uwm" = ( -/obj/machinery/door/blast/regular{ - id = "iso_a_purge"; - name = "Exterior Blast Door" - }, -/turf/simulated/floor/reinforced, -/area/rnd/isolation_c) -"uwo" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 10 - }, -/obj/machinery/light, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/starboard) -"uwz" = ( -/obj/machinery/alarm/west, -/turf/simulated/floor/tiled, -/area/medical/washroom) -"uwB" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/structure/cable/green{ +/obj/machinery/alarm/east, +/obj/machinery/iv_drip, +/obj/effect/floor_decal/industrial/outline/red, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/icu) +"uwq" = ( +/obj/structure/cable{ icon_state = "4-8" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/substation/operations) +"uwA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ dir = 6 }, /obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ - dir = 6 +/obj/machinery/light/small/emergency{ + dir = 1 }, /turf/simulated/floor/plating, -/area/engineering/storage/lower) +/area/horizon/maintenance/deck_1/wing/starboard/far) +"uwC" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/horizon/operations/lobby) +"uwF" = ( +/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/horizon/hangar/auxiliary) "uwL" = ( /obj/effect/floor_decal/corner/grey{ dir = 9 @@ -142718,18 +142936,12 @@ }, /turf/unsimulated/floor/marble, /area/antag/wizard) -"uwO" = ( -/obj/machinery/telecomms/allinone/ship/station_relay, -/turf/simulated/floor/bluegrid, -/area/tcommsat/chamber) -"uwT" = ( -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/random/junk, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/hangar/starboard) +"uwS" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/recharge_station, +/obj/effect/floor_decal/spline/plain/cee, +/turf/simulated/floor/carpet/rubber, +/area/horizon/crew/chargebay) "uwU" = ( /obj/effect/floor_decal/corner/paleblue{ dir = 5 @@ -142750,38 +142962,17 @@ }, /turf/unsimulated/floor, /area/centcom/holding) -"uwX" = ( -/obj/effect/floor_decal/corner_wide/yellow{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/engineering/lobby) -"uxb" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/bridge/controlroom) -"uxk" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/lab) -"uxn" = ( -/obj/structure/cable/green{ +"uwY" = ( +/turf/simulated/wall/r_wall, +/area/horizon/rnd/xenobiology) +"uxg" = ( +/obj/structure/cable{ icon_state = "2-8" }, -/obj/effect/floor_decal/spline/fancy/wood{ +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -142790,66 +142981,156 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/effect/floor_decal/spline/plain/yellow{ + dir = 8 }, -/turf/simulated/floor/wood, -/area/bridge/meeting_room) -"uxr" = ( -/obj/effect/floor_decal/corner/brown{ - dir = 5 +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/reactor/indra/smes) +"uxj" = ( +/obj/structure/closet/secure_closet/engineering_chief, +/obj/item/device/radio/intercom/south, +/obj/machinery/requests_console/east{ + announcementConsole = 1; + department = "Chief Engineer's Desk"; + departmentType = 6; + name = "Chief Engineer RC" }, -/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/carpet, +/area/horizon/command/heads/chief) +"uxm" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 10 + }, +/obj/machinery/camera/network/third_deck{ + c_tag = "Third Deck - Dormitories Entrance"; + dir = 1 + }, +/obj/machinery/light/floor, /turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/starboard) +/area/horizon/hallway/primary/deck_3/port) +"uxq" = ( +/obj/structure/bed/stool/chair/shuttle/double{ + pixel_x = -8 + }, +/obj/structure/bed/stool/chair/shuttle/double{ + pixel_x = 8 + }, +/obj/effect/floor_decal/spline/plain/black{ + dir = 6 + }, +/obj/item/device/radio/intercom/expedition/north, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/shuttle/intrepid/starboard_compartment) +"uxs" = ( +/obj/structure/closet/secure_closet/custodial, +/obj/effect/floor_decal/corner/purple/full{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/outline/custodial, +/turf/simulated/floor/tiled, +/area/horizon/service/custodial) "uxt" = ( /obj/vehicle/droppod/syndie{ connected_blastdoor = "loner_droppod_1" }, /turf/unsimulated/floor/monotile, /area/antag/loner) +"uxv" = ( +/obj/structure/tank_wall/carbon_dioxide{ + density = 0; + icon_state = "co2-12"; + opacity = 0 + }, +/obj/machinery/atmospherics/pipe/simple/visible/black, +/turf/simulated/floor/reinforced/carbon_dioxide, +/area/horizon/engineering/atmos) "uxw" = ( /obj/structure/window/reinforced/crescent, /obj/structure/lattice/catwalk, /turf/space/dynamic, /area/template_noop) -"uxF" = ( -/obj/random/pottedplant, -/obj/machinery/light{ - dir = 8 +"uxx" = ( +/obj/machinery/fusion_fuel_injector/mapped{ + dir = 8; + initial_id_tag = "horizon_fusion" }, -/obj/effect/floor_decal/corner/white/diagonal, -/obj/effect/floor_decal/spline/plain{ +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/simulated/floor/carpet/rubber, +/area/horizon/engineering/reactor/indra/mainchamber) +"uxB" = ( +/obj/effect/map_effect/window_spawner/full/reinforced/polarized/grille/firedoor{ + id = "XO" + }, +/obj/structure/cable/green{ + icon_state = "0-8" + }, +/turf/simulated/floor, +/area/horizon/command/heads/xo) +"uxH" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/table/steel, +/obj/item/device/healthanalyzer{ + pixel_y = 4 + }, +/obj/item/device/healthanalyzer, +/obj/item/device/analyzer/plant_analyzer{ + pixel_y = -4 + }, /turf/simulated/floor/tiled/dark, -/area/horizon/hallway/deck_three/primary/central) +/area/horizon/engineering/storage/tech) "uxI" = ( /obj/effect/decal/cleanable/liquid_fuel, /turf/unsimulated/floor, /area/centcom/legion/hangar5) -"uxN" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/effect/floor_decal/corner/dark_blue/full, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ +"uxJ" = ( +/obj/effect/floor_decal/industrial/warning{ dir = 8 }, -/obj/structure/cable/green{ - icon_state = "1-8" +/obj/structure/tank_wall/nitrous_oxide{ + icon_state = "n2o8" }, -/turf/simulated/floor/tiled/dark, -/area/turret_protected/ai_upload) -"uxR" = ( -/obj/machinery/atmospherics/pipe/simple/visible, -/turf/simulated/floor/reinforced/airmix, -/area/engineering/atmos/air) +/turf/simulated/floor/plating, +/area/horizon/engineering/atmos/air) "uxU" = ( /obj/effect/floor_decal/spline/plain, /turf/simulated/floor/exoplanet/barren/raskara, /area/centcom/shared_dream) +"uxX" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/effect/floor_decal/industrial/outline/emergency_closet, +/turf/simulated/floor/plating, +/area/horizon/engineering/atmos/air) +"uxY" = ( +/obj/effect/floor_decal/corner_wide/black{ + dir = 10 + }, +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/atmos/propulsion/starboard) "uya" = ( /obj/machinery/door/airlock/centcom{ name = "Administrative Wing"; @@ -142862,19 +143143,38 @@ }, /turf/unsimulated/floor, /area/centcom/control) -"uyc" = ( -/obj/structure/window/reinforced{ - dir = 1 +"uyb" = ( +/obj/structure/cable/green{ + icon_state = "2-4" }, -/obj/structure/filingcabinet/chestdrawer, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenoarch_atrium) +/obj/effect/floor_decal/corner/yellow{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/horizon/engineering/locker_room) +"uyj" = ( +/obj/structure/table/wood, +/obj/random/pottedplant_small{ + pixel_x = -5 + }, +/obj/machinery/power/outlet{ + pixel_y = 4; + pixel_x = 10 + }, +/turf/simulated/floor/carpet/art, +/area/horizon/crew/lounge) "uym" = ( /obj/machinery/atmospherics/pipe/simple/visible/universal, /obj/structure/lattice, /obj/machinery/meter, /turf/space/dynamic, /area/horizon/exterior) +"uyn" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/green{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/horizon/engineering/reactor/supermatter/mainchamber) "uyo" = ( /obj/machinery/vending/coffee/free{ pixel_x = -1 @@ -142883,16 +143183,22 @@ icon_state = "dark_preview" }, /area/centcom/control) -"uyt" = ( -/obj/effect/floor_decal/spline/plain/black{ - dir = 1 +"uyp" = ( +/turf/simulated/wall/r_wall, +/area/horizon/ai/chamber) +"uyv" = ( +/obj/effect/floor_decal/corner/dark_green/full{ + dir = 4 }, -/obj/effect/floor_decal/corner/dark_green, -/obj/structure/cable/green{ - icon_state = "4-8" +/obj/machinery/light/floor{ + dir = 4 + }, +/obj/effect/floor_decal/spline/plain, +/obj/effect/floor_decal/spline/plain/orange{ + dir = 4 }, /turf/simulated/floor/tiled, -/area/horizon/crew_quarters/fitness/gym) +/area/horizon/service/hydroponics) "uyw" = ( /obj/structure/railing/mapped{ dir = 8 @@ -142904,49 +143210,25 @@ /obj/item/nullrod/dominia/holodeck, /turf/simulated/floor/marble, /area/horizon/holodeck/source_tribunal) -"uyz" = ( +"uyx" = ( +/obj/machinery/door/airlock/glass{ + dir = 1; + name = "Horizon Dining Hall" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/full, +/area/horizon/hallway/primary/deck_2/fore) +"uyy" = ( +/obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + icon_state = "1-2" + }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/dark, -/area/rnd/lab) -"uyA" = ( -/obj/structure/table/reinforced/wood, -/obj/item/folder/blue{ - pixel_x = -3 - }, -/obj/item/folder/red, -/obj/item/folder/yellow{ - pixel_x = 3 - }, -/obj/machinery/button/remote/blast_door{ - dir = 9; - id = "shutters_deck3_xo"; - name = "Window Shutter Control"; - pixel_x = 5; - pixel_y = 10; - icon_rotation = 90 - }, -/turf/simulated/floor/carpet, -/area/crew_quarters/heads/hop/xo) -"uyB" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/structure/platform, -/turf/simulated/floor/reinforced, -/area/bridge/controlroom) -"uyC" = ( -/turf/simulated/wall/r_wall, -/area/horizon/longbow) -"uyD" = ( -/obj/structure/railing/mapped, -/obj/structure/sign/directions/tcom{ - dir = 8; - pixel_x = -32 - }, -/turf/simulated/open, -/area/engineering/break_room) +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/icu) "uyL" = ( /turf/simulated/floor/exoplanet/water/shallow{ dir = 9; @@ -142955,6 +143237,23 @@ name = "coast" }, /area/horizon/holodeck/source_konyang) +"uyN" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner/dark_blue/diagonal, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/horizon/command/bridge/upperdeck) "uyR" = ( /obj/structure/dueling_table/no_collide/above_layer{ icon_state = "top_right" @@ -142964,19 +143263,6 @@ }, /turf/simulated/floor/holofloor/wood, /area/horizon/holodeck/source_battlemonsters) -"uyV" = ( -/obj/structure/table/standard, -/obj/item/storage/bag/circuits/basic, -/obj/item/device/integrated_electronics/debugger, -/obj/item/device/integrated_electronics/wirer, -/obj/effect/floor_decal/corner/mauve{ - dir = 6 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/telesci) "uyY" = ( /obj/random/pottedplant, /obj/effect/floor_decal/corner/grey{ @@ -142984,52 +143270,12 @@ }, /turf/unsimulated/floor, /area/antag/mercenary) -"uza" = ( -/obj/machinery/door/blast/regular{ - _wifi_id = "waste"; - dir = 4; - id = "waste" - }, -/obj/effect/floor_decal/industrial/hatch/red, -/obj/structure/plasticflaps/airtight, -/turf/simulated/floor/reinforced{ - roof_type = null - }, -/area/horizon/custodial/disposals) "uzb" = ( /obj/effect/floor_decal/corner/paleblue{ dir = 1 }, /turf/unsimulated/floor, /area/centcom/distress_prep) -"uzf" = ( -/obj/machinery/atmospherics/portables_connector, -/obj/machinery/door/window/southleft{ - name = "Canister Access" - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/portable_atmospherics/canister/air/airlock, -/turf/simulated/floor, -/area/maintenance/bridge) -"uzh" = ( -/obj/structure/table/steel, -/obj/random/tool{ - pixel_y = -4 - }, -/turf/simulated/floor/plating, -/area/engineering/rust_office) -"uzi" = ( -/obj/effect/floor_decal/corner/mauve{ - dir = 10 - }, -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/obj/machinery/light/floor, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology/hazardous) "uzj" = ( /obj/machinery/atmospherics/pipe/simple/visible/purple, /obj/structure/lattice/catwalk/indoor, @@ -143056,30 +143302,16 @@ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/outpost/research/anomaly_storage) -"uzo" = ( -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology/xenological) -"uzp" = ( -/obj/structure/sign/flag/scc/unmovable, -/turf/simulated/wall/r_wall, -/area/bridge/controlroom) -"uzr" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 6 +/area/horizon/rnd/xenoarch/anomaly_storage) +"uzq" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 10 }, -/obj/effect/floor_decal/spline/plain/corner{ - dir = 4 +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 1 }, -/obj/machinery/light, -/obj/machinery/atmospherics/pipe/simple/hidden/black{ - dir = 9 - }, -/turf/simulated/floor/carpet/rubber, -/area/tcommsat/chamber) -"uzs" = ( -/turf/simulated/floor/tiled/white, -/area/operations/lower/machinist/surgicalbay) +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_3/port/docks) "uzt" = ( /obj/structure/window/reinforced{ dir = 4 @@ -143089,39 +143321,24 @@ }, /turf/simulated/floor/tiled/dark, /area/shuttle/merchant) -"uzv" = ( -/obj/effect/floor_decal/spline/fancy, -/obj/item/crowbar/red, -/obj/item/crowbar/red{ - pixel_y = 6 +"uzu" = ( +/obj/machinery/camera/network/first_deck{ + c_tag = "First Deck - Hangar 15" }, -/obj/item/device/flashlight{ - pixel_y = 7 +/obj/machinery/floodlight, +/obj/effect/floor_decal/industrial/outline/grey, +/turf/simulated/floor/plating, +/area/horizon/hangar/auxiliary) +"uzw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 }, -/obj/item/device/flashlight{ - pixel_y = 2 +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/structure/railing/mapped, -/obj/structure/table/reinforced/steel, -/turf/simulated/floor/carpet/rubber, -/area/bridge/controlroom) -"uzy" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/camera/network/service{ - c_tag = "Dinner - Kitchen Freezer"; - dir = 8 - }, -/turf/simulated/floor/tiled/freezer{ - name = "cooled tiles"; - temperature = 253.15 - }, -/area/horizon/kitchen/freezer) +/obj/item/device/radio/intercom/north, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/surgery) "uzz" = ( /obj/effect/floor_decal/spline/plain{ dir = 4 @@ -143129,7 +143346,106 @@ /obj/structure/flora/ausbushes/lavendergrass, /turf/simulated/floor/exoplanet/grass/grove, /area/centcom/shared_dream) -"uzB" = ( +"uzK" = ( +/obj/structure/sign/flag/nanotrasen{ + pixel_y = 30 + }, +/turf/simulated/floor/shuttle/dark_red, +/area/shuttle/hapt) +"uzO" = ( +/obj/structure/window/reinforced/crescent{ + dir = 8 + }, +/obj/structure/window/reinforced/crescent, +/obj/structure/flora/ausbushes/lavendergrass, +/turf/simulated/floor/grass/no_edge, +/area/centcom/holding) +"uzR" = ( +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/smes) +"uzW" = ( +/obj/machinery/iff_beacon/horizon{ + pixel_y = 6 + }, +/obj/effect/floor_decal/industrial/warning/cee{ + dir = 4 + }, +/obj/structure/railing/mapped, +/turf/simulated/floor/tiled/dark/full/airless, +/area/horizon/command/bridge/controlroom) +"uzX" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/floor_decal/spline/plain{ + dir = 4 + }, +/turf/simulated/floor/carpet/rubber, +/area/horizon/engineering/bluespace_drive/monitoring) +"uAd" = ( +/obj/structure/lattice, +/obj/structure/grille, +/obj/structure/grille, +/turf/simulated/open/airless, +/area/horizon/exterior) +"uAp" = ( +/obj/effect/floor_decal/corner/green/diagonal, +/obj/effect/floor_decal/spline/fancy{ + dir = 5 + }, +/obj/structure/easel{ + anchored = 1 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/shared_dream) +"uAq" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/platform_deco{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/horizon/command/bridge/upperdeck) +"uAx" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 9 + }, +/obj/structure/bed/stool/chair{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/outline/security, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/horizon/security/hallway) +"uAA" = ( +/obj/effect/floor_decal/industrial/outline/grey, +/turf/simulated/floor/tiled/dark, +/area/horizon/maintenance/deck_2/wing/starboard/nacelle) +"uAF" = ( /obj/structure/cable/green{ icon_state = "4-8" }, @@ -143145,185 +143461,23 @@ /obj/effect/floor_decal/corner/brown{ dir = 5 }, -/obj/machinery/computer/shuttle_control/multi/lift/wall/operations{ - pixel_x = -30; - pixel_y = 26 - }, /turf/simulated/floor/tiled, -/area/operations/loading) -"uzG" = ( -/obj/structure/bed/stool/chair/office/light, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology/xenological) -"uzK" = ( -/obj/structure/sign/flag/nanotrasen{ - pixel_y = 30 - }, -/turf/simulated/floor/shuttle/dark_red, -/area/shuttle/hapt) -"uzL" = ( -/obj/effect/floor_decal/corner/mauve/diagonal, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology) -"uzO" = ( -/obj/structure/window/reinforced/crescent{ - dir = 8 - }, -/obj/structure/window/reinforced/crescent, -/obj/structure/flora/ausbushes/lavendergrass, -/turf/simulated/floor/grass/no_edge, -/area/centcom/holding) -"uzP" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/wood/walnut, -/area/medical/smoking) -"uzQ" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/closet/crate, -/obj/random/loot, -/turf/simulated/floor/plating, -/area/maintenance/wing/port/far) -"uzT" = ( -/obj/structure/cable/yellow, -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/machinery/power/smes/buildable/main_engine{ - RCon_tag = "Supermatter - Grid" - }, -/obj/effect/landmark/engine_setup/smes, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/engineering/smes) -"uzW" = ( -/obj/machinery/iff_beacon/horizon{ - pixel_y = 6 - }, -/obj/effect/floor_decal/industrial/warning/cee{ - dir = 4 - }, -/obj/structure/railing/mapped, -/turf/simulated/floor/tiled/dark/full/airless, -/area/horizon/exterior) -"uzZ" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 10 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/machinery/camera/network/first_deck{ - c_tag = "First Deck - Hangar 2"; - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/hangar/intrepid) -"uAb" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard) -"uAd" = ( -/obj/structure/lattice, -/obj/structure/grille, -/obj/structure/grille, -/turf/simulated/open/airless, -/area/horizon/exterior) -"uAi" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/structure/tank_wall/carbon_dioxide{ - icon_state = "co2-8" - }, -/turf/simulated/floor/airless, -/area/engineering/atmos) -"uAj" = ( -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/effect/floor_decal/corner/black{ - dir = 9 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/loading/yellow{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/hangar/intrepid) -"uAp" = ( -/obj/effect/floor_decal/corner/green/diagonal, -/obj/effect/floor_decal/spline/fancy{ - dir = 5 - }, -/obj/structure/easel{ - anchored = 1 - }, -/turf/simulated/floor/tiled/white, -/area/centcom/shared_dream) -"uAx" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 9 - }, -/obj/structure/bed/stool/chair{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/outline/security, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/horizon/security/hallway) -"uAy" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/hangar/intrepid) -"uAD" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 10 - }, -/obj/structure/table/reinforced/steel, -/obj/item/device/multitool{ - pixel_y = 4; - pixel_x = 12 - }, -/turf/simulated/floor/carpet/rubber, -/area/engineering/bluespace_drive/monitoring) +/area/horizon/operations/mining_main/refinery) "uAH" = ( /obj/structure/bed/stool/chair/sofa/left/brown{ dir = 4 }, /turf/simulated/floor/carpet/purple, /area/centcom/shared_dream) -"uAI" = ( -/obj/structure/table/rack, -/obj/random/loot, -/obj/effect/floor_decal/industrial/warning{ - dir = 6 +"uAJ" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/black{ + dir = 8 }, -/turf/simulated/floor, -/area/horizon/maintenance/deck_three/aft/starboard) +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/atmos/propulsion) "uAK" = ( /obj/structure/table/rack, /obj/effect/floor_decal/industrial/outline/yellow, @@ -143347,70 +143501,74 @@ }, /turf/unsimulated/floor, /area/centcom/legion/hangar5) +"uAM" = ( +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/obj/effect/floor_decal/corner/purple{ + dir = 9 + }, +/obj/machinery/power/apc/west, +/obj/structure/engineer_maintenance/pipe{ + dir = 8 + }, +/obj/structure/engineer_maintenance/electric, +/turf/simulated/floor/tiled/dark, +/area/horizon/service/custodial/disposals/deck_1) +"uAO" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 10 + }, +/obj/machinery/firealarm/south, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_3/port) "uAQ" = ( /obj/machinery/light/small{ dir = 8 }, /turf/unsimulated/floor/monotile, /area/antag/raider) -"uAS" = ( -/obj/machinery/suit_storage_unit/standard_unit, -/obj/effect/floor_decal/corner/dark_blue/full{ - dir = 8 +"uAX" = ( +/obj/structure/grille, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id = "bridge blast"; + name = "Bridge Blast Doors"; + opacity = 0 }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/dark, -/area/teleporter) -"uAV" = ( -/obj/machinery/portable_atmospherics/hydroponics, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/atmospherics/portables_connector{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/hydroponics/lower) -"uBc" = ( -/obj/structure/bed/stool/chair/office/bridge{ - dir = 8 - }, -/obj/effect/floor_decal/corner/dark_blue/diagonal, -/obj/item/device/radio/intercom/west{ - pixel_y = 36 - }, -/obj/machinery/keycard_auth{ - pixel_x = -31; - pixel_y = 26 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge/aibunker) -"uBg" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/carpet/rubber, -/area/engineering/bluespace_drive/monitoring) -"uBj" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/machinery/door/airlock/external, -/obj/machinery/access_button{ - dir = 1; - pixel_x = -28; - pixel_y = 12 - }, -/obj/effect/map_effect/marker_helper/airlock/interior, -/obj/effect/map_effect/marker/airlock/docking{ - landmark_tag = "nav_horizon_dock_deck_3_starboard_3"; - master_tag = "airlock_horizon_dock_deck_3_starboard_3"; - name = "airlock_horizon_dock_deck_3_starboard_3" +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/shutters/open{ + dir = 2; + id = "shutters_deck3_bridgesafety"; + name = "Safety Shutter" }, +/obj/structure/window/shuttle/scc_space_ship/cardinal, /turf/simulated/floor/plating, -/area/horizon/hallway/deck_three/primary/starboard/docks) -"uBl" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/cyan{ +/area/horizon/command/bridge/minibar) +"uBf" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/aux{ dir = 4 }, /turf/simulated/floor/plating, -/area/engineering/engine_room) +/area/horizon/maintenance/deck_1/main/starboard) +"uBh" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_3/central) "uBm" = ( /obj/structure/shuttle_part/tcfl{ icon_state = "13,1"; @@ -143421,37 +143579,94 @@ }, /turf/simulated/floor/tiled/dark, /area/shuttle/legion) -"uBy" = ( -/obj/structure/cable/green{ - icon_state = "1-2" +"uBq" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 5 }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/corner/dark_blue/full{ +/obj/structure/extinguisher_cabinet/east, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/turf/simulated/floor/tiled, +/area/horizon/crew/fitness/changing) +"uBr" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 9 + }, +/obj/machinery/light/floor{ dir = 8 }, /turf/simulated/floor/tiled, -/area/bridge) -"uBB" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ +/area/horizon/operations/office) +"uBt" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/machinery/power/apc/north, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/main/port) +"uBu" = ( +/obj/structure/bed/stool/chair{ dir = 1 }, -/obj/effect/floor_decal/industrial/hatch_door/red{ - dir = 1 +/obj/effect/floor_decal/corner/dark_green/diagonal, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_3/port) +"uBD" = ( +/obj/structure/railing/mapped{ + dir = 8 }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_research, -/obj/structure/cable/green{ - icon_state = "1-2" +/obj/effect/floor_decal/corner/black/full{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/shuttle/quark/cockpit) +/area/horizon/hangar/intrepid) +"uBG" = ( +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/obj/machinery/power/apc/low/west, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/obj/structure/engineer_maintenance/pipe{ + dir = 8 + }, +/obj/structure/engineer_maintenance/electric, +/turf/simulated/floor/wood, +/area/horizon/service/chapel/office) +"uBH" = ( +/obj/structure/table/glass{ + table_reinf = "glass" + }, +/obj/item/paper_bin, +/obj/item/pen, +/obj/effect/floor_decal/corner_wide/green{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/hallway/upper) "uBJ" = ( /obj/effect/floor_decal/corner/paleblue, /turf/unsimulated/floor, /area/centcom/legion) +"uBN" = ( +/obj/structure/tank_wall/hydrogen{ + icon_state = "h14" + }, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/airless, +/area/horizon/engineering/atmos) "uBO" = ( /obj/structure/table/wood/gamblingtable, /obj/effect/floor_decal/spline/fancy/wood, @@ -143481,40 +143696,32 @@ /obj/effect/floor_decal/industrial/hatch/yellow, /turf/unsimulated/floor, /area/antag/mercenary) -"uBW" = ( -/obj/structure/window/shuttle/unique/scc/scout{ - icon_state = "4,2" - }, -/obj/structure/window/shuttle/unique/scc/scout/over{ - icon_state = "4,2" - }, -/obj/structure/window/shuttle/unique/scc/scout/over{ +"uBU" = ( +/obj/effect/map_effect/window_spawner/full/reinforced/grille/firedoor, +/obj/machinery/door/blast/regular{ density = 0; - icon_state = "4,3"; - pixel_y = 32 + icon_state = "pdoor0"; + id = "bridge blast"; + name = "Bridge Blast Doors"; + opacity = 0 }, -/turf/simulated/floor/plating, -/area/shuttle/canary) +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/turf/simulated/floor, +/area/horizon/command/bridge/bridge_crew) "uBY" = ( /obj/structure/shuttle_part/tcfl{ icon_state = "14,6" }, /turf/unsimulated/floor/plating, /area/shuttle/legion) -"uCd" = ( -/obj/structure/bed/stool/chair/office/bridge/generic, -/obj/effect/landmark/start{ - name = "Research Director" +"uCa" = ( +/obj/structure/bed/stool/chair/office/bridge/pilot{ + dir = 4 }, -/obj/effect/floor_decal/corner/mauve{ - dir = 5 - }, -/obj/structure/cable/green{ - icon_state = "0-2" - }, -/obj/machinery/power/apc/north, -/turf/simulated/floor/tiled/white, -/area/rnd/conference) +/turf/simulated/floor/shuttle/dark_blue, +/area/horizon/shuttle/escape_pod/pod2) "uCe" = ( /obj/effect/floor_decal/corner{ dir = 1 @@ -143529,23 +143736,19 @@ }, /turf/simulated/floor/marble/dark, /area/horizon/holodeck/source_tribunal) -"uCf" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 5 +"uCh" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 10 }, -/turf/simulated/floor/wood, -/area/chapel/main) +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/hangar/control) "uCk" = ( /obj/effect/shuttle_landmark/escape_pod/out/pod2, /turf/space/transit/east, /area/template_noop) -"uCm" = ( -/obj/random/pottedplant, -/obj/effect/floor_decal/corner/dark_green/full{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/central) "uCo" = ( /obj/structure/grille, /obj/machinery/door/firedoor, @@ -143562,30 +143765,6 @@ }, /turf/simulated/floor/plating, /area/horizon/security/autopsy_laboratory) -"uCq" = ( -/obj/structure/cable/green{ - icon_state = "0-4" - }, -/obj/machinery/power/sensor{ - name = "Powernet Sensor - Deck 1 Research Subgrid"; - name_tag = "Deck 1 Research Subgrid" - }, -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/obj/machinery/power/apc/low/west, -/turf/simulated/floor/plating, -/area/maintenance/substation/research_sublevel) -"uCr" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/black{ - dir = 8 - }, -/obj/machinery/meter, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/engineering/atmos/propulsion/starboard) "uCt" = ( /obj/machinery/light{ dir = 8; @@ -143594,39 +143773,57 @@ }, /turf/unsimulated/floor/plating, /area/centcom/spawning) -"uCw" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 +"uCu" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 9 }, -/obj/machinery/atmospherics/binary/pump{ +/obj/structure/platform{ dir = 4 }, -/turf/simulated/floor/plating, -/area/rnd/xenoarch_atrium) -"uCz" = ( -/obj/effect/floor_decal/corner_wide/yellow{ +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 5 }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, -/area/hallway/engineering) -"uCB" = ( -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/machinery/light/small/emergency{ +/area/horizon/command/bridge/upperdeck) +"uCx" = ( +/obj/effect/floor_decal/corner/black{ + dir = 9 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/hangar/intrepid) +"uCC" = ( +/obj/structure/toilet{ + pixel_y = 16 + }, +/obj/machinery/light/small{ dir = 4 }, +/obj/structure/bed/handrail{ + dir = 4 + }, +/obj/machinery/button/remote/airlock{ + dir = 1; + id = "main_unit_1"; + name = "Door Bolt Control"; + pixel_y = 34; + specialfunctions = 4 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/crew/fitness/changing) +"uCE" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/industrial/hatch/engineering, +/obj/machinery/door/airlock/engineering{ + name = "C-Goliath Drive Control Room"; + req_one_access = list(11,24) + }, /turf/simulated/floor/plating, -/area/maintenance/wing/starboard/deck1) +/area/horizon/engineering/bluespace_drive) "uCH" = ( /obj/structure/cryofeed{ dir = 1 @@ -143646,15 +143843,6 @@ }, /turf/unsimulated/floor, /area/centcom/holding) -"uCL" = ( -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 9 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/dark, -/area/engineering/atmos) "uCM" = ( /obj/effect/decal/fake_object{ color = "#545c68"; @@ -143675,6 +143863,42 @@ density = 1 }, /area/antag/ninja) +"uCN" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/main/port) +"uCO" = ( +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/obj/structure/disposalpipe/junction{ + dir = 8; + icon_state = "pipe-j2" + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor, +/area/horizon/hallway/primary/deck_3/port) "uDd" = ( /obj/effect/floor_decal/spline/plain, /turf/simulated/floor/beach/sand{ @@ -143682,81 +143906,50 @@ icon_state = "beachcorner" }, /area/centcom/shared_dream) -"uDf" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, +"uDg" = ( +/obj/structure/table/rack, +/obj/random/loot, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/random/junk, -/obj/structure/railing/mapped{ - dir = 8 + dir = 5 }, /turf/simulated/floor/plating, -/area/horizon/maintenance/deck_two/fore/starboard) -"uDh" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/effect/floor_decal/corner/dark_green{ - dir = 10 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/structure/railing/mapped, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/central) -"uDi" = ( -/obj/machinery/light/small/emergency{ +/area/horizon/maintenance/deck_2/wing/starboard/far) +"uDl" = ( +/obj/effect/floor_decal/spline/fancy/wood/cee{ dir = 8 }, -/obj/item/stack/rods, -/obj/effect/floor_decal/industrial/warning{ +/obj/structure/flora/ausbushes/ppflowers, +/obj/structure/flora/ausbushes/sunnybush, +/obj/structure/railing/mapped, +/turf/simulated/floor/grass/no_edge, +/area/horizon/stairwell/port/deck_3) +"uDo" = ( +/obj/structure/cable/orange{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/industrial/warning/corner, +/obj/structure/cable/orange{ + icon_state = "1-4" + }, +/obj/machinery/light/spot, +/turf/simulated/floor/plating, +/area/horizon/engineering/reactor/supermatter/mainchamber) +"uDp" = ( +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 6 }, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"uDj" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/full, -/area/engineering/storage_hard) -"uDm" = ( -/turf/simulated/floor/wood, -/area/crew_quarters/lounge/secondary) -"uDv" = ( -/obj/machinery/door/airlock/command{ - dir = 4; - id_tag = "CMOdoor"; - name = "Chief Medical Officer's Office"; - req_access = list(40) - }, -/obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 + dir = 6 }, /obj/structure/disposalpipe/segment{ - dir = 4 + dir = 4; + icon_state = "pipe-c" }, /turf/simulated/floor/tiled/full, -/area/crew_quarters/heads/cmo) +/area/horizon/hallway/primary/deck_2/central) "uDx" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/fake_object{ @@ -143771,12 +143964,44 @@ icon_state = "wood-broken2" }, /area/centcom/legion/hangar5) -"uDG" = ( -/obj/machinery/atmospherics/pipe/simple/visible/black{ - dir = 9 +"uDB" = ( +/obj/machinery/button/remote/blast_door{ + dir = 4; + id = "bar_shutter"; + name = "Desk Shutters"; + pixel_x = 19; + pixel_y = 34; + req_access = list(25) }, -/turf/simulated/floor/plating, -/area/engineering/atmos/air) +/turf/simulated/floor/lino, +/area/horizon/service/bar) +"uDC" = ( +/obj/effect/floor_decal/sign/gtr, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/sign/icu, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/icu) +"uDE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/carpet/rubber, +/area/horizon/engineering/reactor/indra/monitoring) +"uDF" = ( +/obj/machinery/alarm/west, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled, +/area/horizon/operations/warehouse) "uDI" = ( /obj/effect/decal/fake_object/light_source{ icon = 'icons/effects/props/holodeck/konyang/32x96.dmi'; @@ -143792,6 +144017,37 @@ name = "coast" }, /area/horizon/holodeck/source_konyang) +"uDJ" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 9 + }, +/obj/structure/sink{ + dir = 8; + pixel_x = -12 + }, +/obj/machinery/newscaster/security_unit/west, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/marble/dark, +/area/horizon/command/bridge/minibar) +"uDL" = ( +/obj/structure/railing/mapped{ + dir = 8 + }, +/turf/simulated/open, +/area/horizon/stairwell/starboard/deck_2) +"uDP" = ( +/obj/machinery/disposal/small/east{ + pixel_x = -16 + }, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/pharmacy) +"uDT" = ( +/turf/simulated/floor/plating, +/area/horizon/engineering/drone_fabrication) "uDV" = ( /obj/effect/floor_decal/corner/dark_blue{ dir = 9 @@ -143802,6 +144058,29 @@ }, /turf/simulated/floor/tiled, /area/horizon/security/hallway) +"uDW" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/horizon/command/bridge/controlroom) +"uDY" = ( +/obj/machinery/disposal/small/south, +/obj/structure/disposalpipe/trunk, +/obj/effect/floor_decal/corner/dark_green{ + dir = 5 + }, +/obj/machinery/camera/network/second_deck{ + c_tag = "Second Deck - Hallway 2" + }, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_2/central) "uEe" = ( /obj/structure/railing/mapped{ dir = 4 @@ -143818,6 +144097,24 @@ }, /turf/simulated/floor/holofloor/tiled, /area/template_noop) +"uEl" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/obj/effect/floor_decal/corner/dark_green/full{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_2/fore) "uEm" = ( /obj/effect/decal/fake_object{ color = "#545c68"; @@ -143839,6 +144136,32 @@ density = 1 }, /area/antag/ninja) +"uEo" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 6 + }, +/obj/item/hoist_kit, +/obj/item/hoist_kit, +/obj/item/ladder_mobile{ + pixel_y = 12 + }, +/obj/item/ladder_mobile{ + pixel_y = 12 + }, +/obj/structure/table/steel, +/turf/simulated/floor/tiled/dark, +/area/horizon/storage/eva) +"uEp" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/airlock/hatch{ + dir = 1; + name = "Supermatter Reactor SMES"; + req_one_access = list(11,24) + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/smes) "uEq" = ( /obj/structure/table/wood, /obj/effect/floor_decal/spline/fancy/wood/cee{ @@ -143846,42 +144169,44 @@ }, /turf/simulated/floor/holofloor/wood, /area/horizon/holodeck/source_courtroom) -"uEs" = ( -/obj/structure/railing/mapped, -/obj/structure/lattice/catwalk/indoor/grate/dark, +"uEr" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, /turf/simulated/floor/plating, -/area/maintenance/wing/starboard) +/area/horizon/maintenance/deck_1/wing/port/far) +"uEv" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/main/port) "uEw" = ( /obj/effect/floor_decal/spline/fancy/wood, /turf/unsimulated/floor/wood, /area/antag/mercenary) -"uEF" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 +"uEM" = ( +/obj/effect/landmark/entry_point/port{ + name = "port, deck 1 maintenance" }, -/turf/simulated/floor/tiled/dark, -/area/horizon/grauwolf) -"uEJ" = ( -/obj/machinery/atmospherics/omni/mixer{ - active_power_usage = 7500; - name = "air mixer"; - tag_east = 2; - tag_north = 1; - tag_north_con = 0.21; - tag_west = 1; - tag_west_con = 0.79 - }, -/obj/effect/floor_decal/industrial/hatch/red, -/turf/simulated/floor/plating, -/area/engineering/atmos/air) +/turf/simulated/wall/shuttle/scc_space_ship/cardinal, +/area/horizon/maintenance/deck_1/wing/port/far) "uEN" = ( /turf/unsimulated/floor{ name = "staircase" }, /area/antag/actor) -"uEO" = ( -/turf/simulated/floor/tiled, -/area/bridge/controlroom) "uEQ" = ( /obj/structure/table/stone/marble, /obj/item/reagent_containers/food/snacks/sushi_serve{ @@ -143902,26 +144227,6 @@ }, /turf/unsimulated/floor, /area/centcom/bar) -"uER" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 9 - }, -/obj/structure/sink{ - dir = 8; - pixel_x = -12 - }, -/obj/machinery/newscaster/security_unit/west, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/marble/dark, -/area/bridge/minibar) -"uEU" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/visible/black{ - dir = 4 - }, -/obj/structure/window/shuttle/scc_space_ship/cardinal, -/turf/simulated/floor/plating, -/area/engineering/engine_room/turbine) "uEV" = ( /obj/structure/table/reinforced/steel, /obj/machinery/atmospherics/unary/vent_pump/on{ @@ -143932,7 +144237,7 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/outpost/research/anomaly_storage) +/area/horizon/rnd/xenoarch/anomaly_storage) "uEW" = ( /obj/structure/shuttle_part/ert{ icon_state = "2,4"; @@ -143940,6 +144245,25 @@ }, /turf/unsimulated/floor/plating, /area/shuttle/specops) +"uEX" = ( +/obj/effect/floor_decal/corner/dark_green/full{ + dir = 8 + }, +/obj/machinery/alarm/west, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/effect/floor_decal/industrial/loading/yellow, +/turf/simulated/floor/tiled, +/area/horizon/stairwell/starboard/deck_2) +"uEZ" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 9 + }, +/obj/effect/floor_decal/spline/plain/blue{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor/tiled, +/area/horizon/service/hydroponics/lower) "uFa" = ( /turf/simulated/floor/beach/sand{ dir = 8; @@ -143973,22 +144297,12 @@ }, /turf/unsimulated/floor, /area/centcom/bar) -"uFo" = ( -/obj/machinery/atmospherics/pipe/simple/visible/black{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/structure/lattice/catwalk/indoor, -/turf/simulated/floor/plating, -/area/engineering/atmos/air) +"uFk" = ( +/obj/effect/floor_decal/corner/green/diagonal, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/closet/secure_closet/personal, +/turf/simulated/floor/tiled/white, +/area/horizon/crew/fitness/changing) "uFr" = ( /obj/effect/floor_decal/spline/plain/corner{ dir = 1 @@ -144004,133 +144318,111 @@ }, /turf/unsimulated/floor, /area/centcom/legion) -"uFv" = ( -/obj/machinery/atmospherics/pipe/simple/visible/cyan{ +"uFw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/turf/simulated/floor/plating, -/area/engineering/atmos/air) -"uFC" = ( -/obj/machinery/camera/network/research{ - c_tag = "Research - Research & Development"; - pixel_y = 9; +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 8 }, -/obj/structure/table/standard, -/obj/machinery/button/remote/blast_door{ - desc = "It controls the research shutters."; - id = "RnDShutters"; - name = "Research Shutters"; - dir = 6; - pixel_y = -1; - pixel_x = -7 +/obj/structure/cable/green{ + icon_state = "4-8" }, -/obj/machinery/button/remote/blast_door{ - desc = "It controls the research shutters."; - id = "shutters_deck2_rescon"; - name = "Research Conveyor Shutter"; - dir = 6; - pixel_x = -7; - pixel_y = 10 +/obj/effect/floor_decal/industrial/hatch_door/yellow, +/obj/machinery/door/firedoor{ + req_one_access = list(24,11,67,73); + dir = 4 }, -/obj/machinery/button/remote/blast_door{ - desc = "It controls the research shutters."; - id = "RnDDesk"; - name = "Research Desk Shutters"; - pixel_x = 6; - dir = 6; - pixel_y = -1 +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 }, +/obj/item/device/radio/intercom/expedition/north, /turf/simulated/floor/tiled/dark/full, -/area/rnd/lab) -"uFF" = ( -/obj/effect/floor_decal/industrial/outline/operations, -/obj/structure/dispenser, -/obj/machinery/firealarm/south, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/atmos/storage) -"uFH" = ( -/obj/effect/floor_decal/corner_wide/yellow/full, -/turf/simulated/floor/tiled, -/area/engineering/rust_office) -"uFI" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 8 +/area/horizon/shuttle/intrepid/main_compartment) +"uFB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 }, -/obj/machinery/computer/ship/navigation{ +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/full, +/area/horizon/hallway/primary/deck_2/central) +"uFJ" = ( +/obj/effect/floor_decal/corner/dark_blue{ dir = 1 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/structure/bed/stool/chair/office/bridge/pilot, /turf/simulated/floor/tiled/dark, -/area/horizon/bar) -"uFK" = ( +/area/horizon/command/bridge/controlroom) +"uFQ" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, /obj/structure/cable{ icon_state = "4-8" }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/hatch{ - dir = 4; - name = "Supermatter Reactor SMES"; - req_one_access = list(11,24) +/obj/structure/lattice/catwalk/indoor, +/turf/simulated/floor/plating, +/area/horizon/engineering/atmos/air) +"uFS" = ( +/obj/machinery/light/small{ + dir = 4 }, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/smes) -"uFN" = ( -/obj/random/pottedplant_small{ - pixel_y = -11; - pixel_x = -9 +/obj/structure/cable/green{ + icon_state = "2-8" }, -/turf/simulated/wall/shuttle/scc, -/area/shuttle/intrepid/buffet) +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/main/port) "uFT" = ( /obj/effect/floor_decal/corner/paleblue{ dir = 5 }, /turf/unsimulated/floor, /area/centcom/distress_prep) -"uFX" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 +"uGg" = ( +/obj/structure/table/stone/marble, +/obj/machinery/door/firedoor{ + req_one_access = list(24,11,67,73); + dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 +/obj/machinery/door/blast/shutters{ + id = "intrepid_buffet"; + name = "Buffet Desk Shutter"; + dir = 4 }, -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/machinery/disposal/small/north, -/turf/simulated/floor/lino, -/area/horizon/crew_quarters/lounge/bar) -"uFZ" = ( -/obj/machinery/atmospherics/portables_connector, -/obj/machinery/portable_atmospherics/canister/air/airlock, -/obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled/dark/full, -/area/engineering/aft_airlock) -"uGd" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/reagent_dispensers/watertank, -/turf/simulated/floor/tiled/dark, -/area/maintenance/wing/starboard) -"uGh" = ( -/obj/structure/bed/stool/chair/sofa/pew/left{ - dir = 8 +/area/horizon/shuttle/intrepid/buffet) +"uGs" = ( +/obj/machinery/alarm/east{ + req_one_access = list(24,11,55) }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 5 +/obj/structure/filingcabinet/filingcabinet{ + pixel_x = 10; + pixel_y = 1 + }, +/obj/machinery/papershredder{ + pixel_x = -6 + }, +/obj/machinery/power/apc/low/north, +/obj/structure/cable/green{ + icon_state = "0-2" }, /turf/simulated/floor/wood, -/area/chapel/main) -"uGl" = ( -/obj/structure/table/wood, -/obj/effect/floor_decal/spline/fancy/wood, -/obj/random/pottedplant_small{ - pixel_y = 16 - }, -/turf/simulated/floor/wood, -/area/horizon/hallway/deck_three/primary/central) +/area/horizon/command/heads/chief) "uGt" = ( /obj/effect/floor_decal/corner/dark_blue{ dir = 10 @@ -144147,122 +144439,184 @@ /obj/effect/decal/rolling_fog, /turf/simulated/floor/holofloor/reinforced, /area/horizon/holodeck/source_jupiter) -"uGI" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/structure/closet/crate, -/obj/effect/floor_decal/corner/brown/full{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/outline/yellow, +"uGE" = ( /turf/simulated/floor/tiled, -/area/operations/storage) -"uHe" = ( +/area/horizon/operations/break_room) +"uGF" = ( +/obj/machinery/embedded_controller/radio/airlock/airlock_controller{ + dir = 8; + pixel_x = 20 + }, +/obj/effect/map_effect/marker/airlock{ + frequency = 2005; + master_tag = "airlock_horizon_deck_2_aft_sm"; + name = "airlock_horizon_deck_2_aft_sm" + }, +/turf/simulated/floor/plating, +/area/horizon/engineering/reactor/supermatter/airlock) +"uGL" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 10 + }, +/obj/structure/railing/mapped, +/turf/simulated/floor/tiled/dark, +/area/horizon/weapons/grauwolf) +"uGR" = ( +/obj/structure/platform/ledge{ + dir = 1 + }, +/obj/structure/railing/mapped, +/turf/simulated/open, +/area/horizon/operations/office) +"uGV" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black, +/turf/simulated/floor/plating, +/area/horizon/engineering/atmos/air) +"uGW" = ( +/obj/machinery/atmospherics/portables_connector, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/portable_atmospherics/powered/scrubber, +/obj/effect/floor_decal/industrial/outline/red, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/hallway/aft) +"uHf" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/outlet_injector{ + dir = 1; + use_power = 1; + name = "emergency outlet injector"; + volume_rate = 700 + }, +/obj/structure/sign/securearea{ + name = "\improper DANGER: HOT GAS sign"; + pixel_y = 29; + desc = "A warning sign which reads \"DANGER: HOT GAS\"." + }, +/turf/simulated/floor/reinforced/airless, +/area/horizon/engineering/atmos/propulsion) +"uHh" = ( +/obj/machinery/telecomms/server/presets/supply, +/turf/simulated/floor/bluegrid, +/area/horizon/tcommsat/chamber) +"uHi" = ( +/obj/structure/platform/ledge{ + dir = 1 + }, +/turf/simulated/open, +/area/horizon/hallway/primary/deck_3/central) +"uHk" = ( +/obj/effect/floor_decal/spline/fancy, +/obj/item/book/manual/wiki/security_space_law, +/obj/item/book/manual/evaguide{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/structure/railing/mapped, +/obj/structure/table/reinforced/steel, +/turf/simulated/floor/carpet/rubber, +/area/horizon/command/bridge/controlroom) +"uHo" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, /obj/effect/floor_decal/corner/dark_green{ dir = 9 }, -/obj/structure/closet/toolcloset, -/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, -/area/storage/primary) -"uHt" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 10 +/area/horizon/hallway/primary/deck_2/fore) +"uHq" = ( +/obj/structure/cable/green{ + icon_state = "4-8" }, -/obj/effect/floor_decal/corner/purple{ +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/corner/dark_blue{ dir = 6 }, /turf/simulated/floor/tiled, -/area/shuttle/quark/cargo_hold) -"uHw" = ( -/obj/machinery/light/small, -/obj/structure/table/steel, -/obj/item/reagent_containers/spray/cleaner, -/obj/effect/floor_decal/corner/lime{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/tiled/white{ - name = "cooled white floor"; - temperature = 278.15 - }, -/area/medical/morgue/lower) -"uHz" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 8 - }, -/obj/effect/floor_decal/spline/fancy/wood{ +/area/horizon/command/bridge/supply) +"uHv" = ( +/obj/machinery/atmospherics/pipe/simple/visible/green{ dir = 4 }, -/turf/simulated/floor/wood, -/area/bridge/cciaroom) +/obj/machinery/camera/network/reactor{ + c_tag = "Engineering - Supermatter Reactor External Airlock Access"; + dir = 1 + }, +/turf/simulated/floor/plating, +/area/horizon/engineering/reactor/supermatter/airlock) +"uHx" = ( +/obj/effect/floor_decal/corner/mauve/full{ + dir = 4 + }, +/obj/structure/engineer_maintenance/electric{ + dir = 1 + }, +/obj/structure/engineer_maintenance/pipe{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/chemistry) "uHA" = ( /obj/structure/shuttle_part/mercenary/small{ icon_state = "1,11" }, /turf/unsimulated/floor/plating, /area/shuttle/syndicate_elite) -"uHD" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/maintenance_hatch{ +"uHC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/maintenance/wing/port/far) -"uHH" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/engineering/storage_eva) -"uHM" = ( -/obj/structure/bed/stool/chair/office/bridge{ - dir = 8 - }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 6 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge/meeting_room) -"uHN" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/carpet/rubber, -/area/maintenance/engineering/auxillary) -"uHO" = ( -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/obj/structure/disposalpipe/segment{ - icon_state = "pipe-c" - }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/effect/floor_decal/spline/fancy/wood{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 +/obj/effect/floor_decal/corner/lime{ + dir = 10 }, -/turf/simulated/floor/wood, -/area/horizon/crew_quarters/lounge/bar) -"uHU" = ( -/obj/structure/platform, -/obj/structure/table/standard, -/obj/item/device/flashlight/lamp{ - pixel_y = -7 +/obj/effect/floor_decal/corner/dark_blue{ + dir = 1 }, -/obj/item/stock_parts/matter_bin, -/obj/item/stock_parts/matter_bin, -/obj/item/stock_parts/manipulator, -/obj/item/stock_parts/manipulator, /turf/simulated/floor/tiled/dark, -/area/rnd/lab) +/area/horizon/storage/eva) +"uHE" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 4 + }, +/obj/effect/map_effect/marker/airlock/docking{ + landmark_tag = "nav_horizon_dock_deck_3_starboard_1"; + master_tag = "airlock_horizon_dock_deck_3_starboard_1"; + name = "airlock_horizon_dock_deck_3_starboard_1" + }, +/turf/simulated/floor/plating, +/area/horizon/hallway/primary/deck_3/port/docks) +"uHG" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor/plating, +/area/horizon/operations/lobby) "uId" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/bed/stool/chair{ @@ -144270,6 +144624,36 @@ }, /turf/unsimulated/floor, /area/antag/raider) +"uIe" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/turf/simulated/floor/tiled/full, +/area/horizon/engineering/storage_hard) +"uIg" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/horizon/maintenance/deck_2/wing/starboard/auxatmos) +"uIh" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/outline/security, +/turf/simulated/floor/plating, +/area/horizon/engineering/reactor/supermatter/mainchamber) +"uIj" = ( +/obj/effect/floor_decal/corner/dark_blue, +/obj/effect/floor_decal/corner/dark_blue{ + dir = 5 + }, +/obj/machinery/alarm/east, +/obj/machinery/light/floor{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/storage/eva) "uIl" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/maintenance{ @@ -144288,34 +144672,39 @@ /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/full, /area/horizon/security/hallway) -"uIm" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" +"uIo" = ( +/obj/structure/railing/mapped{ + dir = 4 }, -/obj/structure/window/shuttle/scc_space_ship/cardinal, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "bridge blast"; - name = "Bridge Blast Doors"; - opacity = 0 - }, -/obj/machinery/door/blast/shutters{ - dir = 4; - id = "shutters_deck3_captain"; - name = "Safety Shutter" - }, -/turf/simulated/floor/plating, -/area/crew_quarters/captain) +/obj/structure/lattice, +/turf/simulated/open, +/area/horizon/maintenance/deck_2/wing/port) +"uIp" = ( +/obj/effect/floor_decal/corner/dark_blue/full, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_3/starboard/docks) "uIq" = ( /obj/effect/floor_decal/industrial/warning{ dir = 1 }, /turf/unsimulated/floor, /area/centcom/spawning) +"uIr" = ( +/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/dark_green{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled, +/area/horizon/security/checkpoint) "uIs" = ( /obj/structure/table/standard, /obj/machinery/vending/wallmed1{ @@ -144355,130 +144744,118 @@ }, /turf/unsimulated/floor, /area/centcom/spawning) +"uIA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/hallway) "uIC" = ( /turf/unsimulated/floor/rubber_carpet, /area/centcom/control) -"uID" = ( -/obj/effect/floor_decal/spline/plain/lime{ - dir = 6 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/horizon/commissary) -"uIE" = ( -/obj/structure/table/rack, -/obj/item/circuitboard/telecomms/processor, -/obj/item/circuitboard/telecomms/processor, -/obj/item/circuitboard/telecomms/receiver, -/obj/item/circuitboard/telecomms/server, -/obj/item/circuitboard/telecomms/server, -/obj/item/circuitboard/telecomms/bus, -/obj/item/circuitboard/telecomms/bus, -/obj/item/circuitboard/telecomms/broadcaster, -/obj/effect/floor_decal/spline/plain{ - dir = 9 - }, -/obj/item/circuitboard/ntnet_relay, -/obj/machinery/firealarm/north, -/turf/simulated/floor/carpet/rubber, -/area/tcommsat/entrance) -"uIF" = ( -/obj/item/paper_bin, -/obj/item/pen, -/obj/item/book/manual/wiki/ntsl2, -/obj/item/clothing/suit/storage/hooded/wintercoat/engineering/atmos, -/obj/item/clothing/suit/storage/hooded/wintercoat/engineering/atmos, -/obj/effect/floor_decal/spline/plain{ - dir = 10 - }, -/obj/structure/table/standard, -/turf/simulated/floor/carpet/rubber, -/area/tcommsat/entrance) -"uIG" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/effect/floor_decal/corner/dark_green{ - dir = 6 - }, -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/effect/floor_decal/spline/plain{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_two/fore) -"uII" = ( -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard/far) -"uIL" = ( -/obj/structure/table/reinforced, -/obj/item/device/flashlight/lamp, -/obj/effect/floor_decal/corner_wide/purple/full{ - dir = 8 - }, -/obj/effect/floor_decal/corner_wide/purple/diagonal, -/turf/simulated/floor/tiled/white, -/area/rnd/test_range) -"uIM" = ( -/obj/effect/floor_decal/corner_wide/purple{ - dir = 9 - }, -/obj/effect/floor_decal/corner_wide/purple{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/firealarm/west, -/turf/simulated/floor/tiled/white, -/area/rnd/xenoarch_atrium) -"uIN" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/purple, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/engineering/atmos/propulsion/starboard) "uIP" = ( /obj/effect/floor_decal/corner/red{ dir = 10 }, /turf/simulated/floor/marble, /area/horizon/holodeck/source_trinary) -"uIZ" = ( -/obj/structure/cable{ - icon_state = "1-4" +"uIS" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/black{ + dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 +/obj/machinery/camera/network/reactor{ + c_tag = "Engineering - Waste Handling 2"; + dir = 8 + }, +/obj/machinery/meter, +/obj/effect/floor_decal/corner/yellow{ + dir = 6 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/reactor/supermatter/waste) +"uIU" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/reinforced, +/area/horizon/engineering/gravity_gen) +"uIW" = ( +/obj/machinery/camera/network/medbay{ + c_tag = "Medical - Hallway 1"; + dir = 1 + }, +/obj/effect/floor_decal/corner_wide/green{ + dir = 10 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/hallway) +"uIY" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 4 + }, +/obj/machinery/door/airlock/external{ + dir = 4; + frequency = 1379; + icon_state = "door_locked"; + id_tag = "port_combustion"; + locked = 1; + name = "Combustion Chamber"; + req_access = list(13) + }, +/obj/machinery/door/blast/regular{ + id = "portpropulsioninterior" + }, +/turf/simulated/floor/reinforced, +/area/horizon/engineering/atmos/propulsion/starboard) +"uJd" = ( +/obj/structure/bed/stool/chair/office/dark, +/obj/effect/landmark/start{ + name = "Engineer" + }, +/obj/effect/floor_decal/spline/plain{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/break_room) +"uJf" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 + dir = 4 }, -/obj/structure/lattice/catwalk/indoor/grate/damaged{ - color = "#4c535b" +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 }, -/turf/simulated/floor/plating, -/area/maintenance/research_port) +/obj/machinery/door/firedoor, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/command{ + dir = 4; + name = "Captain's Office"; + req_access = list(20) + }, +/turf/simulated/floor/tiled, +/area/horizon/command/heads/captain) "uJg" = ( /obj/effect/floor_decal/corner/red/full{ dir = 1 }, /turf/unsimulated/floor, /area/centcom/control) -"uJi" = ( -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/extinguisher_cabinet/east, -/turf/simulated/floor/plating, -/area/shuttle/intrepid/starboard_compartment) "uJk" = ( /obj/effect/floor_decal/corner/dark_blue/full{ dir = 4 @@ -144500,86 +144877,55 @@ /obj/machinery/atmospherics/pipe/simple/hidden, /turf/simulated/floor/tiled, /area/horizon/security/brig) -"uJp" = ( +"uJl" = ( /obj/structure/cable/green{ icon_state = "4-8" }, +/obj/structure/disposalpipe/junction{ + dir = 4; + icon_state = "pipe-j2" + }, /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 = "2-4" }, -/turf/simulated/floor/tiled/white, -/area/hallway/medical) -"uJs" = ( +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor/plating, +/area/horizon/operations/lobby) +"uJn" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/green{ icon_state = "1-2" }, -/turf/simulated/floor/wood, -/area/lawoffice/consular_two) -"uJv" = ( -/obj/effect/floor_decal/spline/plain/corner{ - dir = 4 +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/light/small/emergency{ + dir = 8 }, -/obj/effect/floor_decal/spline/fancy{ - dir = 6 +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/research) +"uJu" = ( +/obj/structure/window/shuttle/scc_space_ship, +/obj/structure/grille, +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/shutters{ + dir = 4; + id = "shutters_deck2_hydroponicswindowssafety"; + name = "Viewing Shutter" }, -/obj/effect/floor_decal/corner_wide/white{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark/full, -/area/hallway/primary/central_one) +/turf/simulated/floor/plating, +/area/horizon/service/hydroponics/lower) "uJw" = ( /obj/effect/floor_decal/spline/plain{ dir = 1 }, /turf/simulated/floor/exoplanet/barren/raskara, /area/centcom/shared_dream) -"uJx" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/structure/cable/green{ - icon_state = "2-4" - }, -/obj/structure/disposalpipe/segment{ - icon_state = "pipe-c" - }, -/obj/effect/floor_decal/corner_wide/green{ - dir = 5 - }, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/medical/icu) -"uJA" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/engineer_maintenance/pipe{ - dir = 8 - }, -/obj/structure/engineer_maintenance/electric{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/horizon/hydroponics/lower) -"uJE" = ( -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/machinery/atmospherics/binary/pump{ - use_power = 1 - }, -/turf/simulated/floor/tiled, -/area/maintenance/hangar/starboard) "uJI" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/green{ @@ -144598,61 +144944,72 @@ /obj/structure/disposalpipe/segment, /turf/unsimulated/floor/plating, /area/tdome/tdomeadmin) -"uJQ" = ( -/obj/random/junk, +"uJM" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/button/remote/blast_door{ + dir = 1; + id = "warehouse3"; + name = "Warehouse Shutter"; + pixel_x = -31; + pixel_y = 32 + }, +/obj/effect/floor_decal/corner/brown{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/horizon/operations/warehouse) +"uJN" = ( /obj/effect/floor_decal/industrial/warning{ dir = 4 }, -/obj/structure/cable{ - icon_state = "1-2" +/obj/structure/tank_wall/air{ + icon_state = "air13" }, /turf/simulated/floor/plating, -/area/maintenance/research_port) -"uJU" = ( -/obj/structure/cable{ - icon_state = "11-2" - }, -/obj/machinery/atmospherics/pipe/zpipe/down/supply{ +/area/horizon/engineering/atmos/air) +"uJS" = ( +/obj/structure/platform{ dir = 1 }, -/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers{ - dir = 1 +/obj/effect/floor_decal/corner/paleblue{ + dir = 10 }, -/obj/structure/lattice/catwalk, -/obj/structure/disposalpipe/down, -/turf/simulated/open, -/area/maintenance/wing/starboard) -"uJW" = ( -/obj/structure/cable{ - icon_state = "1-2" +/turf/simulated/floor/tiled, +/area/horizon/command/bridge/cciaroom/lounge) +"uJT" = ( +/obj/structure/table/standard, +/obj/random/loot{ + pixel_x = 2; + pixel_y = 8 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" +/turf/simulated/floor/tiled/dark, +/area/horizon/maintenance/deck_2/wing/starboard/nacelle) +"uKc" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 }, /obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/maintenance/aft) -"uKl" = ( -/obj/structure/stairs_railing{ - dir = 4; - pixel_x = -32 +/obj/structure/railing/mapped{ + dir = 8 }, -/turf/simulated/floor/holofloor/tiled/ramp/bottom, -/area/horizon/stairwell/central) +/obj/structure/railing/mapped, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/dark/full/airless, +/area/horizon/command/bridge/controlroom) "uKo" = ( /obj/effect/decal/cleanable/spiderling_remains, /turf/simulated/floor/exoplanet/barren/raskara, /area/centcom/shared_dream) -"uKu" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/structure/tank_wall/phoron, -/turf/simulated/floor/airless, -/area/engineering/atmos) "uKw" = ( /obj/machinery/door/airlock/glass_centcom{ dir = 4; @@ -144674,74 +145031,51 @@ }, /turf/unsimulated/floor, /area/centcom/legion) +"uKA" = ( +/obj/machinery/door/airlock/hatch{ + dir = 1; + name = "Propulsion"; + req_one_access = list(11,24) + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/visible/black, +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/atmos/propulsion) +"uKB" = ( +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/structure/disposalpipe/junction{ + dir = 4; + icon_state = "pipe-j2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/horizon/command/bridge/controlroom) "uKC" = ( /obj/effect/floor_decal/snowdrift, /turf/simulated/floor/exoplanet/snow, /area/centcom/shared_dream) -"uKK" = ( -/obj/structure/cable/green{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/structure/disposalpipe/junction{ +"uKG" = ( +/obj/machinery/light{ dir = 4 }, -/obj/structure/cable/green{ - icon_state = "4-8" +/obj/structure/closet/firecloset, +/obj/effect/floor_decal/corner/dark_green/full{ + dir = 4 }, -/obj/structure/lattice/catwalk/indoor/grate, -/turf/simulated/floor, -/area/horizon/hallway/deck_three/primary/starboard) +/obj/effect/floor_decal/industrial/outline/firefighting_closet, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_3/central) "uKP" = ( /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/shuttle/black, /area/shuttle/distress) -"uKQ" = ( -/obj/structure/engineer_maintenance/electric{ - dir = 8 - }, -/obj/structure/engineer_maintenance/pipe{ - dir = 1 - }, -/obj/effect/floor_decal/corner_wide/green{ - dir = 5 - }, -/obj/random/pottedplant, -/obj/machinery/requests_console/north{ - pixel_y = 32; - pixel_x = -1; - name = "Recovery Ward requests console"; - department = "Recovery Ward"; - departmentType = 2 - }, -/turf/simulated/floor/tiled/white, -/area/medical/ward) -"uKS" = ( -/obj/structure/table/standard, -/obj/item/storage/box/gloves, -/obj/item/storage/box/masks{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/reagent_containers/spray/cleaner{ - desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; - icon_state = "sterilesprayblue"; - name = "surgery cleaner"; - pixel_y = 3; - pixel_x = -11 - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology/dissection) -"uKW" = ( -/obj/structure/grille, -/obj/structure/window/shuttle/scc_space_ship, -/turf/simulated/floor/plating, -/area/shuttle/escape_pod/pod2) "uKY" = ( /obj/effect/floor_decal/corner/white/diagonal, /obj/effect/floor_decal/spline/plain{ @@ -144761,19 +145095,6 @@ }, /turf/simulated/floor/tiled, /area/horizon/security/lobby) -"uLc" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/corner/dark_blue/full, -/obj/structure/platform_stairs/full{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/bridge) "uLd" = ( /obj/effect/floor_decal/corner/green{ dir = 5 @@ -144784,22 +145105,6 @@ }, /turf/unsimulated/floor, /area/centcom/bar) -"uLj" = ( -/obj/structure/table/wood, -/obj/item/paper_bin{ - pixel_x = -4; - pixel_y = 2 - }, -/obj/item/pen{ - pixel_x = -4; - pixel_y = 2 - }, -/obj/random/pottedplant_small{ - pixel_x = 9; - pixel_y = 1 - }, -/turf/simulated/floor/carpet, -/area/medical/psych) "uLl" = ( /obj/structure/window/shuttle/scc_space_ship, /obj/structure/grille, @@ -144836,23 +145141,61 @@ }, /turf/simulated/floor/tiled/freezer, /area/shuttle/skipjack) -"uLq" = ( -/obj/effect/floor_decal/spline/plain/corner{ - dir = 1 - }, -/obj/effect/floor_decal/spline/fancy{ - dir = 10 - }, -/obj/effect/floor_decal/corner_wide/white{ +"uLp" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/camera/network/research{ + dir = 1; + c_tag = "Xenobio - Cell B"; + network = list("Xeno_Bio") + }, +/turf/simulated/floor/reinforced, +/area/horizon/rnd/xenobiology) +"uLt" = ( +/obj/structure/morgue{ + dir = 2 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled/dark/full, -/area/hallway/primary/central_one) -"uLr" = ( -/obj/structure/bed/stool/bar/padded/red, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/wood, -/area/maintenance/wing/starboard) +/area/horizon/operations/machinist/surgicalbay) +"uLv" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner/red/diagonal, +/obj/random/dirt_75, +/turf/simulated/floor/tiled, +/area/horizon/maintenance/deck_2/wing/port) +"uLC" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/corner/purple{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/green, +/turf/simulated/floor/tiled/dark, +/area/horizon/service/custodial/disposals/deck_1) "uLH" = ( /obj/effect/floor_decal/corner/red/diagonal, /obj/effect/floor_decal/spline/fancy{ @@ -144869,25 +145212,61 @@ }, /turf/unsimulated/floor, /area/centcom/evac) -"uLM" = ( -/obj/machinery/recharge_station, -/obj/effect/floor_decal/corner/brown/full, -/turf/simulated/floor/tiled, -/area/operations/storage) -"uLN" = ( -/obj/machinery/door/firedoor{ - req_one_access = list(24,11,67,73); - dir = 4 +"uLJ" = ( +/obj/structure/disposalpipe/segment{ + icon_state = "pipe-c" }, -/obj/structure/table/stone/marble, -/obj/machinery/door/blast/shutters{ - id = "intrepid_buffet"; - name = "Buffet Desk Shutter"; - dir = 4 +/obj/structure/cable{ + icon_state = "2-8" }, -/obj/machinery/power/outlet, -/turf/simulated/floor/tiled/dark/full, -/area/shuttle/intrepid/buffet) +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/aft) +"uLX" = ( +/obj/structure/bed/stool/chair/padded/beige{ + dir = 8 + }, +/turf/simulated/floor/carpet, +/area/horizon/hallway/primary/deck_2/starboard) +"uMb" = ( +/obj/machinery/hologram/holopad, +/obj/effect/floor_decal/corner_wide/green{ + dir = 10 + }, +/obj/effect/landmark/start{ + name = "Paramedic" + }, +/obj/machinery/firealarm/south, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/hallway/upper) +"uMd" = ( +/obj/structure/platform/ledge{ + dir = 8 + }, +/turf/simulated/open, +/area/horizon/hallway/primary/deck_3/central) +"uMf" = ( +/obj/effect/shuttle_landmark/horizon/dock/deck_3/port_1, +/obj/machinery/door/airlock/external, +/obj/effect/map_effect/marker/airlock/docking{ + landmark_tag = "nav_horizon_dock_deck_3_port_2"; + master_tag = "airlock_horizon_dock_deck_3_port_2"; + name = "airlock_horizon_dock_deck_3_port_2" + }, +/obj/effect/map_effect/marker_helper/airlock/exterior, +/obj/machinery/access_button{ + dir = 1; + pixel_x = -28; + pixel_y = 12 + }, +/turf/simulated/floor/plating, +/area/horizon/hallway/primary/deck_3/starboard/docks) "uMi" = ( /obj/effect/floor_decal/spline/plain{ dir = 4 @@ -144909,6 +145288,40 @@ }, /turf/simulated/floor/holofloor/tiled, /area/horizon/holodeck/source_lasertag) +"uMu" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/reactor/indra/smes) +"uMz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/weapons/longbow) "uME" = ( /obj/structure/bed/stool/chair/office/dark{ dir = 1 @@ -144917,15 +145330,22 @@ icon_state = "dark_preview" }, /area/centcom/control) -"uMF" = ( -/obj/structure/closet/secure_closet/freezer/meat, -/obj/effect/floor_decal/industrial/outline/grey, -/obj/machinery/light, -/turf/simulated/floor/tiled/freezer{ - name = "cooled tiles"; - temperature = 253.15 +"uMH" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 6 }, -/area/horizon/kitchen/freezer) +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/xenobiology/foyer) +"uMK" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/black{ + dir = 8 + }, +/obj/machinery/meter, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/atmos/propulsion) "uMP" = ( /obj/structure/window/reinforced{ dir = 4 @@ -144944,24 +145364,15 @@ }, /turf/simulated/floor/reinforced/airless, /area/horizon/exterior) -"uMW" = ( -/obj/machinery/constructable_frame/machine_frame, -/obj/effect/decal/cleanable/cobweb, -/turf/simulated/floor/carpet/rubber, -/area/maintenance/engineering/auxillary) -"uNg" = ( -/obj/effect/floor_decal/corner/red/diagonal, -/obj/effect/floor_decal/industrial/outline/grey, -/obj/machinery/air_sensor{ - frequency = 1441; - id_tag = "mixed_sensor" +"uMX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 }, -/obj/effect/decal/fake_object/light_source/invisible, -/turf/simulated/floor/reinforced/airless, -/area/engineering/atmos) -"uNi" = ( -/turf/simulated/floor/tiled, -/area/bridge/upperdeck) +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/weapons/grauwolf) "uNk" = ( /obj/machinery/embedded_controller/radio/simple_docking_controller{ frequency = 1380; @@ -144981,51 +145392,31 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/shuttle/black, /area/shuttle/specops) -"uNp" = ( -/obj/effect/floor_decal/industrial/outline/operations, -/obj/structure/closet/secure_closet/atmos_personal, -/obj/machinery/light{ - dir = 4 +"uNv" = ( +/obj/machinery/door/blast/regular/open{ + id = "hangarlockdown"; + name = "Hangar Lockdown" }, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/atmos/storage) -"uNq" = ( -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/obj/structure/cable/green{ +/obj/structure/cable{ icon_state = "4-8" }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor, -/area/maintenance/engineering_ladder) -"uNu" = ( -/obj/machinery/hologram/holopad, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 1 +/turf/simulated/floor/tiled, +/area/horizon/hangar/intrepid) +"uNx" = ( +/obj/machinery/portable_atmospherics/hydroponics, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/alarm/south, +/turf/simulated/floor/tiled/dark, +/area/horizon/rnd/xenobiology/xenoflora) +"uNB" = ( +/obj/structure/bed/stool/chair/office/bridge/generic{ + dir = 8 }, /turf/simulated/floor/carpet, -/area/crew_quarters/captain) -"uNw" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/fuel_port/phoron/scc{ - pixel_x = -5; - pixel_y = 23 - }, -/obj/structure/bed/handrail, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/dark, -/area/shuttle/mining) -"uNz" = ( -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 4 - }, -/turf/simulated/floor/reinforced/airless, -/area/template_noop) +/area/horizon/command/heads/xo) "uNC" = ( /obj/structure/undies_wardrobe, /obj/machinery/light{ @@ -145036,69 +145427,33 @@ }, /turf/unsimulated/floor, /area/antag/mercenary) -"uNH" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 +"uNL" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 9 }, -/obj/structure/trash_pile, -/turf/simulated/floor/plating, -/area/maintenance/operations) -"uNK" = ( -/obj/effect/floor_decal/corner/mauve{ - dir = 6 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/rnd/hallway/secondary) -"uNU" = ( -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 10 }, -/obj/structure/disposalpipe/segment{ - icon_state = "pipe-c" - }, -/obj/effect/floor_decal/corner/brown{ - dir = 10 +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/storage/tech) +"uNX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + icon_state = "1-2" }, /turf/simulated/floor/tiled, -/area/operations/break_room) +/area/horizon/operations/office) "uOc" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 1 }, /turf/unsimulated/floor/wood, /area/centcom/bar) -"uOe" = ( -/obj/machinery/vending/zora, -/obj/machinery/alarm/south, -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/hatch/operations, -/turf/simulated/floor/tiled/full, -/area/horizon/commissary) -"uOh" = ( -/obj/structure/table/standard, -/obj/effect/floor_decal/corner/mauve{ - dir = 1 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/lab) "uOk" = ( /obj/structure/railing/mapped{ dir = 4 @@ -145106,60 +145461,65 @@ /obj/structure/table/wood, /turf/simulated/floor/holofloor/lino, /area/horizon/holodeck/source_theatre) -"uOl" = ( -/obj/machinery/light{ - dir = 8 +"uOm" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + icon_state = "1-2" }, +/turf/simulated/floor/tiled/full, +/area/horizon/hallway/primary/deck_2/central) +"uOo" = ( +/obj/machinery/alarm/west, +/obj/effect/floor_decal/corner/red/diagonal, +/obj/structure/closet/walllocker/firecloset{ + pixel_x = -32 + }, +/obj/effect/floor_decal/industrial/outline/red, +/turf/simulated/floor/tiled, +/area/horizon/maintenance/deck_2/research) +"uOs" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 10 + }, +/obj/structure/railing/mapped, +/turf/simulated/floor/wood, +/area/horizon/service/cafeteria) +"uOw" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 4 }, -/obj/structure/table/wood, -/obj/random/pottedplant_small{ - pixel_x = -4; - pixel_y = 6 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + icon_state = "1-4" }, /turf/simulated/floor/wood, -/area/horizon/hallway/deck_two/fore) -"uOq" = ( -/obj/structure/table/standard, -/obj/effect/floor_decal/corner_wide/paleblue{ - dir = 10 - }, -/obj/item/storage/box/fancy/tray, -/obj/machinery/light, -/turf/simulated/floor/tiled/white, -/area/medical/ors) -"uOr" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 1 +/area/horizon/service/library) +"uOz" = ( +/obj/effect/floor_decal/corner_wide/purple/diagonal, +/obj/structure/cable/green{ + icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 + dir = 4 }, -/obj/structure/bed/stool/chair/office/bridge/pilot, -/turf/simulated/floor/tiled/dark, -/area/bridge/controlroom) -"uOy" = ( -/turf/simulated/wall, -/area/teleporter) -"uOG" = ( -/obj/machinery/door/airlock/mining{ - dir = 1; - id_tag = "qmdoor"; - name = "Operations Manager"; - req_access = list(41) +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 }, -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/full, -/area/operations/qm) -"uOH" = ( -/obj/machinery/atmospherics/pipe/simple/visible/green{ +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/firealarm/south, +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/test_range) +"uOC" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/effect/floor_decal/corner/dark_blue{ dir = 5 }, -/turf/simulated/floor/reinforced/nitrogen, -/area/engineering/atmos/air) +/obj/structure/closet/walllocker/emerglocker/north, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_3/port/docks) "uOI" = ( /obj/machinery/door/airlock/security{ dir = 4; @@ -145175,21 +145535,9 @@ }, /turf/simulated/floor/tiled/full, /area/horizon/security/evidence_storage) -"uOP" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/bed/handrail{ - dir = 8 - }, -/obj/machinery/power/portgen/basic, +"uOT" = ( /turf/simulated/floor/plating, -/area/shuttle/intrepid/port_compartment) -"uOQ" = ( -/obj/random/pottedplant, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 10 - }, -/turf/simulated/floor/wood, -/area/bridge/minibar) +/area/horizon/medical/morgue) "uOW" = ( /obj/structure/table/rack, /obj/effect/floor_decal/industrial/outline/security, @@ -145210,45 +145558,68 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/security/armoury) -"uOZ" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 9 +"uOY" = ( +/obj/effect/floor_decal/corner_wide/blue{ + dir = 6 }, -/obj/structure/trash_pile, -/turf/simulated/floor/plating, -/area/maintenance/wing/port/far) -"uPe" = ( -/obj/machinery/atmospherics/pipe/simple/visible/purple{ +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/engineer_maintenance/pipe, +/obj/structure/engineer_maintenance/electric{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/storage/secure) +"uPa" = ( +/obj/item/circuitboard/security/engineering{ + pixel_y = 4 + }, +/obj/item/circuitboard/atmos_alert, +/obj/item/circuitboard/security{ + pixel_y = -4 + }, +/obj/item/circuitboard/message_monitor{ + pixel_y = -8 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/table/rack{ + dir = 8 + }, +/obj/effect/floor_decal/corner/yellow/diagonal, +/obj/machinery/light/small, /turf/simulated/floor/tiled/dark, -/area/engineering/atmos) -"uPf" = ( -/obj/machinery/light{ - dir = 4 - }, +/area/horizon/engineering/storage/tech) +"uPd" = ( +/obj/effect/floor_decal/industrial/outline/grey, +/obj/structure/survey_probe/ground, +/turf/simulated/floor/plating, +/area/horizon/hangar/auxiliary) +"uPg" = ( /obj/effect/floor_decal/industrial/warning{ dir = 6 }, -/turf/simulated/floor/reinforced, -/area/rnd/xenobiology) -"uPk" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/table/reinforced/steel, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenoarch_atrium) -"uPm" = ( -/obj/structure/railing/mapped{ +/obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 }, -/obj/effect/floor_decal/spline/fancy{ +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/reactor/indra/mainchamber) +"uPi" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 9 + }, +/obj/machinery/disposal/small/east, +/obj/structure/disposalpipe/trunk{ dir = 4 }, -/obj/structure/table/reinforced/steel, -/turf/simulated/floor/carpet/rubber, -/area/bridge/controlroom) +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_2/starboard) "uPr" = ( /obj/structure/table/rack, /obj/item/gun/energy/gun{ @@ -145283,24 +145654,30 @@ /obj/random/pottedplant, /turf/simulated/floor/tiled/dark, /area/horizon/security/interrogation/monitoring) -"uPx" = ( -/obj/machinery/atmospherics/pipe/simple/visible/black{ - dir = 4 - }, -/turf/simulated/wall/shuttle/scc_space_ship/cardinal, -/area/engineering/atmos/propulsion) -"uPD" = ( -/obj/effect/floor_decal/corner/red/diagonal, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/spline/plain{ - dir = 4 - }, +"uPv" = ( /obj/structure/cable/green{ - icon_state = "1-2" + icon_state = "4-8" }, -/turf/simulated/floor/lino, -/area/horizon/cafeteria) +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/horizon/operations/mail_room) +"uPz" = ( +/obj/machinery/hologram/holopad, +/turf/simulated/floor/carpet, +/area/horizon/command/heads/om) +"uPC" = ( +/obj/structure/cable/green, +/obj/effect/floor_decal/corner/dark_green{ + dir = 9 + }, +/obj/machinery/power/apc/super/west, +/turf/simulated/floor/tiled, +/area/horizon/crew/chargebay) "uPE" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/floor_decal/industrial/warning{ @@ -145311,20 +145688,72 @@ }, /turf/unsimulated/floor, /area/centcom/legion/hangar5) -"uPN" = ( -/obj/machinery/atmospherics/valve{ - name = "Thermal Relief Valve" +"uPG" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 }, -/obj/structure/cable/yellow{ - icon_state = "4-8" +/obj/structure/cable{ + icon_state = "1-2" }, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/engine_room/turbine) +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/random/dirt_75, +/obj/random/dirt_75, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/starboard/nacelle) +"uPH" = ( +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/effect/floor_decal/spline/plain{ + dir = 8 + }, +/turf/simulated/floor/lino, +/area/horizon/service/dining_hall) +"uPJ" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/structure/lattice/catwalk/indoor/grate, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/horizon/hallway/primary/deck_2/central) +"uPK" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/shuttle/intrepid/main_compartment) +"uPP" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/outline/operations, +/turf/simulated/floor/tiled, +/area/horizon/operations/warehouse) "uPR" = ( /turf/simulated/wall/shuttle/unique/ert{ icon_state = "8,1" }, /area/shuttle/specops) +"uPT" = ( +/obj/machinery/power/apc/low/east, +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/bed/stool/chair/padded/brown{ + dir = 8 + }, +/turf/simulated/floor/wood/walnut, +/area/horizon/medical/smoking) "uPV" = ( /obj/structure/sign/directions/tram{ dir = 1; @@ -145337,87 +145766,100 @@ }, /turf/unsimulated/wall/darkshuttlewall, /area/centcom/checkpoint/fore) -"uPX" = ( -/obj/machinery/sparker{ - id = "starboard_prop_igni"; - pixel_x = 19 +"uQa" = ( +/obj/structure/closet/crate, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/auxatmos) +"uQc" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 6 }, -/obj/machinery/atmospherics/unary/outlet_injector{ - dir = 4; - frequency = 1442; - id = "starboard_prop_in"; - tag = "starboard_prop_in"; - name = "fuel injector" +/obj/structure/platform{ + dir = 8 }, -/turf/simulated/floor/reinforced/airless, -/area/engineering/atmos/propulsion/starboard) -"uQm" = ( -/obj/structure/disposalpipe/segment{ +/obj/machinery/light/floor{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ +/turf/simulated/floor/tiled, +/area/horizon/command/bridge/upperdeck) +"uQe" = ( +/obj/structure/closet, +/obj/random/junk, +/turf/simulated/floor, +/area/horizon/maintenance/deck_3/aft/starboard) +"uQh" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/tank_wall/phoron, +/turf/simulated/floor/airless, +/area/horizon/engineering/atmos) +"uQl" = ( +/obj/random/pottedplant, +/obj/structure/railing/mapped, +/turf/simulated/floor/carpet/rubber, +/area/horizon/command/bridge/controlroom) +"uQo" = ( +/obj/machinery/atmospherics/pipe/simple/visible/purple{ dir = 4 }, +/obj/machinery/firealarm/north, +/obj/machinery/meter, +/obj/effect/floor_decal/corner_wide/black{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/atmos/propulsion) +"uQq" = ( +/obj/machinery/alarm/south, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/machinery/door/airlock/command{ - dir = 4; - id_tag = "CEdoor"; - name = "Chief Engineer's Office"; - req_access = list(56) - }, -/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 - }, -/obj/effect/floor_decal/corner/mauve{ - dir = 6 - }, -/obj/machinery/hologram/holopad, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/white, -/area/rnd/conference) -"uQI" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/full, -/area/hallway/primary/central_two) -"uQL" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 8 - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/maintenance/hangar/starboard) -"uQN" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ +/area/horizon/maintenance/deck_2/wing/starboard/auxatmos) +"uQy" = ( +/obj/effect/floor_decal/spline/fancy, +/obj/machinery/computer/ship/sensors{ dir = 1 }, -/obj/structure/lattice/catwalk/indoor/grate, -/turf/simulated/floor, -/area/horizon/hallway/deck_three/primary/starboard) +/turf/simulated/floor/carpet/rubber, +/area/horizon/command/bridge/controlroom) +"uQz" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/structure/tank_wall/carbon_dioxide{ + icon_state = "co2-4" + }, +/turf/simulated/floor/airless, +/area/horizon/engineering/atmos) +"uQB" = ( +/obj/machinery/door/window/holowindoor{ + dir = 1 + }, +/turf/simulated/floor/grass/no_edge, +/area/horizon/rnd/xenobiology/xenoflora) +"uQC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/starboard/far) +"uQM" = ( +/obj/effect/floor_decal/spline/fancy/wood/corner{ + dir = 1 + }, +/obj/machinery/vending/boozeomat{ + opacity = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/service/bar) "uQP" = ( /obj/machinery/light/small{ dir = 4 @@ -145428,26 +145870,60 @@ }, /turf/simulated/floor/tiled/dark, /area/shuttle/skipjack) -"uRe" = ( -/obj/machinery/light/small{ +"uQW" = ( +/obj/structure/sign/securearea, +/turf/simulated/wall/r_wall, +/area/horizon/rnd/test_range) +"uRc" = ( +/obj/machinery/atmospherics/pipe/simple/visible/red, +/obj/machinery/meter, +/obj/effect/floor_decal/corner/yellow{ + dir = 1 + }, +/obj/effect/floor_decal/corner/dark_blue{ dir = 4 }, -/obj/structure/bed/handrail{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel, -/obj/machinery/atmospherics/binary/pump/scrubber/on{ - dir = 1; - name = "Scrubbers to Waste"; - target_pressure = 15000 - }, -/obj/item/device/radio/intercom/expedition/east, /turf/simulated/floor/tiled/dark, -/area/shuttle/intrepid/engineering) +/area/horizon/engineering/atmos) "uRf" = ( /obj/effect/map_effect/window_spawner/full/reinforced/indestructible, /turf/unsimulated/floor/plating, /area/centcom/specops) +"uRi" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner/dark_blue{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/ai/upload_foyer) +"uRk" = ( +/obj/structure/table/standard, +/obj/item/device/flashlight/lamp{ + pixel_x = -11; + pixel_y = 1 + }, +/obj/effect/floor_decal/corner/beige{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/horizon/crew/vacantoffice) +"uRl" = ( +/obj/machinery/atmospherics/unary/outlet_injector{ + dir = 1; + frequency = 1441; + id = "air_in"; + use_power = 1 + }, +/turf/simulated/floor/reinforced/airmix, +/area/horizon/engineering/atmos/air) "uRq" = ( /obj/structure/flora/ausbushes/fullgrass, /obj/structure/flora/ausbushes/ppflowers, @@ -145478,139 +145954,154 @@ }, /turf/simulated/floor/tiled/white, /area/horizon/security/autopsy_laboratory) -"uRt" = ( +"uRF" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance{ + dir = 4; + req_access = list(12) + }, +/obj/machinery/door/blast/regular/open{ + id = "hangarlockdown"; + name = "Hangar Lockdown" + }, +/turf/simulated/floor/tiled/full, +/area/horizon/maintenance/deck_1/hangar/starboard) +"uRH" = ( +/obj/machinery/button/remote/blast_door{ + dir = 1; + id = "intrepid_buffet"; + name = "Desk Shutters"; + pixel_x = 8; + pixel_y = 29 + }, +/obj/structure/table/stone/marble, +/obj/machinery/appliance/cooker/oven/small{ + pixel_y = 13; + pixel_x = -5 + }, +/obj/item/reagent_containers/food/drinks/drinkingglass/newglass/coffeecup{ + pixel_y = 21; + pixel_x = -2 + }, +/obj/item/reagent_containers/food/condiment/shaker/salt{ + pixel_x = 12; + pixel_y = 14 + }, +/obj/item/reagent_containers/food/condiment/shaker/peppermill{ + pixel_x = 12; + pixel_y = 9 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/shuttle/intrepid/buffet) +"uRK" = ( +/turf/simulated/open, +/area/horizon/maintenance/deck_2/service/port) +"uRR" = ( +/obj/machinery/door/firedoor, +/obj/structure/sign/directions/all{ + dir = 4; + pixel_y = 32 + }, +/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/machinery/door/airlock/glass{ + dir = 4 + }, +/turf/simulated/floor/tiled/full, +/area/horizon/hallway/primary/deck_3/central) +"uRY" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/papershredder, +/turf/simulated/floor/wood, +/area/horizon/repoffice/consular_one) +"uSa" = ( /obj/effect/floor_decal/industrial/warning{ dir = 4 }, -/turf/simulated/floor/plating, -/area/hangar/intrepid) -"uRx" = ( -/obj/effect/floor_decal/corner/black{ - dir = 6 +/obj/structure/tank_wall/nitrous_oxide{ + icon_state = "h7" }, -/obj/effect/floor_decal/industrial/loading/yellow{ +/turf/simulated/floor/plating, +/area/horizon/engineering/atmos/air) +"uSb" = ( +/obj/effect/floor_decal/corner/brown/diagonal, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/obj/structure/railing/mapped{ dir = 8 }, -/turf/simulated/floor/tiled/dark, -/area/hangar/auxiliary) -"uRB" = ( -/obj/machinery/door/airlock/maintenance{ - dir = 4; - req_one_access = list(5,10,12) - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/full, -/area/engineering/lobby) -"uRE" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/maintenance/wing/port/far) -"uRG" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/effect/floor_decal/corner/dark_green{ - dir = 1 +/obj/structure/railing/mapped{ + dir = 4 }, /turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/central) -"uRI" = ( -/obj/item/paper_bin, -/obj/item/pen/black, -/obj/structure/table/standard, -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/floor_decal/corner/mauve/full{ - dir = 1 - }, -/obj/machinery/alarm/north, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology/xenological) -"uRJ" = ( -/obj/effect/floor_decal/corner/mauve{ - dir = 5 - }, -/obj/machinery/light/floor{ - dir = 1 - }, -/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{ - dir = 4 - }, -/obj/structure/window/shuttle/scc_space_ship, -/turf/simulated/floor/reinforced, -/area/crew_quarters/lounge) -"uRV" = ( -/obj/structure/fuel_port/phoron/scc{ - pixel_y = 27 - }, -/obj/structure/bed/stool/chair/shuttle/double{ - pixel_x = -8 - }, -/obj/structure/bed/stool/chair/shuttle/double{ - pixel_x = 8 - }, -/obj/effect/floor_decal/spline/plain/cee/black, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark/full, -/area/shuttle/intrepid/main_compartment) -"uSc" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/fuel, -/obj/structure/shuttle_part/scc/scout{ - icon_state = "6,9"; - opacity = 1; +/area/horizon/operations/loading) +"uSm" = ( +/obj/structure/shuttle_part/scc/mining{ + icon_state = "5,1"; outside_part = 0 }, -/turf/simulated/floor/reinforced{ - blocks_air = 1; - density = 1; - name = "thruster mount"; - opacity = 1 +/obj/effect/landmark/entry_point/fore{ + name = "fore, cockpit" }, -/area/shuttle/canary) -"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, -/area/tcommsat/chamber) +/area/horizon/shuttle/mining) "uSr" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/reinforced/airless, /area/horizon/exterior) +"uSs" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/obj/machinery/photocopier, +/turf/simulated/floor/wood, +/area/horizon/service/library) +"uSx" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/structure/tank_wall/air{ + icon_state = "air14" + }, +/turf/simulated/floor/plating, +/area/horizon/engineering/atmos/air) "uSA" = ( /obj/structure/window/shuttle/unique/mercenary/small{ icon_state = "6,11" }, /turf/simulated/floor/plating, /area/shuttle/syndicate_elite) +"uSB" = ( +/obj/machinery/door/airlock/maintenance{ + dir = 4; + req_one_access = list(11,24) + }, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/turf/simulated/floor, +/area/horizon/engineering/break_room) +"uSC" = ( +/obj/machinery/recharge_station, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/command/bridge/aibunker) "uSF" = ( /obj/structure/table/reinforced/steel, /obj/structure/window/reinforced/crescent{ @@ -145619,37 +146110,19 @@ /obj/item/device/flashlight/lamp, /turf/unsimulated/floor, /area/centcom/ferry) -"uSG" = ( -/obj/structure/sign/electricshock{ - desc = "A warning sign which reads 'MECH BAY AND RECHARGING STATION' and 'HIGH VOLTAGE EQUIPMENT INSIDE'."; - name = "\improper MECH BAY AND RECHARGING STATION sign"; - pixel_x = -32; - pixel_y = -32 - }, -/obj/effect/floor_decal/corner/dark_green{ +"uSQ" = ( +/obj/effect/floor_decal/industrial/warning{ dir = 9 }, -/turf/simulated/floor/tiled, -/area/hangar/intrepid/interstitial) -"uSJ" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/maintenance_hatch{ - dir = 4 +/turf/simulated/floor/tiled/dark, +/area/horizon/maintenance/deck_2/wing/starboard/nacelle) +"uSS" = ( +/obj/structure/bed/stool/chair/shuttle, +/obj/effect/floor_decal/corner/purple{ + dir = 10 }, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard) -"uSK" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/door/airlock/engineering{ - dir = 4; - name = "Deck 3 Civilian Substation"; - req_one_access = list(11,24) - }, -/turf/simulated/floor, -/area/maintenance/substation/civilian_east) +/turf/simulated/floor/tiled/dark, +/area/horizon/shuttle/quark/cockpit) "uST" = ( /obj/structure/cable/green{ icon_state = "1-2" @@ -145659,95 +146132,155 @@ }, /turf/simulated/floor/tiled, /area/horizon/security/brig) -"uSU" = ( -/obj/machinery/computer/ship/engines/terminal{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/outline/security, -/obj/machinery/light/small, -/turf/simulated/floor/tiled/dark/full, -/area/shuttle/intrepid/flight_deck) "uSZ" = ( /obj/structure/lattice/catwalk, /turf/template_noop, /area/template_noop) -"uTo" = ( -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/maintenance/aft) -"uTp" = ( -/obj/machinery/turretid/lethal{ - ailock = 1; - check_synth = 1; - desc = "A firewall prevents AIs from interacting with this device."; - name = "Scuttling Device Chamber turrets control"; - pixel_x = 28; - pixel_y = -2; - req_access = list(20) - }, -/obj/effect/floor_decal/industrial/hatch/red, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/dark/full, -/area/bridge/selfdestruct) -"uTy" = ( -/obj/machinery/camera/network/supply{ - c_tag = "Operations - Warehouse Starboard Aft Storage Room"; - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/operations/storage) -"uTz" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/hangar/operations) -"uTD" = ( -/obj/machinery/alarm/east, -/obj/effect/floor_decal/corner/dark_green/full{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/effect/floor_decal/industrial/loading/yellow{ +"uTe" = ( +/obj/effect/floor_decal/spline/plain, +/obj/effect/floor_decal/spline/plain/corner{ dir = 1 }, -/turf/simulated/floor/tiled, -/area/horizon/stairwell/central) -"uTE" = ( -/obj/structure/bed/stool/chair/unmovable, -/obj/machinery/light{ - dir = 1 +/obj/effect/floor_decal/spline/plain/corner{ + dir = 4 }, +/obj/machinery/light, +/obj/machinery/atmospherics/pipe/manifold/hidden/black, /turf/simulated/floor/carpet/rubber, -/area/rnd/xenobiology/dissection) -"uTN" = ( +/area/horizon/tcommsat/chamber) +"uTf" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/hallway/upper) +"uTl" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/door/airlock/glass_research{ + dir = 4; + name = "Conference Room"; + req_access = list(47) + }, +/obj/effect/map_effect/door_helper/unres{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/rnd/conference) +"uTm" = ( +/obj/effect/floor_decal/corner_wide/purple{ + dir = 8 + }, +/obj/effect/floor_decal/corner_wide/purple{ + dir = 6 + }, /obj/structure/cable/green{ icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/corner/red{ - dir = 6 - }, -/obj/machinery/access_button{ - command = "cycle_interior"; - frequency = 1379; - master_tag = "processing_airlock_control"; - name = "Interior access button"; - pixel_x = 25; - pixel_y = 25; - req_access = list(5) - }, -/obj/machinery/camera/network/medbay{ - c_tag = "Medical - Isolation Ward Airlock"; +/obj/structure/platform_deco{ dir = 8 }, +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/xenoarch/atrium) +"uTs" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/effect/floor_decal/corner_wide/green{ + dir = 5 + }, +/obj/machinery/alarm/north, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/hallway/upper) +"uTu" = ( +/obj/structure/window/shuttle/scc_space_ship, +/obj/structure/grille, +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id = "bridge blast"; + name = "Bridge Blast Doors"; + opacity = 0 + }, +/obj/effect/landmark/entry_point/starboard{ + name = "starboard, representatives office" + }, +/obj/machinery/door/blast/shutters/open{ + dir = 4; + id = "shutters_deck3_bridgesafety"; + name = "Safety Shutter" + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/repoffice/representative_two) +"uTA" = ( +/obj/effect/landmark/entry_point/port{ + name = "port, port nacelle" + }, +/turf/simulated/wall/shuttle/scc, +/area/horizon/shuttle/intrepid/port_storage) +"uTF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/corner/dark_green/full, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/alarm/west, +/turf/simulated/floor/tiled, +/area/horizon/stairwell/starboard/deck_1) +"uTH" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/structure/table/steel, +/obj/item/storage/toolbox/electrical{ + pixel_y = 4 + }, +/obj/item/storage/toolbox/electrical{ + pixel_y = -1 + }, +/obj/item/device/multitool{ + pixel_x = -4 + }, +/obj/item/device/multitool{ + pixel_x = 4 + }, /turf/simulated/floor/tiled/dark, -/area/medical/ward/isolation) +/area/horizon/engineering/storage/tech) +"uTL" = ( +/turf/simulated/floor/tiled/dark, +/area/horizon/maintenance/deck_3/aft/port/far) +"uTO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/corner/dark_green{ + dir = 6 + }, +/obj/machinery/light/floor{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_3/port) "uTR" = ( /obj/structure/bed/stool/chair{ dir = 1 @@ -145776,61 +146309,68 @@ }, /turf/simulated/floor/holofloor/wood, /area/horizon/holodeck/source_battlemonsters) -"uTX" = ( -/obj/effect/floor_decal/corner_wide/yellow/diagonal, -/obj/structure/extinguisher_cabinet/east, +"uTU" = ( +/obj/structure/bed/stool/chair/office/bridge{ + dir = 1 + }, +/turf/simulated/floor/carpet, +/area/horizon/command/heads/hos) +"uTW" = ( +/obj/effect/floor_decal/corner_wide/yellow{ + dir = 6 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/horizon/engineering/bluespace_drive) +"uTY" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/table/reinforced/steel, +/obj/item/storage/box/beakers, /turf/simulated/floor/tiled/dark, -/area/engineering/break_room) -"uUa" = ( -/obj/structure/cable/green{ - icon_state = "4-8" +/area/horizon/rnd/xenoarch/atrium) +"uUg" = ( +/obj/structure/table/standard, +/obj/item/storage/box/fancy/tray{ + name = "dissection tray" + }, +/obj/machinery/alarm/west, +/turf/simulated/floor/tiled/dark, +/area/horizon/rnd/xenobiology/dissection) +"uUi" = ( +/obj/machinery/power/terminal, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/machinery/camera/network/engineering{ + c_tag = "Engineering - Deck 2 - Medical Substation" + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/substation/medical) +"uUv" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 +/obj/structure/cable/green{ + icon_state = "4-8" }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/structure/lattice/catwalk/indoor/grate, /turf/simulated/floor/plating, -/area/maintenance/wing/starboard) -"uUl" = ( -/obj/machinery/power/terminal{ +/area/horizon/hallway/primary/deck_2/starboard) +"uUw" = ( +/obj/effect/floor_decal/corner/brown/full{ dir = 8 }, -/obj/machinery/camera/network/engineering{ - c_tag = "Engineering - Deck 1 - Second Deck Civilian Substation"; - dir = 8 - }, -/obj/structure/cable, -/turf/simulated/floor/plating, -/area/maintenance/substation/civilian_west) -"uUo" = ( -/obj/structure/lattice, -/obj/structure/platform/ledge{ - dir = 4 - }, -/obj/structure/platform/ledge{ - dir = 8 - }, -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/structure/railing/mapped{ - dir = 8 - }, -/turf/simulated/open, -/area/operations/office) -"uUx" = ( -/obj/machinery/atmospherics/unary/engine/scc_shuttle, -/obj/effect/landmark/entry_point/aft{ - name = "aft, starboard thrusters" - }, -/turf/simulated/floor/plating, -/area/shuttle/intrepid/engineering) +/obj/random/pottedplant, +/turf/simulated/floor/tiled, +/area/horizon/operations/office) "uUy" = ( /obj/machinery/door/airlock/multi_tile/glass{ name = "Barracks" @@ -145842,18 +146382,36 @@ }, /turf/unsimulated/floor/monotile, /area/antag/mercenary) -"uUz" = ( -/obj/effect/floor_decal/industrial/hatch/grey, -/obj/structure/filingcabinet/filingcabinet{ - pixel_x = -9; - pixel_y = 1 +"uUB" = ( +/obj/structure/railing/mapped, +/obj/structure/platform/ledge{ + dir = 1 }, -/obj/machinery/papershredder{ - pixel_x = 6 +/obj/structure/platform/ledge{ + dir = 8 }, -/obj/machinery/alarm/west, -/turf/simulated/floor/tiled/full, -/area/operations/qm) +/obj/structure/platform_deco/ledge{ + dir = 6 + }, +/turf/simulated/open, +/area/horizon/hallway/primary/deck_3/central) +"uUD" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/black{ + dir = 1 + }, +/obj/effect/floor_decal/spline/plain{ + dir = 1 + }, +/obj/effect/floor_decal/sign/b{ + pixel_x = -10; + pixel_y = 4 + }, +/obj/effect/floor_decal/spline/plain, +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/turf/simulated/floor/carpet/rubber, +/area/horizon/tcommsat/chamber) "uUE" = ( /obj/vehicle/droppod/legion{ connected_blastdoor = "tcfl_droppod_1" @@ -145875,14 +146433,6 @@ }, /turf/unsimulated/floor, /area/antag/raider) -"uUP" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/red{ - dir = 5 - }, -/turf/simulated/wall/shuttle/unique/scc/mining{ - icon_state = "6,2" - }, -/area/shuttle/mining) "uUU" = ( /obj/machinery/light/small/emergency{ brightness_range = 4; @@ -145896,62 +146446,77 @@ /obj/structure/lattice/catwalk, /turf/space/dynamic, /area/antag/raider) -"uUZ" = ( -/obj/machinery/light{ +"uUV" = ( +/turf/simulated/floor/tiled/dark, +/area/horizon/rnd/xenobiology/xenoflora) +"uUY" = ( +/obj/structure/closet/secure_closet/security, +/obj/machinery/alarm/north, +/obj/effect/floor_decal/corner/dark_blue/full{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark, +/area/horizon/security/checkpoint2) +"uVe" = ( +/obj/structure/table/standard, +/obj/item/grenade/chem_grenade, +/obj/item/grenade/chem_grenade, +/obj/item/grenade/chem_grenade, +/obj/item/grenade/chem_grenade, +/obj/item/device/assembly/igniter, +/obj/item/device/assembly/igniter, +/obj/item/device/assembly/igniter, +/obj/item/device/assembly/igniter, +/obj/item/device/assembly/timer, +/obj/item/device/assembly/timer, +/obj/item/device/assembly/timer, +/obj/item/device/assembly/timer, +/obj/structure/closet/crate/drop/grey{ + desc = "A large, sturdy crate, that stores grenade components."; + name = "grenade crate"; + pixel_y = -4; + tablestatus = -1 + }, +/obj/effect/floor_decal/corner_wide/orange{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/pharmacy) +"uVj" = ( +/obj/machinery/embedded_controller/radio/airlock/docking_port{ + frequency = 1380; + id_tag = "centcom_shuttle_dock_airlock"; + pixel_x = 30; + req_one_access = list(13); + tag_airpump = "centcom_shuttle_dock_pump"; + tag_chamber_sensor = "centcom_shuttle_dock_sensor"; + tag_exterior_door = "centcom_shuttle_dock_outer"; + tag_interior_door = "centcom_shuttle_dock_inner" + }, +/obj/machinery/airlock_sensor{ + frequency = 1380; + id_tag = "centcom_shuttle_dock_sensor"; + pixel_x = -25 + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 1; + frequency = 1380; + id_tag = "centcom_shuttle_dock_pump" + }, +/obj/machinery/light/small{ dir = 8 }, -/obj/effect/floor_decal/corner/dark_green{ - dir = 9 - }, -/obj/structure/sign/securearea{ - pixel_x = -32 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/aft) -"uVg" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/maintenance/wing/starboard/far) -"uVh" = ( +/turf/simulated/floor/plating, +/area/horizon/security/checkpoint2) +"uVk" = ( /obj/structure/cable{ icon_state = "4-8" }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/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/hallway/engineering) -"uVl" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/bed/handrail{ - dir = 8 - }, -/obj/machinery/power/apc/east{ - req_access = null; - req_one_access = list(11, 24, 47, 65) - }, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, +/obj/machinery/porta_turret, +/obj/effect/floor_decal/industrial/warning/full, /turf/simulated/floor/tiled/dark/full, -/area/shuttle/intrepid/starboard_compartment) +/area/horizon/ai/upload_foyer) "uVn" = ( /obj/vehicle/bike/speeder, /obj/effect/floor_decal/industrial/warning{ @@ -145964,11 +146529,19 @@ }, /turf/simulated/floor/tiled/dark, /area/shuttle/legion) -"uVu" = ( -/obj/machinery/shieldwallgen, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/storage_hard) +"uVt" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 6 + }, +/obj/machinery/firealarm/east, +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/landmark/start{ + name = "Shaft Miner" + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/operations/mining_main/eva) "uVw" = ( /obj/machinery/door/airlock/centcom{ name = "Hangar Access" @@ -145992,14 +146565,17 @@ /obj/structure/flora/ausbushes/ppflowers, /turf/simulated/floor/grass/no_edge, /area/centcom/spawning) -"uVA" = ( -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/random/junk, -/obj/machinery/light/small/emergency{ - dir = 8 +"uVz" = ( +/obj/machinery/shipsensors/strong/venator{ + pixel_y = 7 }, -/turf/simulated/floor/plating, -/area/maintenance/wing/port/far) +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/structure/railing/mapped, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark/full/airless, +/area/horizon/command/bridge/controlroom) "uVD" = ( /obj/machinery/atmospherics/pipe/simple/hidden/yellow{ dir = 5 @@ -146017,44 +146593,57 @@ }, /turf/simulated/floor/tiled/dark, /area/shuttle/legion) +"uVF" = ( +/obj/machinery/requests_console/east{ + department = "Journalist's Office" + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/horizon/crew/journalistoffice) +"uVH" = ( +/turf/simulated/wall/r_wall, +/area/horizon/engineering/atmos/storage) "uVI" = ( /obj/structure/bed/stool{ pixel_y = 10 }, /turf/unsimulated/floor, /area/centcom/specops) -"uVL" = ( -/turf/simulated/wall/shuttle/scc_space_ship/cardinal, -/area/engineering/atmos/propulsion) -"uVM" = ( -/obj/effect/floor_decal/corner/yellow{ - dir = 6 +"uVV" = ( +/obj/structure/table/standard, +/obj/structure/cable/green{ + icon_state = "4-8" }, -/obj/machinery/firealarm/east, -/obj/machinery/atmospherics/pipe/simple/visible/universal, -/obj/machinery/meter, -/turf/simulated/floor/tiled/dark, -/area/engineering/engine_waste) -"uVT" = ( -/obj/structure/lattice, -/obj/structure/railing/mapped{ - dir = 4 +/obj/item/paper_bin{ + pixel_x = 6; + pixel_y = 5 }, -/obj/structure/platform/ledge{ +/obj/item/pen{ + pixel_x = 7; + pixel_y = 6 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/pharmacy) +"uVW" = ( +/obj/structure/bed/handrail{ dir = 8 }, -/turf/simulated/open, -/area/operations/office) -"uVX" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 6 +/obj/effect/map_effect/marker/airlock/shuttle{ + cycle_to_external_air = 1; + master_tag = "airlock_shuttle_intrepid"; + name = "airlock_shuttle_intrepid"; + req_one_access = null; + shuttle_tag = "Intrepid" }, -/obj/structure/table/standard, -/obj/structure/closet/walllocker/medical/firstaid{ - pixel_x = 32 +/obj/machinery/atmospherics/unary/vent_pump/high_volume, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 9 }, -/turf/simulated/floor/tiled/dark, -/area/teleporter) +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/shuttle/intrepid/main_compartment) "uVY" = ( /obj/structure/table/reinforced/steel, /obj/machinery/door/firedoor, @@ -146090,18 +146679,13 @@ }, /turf/unsimulated/floor/plating, /area/antag/raider) -"uWc" = ( -/obj/machinery/door/blast/shutters/open{ - dir = 8; - id = "intrepid_bay_windows"; - name = "Intrepid Shutter" - }, -/obj/effect/map_effect/window_spawner/full/shuttle/scc{ - spawn_firedoor = 1; - spawn_grille = 1 +"uWf" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 10 }, +/obj/structure/platform, /turf/simulated/floor/plating, -/area/shuttle/intrepid/port_compartment) +/area/horizon/maintenance/deck_2/wing/port/near) "uWh" = ( /obj/effect/floor_decal/industrial/outline/blue, /obj/structure/table/rack, @@ -146127,30 +146711,19 @@ }, /turf/unsimulated/floor, /area/centcom/legion/hangar5) -"uWm" = ( -/obj/structure/bed/stool/padded/black, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/alarm/north, -/turf/simulated/floor, -/area/maintenance/security_port) -"uWn" = ( -/obj/machinery/door/blast/regular/open{ - id = "iso_a"; - name = "Safety Blast Door" +"uWi" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 4 }, -/obj/effect/map_effect/window_spawner/full/borosilicate/reinforced/firedoor, -/obj/machinery/alarm/south{ - alarm_id = 1503; - breach_detection = 0; +/obj/structure/disposalpipe/segment{ dir = 4; - name = "Isolation C"; - pixel_x = -24; - rcon_setting = 3; - report_danger_level = 0; - req_one_access = list(7,47,24,11) + icon_state = "pipe-c" }, -/turf/simulated/floor/tiled/dark/full, -/area/rnd/isolation_c) +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/weapons/longbow) "uWp" = ( /obj/structure/table/wood, /obj/item/spacecash/c1{ @@ -146159,15 +146732,56 @@ /obj/item/spacecash/c1, /turf/unsimulated/floor/wood, /area/antag/burglar) -"uWy" = ( -/obj/structure/cable{ +"uWt" = ( +/mob/living/simple_animal/hostile/commanded/baby_harvester, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/door/window/southleft{ + name = "Ives Cage" + }, +/turf/simulated/floor/carpet, +/area/horizon/command/heads/rd) +"uWw" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; icon_state = "1-2" }, -/obj/structure/cable{ - icon_state = "1-4" +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/grille, +/turf/simulated/floor/tiled/dark/full/airless, +/area/horizon/command/bridge/controlroom) +"uWx" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/structure/tank_wall/nitrous_oxide{ + icon_state = "h16" }, /turf/simulated/floor/plating, -/area/maintenance/substation/research_sublevel) +/area/horizon/engineering/atmos/air) +"uWA" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/service/starboard) "uWB" = ( /obj/effect/step_trigger/thrower/shuttle/west, /turf/template_noop, @@ -146177,125 +146791,104 @@ icon_state = "wood-broken5" }, /area/centcom/legion) -"uWG" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/bluespace_drive) -"uWN" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/structure/trash_pile, -/obj/random/dirt_75, -/turf/simulated/floor/plating, -/area/maintenance/wing/port/far) -"uWR" = ( -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"uWS" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/button/remote/blast_door{ - dir = 1; - id = "warehouse4"; - name = "Warehouse Shutter"; - pixel_x = 31; - pixel_y = 32 - }, -/obj/effect/floor_decal/corner/brown{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/operations/storage) -"uWT" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/random/junk, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/simulated/floor, -/area/maintenance/engineering_ladder) -"uWW" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/door/airlock/engineering{ - dir = 4; - name = "Technical Storage"; - req_access = list(23) - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/full, -/area/engineering/storage/tech) -"uWZ" = ( -/obj/structure/cable/green{ - icon_state = "2-4" - }, -/obj/structure/disposalpipe/junction{ - dir = 8; - icon_state = "pipe-j2" - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/structure/lattice/catwalk/indoor/grate, -/turf/simulated/floor, -/area/horizon/hallway/deck_three/primary/starboard) -"uXd" = ( -/obj/machinery/atmospherics/pipe/manifold/visible{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/maintenance/aux_atmospherics/deck_2/starboard/wing) -"uXf" = ( -/obj/effect/floor_decal/corner_wide/blue{ +"uWF" = ( +/obj/effect/floor_decal/spline/fancy/wood{ dir = 6 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, +/turf/simulated/floor/wood, +/area/horizon/service/chapel/office) +"uWM" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/structure/engineer_maintenance/pipe, -/obj/structure/engineer_maintenance/electric{ +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/light/floor{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/horizon/command/bridge/upperdeck) +"uWP" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/turf/simulated/floor, +/area/horizon/maintenance/deck_3/aft/port/far) +"uXb" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/warning{ dir = 8 }, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_3/port/docks) +"uXc" = ( +/obj/structure/foamedmetal, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/cargo_compartment) +"uXe" = ( +/obj/effect/map_effect/window_spawner/full/shuttle/scc{ + spawn_firedoor = 1; + spawn_grille = 1 + }, +/turf/simulated/floor/plating, +/area/horizon/shuttle/quark/cockpit) +"uXh" = ( +/obj/machinery/shield_gen/external{ + anchored = 1 + }, +/obj/effect/floor_decal/corner_wide/yellow/full, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/camera/network/engineering{ + c_tag = "Engineering - Shield Room"; + dir = 4 + }, /turf/simulated/floor/tiled/dark/full, -/area/storage/secure) +/area/horizon/engineering/shields) +"uXj" = ( +/obj/structure/platform_stairs/full{ + dir = 4 + }, +/obj/structure/platform{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/horizon/command/bridge/cciaroom/lounge) +"uXo" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/hangar/starboard) +"uXp" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/effect/map_effect/marker/airlock/docking{ + landmark_tag = "nav_horizon_dock_deck_3_starboard_3"; + master_tag = "airlock_horizon_dock_deck_3_starboard_3"; + name = "airlock_horizon_dock_deck_3_starboard_3" + }, +/turf/simulated/floor/plating, +/area/horizon/hallway/primary/deck_3/port/docks) +"uXq" = ( +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/wing/starboard) "uXr" = ( /obj/structure/cryofeed{ dir = 4 @@ -146306,12 +146899,22 @@ /obj/structure/window/reinforced, /turf/unsimulated/floor, /area/centcom/legion) -"uXu" = ( -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel, -/obj/machinery/atmospherics/pipe/simple/hidden/aux, -/turf/simulated/floor/plating, -/area/maintenance/research_port) +"uXt" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/horizon/service/dining_hall) +"uXz" = ( +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/machinery/power/apc/east, +/turf/simulated/floor/tiled/dark, +/area/horizon/maintenance/deck_2/wing/port/nacelle) "uXA" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -146329,9 +146932,32 @@ /obj/machinery/firealarm/north, /turf/simulated/floor/tiled/dark, /area/horizon/holodeck_control) -"uXD" = ( -/turf/simulated/floor/tiled, -/area/hallway/primary/central_two) +"uXE" = ( +/obj/structure/bed/stool/chair/office/light{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/xenological) +"uXG" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/effect/floor_decal/spline/plain{ + dir = 1 + }, +/obj/machinery/vending/frontiervend, +/turf/simulated/floor/tiled/dark, +/area/horizon/hallway/primary/deck_2/central) +"uXH" = ( +/obj/item/storage/box/mousetraps, +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/closet/crate, +/obj/item/storage/box/mousetraps, +/turf/simulated/floor/tiled/dark, +/area/horizon/rnd/xenobiology) "uXL" = ( /obj/effect/decal/fake_object{ color = "#545c68"; @@ -146345,51 +146971,44 @@ density = 1 }, /area/antag/ninja) -"uXO" = ( +"uXQ" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + dir = 1 + }, /obj/machinery/door/firedoor, -/obj/effect/floor_decal/corner_wide/yellow{ +/obj/machinery/atmospherics/pipe/simple/hidden/fuel, +/obj/machinery/atmospherics/pipe/simple/hidden/aux, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/main/starboard) +"uXS" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 6 }, +/turf/simulated/floor/lino, +/area/horizon/service/chapel/main) +"uXU" = ( +/obj/effect/floor_decal/corner/grey/diagonal, +/obj/effect/floor_decal/spline/plain, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/white, +/area/horizon/service/kitchen) +"uXV" = ( +/obj/machinery/door/airlock/highsecurity{ + dir = 4; + name = "Secure Technical Storage"; + req_access = list(23) + }, +/obj/machinery/door/firedoor, /obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/full, -/area/hallway/engineering) -"uXP" = ( -/obj/effect/floor_decal/corner/dark_green/full{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/central) -"uXR" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/obj/structure/table/steel, -/obj/item/storage/toolbox/electrical{ - pixel_y = 4 - }, -/obj/item/storage/toolbox/electrical{ - pixel_y = -1 - }, -/obj/item/device/multitool{ - pixel_x = -4 - }, -/obj/item/device/multitool{ - pixel_x = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/engineering/storage/tech) -"uYc" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small/emergency{ +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/turf/simulated/floor/tiled/dark, -/area/maintenance/wing/port/far) +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/full, +/area/horizon/engineering/storage/tech) "uYd" = ( /obj/structure/shuttle_part/ert{ icon_state = "9,3"; @@ -146397,108 +147016,73 @@ }, /turf/unsimulated/floor/plating, /area/shuttle/specops) -"uYe" = ( -/obj/structure/table/standard, -/obj/item/toy/comic/inspector{ - pixel_x = -4 +"uYg" = ( +/obj/machinery/light/small/emergency{ + dir = 1 }, -/obj/item/toy/comic/inspector, -/obj/item/toy/comic/stormman{ - pixel_x = 4 - }, -/obj/effect/floor_decal/spline/fancy/wood{ +/obj/effect/floor_decal/industrial/warning{ dir = 8 }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/operations/lower/machinist/surgicalbay) -"uYi" = ( -/obj/structure/sign/nosmoking_1{ - pixel_y = 32 - }, -/obj/machinery/computer/general_air_control/large_tank_control/terminal{ - sensors = list("ph_sensor"="Tank"); - output_tag = "Ph_out_FuelBay"; - name = "Phoron Supply - Fuel Bay"; - max_pressure_setting = 2000 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/atmos) -"uYv" = ( -/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/effect/map_effect/window_spawner/full/reinforced/firedoor, -/obj/machinery/door/blast/shutters/open{ - dir = 2; - id = "shutters_deck2_eng_frontdesk"; - name = "Engineering Front Desk Shutter" - }, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/lobby) -"uYF" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/light/floor{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/wood, -/area/bridge/meeting_room) -"uYI" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/random/junk, /turf/simulated/floor/plating, -/area/maintenance/wing/port) -"uYJ" = ( -/obj/structure/table/wood, -/obj/item/modular_computer/laptop/preset/representative{ - pixel_x = -1; - pixel_y = 5 +/area/horizon/maintenance/deck_1/teleporter) +"uYm" = ( +/obj/machinery/button/mass_driver{ + _wifi_id = "waste"; + id = "waste"; + name = "Mass Driver Activation"; + pixel_x = 6; + pixel_y = 30 }, -/turf/simulated/floor/carpet, -/area/lawoffice/representative_two) -"uYK" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 5 +/obj/machinery/button/remote/blast_door{ + id = "waste"; + name = "Mass Driver Blast Door"; + pixel_x = 6; + pixel_y = 40 }, -/obj/machinery/firealarm/north, -/obj/machinery/disposal/small/west, -/obj/structure/disposalpipe/trunk, -/turf/simulated/floor/wood, -/area/chapel/office) -"uYO" = ( -/obj/effect/floor_decal/corner/black{ +/obj/effect/floor_decal/corner/purple/full{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/obj/machinery/button/remote/blast_door{ + id = "shutters_disposals"; + name = "Viewing Shutters"; + pixel_x = -6; + pixel_y = 40 + }, +/obj/machinery/alarm/west, +/turf/simulated/floor/tiled/dark, +/area/horizon/service/custodial/disposals/deck_1) +"uYn" = ( +/obj/effect/floor_decal/industrial/outline_door/medical/dark_green, +/obj/effect/floor_decal/industrial/outline_segment/medical/dark_green{ dir = 10 }, +/obj/effect/floor_decal/spline/plain/corner/blue{ + dir = 1 + }, +/obj/effect/floor_decal/corner/dark_green/full, +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 8 + }, /turf/simulated/floor/tiled, -/area/operations/lower/machinist) -"uYP" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/area/horizon/service/hydroponics/lower) +"uYs" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled/dark, +/area/horizon/stairwell/bridge/deck_2) +"uYC" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/green{ + d1 = 1; + d2 = 2; icon_state = "1-2" }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/full, -/area/operations/office_aux) +/turf/simulated/floor/tiled/dark/full, +/area/horizon/shuttle/intrepid/junction_compartment) "uYQ" = ( /obj/effect/floor_decal/industrial/warning, /turf/simulated/floor/reinforced/airless, @@ -146512,24 +147096,6 @@ icon_state = "wood" }, /area/centcom/specops) -"uYU" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 9 - }, -/obj/structure/bed/stool/chair/padded/black{ - dir = 4 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/bridge/cciaroom/lounge) -"uYW" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/purple{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/engineering/atmos) "uYX" = ( /obj/structure/table/stone/marble, /obj/item/deck/tarot{ @@ -146538,110 +147104,50 @@ }, /turf/unsimulated/floor/blue_circuit, /area/antag/wizard) -"uZc" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 10 - }, -/obj/machinery/camera/network/second_deck{ - c_tag = "Second Deck - Service Entrance"; - dir = 1 - }, -/obj/structure/sign/double/barsign/kitchensign/mirrored{ - pixel_y = -32 - }, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_two/fore) -"uZf" = ( -/turf/simulated/wall/shuttle/scc_space_ship/cardinal, -/area/maintenance/bridge) -"uZh" = ( -/obj/effect/floor_decal/industrial/outline/grey, -/obj/structure/closet/secure_closet/freezer/chicken_and_fish, -/obj/machinery/light, -/turf/simulated/floor/tiled/freezer{ - name = "cooled tiles"; - temperature = 253.15 - }, -/area/horizon/kitchen/freezer) -"uZk" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/lattice/catwalk/indoor, -/obj/structure/railing/mapped{ +"uZd" = ( +/obj/effect/floor_decal/corner/dark_blue{ dir = 4 }, -/obj/structure/railing/mapped, -/turf/simulated/floor/plating, -/area/engineering/bluespace_drive) -"uZn" = ( -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/operations/lower/machinist) -"uZr" = ( -/obj/structure/sign/drop{ - desc = "A warning sign which reads 'DANGER: FALLING HAZARD' and 'THIS EQUIPMENT STARTS AND STOPS AUTOMATICALLY'."; - name = "\improper DANGER: FALLING HAZARD sign" - }, -/turf/simulated/wall, -/area/operations/office) -"uZt" = ( -/obj/machinery/button/remote/airlock{ - dir = 4; - id = "CEdoor"; - name = "Office Door Control"; - pixel_x = 25; - pixel_y = -8; - req_access = list(56) - }, -/obj/machinery/button/switch/windowtint{ - dir = 4; - id = "ce"; - pixel_x = 25; - pixel_y = 2; - range = 9 - }, -/obj/machinery/light_switch{ - dir = 4; - pixel_x = 25; - pixel_y = 12 - }, -/obj/machinery/keycard_auth{ - dir = 8; - pixel_x = 19; - pixel_y = -4 - }, -/turf/simulated/floor/carpet, -/area/crew_quarters/heads/chief) -"uZu" = ( -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/structure/railing/mapped{ +/turf/simulated/floor/tiled/dark, +/area/horizon/weapons/grauwolf) +"uZs" = ( +/obj/effect/floor_decal/spline/fancy/wood{ dir = 1 }, -/obj/item/storage/toolbox/mechanical, -/obj/structure/railing/mapped{ - dir = 8 +/turf/simulated/floor/wood, +/area/horizon/crew/journalistoffice) +"uZx" = ( +/obj/machinery/light/small{ + dir = 1; + must_start_working = 1 }, -/obj/machinery/light{ +/obj/effect/floor_decal/corner/dark_blue{ + dir = 4 + }, +/obj/effect/floor_decal/corner/yellow{ dir = 1 }, -/turf/simulated/floor/plating, -/area/operations/lower/machinist) +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/manifold/visible/blue{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/atmos/turbine) +"uZy" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/atmos/turbine) "uZB" = ( /obj/effect/floor_decal/corner/beige{ dir = 6 }, /turf/simulated/floor/tiled/dark, /area/shuttle/merchant) -"uZE" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/lino/diamond, -/area/horizon/library) "uZF" = ( /obj/effect/floor_decal/industrial/warning{ dir = 4 @@ -146655,39 +147161,56 @@ }, /turf/unsimulated/floor, /area/centcom/legion/hangar5) -"uZH" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ +"uZJ" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/sortjunction/flipped{ + name = "Engineering"; + sortType = "Engineering" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/effect/floor_decal/corner_wide/yellow{ + dir = 5 + }, +/obj/machinery/light{ dir = 1 }, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/engine_room) -"uZI" = ( -/obj/machinery/atmospherics/pipe/simple/visible/green, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"uZN" = ( -/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/intrepid) -"uZO" = ( -/obj/effect/floor_decal/corner_wide/green/diagonal, +/area/horizon/engineering/lobby) +"uZK" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 9 + }, +/turf/simulated/floor/reinforced/airmix, +/area/horizon/engineering/atmos/air) +"uZQ" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 6 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_2/central) +"uZS" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, /obj/structure/cable/green{ icon_state = "2-4" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/white, -/area/medical/equipment) -"uZU" = ( -/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ - dir = 6 +/obj/machinery/atmospherics/pipe/simple/hidden/green{ + dir = 10 }, -/turf/simulated/floor/reinforced/airless, -/area/engineering/atmos/propulsion/starboard) +/turf/simulated/floor/tiled/dark, +/area/horizon/service/custodial/disposals/deck_1) "uZV" = ( /obj/effect/floor_decal/corner/beige{ dir = 10 @@ -146719,82 +147242,60 @@ }, /turf/unsimulated/floor, /area/centcom/legion/hangar5) -"vab" = ( -/obj/effect/floor_decal/industrial/hatch_door/red, -/obj/machinery/door/airlock/external{ - dir = 8 +"vak" = ( +/obj/machinery/door/firedoor, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/full, +/area/horizon/hallway/primary/deck_2/fore) +"vaq" = ( +/obj/structure/cable/green{ + icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 10 +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor/multi_tile, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/airlock/multi_tile/glass{ + id_tag = "main_door"; + name = "Triage Room Main Entrance"; + req_access = list(5) }, -/obj/effect/map_effect/marker/airlock{ - master_tag = "sccv_intrepid_starboard"; - name = "sccv_intrepid_starboard"; - req_one_access = null +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 2; + icon_state = "shutter0"; + id = "entrance_shutters"; + name = "Entrance Lockdown Shutters"; + opacity = 0 }, -/obj/effect/map_effect/marker_helper/airlock/interior, -/obj/machinery/access_button{ - pixel_y = 29; - pixel_x = 7; - dir = 4 - }, -/turf/simulated/floor/tiled/dark/full, -/area/shuttle/intrepid/starboard_compartment) -"vac" = ( -/obj/effect/floor_decal/corner_wide/yellow/diagonal{ - dir = 4 - }, -/obj/effect/floor_decal/corner_wide/blue/diagonal, -/obj/effect/floor_decal/spline/plain{ +/obj/effect/map_effect/door_helper/unres{ dir = 1 }, -/obj/effect/floor_decal/spline/plain, -/turf/simulated/floor/tiled, -/area/engineering/atmos/storage) -"vai" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 5 +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/full, +/area/horizon/medical/gen_treatment) +"vax" = ( +/obj/effect/map_effect/window_spawner/full/reinforced/polarized/grille/firedoor{ + id = "cap" + }, +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id = "bridge blast"; + name = "Bridge Blast Doors"; + opacity = 0 }, /obj/structure/cable/green{ icon_state = "0-4" }, -/obj/machinery/power/apc/low/north, -/turf/simulated/floor/tiled/dark, -/area/hangar/control) -"vap" = ( -/obj/machinery/computer/rdservercontrol, -/turf/simulated/floor/carpet/rubber, -/area/server) -"vat" = ( -/obj/structure/cable{ - icon_state = "1-2" +/obj/structure/cable/green{ + icon_state = "1-4" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/aux, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/machinery/door/airlock/maintenance_hatch{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/operations) -"vau" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock{ - dir = 4; - name = "Deck 2 Central Washroom" - }, -/obj/effect/floor_decal/spline/plain/corner, -/turf/simulated/floor/tiled/full, -/area/horizon/crew_quarters/washroom/central) -"vav" = ( /obj/structure/cable/green{ icon_state = "2-4" }, -/turf/simulated/wall/shuttle/scc_space_ship/cardinal, -/area/bridge/controlroom) +/turf/simulated/floor, +/area/horizon/command/heads/captain) "vaz" = ( /obj/structure/bed/stool/chair/shuttle{ can_dismantle = 1; @@ -146803,19 +147304,16 @@ }, /turf/simulated/floor/shuttle/black, /area/shuttle/hapt) -"vaA" = ( -/obj/effect/floor_decal/corner/brown, -/turf/simulated/floor/tiled/dark, -/area/shuttle/intrepid/port_compartment) -"vaD" = ( -/obj/effect/floor_decal/corner/yellow{ - dir = 5 +"vaC" = ( +/obj/structure/cable/green, +/obj/structure/cable{ + icon_state = "0-2" }, -/obj/machinery/light{ - dir = 1 +/obj/machinery/power/smes/buildable/substation{ + RCon_tag = "Substation - Engineering Lower Deck" }, -/turf/simulated/floor/tiled/dark, -/area/engineering/engine_waste) +/turf/simulated/floor/plating, +/area/horizon/maintenance/substation/engineering/lower) "vaI" = ( /obj/machinery/door/airlock/centcom{ dir = 4; @@ -146826,84 +147324,68 @@ icon_state = "dark_preview" }, /area/centcom/holding) -"vaJ" = ( +"vaL" = ( +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/effect/floor_decal/corner/brown/full{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/horizon/operations/loading) +"vaU" = ( /obj/structure/cable{ icon_state = "4-8" }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/machinery/door/airlock/maintenance_hatch{ - dir = 4; - req_access = list(12) +/obj/effect/floor_decal/corner_wide/yellow{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/horizon/stairwell/engineering/deck_2) +"vaV" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/lattice/catwalk/indoor/grate, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/turf/simulated/floor, +/area/horizon/hallway/primary/deck_3/starboard) +"vbl" = ( +/obj/random/pottedplant, +/obj/effect/floor_decal/spline/fancy/wood/full, +/obj/machinery/alarm/east, +/turf/simulated/floor/grass/no_edge, +/area/horizon/hallway/primary/deck_1/central) +"vbp" = ( +/obj/structure/lattice/catwalk/indoor/grate/damaged{ + color = "#4c535b" }, -/obj/machinery/door/firedoor, /turf/simulated/floor/plating, -/area/maintenance/aft) -"vaW" = ( -/turf/simulated/wall/shuttle/scc_space_ship/cardinal, -/area/engineering/aft_airlock) -"vbc" = ( -/obj/structure/railing/mapped, -/obj/structure/platform/ledge{ - dir = 1 - }, -/obj/structure/platform/ledge{ - dir = 4 - }, -/obj/structure/platform_deco/ledge{ - dir = 10 - }, -/turf/simulated/open, -/area/hallway/primary/central_one) -"vbf" = ( -/obj/effect/floor_decal/corner_wide/green{ - dir = 1 - }, -/obj/effect/floor_decal/corner_wide/paleblue{ - dir = 4 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/vending/wallmed2{ - pixel_y = 32 - }, +/area/horizon/maintenance/deck_1/wing/starboard/far) +"vby" = ( +/obj/effect/floor_decal/corner/mauve/diagonal, /turf/simulated/floor/tiled/white, -/area/hallway/medical) -"vbg" = ( -/obj/structure/table/standard, -/obj/effect/floor_decal/corner_wide/green/full{ - dir = 8 - }, -/obj/item/storage/firstaid/adv{ - pixel_y = 8 - }, -/obj/item/storage/firstaid/adv{ - pixel_y = 3 - }, -/turf/simulated/floor/tiled/white, -/area/medical/main_storage) -"vbn" = ( -/obj/machinery/door/airlock/glass_service{ - dir = 1; - name = "Hydroponics"; - req_access = list(35) - }, -/obj/machinery/door/firedoor, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/full, -/area/horizon/hydroponics) -"vbt" = ( -/turf/simulated/wall/r_wall, -/area/bridge/meeting_room) -"vbv" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/structure/tank_wall/phoron{ - icon_state = "ph4" - }, -/turf/simulated/floor/airless, -/area/engineering/atmos) +/area/horizon/rnd/lab) "vbz" = ( /obj/effect/floor_decal/carpet{ dir = 10 @@ -146920,61 +147402,66 @@ }, /turf/simulated/floor/holofloor/carpet, /area/horizon/holodeck/source_courtroom) -"vbB" = ( +"vbH" = ( +/obj/structure/table/standard, +/obj/item/storage/bag/circuits/basic, +/obj/item/device/integrated_electronics/debugger, +/obj/item/device/integrated_electronics/wirer, +/obj/effect/floor_decal/corner/mauve{ + dir = 6 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/telesci) +"vbQ" = ( +/obj/effect/floor_decal/corner_wide/yellow{ + dir = 5 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/shields) +"vbT" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/airlock/maintenance_hatch{ + dir = 1 + }, +/obj/machinery/door/firedoor, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/starboard/near) +"vbU" = ( +/obj/machinery/door/firedoor{ + req_one_access = list(24,11,67,73) + }, +/obj/effect/floor_decal/industrial/hatch_door/yellow{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/green{ d1 = 1; d2 = 2; icon_state = "1-2" }, -/obj/effect/floor_decal/corner/dark_green{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_two/fore) -"vbD" = ( -/obj/effect/floor_decal/corner_wide/purple{ +/turf/simulated/floor/tiled/dark/full, +/area/horizon/shuttle/intrepid/main_compartment) +"vbV" = ( +/obj/effect/floor_decal/spline/fancy/wood/cee{ dir = 8 }, -/obj/effect/floor_decal/corner_wide/white{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenoarch_atrium) -"vbJ" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard) -"vbM" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/structure/railing/mapped, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/engine_room/rust) -"vbN" = ( -/obj/structure/sign/biohazard{ - pixel_x = -1; - pixel_y = -30 - }, -/obj/structure/sink{ - dir = 8; - pixel_x = -12 - }, -/obj/machinery/shower{ - dir = 4; - pixel_y = 1 - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/hydroponics/lower) +/obj/machinery/alarm/north, +/obj/random/pottedplant, +/turf/simulated/floor/wood, +/area/horizon/command/bridge/meeting_room) "vbW" = ( /obj/structure/table/reinforced/wood, /obj/item/reagent_containers/food/drinks/bottle/cognac{ @@ -147003,6 +147490,22 @@ /obj/random/toolbox, /turf/unsimulated/floor/plating, /area/centcom/spawning) +"vcd" = ( +/obj/structure/platform_stairs/full/east_west_cap{ + dir = 8 + }, +/obj/structure/platform{ + dir = 1 + }, +/obj/structure/railing/mapped, +/obj/effect/floor_decal/corner/lime{ + dir = 5 + }, +/turf/simulated/floor/tiled/white{ + name = "cooled white floor"; + temperature = 278.15 + }, +/area/horizon/medical/morgue) "vcf" = ( /obj/structure/bed/stool/chair/padded/brown{ can_buckle = 0; @@ -147029,34 +147532,57 @@ }, /turf/simulated/open/airless, /area/horizon/exterior) -"vcp" = ( -/obj/effect/floor_decal/corner/dark_blue{ +"vcm" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/corner/brown/full{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/horizon/operations/office) +"vco" = ( +/obj/structure/closet/secure_closet/refrigerator/standard, +/obj/item/storage/box/fancy/egg_box, +/obj/item/storage/box/fancy/egg_box, +/obj/item/reagent_containers/food/drinks/carton/milk, +/obj/item/reagent_containers/food/drinks/carton/milk, +/obj/item/reagent_containers/food/drinks/carton/soymilk, +/obj/item/reagent_containers/food/drinks/carton/soymilk, +/obj/machinery/firealarm/east, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/item/reagent_containers/food/drinks/carton/cream, +/obj/item/reagent_containers/food/drinks/carton/cream, +/obj/item/reagent_containers/food/condiment/soysauce, +/obj/item/reagent_containers/food/condiment/soysauce, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/service/kitchen) +"vcr" = ( +/obj/effect/floor_decal/corner/dark_green{ dir = 10 }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ +/obj/structure/extinguisher_cabinet/south, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_2/starboard) +"vcs" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/port/nacelle) +"vcx" = ( +/obj/structure/bed/stool/chair/sofa/pew/right{ dir = 8 }, -/obj/item/modular_computer/console/preset/command{ - dir = 8 +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 6 }, -/turf/simulated/floor/tiled/dark, -/area/hangar/control) -"vcv" = ( -/obj/effect/map_effect/window_spawner/full/reinforced/polarized/grille/firedoor{ - id = "cap" - }, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "bridge blast"; - name = "Bridge Blast Doors"; - opacity = 0 - }, -/obj/structure/cable/green{ - icon_state = "0-2" - }, -/turf/simulated/floor, -/area/crew_quarters/captain) +/turf/simulated/floor/wood, +/area/horizon/service/chapel/main) "vcC" = ( /obj/structure/sign/directions/mndl{ dir = 4; @@ -147073,20 +147599,64 @@ }, /turf/unsimulated/wall/darkshuttlewall, /area/centcom/holding) -"vcD" = ( -/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ +"vcE" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/obj/structure/trash_pile, +/turf/simulated/floor, +/area/horizon/maintenance/deck_3/aft/starboard) +"vcF" = ( +/obj/machinery/door/window/northright, +/turf/simulated/floor/tiled, +/area/horizon/maintenance/deck_2/wing/port/far) +"vcJ" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/reactor/indra/mainchamber) +"vcK" = ( +/obj/item/modular_computer/console/preset/civilian{ dir = 4 }, -/turf/simulated/floor/reinforced/airless, -/area/engineering/atmos/propulsion) -"vcI" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/light/small/emergency{ +/obj/machinery/embedded_controller/radio/simple_docking_controller/escape_pod{ + frequency = 1380; + id_tag = "escape_pod_3"; + pixel_y = 25; + tag_door = "escape_pod_3_hatch" + }, +/turf/simulated/floor/shuttle/dark_blue, +/area/horizon/shuttle/escape_pod/pod4) +"vcM" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/horizon/maintenance/deck_two/fore/port) +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/corner/mauve{ + dir = 9 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/xenobiology) +"vcO" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/newscaster/south, +/obj/machinery/camera/network/second_deck{ + c_tag = "Second Deck - Central Stairwell"; + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/horizon/stairwell/starboard/deck_2) "vcP" = ( /obj/machinery/light{ dir = 4 @@ -147113,28 +147683,6 @@ /obj/effect/floor_decal/industrial/hatch/yellow, /turf/unsimulated/floor, /area/centcom/checkpoint/fore) -"vcW" = ( -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/structure/table/wood, -/obj/random/contraband, -/turf/simulated/floor/tiled/dark, -/area/maintenance/wing/port/far) -"vde" = ( -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/effect/floor_decal/corner/dark_blue/full{ - dir = 1 - }, -/obj/item/modular_computer/console/preset/command, -/obj/machinery/light/small, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge/aibunker) "vdf" = ( /obj/structure/bed/padded, /obj/effect/decal/cleanable/dirt, @@ -147190,37 +147738,42 @@ /obj/item/ammo_magazine/c45m/rubber, /turf/simulated/floor/tiled/dark/full, /area/horizon/security/armoury) -"vdh" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 8 - }, -/obj/effect/floor_decal/corner/yellow, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/sign/directions/prop{ - dir = 4; - pixel_y = -22 - }, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/atmos) -"vdj" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/machinery/camera/network/research{ - c_tag = "Research - Corridor Camera 3"; - network = list("Research","Xeno_Bio") - }, -/obj/effect/floor_decal/corner/mauve/diagonal, -/turf/simulated/floor/tiled, -/area/rnd/hallway/secondary) "vdl" = ( /obj/structure/bed/stool/chair/sofa/right/red, /obj/effect/floor_decal/spline/fancy/wood, /turf/unsimulated/floor/wood, /area/antag/actor) +"vdr" = ( +/obj/structure/platform/ledge, +/obj/structure/platform{ + dir = 4 + }, +/obj/structure/platform_deco/ledge{ + dir = 5 + }, +/obj/structure/reagent_dispensers/fueltank, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced, +/obj/machinery/door/window{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/hatch/red, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/operations/machinist) +"vds" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/lattice/catwalk/indoor, +/turf/simulated/floor/plating, +/area/horizon/engineering/reactor/indra/mainchamber) +"vdw" = ( +/obj/machinery/vending/cola, +/obj/effect/floor_decal/industrial/hatch/grey, +/turf/simulated/floor/tiled/full, +/area/horizon/hallway/primary/deck_3/port) "vdy" = ( /obj/structure/table/rack, /obj/machinery/light{ @@ -147239,41 +147792,36 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/unsimulated/floor, /area/antag/mercenary) +"vdE" = ( +/obj/machinery/shower{ + pixel_y = 24 + }, +/obj/random/soap, +/obj/structure/curtain/open/shower, +/obj/structure/window/reinforced, +/turf/simulated/floor/tiled/freezer, +/area/horizon/medical/washroom) "vdG" = ( /turf/unsimulated/floor, /area/centcom/legion) -"vdP" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ +"vdH" = ( +/obj/structure/cable{ icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/medical/icu) -"vdQ" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/window{ - dir = 8; - name = "Reception Desk"; - req_access = list(5) - }, -/turf/simulated/floor/tiled/white, -/area/medical/reception) +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/hidden/aux, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/operations/starboard/amidships) +"vdU" = ( +/obj/machinery/mineral/rigpress, +/obj/effect/floor_decal/corner/brown/full, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled, +/area/horizon/operations/mining_main/refinery) "vdV" = ( /obj/effect/floor_decal/corner/blue{ dir = 5 @@ -147282,14 +147830,10 @@ icon_state = "dark_preview" }, /area/centcom/holding) -"vdZ" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/maintenance{ - dir = 4; - req_one_access = list(26,29,31,48,67,70) - }, -/turf/simulated/floor/tiled/full, -/area/operations/storage) +"vdY" = ( +/obj/machinery/constructable_frame/machine_frame, +/turf/simulated/floor/carpet/rubber, +/area/horizon/maintenance/deck_1/workshop) "ved" = ( /obj/structure/sign/flag/nanotrasen{ pixel_y = 30 @@ -147301,86 +147845,51 @@ icon_state = "dark_preview" }, /area/centcom/specops) -"vef" = ( -/obj/effect/floor_decal/corner_wide/purple/diagonal, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ +"ven" = ( +/obj/effect/floor_decal/industrial/warning{ dir = 8 }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/reinforced, +/area/horizon/weapons/grauwolf) +"vew" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/obj/machinery/alarm/east, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/reactor/indra/monitoring) +"vey" = ( +/obj/effect/floor_decal/corner/green/diagonal, +/obj/structure/undies_wardrobe{ + pixel_y = 1 + }, /turf/simulated/floor/tiled/white, -/area/rnd/test_range) -"ver" = ( -/obj/structure/cable/green{ - icon_state = "1-4" +/area/horizon/crew/fitness/changing) +"veC" = ( +/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/xenological) +"veK" = ( +/obj/machinery/door/airlock/external, +/obj/machinery/access_button{ + dir = 8; + pixel_x = 20; + pixel_y = 28 }, -/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/effect/map_effect/marker/airlock{ + frequency = 2005; + master_tag = "airlock_horizon_deck_2_aft_sm"; + name = "airlock_horizon_deck_2_aft_sm" + }, +/obj/effect/map_effect/marker_helper/airlock/exterior, /turf/simulated/floor/plating, -/area/engineering/storage/lower) -"veu" = ( -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark/full, -/area/storage/secure) -"vez" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/structure/cable/green{ - icon_state = "2-4" - }, -/obj/structure/disposalpipe/junction{ - dir = 4 - }, -/obj/machinery/light/floor{ - dir = 1 - }, -/turf/simulated/floor/lino, -/area/horizon/crew_quarters/lounge/bar) -"veD" = ( -/obj/machinery/shower{ - dir = 1; - pixel_y = -8 - }, -/obj/machinery/door/window/northleft{ - name = "Shower" - }, -/obj/structure/curtain/open/shower, -/obj/structure/bed/handrail{ - dir = 4 - }, -/turf/simulated/floor/tiled/freezer, -/area/horizon/crew_quarters/fitness/showers) -"veE" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/effect/floor_decal/industrial/warning, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/horizon/maintenance/deck_two/fore/starboard) -"veJ" = ( -/obj/machinery/door/blast/regular/open{ - id = "iso_a"; - name = "Safety Blast Door" - }, -/obj/effect/map_effect/window_spawner/full/borosilicate/reinforced/firedoor, -/turf/simulated/floor/tiled/dark/full, -/area/rnd/isolation_c) +/area/horizon/engineering/reactor/supermatter/airlock) "veM" = ( /obj/effect/floor_decal/corner/white/diagonal, /obj/structure/toilet{ @@ -147401,122 +147910,122 @@ }, /turf/unsimulated/floor, /area/centcom/spawning) +"veP" = ( +/obj/machinery/portable_atmospherics/canister/empty/air, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/starboard/nacelle) "veQ" = ( /obj/effect/floor_decal/corner/green{ dir = 10 }, /turf/simulated/floor/holofloor/tiled, /area/horizon/holodeck/source_emptycourt) -"veU" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 9 - }, -/obj/machinery/alarm/west, -/turf/simulated/floor/tiled/dark, -/area/storage/eva) -"veV" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/engineering{ - dir = 1; - name = "Engineering Substation"; - req_one_access = list(11,24) - }, -/turf/simulated/floor/tiled/full, -/area/maintenance/substation/engineering) -"vfa" = ( -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/structure/platform/ledge, -/obj/structure/platform/ledge{ - dir = 4 - }, -/obj/structure/platform_deco/ledge{ +"veW" = ( +/obj/random/junk, +/obj/effect/floor_decal/industrial/warning{ dir = 5 }, -/turf/simulated/open, -/area/horizon/hallway/deck_three/primary/central) -"vfc" = ( -/obj/structure/closet/emcloset, -/obj/effect/floor_decal/industrial/outline/emergency_closet, -/turf/simulated/floor/tiled, -/area/rnd/xenoarch_atrium) -"vfi" = ( -/obj/machinery/light, -/obj/effect/floor_decal/corner/dark_green{ - dir = 10 +/turf/simulated/floor, +/area/horizon/maintenance/deck_3/aft/port) +"vfe" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + icon_state = "1-4" }, -/obj/structure/closet/athletic_mixed, -/turf/simulated/floor/tiled, -/area/horizon/crew_quarters/fitness/changing) +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor, +/area/horizon/maintenance/deck_3/aft/port) +"vfh" = ( +/obj/effect/floor_decal/spline/fancy/wood/corner{ + dir = 1 + }, +/obj/structure/platform{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/horizon/service/bar) "vfl" = ( /obj/item/shovel, /turf/simulated/floor/exoplanet/barren, /area/centcom/shared_dream) -"vfp" = ( -/obj/structure/bed/handrail{ - buckle_dir = 4; - dir = 4; - pixel_x = -5 +"vfo" = ( +/obj/effect/floor_decal/corner_wide/blue/full, +/obj/structure/table/reinforced/steel, +/obj/random/rig_module{ + pixel_x = -6 + }, +/obj/random/rig_module{ + pixel_x = 6 + }, +/obj/random/rig_module{ + pixel_x = 1; + pixel_y = 5 + }, +/obj/random/vault_rig{ + pixel_x = -10 + }, +/obj/random/vault_rig{ + pixel_x = 10 + }, +/obj/random/vault_rig{ + pixel_y = 10; + pixel_x = 10 + }, +/obj/machinery/door/window/northleft{ + name = "Storage"; + req_access = list(20) + }, +/obj/random/vault_rig{ + pixel_x = -10; + pixel_y = 10 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/storage/secure) +"vfr" = ( +/obj/effect/floor_decal/corner_wide/paleblue{ + dir = 6 + }, +/obj/structure/closet/secure_closet/medical2, +/obj/machinery/firealarm/east, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 }, /turf/simulated/floor/tiled/white, -/area/medical/ors) -"vft" = ( -/obj/structure/cable/green{ - icon_state = "4-8" +/area/horizon/medical/surgery) +"vfA" = ( +/obj/effect/floor_decal/corner/dark_green/full{ + dir = 8 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/machinery/firealarm/west, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_2/central) +"vfF" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 1 }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/structure/lattice/catwalk/indoor/grate, -/turf/simulated/floor/plating, -/area/rnd/hallway) -"vfu" = ( -/obj/structure/ladder/up{ - pixel_y = 13 +/turf/simulated/floor/tiled/dark, +/area/horizon/storage/eva) +"vfH" = ( +/obj/machinery/conveyor_switch/oneway{ + id = "warehousetomail"; + pixel_x = -19; + pixel_y = -10 }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/maintenance/aft) -"vfz" = ( -/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/engineering/lobby) -"vfB" = ( -/obj/effect/floor_decal/corner/purple/full{ - dir = 4 - }, -/obj/machinery/alarm/east, -/obj/structure/table/steel, -/obj/item/storage/toolbox/mechanical, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/structure/reagent_dispensers/peppertank/spacecleaner{ - pixel_y = -32 - }, -/obj/machinery/camera/network/service{ - c_tag = "Service - Auxiliary Custodial Closet"; - dir = 1 +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/effect/floor_decal/industrial/loading/yellow{ + dir = 8 }, /turf/simulated/floor/tiled, -/area/horizon/custodial/auxiliary) +/area/horizon/operations/warehouse) "vfI" = ( /obj/item/wrench, /obj/item/crowbar, @@ -147530,6 +148039,18 @@ /obj/structure/table/rack, /turf/unsimulated/floor/rubber_carpet, /area/antag/jockey) +"vfM" = ( +/obj/machinery/smartfridge/secure/medbay{ + pixel_y = 1; + req_one_access = list(7) + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/light, +/obj/effect/floor_decal/corner/mauve{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/chemistry) "vfN" = ( /obj/structure/table/wood, /obj/item/device/flashlight/lamp/box{ @@ -147542,26 +148063,36 @@ name = "mossy grass" }, /area/horizon/holodeck/source_konyang) -"vfS" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 1 +"vfQ" = ( +/obj/structure/reagent_dispensers/keg/mead, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/wood, +/area/horizon/maintenance/deck_2/wing/port) +"vfX" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 }, -/obj/structure/table/reinforced/wood, -/obj/item/book/manual/wiki/security_space_law, -/obj/item/paper_bin{ - pixel_x = -3; - pixel_y = 7 +/obj/machinery/light{ + dir = 4 }, -/obj/item/folder/blue, -/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/reinforced, +/area/horizon/rnd/test_range) +"vge" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 8 }, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenoarch_atrium) +/obj/machinery/airlock_sensor{ + dir = 8; + pixel_x = 20 + }, +/obj/effect/map_effect/marker/airlock{ + frequency = 1001; + master_tag = "airlock_horizon_deck_3_aft_1"; + name = "airlock_horizon_deck_3_aft_1" + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor, +/area/horizon/maintenance/deck_3/aft/port/far) "vgm" = ( /obj/machinery/portable_atmospherics/hydroponics, /obj/effect/floor_decal/corner/dark_blue{ @@ -147573,17 +148104,6 @@ }, /turf/simulated/floor/tiled, /area/horizon/security/brig) -"vgn" = ( -/obj/machinery/porta_turret/stationary, -/obj/effect/floor_decal/industrial/warning/full, -/obj/structure/sign/flag/scc{ - pixel_x = 32 - }, -/obj/machinery/light/small/emergency{ - dir = 4 - }, -/turf/simulated/floor/reinforced, -/area/bridge/selfdestruct) "vgp" = ( /obj/effect/floor_decal/corner/paleblue/diagonal{ dir = 8 @@ -147592,72 +148112,55 @@ icon_state = "white" }, /area/centcom/legion) -"vgr" = ( -/turf/simulated/wall/shuttle/scc_space_ship/cardinal, -/area/bridge/aibunker) -"vgB" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/chapel/main) -"vgD" = ( -/obj/machinery/atmospherics/pipe/simple/visible/black, -/obj/machinery/meter, -/obj/effect/floor_decal/corner/yellow, -/obj/effect/floor_decal/corner/dark_blue{ +"vgt" = ( +/obj/machinery/light/small{ dir = 4 }, /obj/effect/floor_decal/corner/dark_blue{ + dir = 4 + }, +/obj/effect/floor_decal/corner/yellow, +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/atmos/turbine) +"vgu" = ( +/obj/structure/lattice/catwalk, +/turf/space, +/area/horizon/exterior) +"vgw" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/light, +/turf/simulated/floor/reinforced, +/area/horizon/rnd/test_range) +"vgC" = ( +/obj/effect/floor_decal/spline/plain/lime{ dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/engineering/atmos) -"vgE" = ( -/obj/effect/floor_decal/corner/mauve/full{ +/area/horizon/service/hydroponics/garden) +"vgH" = ( +/obj/machinery/camera/network/command{ + c_tag = "Bridge - Captain" + }, +/obj/effect/floor_decal/corner/dark_blue/full{ + dir = 8 + }, +/obj/effect/floor_decal/corner/yellow/diagonal, +/obj/structure/platform, +/obj/structure/bed/stool/chair/office/bridge{ + name = "Captain Chair" + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/command/bridge/controlroom) +"vgK" = ( +/obj/effect/floor_decal/corner/brown/full{ dir = 4 }, -/obj/structure/platform{ - dir = 1 - }, -/obj/machinery/light/floor, +/obj/random/pottedplant, +/obj/machinery/alarm/east, /turf/simulated/floor/tiled, -/area/rnd/hallway/secondary) -"vgI" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 9 - }, -/obj/effect/floor_decal/spline/plain/blue{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden, -/turf/simulated/floor/tiled, -/area/horizon/hydroponics/lower) -"vgM" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 5 - }, -/obj/effect/floor_decal/industrial/loading/yellow{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/port) -"vgN" = ( -/obj/effect/floor_decal/corner_wide/yellow{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/engineering/break_room) -"vgQ" = ( -/turf/simulated/floor/tiled/dark/full, -/area/horizon/maintenance/deck_three/aft/starboard) -"vgR" = ( -/obj/machinery/portable_atmospherics/canister/empty, -/obj/effect/floor_decal/industrial/outline/grey, -/obj/machinery/light/small/emergency, -/turf/simulated/floor, -/area/maintenance/security_port) +/area/horizon/operations/warehouse) "vgS" = ( /obj/machinery/atmospherics/pipe/manifold/visible/yellow{ dir = 8 @@ -147666,73 +148169,125 @@ icon_state = "2-8" }, /turf/simulated/floor/tiled, -/area/outpost/research/anomaly_harvest) -"vgT" = ( -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 4 +/area/horizon/rnd/xenoarch/anomaly_harvest) +"vgV" = ( +/obj/structure/cable/green{ + icon_state = "4-8" }, -/obj/machinery/meter, -/turf/simulated/floor/tiled/dark, -/area/engineering/atmos/propulsion/starboard) -"vgU" = ( -/obj/machinery/disposal/deliveryChute{ - dir = 4 - }, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/warning/full, -/turf/simulated/floor/plating, -/area/operations/storage) -"vgX" = ( -/obj/machinery/light/small/emergency{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/warning{ +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 1 }, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard) -"vhc" = ( -/obj/structure/bed/stool/chair/padded/black, -/obj/effect/floor_decal/corner/dark_green{ - dir = 9 - }, -/obj/item/device/radio/intercom/north, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, /turf/simulated/floor/tiled, -/area/security/checkpoint2) -"vhf" = ( -/obj/machinery/light{ +/area/horizon/hallway/primary/deck_3/starboard) +"vha" = ( +/obj/machinery/power/smes/batteryrack{ + input_level = 50000; + output_level = 45000 + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/substation/wing_port) +"vhi" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/mining{ + dir = 4; + name = "Machinist Workshop"; + req_access = list(29) + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled, +/area/horizon/operations/machinist) +"vhj" = ( +/obj/effect/floor_decal/corner_wide/blue, +/obj/effect/floor_decal/corner_wide/yellow{ dir = 8 }, -/obj/effect/floor_decal/industrial/outline/firefighting_closet, -/obj/structure/closet/firecloset, +/obj/effect/floor_decal/spline/plain/corner, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/blue{ + dir = 8 + }, +/obj/machinery/door/airlock/glass_atmos{ + dir = 4; + name = "Atmospherics Locker Room"; + req_access = list(24) + }, +/obj/effect/map_effect/door_helper/unres{ + dir = 4 + }, /turf/simulated/floor/tiled/full, -/area/horizon/hallway/deck_two/fore) -"vhg" = ( -/turf/simulated/wall/shuttle/unique/scc/mining{ - icon_state = "4,1" +/area/horizon/engineering/atmos/storage) +"vhk" = ( +/obj/machinery/computer/cryopod/living_quarters{ + pixel_y = 32 }, -/area/shuttle/mining) -"vht" = ( -/obj/machinery/door/blast/regular/open{ - id = "hangarlockdown"; - name = "Hangar Lockdown" +/obj/effect/floor_decal/corner/dark_green/diagonal, +/obj/structure/cable/green{ + icon_state = "2-4" }, -/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, -/turf/simulated/floor/tiled/dark/full, -/area/hangar/control) -"vhz" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ +/turf/simulated/floor/tiled, +/area/horizon/crew/fitness/changing) +"vhv" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/corner/dark_green{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_3/port) +"vhA" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 8 }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" +/turf/simulated/floor/tiled, +/area/horizon/engineering/hallway/interior) +"vhF" = ( +/obj/item/device/destTagger, +/obj/structure/table/rack, +/obj/effect/floor_decal/industrial/outline/operations, +/obj/item/storage/box/fancy/candle_box, +/obj/item/stack/packageWrap, +/obj/item/paper_scanner, +/obj/machinery/light/small{ + dir = 4 }, -/turf/simulated/floor/tiled/white, -/area/medical/reception) +/obj/item/device/toner{ + pixel_y = 5 + }, +/obj/item/device/toner{ + pixel_y = -1 + }, +/turf/simulated/floor/lino/diamond, +/area/horizon/service/library) +"vhH" = ( +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/obj/effect/floor_decal/corner/brown{ + dir = 5 + }, +/obj/structure/table/steel, +/obj/machinery/power/apc/low/north, +/obj/item/device/suit_cooling_unit, +/obj/item/device/suit_cooling_unit, +/turf/simulated/floor/tiled/dark, +/area/horizon/operations/mining_main/eva) "vhJ" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 1 @@ -147757,15 +148312,6 @@ }, /turf/simulated/floor/plating, /area/centcom/shared_dream) -"vhR" = ( -/obj/effect/floor_decal/corner_wide/yellow{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/red{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos/storage) "vhT" = ( /obj/structure/table/reinforced/steel, /obj/item/gun/projectile/gauss{ @@ -147781,48 +148327,33 @@ /obj/effect/floor_decal/carpet, /turf/simulated/floor/holofloor/carpet, /area/horizon/holodeck/source_dininghall) -"vhY" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 +"vib" = ( +/obj/effect/floor_decal/corner/dark_blue/diagonal, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 }, -/obj/effect/floor_decal/corner/dark_green{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/aft) -"vif" = ( -/obj/machinery/light/small, -/obj/structure/table/steel, -/turf/simulated/floor/tiled, -/area/medical/morgue/lower) +/turf/simulated/floor/tiled/dark, +/area/horizon/shuttle/intrepid/flight_deck) "vih" = ( /obj/structure/bed/stool/padded/beige{ dir = 1 }, /turf/unsimulated/floor/wood, /area/centcom/bar) -"vik" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 5 - }, -/obj/machinery/portable_atmospherics/canister/empty, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"vil" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/airlock/glass_mining{ - dir = 1; - name = "Break Room"; - req_one_access = list(26,29,31,48,67,70) - }, +"vii" = ( +/obj/structure/grille, /obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/operations/break_room) +/obj/structure/window/shuttle/scc_space_ship/cardinal, +/obj/effect/landmark/entry_point/fore{ + name = "fore, grauwolf compartment" + }, +/obj/machinery/door/blast/regular/open{ + dir = 8; + id = "shutters_deck2_grauwolf"; + name = "Safety Blast Door" + }, +/turf/simulated/floor/plating, +/area/horizon/weapons/grauwolf) "vim" = ( /obj/effect/floor_decal/corner/dark_blue{ dir = 9 @@ -147831,88 +148362,104 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled, /area/horizon/security/investigations_hallway) -"viD" = ( -/obj/machinery/light{ +"vio" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/camera/network/first_deck{ + c_tag = "First Deck - Hangar 3"; dir = 8 }, -/obj/machinery/alarm/south, -/turf/simulated/floor/tiled/dark/full, -/area/rnd/telesci) -"viE" = ( -/obj/effect/floor_decal/corner_wide/green{ - dir = 10 - }, -/obj/structure/table/glass{ - table_reinf = "glass" - }, -/obj/item/modular_computer/laptop/preset/medical{ - pixel_y = 4 - }, -/obj/machinery/button/remote/airlock{ - id = "RecoveryWard"; - name = "Recovery Door Control"; - pixel_x = -7; - pixel_y = -19; - req_access = list(5) - }, -/turf/simulated/floor/tiled/white, -/area/medical/ward) -"viI" = ( /obj/effect/floor_decal/corner/dark_green{ - dir = 8 + dir = 6 }, /turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/central) -"viL" = ( +/area/horizon/hangar/intrepid) +"vis" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/junction{ + dir = 1; + icon_state = "pipe-j2" + }, +/obj/structure/bed/stool/bar/padded/red{ + dir = 1 + }, +/turf/simulated/floor/lino, +/area/horizon/service/bar) +"vit" = ( +/obj/machinery/conveyor{ + dir = 8; + id = "warehousetomail" + }, +/obj/effect/floor_decal/corner/brown{ + dir = 9 + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled, +/area/horizon/operations/warehouse) +"viv" = ( +/obj/machinery/alarm/north, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled/dark, +/area/horizon/maintenance/deck_2/wing/port/near) +"vix" = ( +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/structure/railing/mapped, +/turf/simulated/open, +/area/horizon/service/custodial/disposals/deck_2) +"viG" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/obj/random/junk, +/obj/structure/closet/crate/trashcart, +/obj/random/junk, +/obj/random/junk, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/main/starboard) +"viJ" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/firealarm/east, +/obj/structure/reagent_dispensers/fueltank, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/storage_hard) +"viM" = ( /obj/structure/cable/green{ icon_state = "4-8" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ +/obj/effect/map_effect/window_spawner/full/reinforced/grille/firedoor, +/obj/machinery/door/blast/regular/open{ + name = "Command Bunker Lockdown"; + id = "command_bunker_lockdown" + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/command/bridge/aibunker) +"viY" = ( +/obj/effect/floor_decal/corner/green/diagonal, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 }, /turf/simulated/floor/tiled/white, -/area/hallway/medical) -"viS" = ( -/obj/effect/floor_decal/corner/red/diagonal, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/spline/plain{ - dir = 8 - }, -/obj/structure/railing/mapped{ - dir = 8 - }, -/turf/simulated/floor/lino, -/area/horizon/cafeteria) -"viU" = ( -/obj/structure/bed/stool/chair/padded/brown{ - dir = 1 - }, -/obj/machinery/camera/network/supply{ - c_tag = "Operations - Manager's Office"; - dir = 8 - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/operations/qm) -"viX" = ( -/obj/machinery/camera/network/engineering{ - c_tag = "Engineering - Atmospherics Tanks 5"; - dir = 8 - }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/visible/black, -/turf/simulated/floor/plating, -/area/engineering/atmos/air) +/area/horizon/crew/washroom/deck_2) "viZ" = ( /obj/effect/floor_decal/corner/dark_blue{ dir = 9 @@ -147922,18 +148469,23 @@ /obj/machinery/alarm/west, /turf/simulated/floor/tiled/dark, /area/horizon/security/evidence_storage) -"vjf" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/airlock/glass_engineering{ - dir = 1; - name = "Engineering Locker Room"; - req_access = list(11) +"vjb" = ( +/obj/effect/floor_decal/spline/plain/black{ + dir = 1 }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/full, -/area/engineering/locker_room) +/obj/effect/floor_decal/corner/dark_green, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/horizon/crew/fitness/gym) +"vjc" = ( +/obj/structure/foamedmetal, +/obj/effect/landmark/entry_point/aft{ + name = "aft, starboard ballast maintenance, far end" + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/port) "vjh" = ( /obj/machinery/light{ dir = 4 @@ -147946,29 +148498,62 @@ }, /turf/simulated/floor/tiled, /area/merchant_station/warehouse) -"vjl" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/railing/mapped{ - dir = 1 - }, -/turf/simulated/floor/tiled/ramp/bottom{ +"vjj" = ( +/obj/machinery/atmospherics/pipe/simple/visible/green{ dir = 4 }, -/area/maintenance/wing/starboard/deck1) -"vjr" = ( -/obj/machinery/light/floor, -/turf/simulated/floor/tiled/dark, -/area/horizon/bar) -"vju" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable/green{ - icon_state = "2-8" +/obj/machinery/light, +/turf/simulated/floor/plating, +/area/horizon/engineering/reactor/supermatter/airlock) +"vjk" = ( +/obj/effect/floor_decal/industrial/outline/grey, +/obj/structure/reagent_dispensers/extinguisher, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/auxatmos) +"vjn" = ( +/obj/structure/grille, +/obj/machinery/door/firedoor, +/obj/effect/landmark/entry_point/port{ + name = "port, hydroponics" }, -/obj/structure/platform_stairs/full{ +/obj/structure/window/shuttle/scc_space_ship/cardinal, +/obj/machinery/door/blast/shutters{ + dir = 4; + id = "shutters_deck2_hydroponicswindowssafety"; + name = "Viewing Shutter" + }, +/turf/simulated/floor/plating, +/area/horizon/service/hydroponics) +"vjo" = ( +/obj/effect/floor_decal/corner/green/diagonal, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/vending/lavatory, +/turf/simulated/floor/tiled/white, +/area/horizon/crew/washroom/deck_2) +"vjq" = ( +/obj/structure/cable/orange{ + icon_state = "0-8" + }, +/obj/machinery/camera/network/reactor{ + c_tag = "Engineering - Supermatter Reactor 2"; dir = 1 }, -/turf/simulated/floor, -/area/maintenance/substation/command) +/obj/machinery/power/smes/buildable{ + RCon_tag = "Supermatter - Containment"; + charge = 2000000; + input_attempt = 1; + input_level = 200000; + is_critical = 1; + output_attempt = 1; + output_level = 200000 + }, +/obj/machinery/light/spot{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/horizon/engineering/reactor/supermatter/mainchamber) "vjv" = ( /obj/structure/window/shuttle/unique/tcfl{ icon_state = "17,4"; @@ -147976,42 +148561,43 @@ }, /turf/unsimulated/floor/plating, /area/shuttle/legion) -"vjx" = ( -/obj/structure/cable/green{ - icon_state = "1-2" +"vjz" = ( +/obj/random/loot, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/corner/brown{ - dir = 6 - }, -/obj/structure/table/standard{ - no_cargo = 1 - }, -/obj/item/device/hand_labeler, -/obj/item/device/destTagger, -/obj/item/stack/packageWrap, -/turf/simulated/floor/tiled, -/area/operations/storage) -"vjA" = ( /obj/random/junk, -/turf/simulated/floor/tiled/dark/full, -/area/maintenance/research_port) -"vjI" = ( -/obj/effect/decal/cleanable/dirt, -/obj/random/junk, -/obj/machinery/alarm/north, +/turf/simulated/floor, +/area/horizon/maintenance/deck_3/aft/starboard/far) +"vjB" = ( +/obj/structure/reagent_dispensers/acid{ + pixel_y = 32; + pixel_x = -32 + }, +/turf/simulated/floor/carpet/rubber, +/area/horizon/operations/machinist) +"vjD" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/alarm/west, /turf/simulated/floor/plating, -/area/maintenance/operations) -"vjK" = ( -/obj/structure/railing/mapped, -/obj/structure/stairs/east, -/turf/simulated/floor/tiled, -/area/engineering/atmos/storage) -"vjM" = ( -/obj/effect/floor_decal/corner/yellow{ - dir = 6 +/area/horizon/maintenance/deck_1/operations/starboard/far) +"vjG" = ( +/obj/machinery/door/airlock/hatch{ + dir = 4; + name = "Elevator Emergency Escape Hatch"; + req_one_access = list(11,24,67) }, +/obj/effect/map_effect/door_helper/unres{ + dir = 4 + }, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/turf/simulated/floor/tiled/full, +/area/horizon/hallway/primary/deck_1/central) +"vjN" = ( /obj/structure/cable/green{ icon_state = "4-8" }, @@ -148021,8 +148607,14 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/turf/simulated/floor/tiled/dark, -/area/engineering/storage/tech) +/obj/effect/floor_decal/corner/mauve{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/horizon/rnd/hallway) "vjO" = ( /obj/effect/floor_decal/industrial/warning{ dir = 9 @@ -148032,71 +148624,32 @@ }, /turf/simulated/floor/tiled, /area/shuttle/merchant) -"vjR" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 10 - }, -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/obj/structure/cable/green{ - icon_state = "0-8" - }, -/obj/structure/grille, -/turf/simulated/floor/tiled/dark/full/airless, -/area/bridge/controlroom) -"vjT" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/aux{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 4 - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/maintenance/engineering) -"vjW" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/engineering/atmos) +"vjP" = ( +/obj/effect/floor_decal/industrial/outline/service, +/obj/machinery/portable_atmospherics/hydroponics, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/service/hydroponics) "vjX" = ( /obj/effect/floor_decal/spline/plain{ dir = 9 }, /turf/simulated/floor/exoplanet/barren, /area/centcom/shared_dream) +"vjY" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor, +/area/horizon/maintenance/deck_3/aft/port/far) "vkb" = ( /obj/effect/floor_decal/corner/green/full{ dir = 4 }, /turf/unsimulated/floor, /area/centcom/holding) -"vkd" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/plating, -/area/maintenance/aft) "vke" = ( /obj/effect/decal/fake_object{ desc = "A rudimentary, poorly utilized railing mechanism. Stepping over it is easy."; @@ -148124,50 +148677,89 @@ }, /area/horizon/holodeck/source_konyang) "vkf" = ( +/obj/machinery/recharger{ + pixel_y = 6 + }, +/obj/structure/table/standard, +/obj/effect/floor_decal/corner/mauve{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/xenological) +"vkg" = ( +/obj/machinery/telecomms/broadcaster/preset_right, +/turf/simulated/floor/bluegrid, +/area/horizon/tcommsat/chamber) +"vki" = ( +/obj/effect/floor_decal/corner/dark_green/diagonal, /obj/effect/floor_decal/spline/plain/lime{ - dir = 4 + dir = 1 }, -/obj/structure/sink/kitchen{ - dir = 8; - name = "sink"; - pixel_x = 21 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/dark, -/area/horizon/hydroponics/garden) +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_2/fore) "vkq" = ( /turf/simulated/wall/shuttle/unique/ert{ icon_state = "0,2" }, /area/shuttle/specops) -"vks" = ( -/obj/structure/bed/stool/chair/office/dark{ - dir = 8 +"vkt" = ( +/obj/structure/cable/green{ + icon_state = "1-2" }, -/obj/effect/landmark/start{ - name = "Atmospheric Technician" - }, -/obj/effect/floor_decal/spline/plain{ +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/dark, +/area/horizon/storage/eva) +"vkw" = ( +/turf/simulated/wall/r_wall, +/area/horizon/engineering/reactor/indra/smes) +"vkx" = ( +/obj/effect/map_effect/window_spawner/full/borosilicate/reinforced/firedoor, +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/xenobiology) +"vkz" = ( +/obj/effect/floor_decal/corner/grey/diagonal, +/obj/effect/floor_decal/spline/plain/corner{ dir = 4 }, -/turf/simulated/floor/tiled/dark, -/area/engineering/break_room) -"vkB" = ( -/turf/simulated/wall/shuttle/unique/scc/mining{ - icon_state = "fix4" - }, -/area/shuttle/mining) -"vkD" = ( -/obj/effect/floor_decal/corner/grey/diagonal{ - dir = 8 +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" }, /turf/simulated/floor/tiled/white, -/area/horizon/cafeteria) +/area/horizon/service/kitchen) +"vkA" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/table/reinforced/steel, +/obj/item/clothing/head/welding, +/obj/item/storage/toolbox/mechanical, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/rnd/xenoarch/atrium) +"vkC" = ( +/obj/machinery/computer/robotics{ + dir = 4 + }, +/turf/simulated/floor/carpet/purple, +/area/horizon/command/heads/rd) +"vkH" = ( +/obj/effect/floor_decal/corner_wide/yellow{ + dir = 6 + }, +/obj/effect/floor_decal/spline/plain/corner{ + dir = 4 + }, +/obj/structure/reagent_dispensers/water_cooler, +/obj/machinery/alarm/east, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/horizon/engineering/break_room) "vkI" = ( /obj/structure/weapon_rack/dragunov{ desc = "An old dusty rifle, once the pride of the bar."; @@ -148178,26 +148770,93 @@ }, /turf/unsimulated/floor, /area/antag/raider) -"vkO" = ( -/turf/simulated/wall/shuttle/scc_space_ship/cardinal, -/area/horizon/hallway/deck_three/primary/starboard) -"vlk" = ( -/obj/random/pottedplant, -/obj/effect/floor_decal/spline/fancy/wood{ +"vkJ" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/atmos/propulsion/starboard) +"vkM" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/effect/floor_decal/spline/fancy/wood/cee, +/obj/structure/flora/pottedplant{ + icon_state = "plant-28" + }, +/turf/simulated/floor/wood, +/area/horizon/service/chapel/main) +"vkR" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/horizon/operations/mail_room) +"vkU" = ( +/obj/structure/window/shuttle/scc_space_ship, +/obj/structure/grille, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id = "bridge blast"; + name = "Bridge Blast Doors"; + opacity = 0 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/shutters/open{ + dir = 2; + id = "shutters_deck3_bridgesafety"; + name = "Safety Shutter" + }, +/obj/structure/cable/green{ + icon_state = "0-8" + }, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/machinery/door/blast/shutters/open{ + dir = 2; + id = "conferencesafetyshutters"; + name = "Safety Shutter" + }, +/turf/simulated/floor/plating, +/area/horizon/command/bridge/meeting_room) +"vlj" = ( +/obj/effect/floor_decal/corner_wide/purple{ dir = 6 }, -/obj/machinery/light, -/turf/simulated/floor/wood, -/area/crew_quarters/lounge/secondary) +/obj/effect/floor_decal/corner_wide/purple{ + dir = 8 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/alarm/east, +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/xenoarch/atrium) "vll" = ( /obj/effect/decal/fake_object/light_source/invisible, /obj/item/modular_computer/console/preset/command/teleporter/ninja, /turf/unsimulated/floor, /area/antag/ninja) -"vlm" = ( -/obj/effect/floor_decal/spline/fancy/wood/corner, -/turf/simulated/floor/wood, -/area/bridge/minibar) +"vlo" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/light/small/emergency, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/wing/starboard) "vlp" = ( /obj/machinery/door/airlock/highsecurity{ dir = 1; @@ -148210,25 +148869,45 @@ /obj/machinery/door/firedoor/noid, /turf/simulated/floor/tiled/dark/full, /area/shuttle/mercenary) -"vlu" = ( -/obj/structure/bed/stool/chair/office/dark, -/obj/effect/floor_decal/corner/mauve/diagonal, +"vls" = ( +/obj/effect/floor_decal/corner_wide/green{ + dir = 5 + }, +/obj/machinery/light/floor{ + dir = 1 + }, /turf/simulated/floor/tiled/white, -/area/rnd/lab) -"vlw" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" +/area/horizon/medical/hallway/upper) +"vlx" = ( +/obj/effect/decal/cleanable/dirt, +/mob/living/silicon/robot/drone/construction/matriarch, +/turf/simulated/floor/plating, +/area/horizon/engineering/drone_fabrication) +"vlz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 9 +/obj/effect/floor_decal/corner/dark_blue{ + dir = 10 }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/wood, -/area/horizon/bar) +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/platform_stairs/full{ + dir = 8 + }, +/obj/structure/platform/cutout{ + dir = 8 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/ringer_button{ + pixel_y = 29; + id = "consular_b_ringer" + }, +/turf/simulated/floor/tiled, +/area/horizon/command/bridge/upperdeck) "vlC" = ( /obj/effect/floor_decal/corner/dark_blue/full{ dir = 1 @@ -148240,10 +148919,6 @@ }, /turf/simulated/floor/tiled, /area/horizon/security/holding_cell_b) -"vlJ" = ( -/obj/effect/shuttle_landmark/escape_pod/start/pod1, -/turf/simulated/floor/shuttle/dark_blue, -/area/shuttle/escape_pod/pod1) "vlL" = ( /obj/item/device/radio/intercom/south{ frequency = 1443; @@ -148258,29 +148933,6 @@ /obj/random/junk, /turf/template_noop, /area/template_noop) -"vlR" = ( -/obj/structure/table/standard, -/obj/item/storage/box/fancy/vials{ - pixel_x = -10; - pixel_y = 10 - }, -/obj/item/reagent_containers/dropper/electronic_pipette{ - pixel_x = -8 - }, -/obj/item/reagent_containers/glass/beaker/large, -/obj/item/device/hand_labeler{ - pixel_y = -20 - }, -/obj/machinery/requests_console/west{ - department = "Pharmacy"; - departmentType = 2; - name = "Pharmacy Requests Console" - }, -/obj/effect/floor_decal/corner_wide/orange{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/medical/pharmacy) "vlS" = ( /obj/effect/floor_decal/industrial/warning, /turf/unsimulated/floor/plating, @@ -148307,9 +148959,12 @@ icon_state = "carpet" }, /area/centcom/specops) -"vlY" = ( +"vlW" = ( +/obj/effect/floor_decal/corner_wide/green{ + dir = 5 + }, /obj/structure/cable/green{ - icon_state = "1-2" + icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -148317,22 +148972,31 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/turf/simulated/floor/tiled/dark, -/area/engineering/atmos) -"vmn" = ( -/obj/structure/cable{ - icon_state = "4-8" +/obj/effect/floor_decal/industrial/warning{ + dir = 1 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/structure/cable/green{ + icon_state = "1-8" }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"vmq" = ( -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/dark, -/area/horizon/crew_quarters/fitness/gym) +/turf/simulated/floor/tiled/white, +/area/horizon/medical/gen_treatment) +"vma" = ( +/obj/structure/table/steel, +/turf/simulated/floor/tiled, +/area/horizon/medical/morgue) +"vmh" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/corner/red/diagonal, +/obj/effect/floor_decal/spline/plain{ + dir = 9 + }, +/turf/simulated/floor/lino, +/area/horizon/service/cafeteria) "vms" = ( /obj/effect/decal{ anchored = 1; @@ -148346,28 +149010,81 @@ icon_state = "pool" }, /area/horizon/holodeck/source_pool) +"vmu" = ( +/obj/structure/cable, +/obj/machinery/power/terminal{ + dir = 4 + }, +/obj/machinery/camera/network/engineering{ + c_tag = "Engineering - Deck 1 - Operations Substation"; + dir = 4 + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/substation/operations) +"vmw" = ( +/obj/machinery/computer/borgupload{ + dir = 1 + }, +/obj/effect/floor_decal/corner/dark_blue{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/ai/upload_foyer) "vmx" = ( /obj/effect/floor_decal/corner/dark_blue/diagonal, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/horizon/security/investigations_hallway) +"vmz" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/port/near) +"vmF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/corner/dark_green{ + dir = 6 + }, +/obj/effect/floor_decal/spline/plain/green{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/horizon/service/hydroponics/lower) +"vmH" = ( +/obj/effect/landmark/entry_point/port{ + name = "port, medical" + }, +/turf/simulated/wall/shuttle/scc, +/area/horizon/shuttle/intrepid/medical) +"vmK" = ( +/obj/item/modular_computer/console/preset/civilian, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/unsimulated/floor/marble, +/area/antag/wizard) "vmM" = ( /obj/effect/floor_decal/corner/red{ dir = 5 }, /turf/simulated/floor/holofloor/tiled, /area/horizon/holodeck/source_thunderdomecourt) -"vmN" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/airlock/atmos{ - dir = 1; - name = "Deck 2 Starboard Auxiliary Atmospherics"; - req_one_access = list(11,24) - }, -/turf/simulated/floor/tiled, -/area/maintenance/aux_atmospherics/deck_2/starboard/wing) "vmP" = ( /obj/structure/reagent_dispensers/watertank, /obj/item/reagent_containers/glass/bucket{ @@ -148389,49 +149106,68 @@ /obj/structure/lattice/catwalk, /turf/space/dynamic, /area/template_noop) -"vmV" = ( -/turf/unsimulated/wall/darkshuttlewall, -/area/centcom/ferry) -"vna" = ( -/obj/effect/floor_decal/corner/green/diagonal{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/white, -/area/medical/ward) -"vnb" = ( +"vmT" = ( /obj/machinery/light, /obj/effect/floor_decal/corner/dark_green{ dir = 10 }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 5 +/obj/machinery/button/remote/blast_door{ + dir = 1; + id = "shutters_deck2_portstairwellsec"; + name = "Elevator Security Shutters"; + pixel_x = 7; + pixel_y = -37; + req_one_access = list(1,19) }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning/corner, +/obj/machinery/computer/shuttle_control/multi/lift/wall/robotics{ + dir = 1; + pixel_x = 7; + pixel_y = -28 }, /turf/simulated/floor/tiled, -/area/security/checkpoint2) -"vnc" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 10 +/area/horizon/stairwell/port/deck_2) +"vmV" = ( +/turf/unsimulated/wall/darkshuttlewall, +/area/centcom/ferry) +"vmY" = ( +/obj/machinery/shipsensors/weak/scc_shuttle{ + pixel_y = -21 }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 +/obj/effect/floor_decal/industrial/warning{ + dir = 6 }, -/obj/structure/sign/emergency/evacuation{ - pixel_y = -32 +/turf/simulated/floor/reinforced, +/area/horizon/shuttle/intrepid/flight_deck) +"vnh" = ( +/obj/effect/floor_decal/corner/mauve/full{ + dir = 8 }, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/starboard) -"vnf" = ( -/obj/structure/cable{ - icon_state = "4-8" +/obj/structure/sink{ + pixel_y = 28; + pixel_x = -10 }, -/obj/machinery/porta_turret, -/obj/effect/floor_decal/industrial/warning/full, -/turf/simulated/floor/tiled/dark/full, -/area/turret_protected/ai_upload_foyer) +/obj/machinery/button/remote/blast_door{ + desc = "It controls the research shutters."; + id = "exploratory_chem_shutters"; + name = "Exploratory Chemistry Shutters"; + dir = 1; + pixel_y = 37; + pixel_x = 8 + }, +/obj/machinery/button/remote/blast_door{ + desc = "It controls the research shutters."; + id = "science_chem_desk"; + name = "Exploratory Chemistry Desk"; + pixel_x = 8; + dir = 1; + pixel_y = 26 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/chemistry) "vnj" = ( /obj/machinery/light/small{ dir = 8 @@ -148451,20 +149187,12 @@ /obj/effect/decal/cleanable/dirt, /turf/unsimulated/floor/monotile, /area/antag/jockey) -"vnp" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/atmospherics/portables_connector, -/turf/simulated/floor/plating, -/area/medical/cryo) -"vnq" = ( -/obj/effect/floor_decal/corner/yellow{ - dir = 9 +"vnn" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/closet/secure_closet/engineering_welding, /turf/simulated/floor/tiled, -/area/engineering/storage_eva) +/area/horizon/engineering/hallway/fore) "vnu" = ( /obj/effect/floor_decal/corner/dark_blue/full{ dir = 1 @@ -148475,23 +149203,18 @@ /obj/effect/floor_decal/industrial/outline/medical, /turf/simulated/floor/tiled/dark, /area/horizon/security/firing_range) +"vnx" = ( +/obj/machinery/light, +/obj/effect/floor_decal/corner/dark_green/full{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_2/fore) "vnB" = ( /turf/simulated/wall/shuttle/unique/ccia{ icon_state = "10,1" }, /area/shuttle/transport1) -"vnC" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/maintenance{ - dir = 4; - name = "Operations Maintenance"; - req_one_access = list(26,29,31,48,67) - }, -/turf/simulated/floor/tiled/full, -/area/operations/office) "vnE" = ( /obj/structure/table/fancy, /obj/item/device/flashlight/lamp/green{ @@ -148504,155 +149227,179 @@ }, /turf/unsimulated/floor/wood, /area/antag/actor) -"vnJ" = ( -/obj/machinery/door/firedoor, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 +"vnG" = ( +/obj/effect/floor_decal/industrial/outline/grey, +/obj/structure/closet/crate/plastic{ + name = "outdoor clothing crate" }, -/obj/effect/floor_decal/industrial/warning{ +/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 }, -/obj/machinery/door/airlock/maintenance_hatch{ - dir = 4; - req_one_access = list(12,47) - }, /turf/simulated/floor/plating, -/area/maintenance/research_port) +/area/horizon/hangar/auxiliary) "vnK" = ( /obj/machinery/atmospherics/pipe/simple/visible/red, /turf/space/dynamic, /area/horizon/exterior) -"vnM" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" +"vnN" = ( +/turf/simulated/wall/r_wall, +/area/horizon/repoffice/representative_one) +"vnO" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 8 }, -/obj/effect/floor_decal/corner/mauve/full{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ +/obj/effect/floor_decal/spline/fancy{ dir = 4 }, +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/effect/floor_decal/corner_wide/white{ + dir = 9 + }, +/obj/machinery/light/floor{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/hallway/primary/deck_2/central) +"vnP" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 9 + }, +/obj/effect/floor_decal/corner/lime{ + dir = 5 + }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 + dir = 8 }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/cable/green{ - icon_state = "2-4" - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology/hazardous) -"vnQ" = ( -/obj/effect/floor_decal/corner/dark_green, /obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/central) +/area/horizon/rnd/xenobiology/xenoflora) "vnS" = ( /obj/effect/floor_decal/corner{ dir = 4 }, /turf/simulated/floor/marble/dark, /area/horizon/holodeck/source_trinary) -"voa" = ( +"vnT" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, /obj/effect/floor_decal/corner/dark_green{ - dir = 5 - }, -/obj/structure/bed/stool/chair/padded/brown{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hangar/intrepid) -"vof" = ( -/obj/machinery/door/firedoor, -/obj/structure/table/stone/marble, -/obj/machinery/door/blast/shutters{ - dir = 8; - id = "bar_shutter"; - name = "Bar Shutter" - }, -/obj/machinery/power/outlet, -/turf/simulated/floor/tiled/dark, -/area/horizon/bar) -"voi" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled, -/area/operations/mail_room) -"voo" = ( -/turf/simulated/floor/tiled/full, -/area/horizon/stairwell/central) -"vor" = ( -/obj/effect/floor_decal/corner/black{ - dir = 9 + dir = 10 }, /obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_3/central) +"vnZ" = ( +/obj/effect/floor_decal/corner/dark_green/full{ 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."; - desc_extended = "The unbreakable chainlink, the one thing holding the Orion Spur together..."; - name = "Commemorative SCC Plaque" +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 }, -/obj/effect/floor_decal/spline/fancy/wood/full, -/mob/living/simple_animal/corgi/fox/Chauncey, -/turf/simulated/floor/wood, -/area/crew_quarters/captain) -"vot" = ( -/obj/structure/cable/green{ - icon_state = "1-4" +/obj/effect/floor_decal/spline/plain/red{ + dir = 1 }, -/obj/effect/floor_decal/spline/fancy/wood{ +/obj/effect/floor_decal/spline/plain/orange, +/turf/simulated/floor/tiled, +/area/horizon/service/hydroponics) +"vob" = ( +/obj/effect/floor_decal/corner/dark_blue{ dir = 9 }, -/obj/machinery/alarm/west, +/obj/effect/floor_decal/industrial/loading/yellow{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/dark, +/area/horizon/weapons/longbow) +"voe" = ( +/obj/structure/ship_weapon_dummy, +/turf/simulated/wall/shuttle/unique/scc/scout{ + icon_state = "2,5" + }, +/area/horizon/shuttle/canary) +"vog" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/horizon/command/bridge/upperdeck) +"vok" = ( +/obj/effect/floor_decal/corner_wide/yellow{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/horizon/engineering/hallway/interior) +"vol" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, /obj/structure/table/wood, -/obj/machinery/chemical_dispenser/bar_soft/full{ - dir = 4; - pixel_y = 3; - pixel_x = -4 +/obj/item/device/flashlight/lamp/lava/pink{ + pixel_x = -4; + pixel_y = 6 }, -/obj/item/storage/box/drinkingglasses{ - pixel_x = 13; - pixel_y = 7 +/obj/machinery/power/outlet{ + pixel_y = 9 }, -/turf/simulated/floor/wood, -/area/lawoffice/consular_two) +/turf/simulated/floor/carpet/art, +/area/horizon/crew/lounge) +"vom" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/item/material/shard, +/turf/simulated/floor, +/area/horizon/maintenance/deck_3/aft/starboard/far) +"vop" = ( +/obj/effect/floor_decal/spline/plain/black{ + dir = 8 + }, +/obj/effect/floor_decal/corner/dark_green, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/horizon/crew/fitness/gym) +"voq" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 5 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/firealarm/north, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/weapons/longbow) +"vov" = ( +/obj/effect/map_effect/window_spawner/full/borosilicate/reinforced/firedoor, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/rnd/telesci) "vow" = ( /turf/simulated/floor/holofloor/tiled/ramp{ dir = 4 }, /area/horizon/holodeck/source_chapel) -"voz" = ( -/obj/machinery/light, -/obj/machinery/power/smes/buildable/substation{ - RCon_tag = "Substation - Deck 3 Telecommunications"; - charge = 5000000; - input_attempt = 1; - input_level = 200000; - output_attempt = 1; - output_level = 200000 - }, -/obj/structure/cable/green{ - icon_state = "0-8" - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/dark/full, -/area/tcommsat/entrance) -"voA" = ( -/obj/machinery/conveyor{ - dir = 8 - }, -/obj/structure/railing/mapped{ - dir = 8 - }, -/turf/simulated/floor/carpet/rubber, -/area/horizon/crew_quarters/fitness/gym) +"vox" = ( +/turf/simulated/floor/tiled/dark, +/area/horizon/rnd/xenoarch/storage) "voC" = ( /obj/structure/reagent_dispensers/watertank, /obj/machinery/atmospherics/pipe/simple/hidden{ @@ -148660,30 +149407,6 @@ }, /turf/simulated/floor/tiled/dark/full, /area/shuttle/skipjack) -"voE" = ( -/obj/structure/window/shuttle/scc_space_ship, -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/effect/landmark/entry_point/starboard{ - name = "starboard, medical break room" - }, -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 4; - icon_state = "shutter0"; - id = "LCKDshutters"; - name = "MedBay Lockdown Shutters"; - opacity = 0 - }, -/turf/simulated/floor/plating, -/area/medical/smoking) -"voF" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/corner/dark_blue, -/turf/simulated/floor/tiled/dark, -/area/bridge/controlroom) "voH" = ( /obj/structure/closet/crate/trashcart, /obj/random/junk, @@ -148692,138 +149415,93 @@ /obj/random/junk, /turf/unsimulated/floor/plating, /area/centcom/spawning) -"voQ" = ( -/turf/simulated/floor/plating, -/area/maintenance/engineering/auxillary) -"voT" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/machinery/door/window/desk/eastright{ - name = "Pharmacy Desk"; - req_access = list(33) +"voS" = ( +/obj/machinery/camera/network/medbay{ + c_tag = "Medical - First Responder Room" }, -/obj/machinery/door/blast/shutters{ - dir = 4; - id = "CHE3shutters"; - name = "Pharmacy Desk Shutter" - }, -/turf/simulated/floor/tiled/dark/full, -/area/medical/pharmacy) -"voZ" = ( -/obj/effect/floor_decal/corner_wide/purple{ +/obj/structure/closet/secure_closet/medical_para, +/obj/item/defibrillator/compact/loaded, +/turf/simulated/floor/tiled, +/area/horizon/medical/paramedic) +"voU" = ( +/obj/effect/floor_decal/corner/dark_green{ dir = 10 }, -/obj/effect/floor_decal/corner_wide/purple{ - dir = 4 +/obj/machinery/newscaster/south, +/obj/machinery/light/floor, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_2/central) +"vpe" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/vending/snack, +/turf/simulated/floor/tiled/dark, +/area/horizon/operations/lobby) +"vpk" = ( +/obj/effect/floor_decal/corner_wide/green{ + dir = 10 }, /obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/light, -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/turf/simulated/floor/tiled/white, -/area/rnd/xenoarch_atrium) -"vpa" = ( -/obj/effect/floor_decal/corner/dark_blue/full{ - dir = 1 - }, -/obj/structure/table/rack, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/light{ - dir = 1 - }, -/obj/item/device/radio/beacon{ - pixel_x = -4; - pixel_y = -4 - }, -/obj/item/device/radio/beacon{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/device/radio/beacon, -/turf/simulated/floor/tiled/dark, -/area/teleporter) -"vpb" = ( -/obj/effect/floor_decal/corner/mauve{ - dir = 6 + dir = 8; + icon_state = "pipe-c" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 + dir = 4 }, -/obj/structure/disposalpipe/segment{ +/obj/structure/closet/secure_closet/personal/patient, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/ward) +"vps" = ( +/obj/structure/table/reinforced/steel, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/button/remote/airlock{ dir = 1; - icon_state = "pipe-c" + id = "intrepid_flightdeck"; + name = "Flight Deck Bolts Control"; + specialfunctions = 4; + pixel_y = 6; + pixel_x = 6 }, +/obj/item/pen{ + pixel_x = 6; + pixel_y = -13 + }, +/obj/machinery/firealarm/north, +/obj/machinery/button/remote/blast_door{ + dir = 1; + id = "intrepid_bay_outer"; + name = "Airlock Shutters"; + pixel_x = -6; + pixel_y = 6 + }, +/obj/machinery/button/remote/blast_door{ + dir = 1; + id = "intrepid_bay_windows"; + name = "Window Shutters"; + pixel_x = -6; + pixel_y = -5 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/shuttle/intrepid/flight_deck) +"vpt" = ( /obj/structure/cable/green{ icon_state = "4-8" }, -/turf/simulated/floor/tiled/white, -/area/rnd/conference) -"vpl" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/horizon/crew_quarters/cryo/living_quarters_lift) -"vpq" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/outline/service, -/obj/machinery/seed_storage/garden/hydroponics, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/hydroponics/lower) -"vpr" = ( -/obj/structure/table/standard, -/obj/item/reagent_containers/spray/cleaner{ - pixel_x = -17; - pixel_y = 2 - }, -/obj/effect/floor_decal/corner_wide/green{ - dir = 10 - }, -/obj/structure/roller_rack/three, -/turf/simulated/floor/tiled/white, -/area/medical/gen_treatment) -"vpu" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/green{ - dir = 1 - }, -/obj/machinery/meter, -/obj/machinery/light, -/turf/simulated/floor/plating, -/area/engineering/atmos/air) -"vpz" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 4 - }, -/obj/effect/floor_decal/spline/fancy/wood{ +/turf/simulated/floor/tiled/dark, +/area/horizon/ai/upload_foyer) +"vpB" = ( +/obj/effect/floor_decal/spline/plain{ dir = 8 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/camera/network/service{ - c_tag = "Service - Chaplain Office"; - dir = 8 +/obj/structure/railing/mapped{ + dir = 1 }, -/turf/simulated/floor/wood, -/area/chapel/office) +/turf/simulated/floor/tiled/dark, +/area/horizon/hallway/primary/deck_2/central) "vpD" = ( /obj/effect/floor_decal/corner/white/diagonal, /obj/effect/floor_decal/spline/plain{ @@ -148835,6 +149513,47 @@ }, /turf/simulated/floor/holofloor/tiled, /area/template_noop) +"vpE" = ( +/obj/machinery/door/airlock/glass_service{ + dir = 1; + name = "Hydroponics"; + req_access = list(35) + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/obj/effect/map_effect/door_helper/unres{ + dir = 1 + }, +/turf/simulated/floor/tiled/full, +/area/horizon/service/hydroponics) +"vpJ" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/door/airlock/maintenance{ + dir = 1; + req_one_access = list(5,12) + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id = "bridge blast"; + name = "Bridge Blast Doors"; + opacity = 0 + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor, +/turf/simulated/floor, +/area/horizon/command/bridge/upperdeck) "vpS" = ( /obj/effect/floor_decal/industrial/warning/corner{ dir = 8 @@ -148860,45 +149579,6 @@ /obj/structure/lattice/catwalk/indoor/grate, /turf/simulated/floor/plating, /area/horizon/security/hallway) -"vpV" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/effect/floor_decal/spline/plain/purple{ - dir = 1 - }, -/obj/effect/floor_decal/spline/plain/red, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/horizon/hydroponics) -"vpX" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/lattice/catwalk/indoor/grate/old, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard/deck1) -"vpY" = ( -/obj/effect/floor_decal/corner_wide/paleblue/full{ - dir = 1 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/engineer_maintenance/pipe{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/ors) "vpZ" = ( /obj/effect/floor_decal/industrial/outline/yellow, /obj/effect/decal/fake_object{ @@ -148914,84 +149594,161 @@ }, /turf/unsimulated/floor, /area/antag/mercenary) -"vqd" = ( -/obj/machinery/door/airlock/glass_engineering{ - dir = 1; - name = "INDRA Reactor"; - req_one_access = list(11,24) - }, +"vqb" = ( /obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/smes/rust) +/obj/machinery/door/airlock/maintenance{ + dir = 4; + req_one_access = list(26,29,31,48,67,70) + }, +/turf/simulated/floor/tiled/full, +/area/horizon/operations/warehouse) +"vqc" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/item/storage/box/monkeycubes, +/obj/item/target, +/obj/item/target, +/obj/item/target, +/obj/item/target, +/obj/item/target, +/obj/item/target, +/obj/structure/window/borosilicate/reinforced{ + dir = 4 + }, +/obj/structure/closet/crate, +/obj/machinery/light, +/turf/simulated/floor/reinforced, +/area/horizon/rnd/test_range) +"vqg" = ( +/obj/effect/floor_decal/corner/grey/diagonal, +/obj/effect/floor_decal/spline/plain{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/shuttle/intrepid/buffet) +"vqj" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 5 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/bed/stool/chair/padded/brown{ + dir = 8 + }, +/obj/effect/landmark/start{ + name = "Assistant" + }, +/turf/simulated/floor/tiled, +/area/horizon/operations/lobby) +"vqm" = ( +/obj/effect/floor_decal/corner/white/diagonal, +/obj/effect/floor_decal/industrial/warning/corner, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/horizon/medical/paramedic) "vqn" = ( /obj/effect/floor_decal/corner/grey{ dir = 6 }, /turf/unsimulated/floor/dark, /area/antag/actor) -"vqu" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/corner/dark_blue/diagonal, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ +"vqr" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, +/obj/structure/cable/orange{ + icon_state = "4-8" + }, +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor/plating, +/area/horizon/engineering/reactor/indra/mainchamber) +"vqv" = ( +/obj/effect/floor_decal/corner/dark_blue/full, +/obj/machinery/camera/network/command{ + c_tag = "Bridge - Kitchen Stairwell"; + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, /obj/structure/cable/green{ icon_state = "1-2" }, -/obj/structure/cable/green{ - icon_state = "2-8" - }, /turf/simulated/floor/tiled, -/area/bridge/supply) -"vqw" = ( -/obj/machinery/power/apc/east, -/obj/structure/cable/green, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/disposal/small/west, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology/dissection) -"vqC" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/random/junk, -/obj/machinery/light/small/emergency{ - dir = 4 - }, -/obj/random/contraband, -/turf/simulated/floor/plating, -/area/maintenance/hangar/starboard) +/area/horizon/stairwell/bridge) "vqG" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 }, /turf/simulated/floor/tiled, /area/horizon/security/brig) -"vqU" = ( -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/maintenance/operations) -"vqV" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/full, -/area/engineering/engine_airlock) -"vqW" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 +"vqI" = ( +/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/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/aux{ + dir = 8 + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 4 }, -/obj/machinery/door/firedoor, /turf/simulated/floor/plating, -/area/maintenance/engineering) +/area/horizon/maintenance/deck_1/main/interstitial) +"vqN" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/light/small/emergency, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor, +/area/horizon/maintenance/deck_3/aft/starboard/far) +"vqO" = ( +/obj/effect/floor_decal/corner_wide/green{ + dir = 6 + }, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/machinery/camera/network/medbay{ + c_tag = "Medical - Entrance"; + dir = 8 + }, +/obj/machinery/disposal/small/north, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/gen_treatment) +"vqT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/closet, +/obj/random/loot, +/obj/random/junk, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/starboard) "vqY" = ( /obj/machinery/door/blast/odin/shuttle/tcfl/shutter{ density = 1; @@ -149008,50 +149765,10 @@ icon_state = "beach" }, /area/centcom/shared_dream) -"vrc" = ( -/obj/effect/floor_decal/corner_wide/grey/diagonal, -/obj/effect/floor_decal/spline/plain{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/operations/break_room) -"vrd" = ( -/obj/machinery/portable_atmospherics/canister/air/airlock, -/obj/machinery/atmospherics/portables_connector{ - dir = 1 - }, -/turf/simulated/floor, -/area/maintenance/wing/port/far) "vre" = ( /obj/structure/flora/ausbushes/ywflowers, /turf/simulated/floor/exoplanet/grass/grove, /area/centcom/shared_dream) -"vrg" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/red{ - dir = 9 - }, -/turf/simulated/floor/tiled/dark, -/area/horizon/custodial/disposals) -"vrh" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 10 - }, -/obj/machinery/firealarm/south, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_two) -"vrm" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/assembly/chargebay) "vro" = ( /obj/effect/floor_decal/corner/blue{ dir = 9 @@ -149078,14 +149795,61 @@ }, /turf/unsimulated/floor, /area/centcom/spawning) -"vrt" = ( -/obj/effect/floor_decal/industrial/hatch/red, -/obj/effect/floor_decal/industrial/warning{ - dir = 5 +"vru" = ( +/obj/effect/floor_decal/spline/fancy/wood, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 }, -/obj/item/hullbeacon/red, -/turf/simulated/floor/reinforced/airless, -/area/engineering/engine_room/rust) +/obj/structure/table/wood, +/obj/machinery/power/outlet{ + pixel_y = 9 + }, +/turf/simulated/floor/wood, +/area/horizon/operations/office) +"vrC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/machinery/door/airlock/external{ + dir = 4 + }, +/obj/machinery/access_button{ + dir = 1; + pixel_x = 28; + pixel_y = -20 + }, +/obj/effect/map_effect/marker/airlock{ + frequency = 1003; + master_tag = "airlock_horizon_deck_1_aft_propulsion_1"; + name = "airlock_horizon_deck_1_aft_propulsion_1" + }, +/obj/effect/map_effect/marker_helper/airlock/interior, +/turf/simulated/floor/plating, +/area/horizon/engineering/atmos/propulsion) +"vrE" = ( +/obj/structure/window/shuttle/scc_space_ship/cardinal, +/obj/structure/grille, +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id = "bridge blast"; + name = "Bridge Blast Doors"; + opacity = 0 + }, +/obj/machinery/door/blast/shutters{ + dir = 4; + id = "shutters_deck3_captain"; + name = "Safety Shutter" + }, +/turf/simulated/floor/plating, +/area/horizon/command/heads/captain) "vrH" = ( /obj/structure/curtain/open/shower/security, /obj/effect/floor_decal/spline/fancy/wood{ @@ -149094,19 +149858,11 @@ /obj/effect/floor_decal/spline/fancy/wood, /turf/simulated/floor/wood/yew, /area/centcom/shared_dream) -"vrJ" = ( -/obj/effect/floor_decal/corner/grey{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/lino, -/area/horizon/bar) +"vrM" = ( +/obj/machinery/radiocarbon_spectrometer, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/carpet/rubber, +/area/horizon/rnd/xenoarch/spectrometry) "vrN" = ( /obj/effect/floor_decal/corner/dark_blue{ dir = 6 @@ -149119,26 +149875,12 @@ /obj/item/device/radio/intercom/east, /turf/simulated/floor/tiled, /area/horizon/security/equipment) -"vrQ" = ( -/obj/effect/floor_decal/corner/dark_blue/full{ - dir = 4 +"vrR" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 9 }, -/obj/structure/cable/green{ - icon_state = "0-8" - }, -/obj/machinery/light_switch{ - dir = 1; - pixel_x = -9; - pixel_y = -24 - }, -/obj/machinery/camera/motion{ - c_tag = "Deck 1 - Teleporter"; - dir = 1; - network = list("Command","Security") - }, -/obj/machinery/power/apc/east, -/turf/simulated/floor/tiled/dark, -/area/teleporter) +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/atmos/turbine) "vrS" = ( /obj/effect/floor_decal/industrial/warning{ dir = 8 @@ -149147,6 +149889,32 @@ icon_state = "dark_preview" }, /area/centcom/specops) +"vrV" = ( +/obj/machinery/light/spot{ + dir = 1 + }, +/obj/random/pottedplant, +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/structure/railing/mapped, +/obj/effect/floor_decal/spline/fancy/wood/full, +/turf/simulated/floor/wood, +/area/horizon/hangar/auxiliary) +"vrW" = ( +/obj/effect/floor_decal/corner/dark_blue/diagonal, +/obj/machinery/button/remote/blast_door{ + dir = 4; + id = "shutters_hangarseccp"; + name = "Security Checkpoint Shutters"; + pixel_x = 22; + req_access = list(63) + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/security/checkpoint) "vrZ" = ( /obj/structure/table/standard, /obj/effect/landmark{ @@ -149158,50 +149926,87 @@ }, /turf/unsimulated/floor/dark_monotile, /area/antag/mercenary) -"vsb" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +"vsa" = ( +/obj/effect/floor_decal/corner/dark_green/full{ + dir = 1 }, -/obj/effect/floor_decal/spline/plain{ - dir = 4 - }, -/obj/effect/floor_decal/corner/grey/diagonal, -/turf/simulated/floor/tiled/white, -/area/horizon/kitchen) -"vse" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ +/obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 }, -/obj/machinery/embedded_controller/radio/airlock/airlock_controller{ - pixel_y = 28 +/obj/effect/floor_decal/spline/plain/red, +/obj/effect/floor_decal/spline/plain{ + dir = 1 }, -/obj/effect/map_effect/marker/airlock{ - frequency = 1004; - master_tag = "airlock_horizon_deck_1_fore_1"; - name = "airlock_horizon_deck_1_fore_1" +/turf/simulated/floor/tiled, +/area/horizon/service/hydroponics) +"vsg" = ( +/obj/machinery/porta_turret/stationary, +/obj/effect/floor_decal/industrial/warning/full, +/obj/structure/sign/flag/scc{ + pixel_x = 32 }, -/turf/simulated/floor/plating, -/area/maintenance/hangar/starboard) -"vsi" = ( -/obj/effect/decal/remains/rat, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor, -/area/horizon/maintenance/deck_three/aft/starboard) +/obj/machinery/light/small/emergency{ + dir = 4 + }, +/turf/simulated/floor/reinforced, +/area/horizon/command/bridge/selfdestruct) "vsl" = ( /obj/machinery/portable_atmospherics/canister/carbon_dioxide, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/unsimulated/floor, /area/antag/mercenary) -"vsp" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/black{ +"vsn" = ( +/obj/machinery/door/firedoor{ + req_one_access = list(24,11,67,73); + dir = 4 + }, +/obj/effect/map_effect/door_helper/unres{ dir = 8 }, +/obj/machinery/door/airlock/engineering{ + dir = 4; + name = "Engineering Lobby"; + req_one_access = list(10) + }, +/turf/simulated/floor/tiled/full, +/area/horizon/engineering/lobby) +"vso" = ( +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/structure/railing/mapped, +/obj/structure/platform/ledge{ + dir = 1 + }, +/obj/structure/platform/ledge{ + dir = 8 + }, +/obj/structure/platform_deco/ledge{ + dir = 6 + }, +/turf/simulated/open, +/area/horizon/hallway/primary/deck_3/central) +"vsr" = ( +/obj/structure/window/shuttle/scc_space_ship, +/obj/structure/grille, +/obj/machinery/door/firedoor, /turf/simulated/floor/plating, -/area/engineering/engine_room) +/area/horizon/maintenance/deck_1/wing/port/far) "vsu" = ( /obj/structure/flora/tree/jungle/small, /turf/simulated/floor/exoplanet/grass, /area/centcom/shared_dream) +"vsv" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/big/scc_full, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_3/central) "vsx" = ( /obj/structure/table/reinforced/steel, /obj/machinery/recharger{ @@ -149217,148 +150022,60 @@ /obj/structure/holostool, /turf/simulated/floor/holofloor/wood, /area/horizon/holodeck/source_theatre) -"vsB" = ( +"vsz" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor, -/area/maintenance/bridge) +/area/horizon/maintenance/deck_3/bridge) +"vsH" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/floor_decal/spline/plain{ + dir = 9 + }, +/turf/simulated/floor/carpet/rubber, +/area/horizon/engineering/reactor/supermatter/monitoring) "vsI" = ( /obj/effect/floor_decal/corner/blue{ dir = 10 }, /turf/simulated/floor/holofloor/tiled, /area/horizon/holodeck/source_lasertag) -"vsJ" = ( -/obj/effect/floor_decal/corner/brown{ - dir = 10 - }, -/obj/structure/bed/stool/chair{ - dir = 8 - }, -/obj/effect/landmark/start{ - name = "Assistant" - }, -/turf/simulated/floor/tiled, -/area/operations/lobby) -"vsO" = ( -/obj/machinery/button/remote/airlock{ - dir = 4; - id = "hydro_hazard"; - name = "Hazardous Specimens Bolt Control"; - specialfunctions = 4; - pixel_x = 20; - pixel_y = -5; - req_access = list(35) - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/machinery/button/remote/airlock{ - id = "hydro_hazard"; - name = "Hazardous Specimens Door Control"; - pixel_y = 8; - req_access = list(35); - dir = 4; - pixel_x = 20 - }, -/obj/machinery/atmospherics/valve/open{ - name = "Tray Cutoff Valve" - }, +"vsL" = ( +/obj/machinery/portable_atmospherics/hydroponics, +/obj/effect/floor_decal/industrial/outline/service, +/obj/machinery/firealarm/south, /turf/simulated/floor/tiled/dark/full, -/area/horizon/hydroponics/lower) -"vsW" = ( -/obj/effect/floor_decal/corner/dark_green/full, -/obj/item/device/radio/intercom/west, -/obj/structure/bed/stool/chair/office/light{ - dir = 4 +/area/horizon/service/hydroponics) +"vsP" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 5 }, /turf/simulated/floor/tiled, -/area/assembly/chargebay) -"vsY" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/carpet/rubber, -/area/engineering/bluespace_drive/monitoring) -"vta" = ( -/obj/effect/floor_decal/corner_wide/yellow/full{ - dir = 4 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/engineering/rust) -"vtc" = ( -/obj/effect/floor_decal/corner_wide/lime/diagonal, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/reception) +/area/horizon/hallway/primary/deck_2/central) +"vsR" = ( +/obj/machinery/telecomms/bus/preset_three, +/turf/simulated/floor/bluegrid, +/area/horizon/tcommsat/chamber) "vte" = ( /obj/effect/floor_decal/industrial/hatch/red, /obj/effect/floor_decal/industrial/warning, /turf/simulated/floor/reinforced/airless, /area/horizon/exterior) -"vtj" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/effect/floor_decal/spline/fancy/wood/corner{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/wood, -/area/crew_quarters/heads/hop/xo) -"vtl" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/effect/floor_decal/spline/plain/purple{ +"vtf" = ( +/obj/effect/floor_decal/industrial/warning/corner{ dir = 1 }, -/obj/structure/disposalpipe/segment{ - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/horizon/hydroponics) -"vtn" = ( -/obj/structure/railing/mapped, -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 6 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/trash_pile, /turf/simulated/floor/plating, -/area/maintenance/wing/starboard/deck1) -"vtp" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 8 +/area/horizon/hangar/intrepid) +"vto" = ( +/obj/effect/floor_decal/corner/red/diagonal, +/obj/structure/closet/walllocker/medical/firstaid{ + pixel_y = 32 }, -/obj/machinery/portable_atmospherics/canister/empty, -/obj/effect/floor_decal/corner/yellow{ - dir = 6 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/dark, -/area/engineering/engine_waste) +/obj/effect/floor_decal/industrial/outline/medical, +/turf/simulated/floor/tiled, +/area/horizon/maintenance/deck_2/wing/port) "vtq" = ( /obj/machinery/door/blast/regular{ dir = 4; @@ -149367,6 +150084,45 @@ }, /turf/simulated/floor, /area/tdome/tdome1) +"vtr" = ( +/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 + }, +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/xenoarch/atrium) +"vts" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/main/port) +"vtv" = ( +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/starboard/far) "vtw" = ( /obj/structure/bed/stool/chair/sofa/left/red, /obj/effect/floor_decal/corner/brown/diagonal, @@ -149375,21 +150131,37 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/holodeck_control/beta) -"vty" = ( -/obj/effect/floor_decal/industrial/warning/corner, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/engine_room) -"vtE" = ( -/obj/effect/floor_decal/corner/dark_green/full{ +"vtz" = ( +/turf/simulated/wall, +/area/horizon/hangar/intrepid) +"vtM" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ dir = 4 }, -/obj/machinery/light, -/obj/machinery/computer/shuttle_control/multi/lift/robotics{ - pixel_x = 11; - pixel_y = 21 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/atmos/propulsion) +"vtP" = ( +/obj/structure/dispenser/oxygen, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/storage/eva) +"vtS" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 5 }, +/obj/structure/railing/mapped{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/horizon/service/cafeteria) +"vtW" = ( +/obj/structure/platform_deco{ + icon_state = "ledge_deco" + }, +/obj/effect/floor_decal/corner/dark_blue, /turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/port) +/area/horizon/command/bridge/upperdeck) "vtX" = ( /obj/item/gun/energy/blaster{ pixel_y = 6 @@ -149403,93 +150175,53 @@ /obj/structure/table/reinforced/steel, /turf/unsimulated/floor, /area/centcom/legion/hangar5) -"vub" = ( -/obj/structure/platform/ledge{ +"vtY" = ( +/obj/effect/floor_decal/corner_wide/purple{ + dir = 6 + }, +/obj/effect/floor_decal/industrial/warning/corner, +/obj/effect/floor_decal/corner_wide/purple/diagonal, +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/test_range) +"vuj" = ( +/obj/machinery/light/small/emergency{ dir = 1 }, -/obj/structure/platform/ledge{ - dir = 4 - }, -/obj/structure/platform_deco/ledge{ - dir = 10 - }, -/turf/simulated/open, -/area/horizon/hallway/deck_three/primary/central) -"vuf" = ( -/obj/machinery/atmospherics/pipe/simple/visible/black, -/turf/simulated/floor/tiled/dark, -/area/engineering/engine_waste) -"vuk" = ( -/obj/effect/floor_decal/corner/mauve{ - dir = 5 - }, -/obj/effect/floor_decal/corner/white{ - dir = 10 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/table/standard, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology/xenoflora) -"vul" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 6 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/machinery/alarm/east, -/turf/simulated/floor/tiled, -/area/hangar/intrepid/interstitial) +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/main/starboard) "vun" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 7 }, /turf/unsimulated/floor/carpet, /area/antag/mercenary) -"vup" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +"vuq" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, -/obj/effect/floor_decal/industrial/hatch/red, -/obj/effect/floor_decal/industrial/warning{ +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/effect/floor_decal/corner_wide/yellow{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/horizon/engineering/lobby) +"vus" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/structure/disposalpipe/junction{ dir = 8 }, -/turf/simulated/floor/tiled/dark, -/area/bridge/selfdestruct) -"vut" = ( -/obj/structure/cable{ - icon_state = "1-2" +/obj/structure/cable/green{ + icon_state = "1-8" }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/machinery/alarm/east, -/turf/simulated/floor/plating, -/area/engineering/drone_fabrication) -"vuw" = ( -/obj/effect/floor_decal/corner/mauve/full{ - dir = 1 - }, -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/structure/closet/hazmat/research, -/obj/item/clothing/mask/gas/alt, -/obj/item/tank/oxygen, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology/xenoflora) +/turf/simulated/floor/tiled, +/area/horizon/command/bridge/controlroom) "vuy" = ( /obj/effect/decal/fake_object{ color = "#545c68"; @@ -149510,38 +150242,43 @@ density = 1 }, /area/antag/ninja) -"vuB" = ( -/obj/structure/tank_wall/phoron{ - density = 0; - icon_state = "ph5"; - opacity = 0 +"vuG" = ( +/obj/effect/floor_decal/spline/plain, +/obj/effect/floor_decal/spline/plain/corner{ + dir = 4 }, -/turf/simulated/floor/reinforced/phoron, -/area/engineering/atmos) -"vuF" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ +/obj/effect/floor_decal/spline/plain/corner{ dir = 1 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 +/obj/machinery/atmospherics/pipe/simple/hidden/black{ + dir = 4 }, -/obj/structure/disposalpipe/junction{ - dir = 8 +/obj/machinery/light, +/obj/structure/cable/green{ + icon_state = "1-8" }, /obj/structure/cable/green{ - icon_state = "4-8"; - d1 = 4; - d2 = 8 + icon_state = "1-4" }, -/obj/machinery/hologram/holopad, -/turf/simulated/floor/wood, -/area/horizon/library) -"vuJ" = ( -/obj/structure/ship_weapon_dummy, -/turf/simulated/wall/shuttle/unique/scc/scout{ - icon_state = "2,6" +/turf/simulated/floor/carpet/rubber, +/area/horizon/tcommsat/chamber) +"vuL" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/shuttle/canary) +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/industrial/warning, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/service/port) "vuM" = ( /obj/structure/sign/vacuum{ pixel_y = -32 @@ -149549,28 +150286,66 @@ /obj/effect/floor_decal/corner/grey/full, /turf/unsimulated/floor, /area/antag/raider) -"vuT" = ( -/obj/structure/railing/mapped{ +"vuQ" = ( +/obj/machinery/light{ dir = 8 }, -/obj/structure/railing/mapped, -/obj/effect/floor_decal/corner/dark_blue/full, -/obj/machinery/computer/ship/navigation, -/turf/simulated/floor/tiled/dark, -/area/bridge/controlroom) -"vuW" = ( -/obj/effect/floor_decal/corner/brown/full{ - dir = 8 +/obj/effect/floor_decal/corner_wide/green{ + dir = 9 }, -/obj/machinery/alarm/north, -/obj/machinery/recharge_station, -/turf/simulated/floor/tiled, -/area/operations/break_room) -"vvq" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/firealarm/west, /turf/simulated/floor/tiled/white, -/area/shuttle/intrepid/buffet) +/area/horizon/medical/ward) +"vuR" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/command/teleporter) +"vvd" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 10 + }, +/obj/structure/table/reinforced/steel, +/obj/item/device/multitool{ + pixel_y = 4; + pixel_x = 12 + }, +/turf/simulated/floor/carpet/rubber, +/area/horizon/engineering/bluespace_drive/monitoring) +"vvj" = ( +/obj/machinery/newscaster/east{ + pixel_y = -32 + }, +/obj/effect/floor_decal/corner/dark_green{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_3/port) +"vvn" = ( +/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/horizon/hangar/auxiliary) +"vvr" = ( +/turf/simulated/floor, +/area/horizon/maintenance/deck_3/aft/starboard) +"vvs" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/command/teleporter) "vvt" = ( /obj/structure/shuttle_part/ccia{ icon_state = "7,0"; @@ -149585,22 +150360,32 @@ /obj/machinery/alarm/west, /turf/simulated/floor/tiled, /area/horizon/security/hallway) -"vvx" = ( -/obj/structure/table/stone/marble, -/obj/effect/floor_decal/spline/fancy/wood{ +"vvz" = ( +/obj/machinery/light{ dir = 8 }, -/obj/item/device/radio/intercom/west, -/turf/simulated/floor/wood, -/area/chapel/main) -"vvG" = ( -/obj/machinery/porta_turret/cannon, -/obj/effect/floor_decal/industrial/warning/full, -/turf/simulated/floor/bluegrid{ - name = "cooled mainframe floor"; - temperature = 278 +/turf/simulated/floor/tiled, +/area/horizon/medical/washroom) +"vvA" = ( +/obj/machinery/camera/network/third_deck{ + c_tag = "Third Deck - Vacant Office"; + dir = 8 }, -/area/turret_protected/ai) +/obj/machinery/photocopier, +/obj/effect/floor_decal/corner/beige{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/horizon/crew/vacantoffice) +"vvB" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/horizon/rnd/hallway/secondary) +"vvE" = ( +/turf/simulated/wall/r_wall, +/area/horizon/weapons/grauwolf) "vvL" = ( /obj/structure/table/steel, /obj/item/paper_bin, @@ -149625,6 +150410,9 @@ }, /turf/unsimulated/floor/plating, /area/centcom/specops) +"vvR" = ( +/turf/simulated/wall/r_wall, +/area/horizon/service/hydroponics/lower) "vvT" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/door/airlock/mining{ @@ -149635,42 +150423,64 @@ }, /turf/unsimulated/floor, /area/antag/raider) -"vvV" = ( -/obj/structure/closet/secure_closet/hangar_tech, -/obj/machinery/alarm/east, -/obj/effect/floor_decal/corner/brown/full{ +"vvU" = ( +/obj/structure/bed/stool/chair/unmovable, +/obj/machinery/light{ dir = 1 }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled, -/area/operations/office) -"vvX" = ( -/obj/structure/bed/stool/chair, -/obj/effect/floor_decal/spline/fancy/wood/cee{ - dir = 8 +/turf/simulated/floor/carpet/rubber, +/area/horizon/rnd/xenobiology/dissection) +"vvY" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" }, -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/wood, -/area/bridge/upperdeck) +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/engineering/storage/lower) "vwe" = ( /obj/effect/floor_decal/spline/plain{ dir = 5 }, /turf/simulated/floor/exoplanet/grass, /area/centcom/shared_dream) -"vwj" = ( -/obj/structure/railing/mapped, -/obj/structure/platform/ledge{ +"vwi" = ( +/obj/structure/platform{ dir = 1 }, -/obj/structure/platform/ledge{ - dir = 8 +/obj/structure/cable/green{ + icon_state = "1-2" }, -/obj/structure/railing/mapped{ - dir = 4 +/obj/effect/floor_decal/corner/paleblue{ + dir = 10 }, -/turf/simulated/open, -/area/operations/office) +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/horizon/command/bridge/cciaroom/lounge) +"vwm" = ( +/obj/machinery/bluespacedrive, +/obj/structure/cable/orange{ + icon_state = "0-4" + }, +/obj/machinery/atmospherics/portables_connector{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/horizon/engineering/bluespace_drive) +"vwq" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/vending/cola, +/turf/simulated/floor/tiled/dark, +/area/horizon/hallway/primary/deck_3/starboard) "vwr" = ( /obj/structure/lattice, /obj/machinery/atmospherics/pipe/simple/visible/universal{ @@ -149678,6 +150488,16 @@ }, /turf/space/dynamic, /area/horizon/exterior) +"vws" = ( +/obj/machinery/light, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/horizon/command/bridge/controlroom) "vwt" = ( /obj/structure/table/wood, /obj/effect/floor_decal/carpet{ @@ -149688,64 +150508,32 @@ }, /turf/simulated/floor/holofloor/carpet, /area/horizon/holodeck/source_courtroom) -"vww" = ( -/obj/machinery/light{ +"vwu" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/light/small/emergency{ dir = 4 }, -/obj/structure/platform/ledge, -/obj/structure/platform/ledge{ - dir = 8 +/obj/structure/cable/green{ + icon_state = "1-2" }, -/obj/structure/platform_deco/ledge{ - dir = 9 +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/main/starboard) +"vwy" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 6 }, -/turf/simulated/open, -/area/hallway/medical/upper) -"vwz" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/machinery/atmospherics/unary/outlet_injector{ - dir = 1; - use_power = 1; - name = "emergency outlet injector"; - volume_rate = 700 - }, -/obj/structure/sign/securearea{ - name = "\improper DANGER: HOT GAS sign"; - pixel_y = 29; - desc = "A warning sign which reads \"DANGER: HOT GAS\"." - }, -/turf/simulated/floor/reinforced/airless, -/area/engineering/atmos/propulsion/starboard) +/turf/simulated/floor/tiled, +/area/horizon/engineering/reactor/indra/office) "vwA" = ( /turf/unsimulated/wall/fakepdoor{ dir = 8; name = "Blast door" }, /area/centcom/distress_prep) -"vwD" = ( -/obj/structure/bed/stool/chair/shuttle{ - dir = 4 - }, -/obj/machinery/light/small, -/obj/machinery/camera/network/mining{ - c_tag = "Mining - Shuttle"; - dir = 1 - }, -/obj/effect/floor_decal/industrial/outline/grey, -/obj/machinery/vending/wallmed1{ - pixel_x = -6; - req_access = null; - pixel_y = -27 - }, -/obj/structure/closet/walllocker/emerglocker/west{ - pixel_x = -25 - }, -/obj/item/reagent_containers/inhaler/pneumalin, -/obj/item/reagent_containers/inhaler/pneumalin, -/turf/simulated/floor/tiled/dark, -/area/shuttle/mining) +"vwE" = ( +/obj/effect/floor_decal/spline/fancy/wood/corner, +/turf/simulated/floor/wood, +/area/horizon/service/dining_hall) "vwG" = ( /obj/effect/floor_decal/corner/blue{ dir = 5 @@ -149755,137 +150543,138 @@ }, /turf/unsimulated/floor, /area/centcom/evac) -"vwT" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/reinforced, -/area/rnd/isolation_a) +"vwH" = ( +/obj/structure/platform, +/obj/structure/engineer_maintenance/electric{ + dir = 4 + }, +/obj/structure/engineer_maintenance/pipe, +/turf/simulated/floor/tiled/dark, +/area/horizon/rnd/lab) +"vwJ" = ( +/obj/structure/table/rack, +/turf/simulated/floor, +/area/horizon/maintenance/deck_2/wing/starboard/far) +"vwP" = ( +/turf/simulated/wall/r_wall, +/area/horizon/operations/machinist/surgicalbay) +"vwW" = ( +/obj/effect/floor_decal/corner/beige{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/command/bridge/aibunker) +"vwY" = ( +/obj/effect/floor_decal/corner_wide/grey/diagonal, +/obj/structure/table/standard, +/obj/item/stack/packageWrap, +/obj/random/pottedplant_small{ + pixel_x = -1; + pixel_y = 9 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/operations/break_room) +"vxa" = ( +/obj/structure/bed/stool/chair/padded/purple, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/obj/machinery/light_switch{ + pixel_x = -19; + pixel_y = 3; + dir = 8 + }, +/turf/simulated/floor/wood, +/area/horizon/command/heads/rd) +"vxb" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/horizon/service/bar) +"vxh" = ( +/obj/structure/bed/stool/chair/office/bridge{ + dir = 4 + }, +/obj/effect/floor_decal/corner/dark_blue{ + dir = 9 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/command/bridge/meeting_room) "vxi" = ( /turf/simulated/wall/shuttle/unique/ert{ icon_state = "0,3" }, /area/shuttle/specops) -"vxj" = ( -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 8 +"vxm" = ( +/obj/structure/table/rack, +/obj/item/stack/material/plasteel{ + amount = 20; + pixel_y = 4; + randpixel = 0 }, -/obj/structure/cable/green{ - icon_state = "2-8" +/obj/item/stack/material/glass{ + amount = 50; + pixel_x = -1; + pixel_y = 2; + randpixel = 0 }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/maintenance/security_port) -"vxl" = ( -/obj/structure/platform_stairs/full/east_west_cap{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/horizon/crew_quarters/lounge/bar) -"vxo" = ( -/obj/machinery/door/airlock/command{ - id_tag = "rep_office_b"; - name = "Representative Office Bravo"; - req_access = list(38); - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/door/firedoor{ - req_one_access = list(24,11,67,73); - dir = 4 - }, -/turf/simulated/floor/wood, -/area/lawoffice/representative_two) -"vxp" = ( -/obj/effect/floor_decal/corner_wide/yellow{ - dir = 10 - }, -/obj/structure/table/standard, -/obj/machinery/requests_console/south{ - department = "Engineering"; - departmentType = 1; - name = "Engineering Lobby RC" - }, -/obj/item/folder/yellow{ - pixel_x = -6; - pixel_y = 6 - }, -/obj/item/pen{ - pixel_x = 5; - pixel_y = 9 - }, -/obj/item/clipboard{ +/obj/item/stack/material/steel{ + amount = 50; + pixel_x = 1; pixel_y = -2; - pixel_x = -6 + randpixel = 0 }, -/obj/item/paper_bin{ - pixel_x = 4; - pixel_y = 2 +/obj/item/stack/material/steel{ + amount = 50; + pixel_x = 1; + pixel_y = -2; + randpixel = 0 }, -/turf/simulated/floor/tiled, -/area/engineering/lobby) -"vxs" = ( -/obj/effect/floor_decal/corner/brown{ - dir = 5 +/obj/item/stack/material/steel{ + amount = 50; + pixel_x = 1; + pixel_y = -2; + randpixel = 0 }, -/obj/structure/table/steel, -/obj/machinery/cell_charger, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/refinery) -"vxu" = ( -/obj/machinery/computer/ship/helm/terminal{ - dir = 1; - req_one_access = list(65,74) - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/quark/cockpit) -"vxv" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/effect/floor_decal/corner/dark_green{ - dir = 6 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/camera/network/third_deck{ - c_tag = "Third Deck - Central Ring Aft"; - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/central) -"vxw" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 10 - }, -/obj/effect/decal/cleanable/cobweb2, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard/deck1) -"vxy" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/spline/plain/red{ - dir = 4 - }, -/obj/effect/floor_decal/corner/dark_green{ +/obj/item/reagent_containers/weldpack, +/obj/machinery/camera/network/supply{ + c_tag = "Operations - Machinist Workshop Starboard 2"; dir = 1 }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" +/obj/item/stack/material/glass{ + amount = 50; + pixel_x = -1; + pixel_y = 2; + randpixel = 0 }, -/turf/simulated/floor/tiled, -/area/horizon/hydroponics) +/obj/item/stack/material/steel{ + amount = 50; + pixel_x = 1; + pixel_y = -2; + randpixel = 0 + }, +/obj/item/device/paint_sprayer, +/obj/structure/platform{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/operations/machinist) +"vxz" = ( +/obj/machinery/light/small/emergency{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/main/starboard) "vxB" = ( /obj/structure/flora/grass/jungle{ icon_state = "bushb1" @@ -149903,18 +150692,25 @@ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/outpost/research/anomaly_storage) -"vxK" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" +/area/horizon/rnd/xenoarch/anomaly_storage) +"vxI" = ( +/obj/effect/floor_decal/corner/dark_blue/diagonal, +/turf/simulated/floor/tiled/dark, +/area/horizon/hangar/control) +"vxJ" = ( +/obj/machinery/camera/network/third_deck{ + c_tag = "Third Deck - Journalist Office"; + dir = 1 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 +/obj/random/pottedplant, +/obj/machinery/light{ + dir = 8 }, -/obj/structure/lattice/catwalk/indoor, -/turf/simulated/floor/plating, -/area/engineering/engine_room/rust) +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 10 + }, +/turf/simulated/floor/wood, +/area/horizon/crew/journalistoffice) "vxL" = ( /obj/effect/floor_decal/corner/blue{ dir = 5 @@ -149935,37 +150731,67 @@ /obj/structure/reagent_dispensers/lube, /turf/simulated/floor/tiled, /area/merchant_station/warehouse) +"vxO" = ( +/obj/structure/bed/stool/chair/office/dark{ + dir = 8 + }, +/obj/effect/floor_decal/spline/plain{ + dir = 1 + }, +/obj/effect/landmark/start{ + name = "Machinist" + }, +/turf/simulated/floor/carpet/rubber, +/area/horizon/operations/machinist) "vxS" = ( /obj/effect/floor_decal/corner/white{ dir = 10 }, /turf/simulated/floor/holofloor/tiled/dark, /area/horizon/holodeck/source_boxingcourt) +"vxT" = ( +/obj/machinery/atmospherics/binary/pump/on{ + dir = 8; + name = "Distro to Airlock"; + target_pressure = 200 + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/alarm/north, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/wing/starboard/far) "vya" = ( /obj/machinery/telecomms/receiver/preset_cent, /obj/effect/floor_decal/industrial/warning/cee, /turf/unsimulated/floor/plating, /area/centcom/control) -"vyf" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/structure/window/shuttle/scc_space_ship/cardinal, -/obj/machinery/door/blast/shutters{ - dir = 4; - id = "shutters_deck2_hydroponicswindowssafety"; - name = "Viewing Shutter" +"vyb" = ( +/obj/machinery/door/window{ + dir = 1 }, -/turf/simulated/floor/plating, -/area/horizon/hydroponics) -"vys" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/machinery/door/window/northleft{ - name = "Canister Storage Access"; - req_access = list(65) +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 8 }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/reinforced, -/area/rnd/xenoarch_atrium) +/turf/simulated/floor, +/area/horizon/hallway/primary/deck_3/port/docks) +"vyj" = ( +/obj/structure/platform/ledge{ + dir = 8 + }, +/turf/simulated/open, +/area/horizon/medical/hallway/upper) +"vyl" = ( +/turf/simulated/floor/wood, +/area/horizon/crew/lounge) +"vyo" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/horizon/maintenance/deck_2/wing/starboard/nacelle) +"vyq" = ( +/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/medical/icu) "vyu" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -149981,36 +150807,18 @@ }, /turf/simulated/floor/tiled, /area/horizon/security/hallway) -"vyD" = ( -/obj/machinery/power/breakerbox/activated{ - RCon_tag = "Security Substation" +"vyA" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 }, -/turf/simulated/floor/plating, -/area/maintenance/substation/security) +/turf/simulated/floor/tiled, +/area/horizon/operations/warehouse) "vyF" = ( /turf/unsimulated/floor{ dir = 5; icon_state = "carpet" }, /area/antag/raider) -"vyG" = ( -/obj/machinery/door/blast/regular{ - id = "exteriorpropulsionstarboard" - }, -/turf/simulated/floor/reinforced/airless, -/area/engineering/atmos/propulsion/starboard) -"vyK" = ( -/obj/effect/floor_decal/corner_wide/purple{ - dir = 5 - }, -/obj/effect/floor_decal/corner_wide/purple{ - dir = 8 - }, -/obj/structure/noticeboard/anomaly{ - pixel_y = 30 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenoarch_atrium) "vyO" = ( /obj/machinery/door/airlock/external{ dir = 4; @@ -150040,12 +150848,23 @@ icon_state = "wood" }, /area/centcom/legion/hangar5) -"vyS" = ( -/obj/machinery/atmospherics/binary/circulator{ - anchored = 1 +"vyQ" = ( +/obj/effect/floor_decal/industrial/loading/yellow{ + dir = 1 }, +/obj/structure/plasticflaps/airtight, +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/shutters{ + dir = 2; + id = "mining_shuttle_trunk"; + name = "Mining Shuttle Exterior" + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/hangar/operations) +"vyT" = ( +/obj/random/junk, /turf/simulated/floor/plating, -/area/engineering/engine_room) +/area/horizon/maintenance/deck_1/operations/starboard) "vyX" = ( /obj/effect/decal/fake_object{ icon = 'icons/obj/doors/rapid_pdoor.dmi'; @@ -150055,6 +150874,21 @@ /obj/effect/floor_decal/industrial/hatch/yellow, /turf/unsimulated/floor/monotile, /area/antag/mercenary) +"vyY" = ( +/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/horizon/shuttle/quark/cargo_hold) "vza" = ( /obj/machinery/conveyor{ id = "cargo_1" @@ -150078,133 +150912,167 @@ /obj/machinery/firealarm/west, /turf/simulated/floor/lino, /area/horizon/security/investigators_office) -"vzl" = ( -/obj/effect/floor_decal/spline/fancy/wood, -/obj/effect/floor_decal/spline/fancy/wood{ +"vzc" = ( +/obj/machinery/atmospherics/binary/pump/high_power{ + dir = 8; + name = "Phoron to Propellant Line" + }, +/obj/machinery/light{ dir = 1 }, -/obj/structure/table/wood, -/obj/machinery/power/outlet{ - pixel_y = 9 +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 }, -/turf/simulated/floor/wood, -/area/operations/office) -"vzp" = ( -/obj/machinery/firealarm/south, -/obj/structure/table/standard, -/obj/item/device/hand_labeler, -/obj/item/stamp/denied, -/obj/effect/floor_decal/corner/beige/full, -/turf/simulated/floor/tiled, -/area/security/vacantoffice) -"vzq" = ( -/obj/effect/floor_decal/corner/mauve{ +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/atmos/propulsion) +"vzi" = ( +/obj/structure/closet/radiation, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced, +/obj/random/dirt_75, +/obj/random/dirt_75, +/turf/simulated/floor/carpet/rubber, +/area/horizon/maintenance/deck_2/wing/starboard/nacelle) +"vzn" = ( +/obj/effect/floor_decal/corner_wide/purple{ dir = 5 }, -/obj/structure/extinguisher_cabinet/north, -/obj/machinery/light/floor{ - dir = 1 +/obj/effect/floor_decal/corner_wide/purple{ + dir = 8 + }, +/obj/machinery/atmospherics/valve/digital/open{ + dir = 1; + name = "Exotic Energy Harvesting" + }, +/obj/structure/cable/green{ + icon_state = "1-2" }, /turf/simulated/floor/tiled/white, -/area/rnd/conference) -"vzu" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 10 +/area/horizon/rnd/xenoarch/atrium) +"vzo" = ( +/obj/structure/sign/staff_only{ + pixel_x = -32 }, -/obj/structure/railing/mapped, -/turf/simulated/floor/wood, -/area/horizon/cafeteria) +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/obj/random/loot, +/obj/structure/reagent_dispensers/watertank, +/turf/simulated/floor, +/area/horizon/maintenance/deck_3/aft/holodeck) +"vzt" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/structure/tank_wall/oxygen{ + icon_state = "o2-8" + }, +/turf/simulated/floor/plating, +/area/horizon/engineering/atmos/air) "vzx" = ( /obj/effect/floor_decal/corner/white{ dir = 9 }, /turf/simulated/floor/holofloor/tiled, /area/template_noop) -"vzy" = ( -/turf/simulated/wall/r_wall, -/area/horizon/hydroponics) -"vzC" = ( -/obj/structure/window/shuttle/scc_space_ship, -/obj/structure/grille, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "bridge blast"; - name = "Bridge Blast Doors"; - opacity = 0 - }, -/obj/machinery/door/firedoor, -/obj/structure/cable/green, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/door/blast/shutters/open{ - dir = 4; - id = "shutters_deck3_bridgesafety"; - name = "Safety Shutter" - }, -/obj/machinery/door/blast/shutters/open{ - dir = 4; - id = "conferencesafetyshutters"; - name = "Safety Shutter" - }, -/turf/simulated/floor/plating, -/area/bridge/meeting_room) -"vzO" = ( -/obj/effect/floor_decal/corner/mauve{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/light/floor{ - dir = 4 +"vzz" = ( +/obj/effect/floor_decal/corner/purple{ + dir = 5 }, /turf/simulated/floor/tiled, -/area/rnd/hallway/secondary) -"vzW" = ( -/obj/structure/table/stone/marble, -/obj/item/reagent_containers/food/condiment/sugar{ - pixel_x = 7; - pixel_y = 8 +/area/horizon/service/custodial/auxiliary) +"vzA" = ( +/obj/effect/floor_decal/corner_wide/yellow{ + dir = 6 }, -/obj/item/reagent_containers/cooking_container/board/bowl, -/obj/item/reagent_containers/glass/beaker{ - pixel_x = -6; - pixel_y = 8 +/obj/structure/cable/green{ + icon_state = "1-8" }, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/kitchen) -"vAa" = ( -/obj/machinery/door/airlock/external{ +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/simulated/floor/tiled, +/area/horizon/engineering/bluespace_drive) +"vzG" = ( +/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/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance{ + dir = 1; + req_one_access = list(12) + }, +/turf/simulated/floor, +/area/horizon/maintenance/deck_3/aft/port) +"vzH" = ( +/obj/structure/grille/diagonal{ + dir = 1 + }, +/obj/structure/window/shuttle/scc_space_ship, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 10 + }, +/turf/simulated/floor/wood, +/area/horizon/service/bar) +"vzJ" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/horizon/shuttle/quark/cockpit) +"vzQ" = ( +/obj/structure/bed/stool/chair/sofa/right/brown{ dir = 4 }, -/obj/machinery/access_button{ - pixel_x = 24; - pixel_y = 32 +/obj/effect/landmark/start{ + name = "Passenger" }, -/obj/effect/map_effect/marker_helper/airlock/interior, -/obj/effect/map_effect/marker/airlock/docking{ - landmark_tag = "nav_horizon_dock_deck_3_starboard_1"; - master_tag = "airlock_horizon_dock_deck_3_starboard_1"; - name = "airlock_horizon_dock_deck_3_starboard_1" +/turf/simulated/floor/carpet/art, +/area/horizon/crew/lounge) +"vzS" = ( +/obj/effect/floor_decal/industrial/warning/cee{ + dir = 8 }, -/turf/simulated/floor/plating, -/area/horizon/hallway/deck_three/primary/starboard/docks) -"vAb" = ( -/obj/structure/closet/crate, +/obj/effect/decal/cleanable/dirt, /obj/random/contraband, -/obj/random/loot, -/obj/effect/floor_decal/industrial/outline/grey, -/turf/simulated/floor/tiled/dark, -/area/maintenance/wing/port/far) +/turf/simulated/floor/tiled, +/area/horizon/maintenance/deck_2/wing/port/far) +"vzV" = ( +/obj/structure/bed/stool/chair/office/light{ + dir = 8 + }, +/obj/effect/landmark/start{ + name = "Xenobotanist" + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/horizon/rnd/conference) "vAe" = ( /turf/unsimulated/wall/fakepdoor{ icon_state = "shutter1"; name = "pharmacy" }, /area/antag/raider) +"vAi" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/industrial/warning, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/alarm/east{ + req_one_access = list(24,11,55) + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/starboard/near) "vAj" = ( /obj/machinery/light{ dir = 1 @@ -150213,148 +151081,103 @@ icon_state = "dark_preview" }, /area/centcom/specops) -"vAm" = ( -/obj/structure/cable/green{ - icon_state = "0-8" +"vAn" = ( +/turf/simulated/wall, +/area/horizon/service/chapel/office) +"vAq" = ( +/obj/structure/tank_wall/air{ + density = 0; + icon_state = "air12"; + opacity = 0 }, -/obj/structure/cable/green{ - icon_state = "12-0" - }, -/obj/machinery/atmospherics/pipe/zpipe/up/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers{ - dir = 8 - }, -/obj/structure/sign/electricshock{ - pixel_y = 32 - }, -/obj/structure/railing/mapped, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard) -"vAt" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ +/turf/simulated/floor/reinforced/airmix, +/area/horizon/engineering/atmos/air) +"vAw" = ( +/obj/structure/closet/secure_closet/machinist, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/operations/machinist/surgicalbay) +"vAF" = ( +/obj/effect/floor_decal/corner/brown/full{ dir = 4 }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology/xenological) -"vAv" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/engineering/aft_airlock) -"vAA" = ( -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/effect/floor_decal/corner_wide/green{ - dir = 9 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/structure/table/standard, -/obj/item/storage/box/bodybags{ - pixel_y = -1 - }, -/obj/item/storage/box/bodybags{ - pixel_x = 4; - pixel_y = 4 - }, -/turf/simulated/floor/tiled/white, -/area/hallway/medical) +/obj/machinery/firealarm/south, +/turf/simulated/floor/tiled, +/area/horizon/operations/break_room) "vAL" = ( /obj/machinery/light, /turf/unsimulated/floor{ icon_state = "dark_preview" }, /area/centcom/specops) -"vAM" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" +"vAN" = ( +/obj/item/device/radio/intercom/north{ + dir = 8; + pixel_y = 0; + pixel_x = -7 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor, -/area/maintenance/security_port) -"vAQ" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/effect/floor_decal/spline/plain{ +/obj/effect/floor_decal/corner_wide/green{ dir = 9 }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, /turf/simulated/floor/tiled/white, -/area/horizon/kitchen) -"vBb" = ( -/obj/effect/floor_decal/corner/dark_blue/diagonal, -/obj/structure/bed/handrail, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 1 +/area/horizon/medical/ward) +"vAT" = ( +/obj/effect/floor_decal/corner_wide/blue{ + dir = 9 }, -/obj/machinery/alarm/north{ - req_one_access = list(11, 73) +/obj/machinery/anti_bluespace, +/obj/effect/floor_decal/industrial/hatch/red, +/obj/machinery/camera/motion{ + c_tag = "Operations - Secure Storage"; + dir = 4; + network = list("Command","Security","Operations") }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/storage/secure) +"vAZ" = ( +/obj/structure/sink/kitchen{ + name = "water fountain"; + pixel_y = 26 + }, +/obj/effect/floor_decal/corner/dark_green{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/outline/grey, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_3/central) +"vBc" = ( +/obj/effect/floor_decal/industrial/outline/grey, +/obj/structure/table/steel, +/obj/item/device/flashlight{ + pixel_x = -4; + pixel_y = 20 + }, +/obj/item/device/flashlight{ + pixel_x = 4; + pixel_y = 12 + }, +/obj/item/device/flashlight{ + pixel_x = -4; + pixel_y = 4 + }, +/turf/simulated/floor/plating, +/area/horizon/hangar/intrepid) +"vBf" = ( +/obj/machinery/atmospherics/valve{ + dir = 4; + name = "Equalization Valve" + }, +/obj/effect/floor_decal/industrial/hatch/red, /turf/simulated/floor/tiled/dark, -/area/shuttle/intrepid/flight_deck) -"vBh" = ( -/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/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_medical{ - dir = 4; - name = "Main Storage"; - req_access = list(66) - }, -/turf/simulated/floor/tiled/white, -/area/medical/main_storage) -"vBm" = ( -/obj/structure/cable/green{ - icon_state = "1-8" - }, +/area/horizon/engineering/atmos/propulsion/starboard) +"vBg" = ( +/obj/effect/floor_decal/corner/dark_green/full, +/obj/machinery/vending/cola, +/obj/effect/floor_decal/industrial/hatch/yellow, /obj/structure/railing/mapped, -/turf/simulated/floor/tiled/dark, -/area/horizon/hallway/deck_three/primary/port) -"vBn" = ( -/turf/simulated/wall/shuttle/scc_space_ship/cardinal, -/area/turret_protected/ai) +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_2/central) "vBq" = ( /obj/machinery/door/airlock/centcom{ name = "Commander's Office"; @@ -150375,40 +151198,29 @@ dir = 1 }, /area/centcom/specops) -"vBr" = ( -/obj/structure/tank_wall/hydrogen{ - density = 0; - icon_state = "h11"; - opacity = 0 - }, -/turf/simulated/floor/reinforced/hydrogen, -/area/engineering/atmos) -"vBs" = ( -/obj/machinery/papershredder, -/obj/machinery/newscaster/west, -/turf/simulated/floor/tiled/full, -/area/bridge/cciaroom) -"vBt" = ( -/obj/structure/cable/orange{ - icon_state = "0-2" - }, -/obj/machinery/power/emitter{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/engineering/bluespace_drive) -"vBu" = ( -/obj/machinery/autolathe, -/turf/simulated/floor/carpet/rubber, -/area/rnd/lab) "vBv" = ( /obj/structure/bed/padded, /obj/item/bedsheet/brown, /turf/simulated/floor/carpet, /area/shuttle/skipjack) +"vBx" = ( +/obj/effect/floor_decal/corner/dark_blue/full{ + dir = 4 + }, +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/structure/railing/mapped, +/obj/structure/table/reinforced/steel, +/obj/item/device/destTagger{ + pixel_y = 5 + }, +/obj/item/stack/packageWrap{ + pixel_y = 19; + pixel_x = -2 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/command/bridge/controlroom) "vBz" = ( /obj/structure/window/reinforced{ dir = 4 @@ -150430,63 +151242,31 @@ }, /turf/simulated/floor/tiled/dark, /area/shuttle/merchant) -"vBB" = ( -/obj/structure/table/standard, -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/recharger, -/obj/effect/floor_decal/corner/beige/full{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/security/vacantoffice) "vBD" = ( /obj/structure/shuttle_part/mercenary/small{ icon_state = "2,1" }, /turf/unsimulated/floor/plating, /area/shuttle/syndicate_elite) -"vBE" = ( -/obj/structure/disposalpipe/segment{ +"vBI" = ( +/obj/structure/railing/mapped{ dir = 4 }, -/obj/effect/floor_decal/corner/mauve{ +/obj/structure/platform/ledge{ + dir = 8 + }, +/turf/simulated/open, +/area/horizon/operations/office) +"vBO" = ( +/obj/machinery/light{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology/hazardous) -"vBJ" = ( -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/airlock/service{ - dir = 1; - name = "Disposals and Recycling"; - req_one_access = list(26,67) - }, -/turf/simulated/floor/tiled/full, -/area/horizon/custodial/disposals) -"vBK" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 +/obj/effect/floor_decal/corner/dark_blue{ + dir = 9 }, +/obj/structure/platform_stairs/full/south_north_cap, /turf/simulated/floor/tiled, -/area/maintenance/wing/port/far) -"vBN" = ( -/obj/effect/floor_decal/industrial/outline/emergency_closet, -/obj/structure/closet/emcloset, -/obj/structure/engineer_maintenance/pipe/wall, -/turf/simulated/floor/plating, -/area/hangar/intrepid) +/area/horizon/command/bridge/controlroom) "vBP" = ( /turf/unsimulated/wall/fakeairlock{ icon = 'icons/obj/doors/Doorext.dmi'; @@ -150494,49 +151274,39 @@ name = "Service Airlock" }, /area/centcom/legion) -"vBT" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 6 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled, -/area/security/checkpoint2) -"vCe" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, +"vBQ" = ( +/obj/effect/decal/cleanable/cobweb2, +/obj/structure/trash_pile, /turf/simulated/floor/plating, -/area/maintenance/wing/cargo_compartment) -"vCj" = ( -/obj/machinery/alarm/east, -/obj/effect/floor_decal/spline/plain{ - dir = 6 +/area/horizon/maintenance/deck_1/operations/starboard/far) +"vBR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/random/junk, +/turf/simulated/floor/tiled, +/area/horizon/maintenance/deck_1/operations/starboard) +"vBU" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 }, -/turf/simulated/floor/carpet/rubber, -/area/engineering/engine_monitoring) -"vCk" = ( -/obj/structure/closet/cabinet, -/obj/item/clothing/suit/carp_costume, -/obj/item/clothing/suit/lobster_costume, -/obj/item/clothing/suit/jester_costume, -/obj/item/clothing/suit/roman_costume, -/obj/item/clothing/suit/snowman_costume, -/obj/item/clothing/suit/sumo_costume, -/obj/item/clothing/suit/bee_costume, -/obj/random/arcade, -/obj/random/arcade, -/obj/random/arcade, -/obj/structure/platform{ - dir = 1 +/turf/simulated/floor/tiled/dark, +/area/horizon/weapons/grauwolf) +"vBZ" = ( +/obj/structure/disposalpipe/junction, +/turf/simulated/floor/tiled/full, +/area/horizon/hallway/primary/deck_2/starboard) +"vCe" = ( +/obj/structure/sign/nosmoking_2{ + pixel_x = 32 }, -/turf/simulated/floor/wood, -/area/horizon/bar) +/obj/effect/floor_decal/corner/pink/diagonal, +/obj/random/junk, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark, +/area/horizon/maintenance/deck_2/wing/starboard/nacelle) +"vCl" = ( +/obj/structure/railing/mapped, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/wing/starboard/far) "vCn" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 @@ -150544,32 +151314,10 @@ /obj/effect/floor_decal/corner/brown/diagonal, /turf/simulated/floor/tiled/dark, /area/horizon/holodeck_control) -"vCG" = ( -/obj/machinery/door/firedoor, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/airlock/glass_command{ - dir = 4; - name = "Expedition EVA Storage"; - req_one_access = list(18,29,47) - }, -/obj/machinery/door/blast/regular/open{ - id = "hangarlockdown"; - name = "Hangar Lockdown" - }, -/turf/simulated/floor/tiled/full, -/area/rnd/eva) -"vCH" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/visible/cyan{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/engineering/engine_room) +"vCp" = ( +/obj/effect/floor_decal/corner/brown, +/turf/simulated/floor/tiled, +/area/horizon/operations/office) "vCI" = ( /obj/structure/sign/poster{ pixel_y = 32 @@ -150579,34 +151327,6 @@ icon_state = "wood" }, /area/centcom/distress_prep) -"vCJ" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 5 - }, -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/rnd/eva) -"vCQ" = ( -/obj/structure/disposalpipe/segment{ - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/security/vacantoffice) "vCT" = ( /turf/unsimulated/wall/fakepdoor{ dir = 1; @@ -150620,38 +151340,46 @@ /obj/effect/floor_decal/industrial/outline/blue, /turf/simulated/floor/holofloor/carpet/rubber, /area/horizon/holodeck/source_basketball) -"vCV" = ( -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ +"vCY" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/industrial/warning{ dir = 4 }, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/embedded_controller/radio/airlock/airlock_controller{ - pixel_y = 23 - }, -/obj/effect/map_effect/marker/airlock{ - master_tag = "sccv_intrepid_starboard"; - name = "sccv_intrepid_starboard"; - req_one_access = null - }, -/turf/simulated/floor/plating, -/area/shuttle/intrepid/starboard_compartment) -"vCX" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 }, +/obj/structure/lattice/catwalk/indoor/grate/dark, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 + dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 9 }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor, -/area/maintenance/security_port) +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/port/near) +"vDa" = ( +/obj/structure/table/standard, +/obj/item/storage/box/fancy/vials{ + pixel_x = -10; + pixel_y = -10 + }, +/obj/item/reagent_containers/dropper/electronic_pipette{ + pixel_x = -8 + }, +/obj/item/reagent_containers/glass/beaker/large, +/obj/machinery/requests_console/west{ + department = "Pharmacy"; + departmentType = 2; + name = "Pharmacy Requests Console" + }, +/obj/effect/floor_decal/corner_wide/orange{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/pharmacy) "vDc" = ( /obj/structure/flora/grass/jungle{ density = 1 @@ -150670,45 +151398,16 @@ /obj/effect/decal/fake_object/light_source/invisible, /turf/simulated/floor, /area/tdome/tdome2) -"vDi" = ( -/obj/effect/floor_decal/spline/plain/lime{ - dir = 6 - }, -/obj/machinery/disposal/small/west, -/obj/machinery/power/apc/east, -/obj/structure/cable/green, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, +"vDg" = ( +/obj/structure/table/rack, +/obj/item/clothing/suit/hazmat/anomaly, +/obj/item/tank/oxygen, +/obj/item/clothing/head/hazmat/anomaly, +/obj/item/clothing/mask/gas/alt, +/obj/item/clothing/glasses/safety/goggles/science, +/obj/item/storage/box/gloves, /turf/simulated/floor/tiled/dark, -/area/horizon/hydroponics/garden) -"vDj" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/floor_decal/corner/dark_green{ - dir = 6 - }, -/obj/machinery/newscaster/east, -/turf/simulated/floor/tiled, -/area/hangar/intrepid/interstitial) -"vDo" = ( -/obj/structure/table/stone/marble, -/obj/machinery/chemical_dispenser/bar_soft/full{ - pixel_x = 8; - pixel_y = 8 - }, -/obj/machinery/door/firedoor, -/obj/machinery/chemical_dispenser/coffee/full{ - pixel_x = -10; - pixel_y = 8 - }, -/obj/machinery/door/blast/shutters{ - id = "shutters_deck2_kitchendesk"; - name = "Kitchen Desk Shutter" - }, -/turf/simulated/floor/tiled/dark, -/area/horizon/kitchen) +/area/horizon/rnd/xenoarch/storage) "vDp" = ( /obj/effect/landmark{ name = "Syndicate-Spawn" @@ -150718,45 +151417,68 @@ }, /turf/unsimulated/floor/carpet, /area/antag/mercenary) -"vDu" = ( -/obj/structure/shuttle_part/scc/scout{ - density = 0; - icon_state = "2,11"; - outside_part = 0 +"vDq" = ( +/obj/effect/floor_decal/spline/fancy/wood, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 }, -/obj/machinery/atmospherics/unary/engine/scc_shuttle, -/turf/simulated/floor/plating, -/area/shuttle/canary) -"vDy" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/random/dirt_75, -/turf/simulated/floor, -/area/maintenance/wing/port/far) -"vDA" = ( /obj/structure/cable/green{ icon_state = "4-8" }, +/obj/structure/disposalpipe/junction{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/camera/network/command{ + c_tag = "Bridge - Captain's Office Fore"; + dir = 1; + network = list("Command","Capt_Office") + }, +/turf/simulated/floor/wood, +/area/horizon/command/heads/captain) +"vDr" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/turf/simulated/floor/lino, -/area/chapel/main) -"vDC" = ( -/obj/machinery/power/breakerbox/activated{ - RCon_tag = "Engineering Main Substation" +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_3/central) +"vDE" = ( +/obj/machinery/door/firedoor, +/obj/effect/floor_decal/corner/brown{ + dir = 4 }, -/turf/simulated/floor/plating, -/area/maintenance/substation/engineering) +/obj/effect/floor_decal/corner/dark_green{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled, +/area/horizon/operations/lobby) "vDG" = ( /turf/simulated/floor/tiled/ramp/bottom, /area/merchant_station) -"vDM" = ( -/turf/simulated/wall, -/area/engineering/lobby) +"vDJ" = ( +/obj/machinery/door/firedoor/multi_tile, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/airlock/multi_tile/glass{ + name = "Deck 1 Central Stairwell" + }, +/turf/simulated/floor/tiled/full, +/area/horizon/stairwell/starboard/deck_1) "vDN" = ( /obj/machinery/door/blast/odin/shuttle/ert{ dir = 4; @@ -150806,13 +151528,6 @@ /obj/structure/table/reinforced/steel, /turf/unsimulated/floor, /area/centcom/legion/hangar5) -"vDP" = ( -/obj/effect/decal/cleanable/blood/oil, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/wing/port/deck1) "vDQ" = ( /obj/structure/table/standard, /obj/item/reagent_containers/glass/bottle/bicaridine{ @@ -150831,47 +151546,37 @@ icon_state = "white" }, /area/centcom/legion) -"vEd" = ( -/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, -/obj/machinery/door/blast/shutters/open{ - dir = 4; - id = "shutters_hangarseccp"; - name = "Security Checkpoint Shutter" - }, -/turf/simulated/floor/tiled/dark/full, -/area/security/checkpoint) -"vEf" = ( -/obj/structure/platform/ledge, -/turf/simulated/open, -/area/operations/office) -"vEi" = ( -/obj/structure/lattice/catwalk/indoor, -/obj/structure/sign/radiation{ - pixel_x = 32 - }, -/obj/structure/closet/walllocker/medical/firstaid{ - pixel_y = 32 - }, +"vDX" = ( +/turf/simulated/wall, +/area/horizon/stairwell/starboard/deck_1) +"vEc" = ( +/obj/structure/closet/crate, +/obj/item/circuitboard/smes, +/obj/item/circuitboard/smes, +/obj/item/smes_coil, +/obj/item/smes_coil, +/obj/item/smes_coil/super_capacity, +/obj/item/smes_coil/super_capacity, +/obj/item/smes_coil/super_io, +/obj/item/smes_coil/super_io, +/obj/effect/floor_decal/industrial/warning, /turf/simulated/floor/plating, -/area/engineering/smes/rust) -"vEj" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 10 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/platform_stairs/full{ - dir = 8 - }, -/obj/structure/platform{ +/area/horizon/engineering/storage/lower) +"vEe" = ( +/obj/structure/bed/stool/chair/padded/brown, +/obj/effect/floor_decal/spline/fancy/wood/cee{ dir = 1 }, -/turf/simulated/floor/tiled, -/area/bridge) +/obj/machinery/camera/network/third_deck{ + c_tag = "Third Deck - Port Main Hallway Port" + }, +/turf/simulated/floor/wood, +/area/horizon/hallway/primary/deck_3/starboard) +"vEl" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/portable_atmospherics/canister/hydrogen, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/storage_hard) "vEo" = ( /obj/effect/floor_decal/spline/plain/corner{ dir = 4 @@ -150881,22 +151586,40 @@ }, /turf/simulated/floor/exoplanet/barren, /area/centcom/shared_dream) -"vEz" = ( -/obj/item/device/radio/intercom/south{ - pixel_y = 0; - pixel_x = 1 +"vEr" = ( +/obj/effect/map_effect/window_spawner/full/borosilicate/reinforced, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id = "SupermatterPort"; + name = "Reactor Blast Door"; + opacity = 0 }, -/obj/machinery/hologram/holopad/long_range, -/turf/simulated/floor/carpet, -/area/operations/qm) -"vEG" = ( -/obj/machinery/door/blast/shutters/open{ - id = "shutters_deck3_cafewindows"; - name = "Cafe Window Shutter" - }, -/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, /turf/simulated/floor/tiled/dark/full, -/area/horizon/cafeteria) +/area/horizon/engineering/reactor/supermatter/mainchamber) +"vEw" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/firealarm/east, +/obj/effect/floor_decal/corner/dark_green{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/horizon/hangar/intrepid) +"vEE" = ( +/obj/machinery/atmospherics/binary/pump{ + dir = 1; + name = "Connectors to Mix" + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/atmos) "vEI" = ( /obj/machinery/atmospherics/pipe/simple/hidden, /obj/machinery/access_button{ @@ -150918,86 +151641,24 @@ icon_state = "beachcorner" }, /area/centcom/shared_dream) -"vEP" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 6 - }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/machinery/disposal/small/west, -/obj/item/device/radio/intercom/east{ - pixel_y = 1 - }, -/turf/simulated/floor/tiled, -/area/bridge/controlroom) -"vER" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/effect/floor_decal/corner/dark_green{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/central) -"vET" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, +"vEQ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/effect/floor_decal/spline/fancy/wood/corner{ dir = 4 }, -/obj/effect/landmark/latejoinlift, -/obj/structure/disposalpipe/junction{ - dir = 8; - icon_state = "pipe-j2" +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 7 }, -/turf/simulated/floor/tiled, -/area/horizon/crew_quarters/cryo/living_quarters_lift) -"vEZ" = ( -/obj/machinery/light, -/obj/structure/table/wood, -/obj/machinery/photocopier/faxmachine{ - anchored = 0; - department = "Consular Office B"; - pixel_y = 4; - req_one_access = list(38,19,72) - }, -/obj/machinery/ringer/north{ - dir = 4; - pixel_y = 0; - pixel_x = 10; - department = "Consular B"; - id = "consular_b_ringer"; - req_access = null; - req_one_access = list(72) - }, -/turf/simulated/floor/carpet, -/area/lawoffice/consular_two) -"vFc" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 9 - }, -/obj/effect/floor_decal/spline/plain/green{ - dir = 4 - }, -/obj/machinery/atmospherics/binary/pump{ - dir = 1; - name = "Trays to Scrubbers" - }, -/obj/effect/floor_decal/industrial/hatch_tiny/service, -/turf/simulated/floor/tiled, -/area/horizon/hydroponics/lower) +/turf/simulated/floor/wood, +/area/horizon/repoffice/representative_one) +"vFb" = ( +/obj/structure/window/shuttle/scc_space_ship, +/obj/structure/grille, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/horizon/engineering/reactor/supermatter/mainchamber) "vFd" = ( /obj/effect/floor_decal/corner/dark_blue{ dir = 10 @@ -151010,66 +151671,93 @@ /obj/machinery/power/apc/south, /turf/simulated/floor/tiled, /area/horizon/security/equipment) -"vFg" = ( -/obj/structure/foamedmetal, -/obj/structure/shuttle_part/scc_space_ship{ - icon_state = "d3-6-f" - }, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard/far) -"vFl" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/effect/floor_decal/corner/dark_green{ - dir = 10 - }, -/obj/structure/railing/mapped, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/central) -"vFm" = ( -/turf/simulated/floor/wood, -/area/bridge/minibar) -"vFp" = ( -/turf/simulated/floor/tiled/dark, -/area/hangar/auxiliary) -"vFu" = ( -/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, -/turf/simulated/floor/tiled/dark/full, -/area/assembly/chargebay) -"vFA" = ( +"vFf" = ( /obj/machinery/light{ dir = 4 }, -/obj/effect/floor_decal/corner/mauve{ +/obj/effect/floor_decal/industrial/warning{ dir = 6 }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/closet/secure_closet/chemical{ - req_access = list(7) +/turf/simulated/floor/reinforced, +/area/horizon/rnd/xenobiology) +"vFj" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance_hatch{ + dir = 4; + req_one_access = list(12) }, -/turf/simulated/floor/tiled/white, -/area/rnd/chemistry) -"vFD" = ( -/obj/machinery/light/small{ - dir = 8 +/obj/structure/cable{ + icon_state = "4-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 +/turf/simulated/floor, +/area/horizon/maintenance/deck_3/aft/starboard) +"vFo" = ( +/obj/machinery/door/firedoor, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/door/airlock/atmos{ + dir = 1; + name = "Atmospherics Turbine"; + req_access = list(24) }, -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ +/turf/simulated/floor/plating, +/area/horizon/engineering/atmos/turbine) +"vFq" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 9 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 }, -/obj/structure/lattice/catwalk/indoor, -/turf/simulated/floor/plating, -/area/shuttle/mining) +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled, +/area/horizon/rnd/hallway/secondary) +"vFr" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor, +/area/horizon/maintenance/deck_3/aft/starboard/far) +"vFs" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/bluespace_beacon, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/horizon/command/bridge/controlroom) +"vFx" = ( +/obj/effect/floor_decal/corner/dark_blue/full, +/obj/machinery/photocopier, +/obj/machinery/light, +/turf/simulated/floor/tiled, +/area/horizon/command/bridge/upperdeck) +"vFC" = ( +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/structure/disposalpipe/down{ + dir = 4 + }, +/obj/structure/lattice/catwalk, +/obj/structure/railing/mapped, +/turf/simulated/open, +/area/horizon/maintenance/deck_3/aft/starboard) "vFG" = ( /obj/effect/floor_decal/industrial/loading/yellow{ dir = 8 @@ -151100,18 +151788,43 @@ }, /turf/simulated/floor/carpet/cyan, /area/shuttle/merchant) -"vFL" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/blast/shutters/open{ - dir = 2; - id = "warehouse4"; - name = "Warehouse Shutter" +"vFJ" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/cable/green{ + icon_state = "4-8" }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/full, -/area/operations/storage) +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/obj/machinery/power/apc/north{ + req_one_access = list(11, 24, 47, 65); + req_access = null + }, +/turf/simulated/floor/plating, +/area/horizon/shuttle/intrepid/port_compartment) +"vFN" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/spline/plain/corner/red, +/obj/effect/floor_decal/spline/plain/purple{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/horizon/service/hydroponics) "vFQ" = ( /obj/machinery/shower{ pixel_y = 20 @@ -151122,19 +151835,38 @@ /obj/machinery/vending/generic_clothing, /turf/unsimulated/floor/freezer, /area/antag/mercenary) -"vFY" = ( -/obj/structure/railing/mapped{ - dir = 8 +"vFR" = ( +/obj/structure/closet/crate{ + name = "Camera Assembly Crate" }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/visible/universal{ - dir = 8 - }, -/obj/structure/platform{ +/obj/item/camera_assembly, +/obj/item/camera_assembly, +/obj/item/camera_assembly, +/obj/item/camera_assembly, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/storage_hard) +"vFS" = ( +/obj/machinery/atmospherics/portables_connector{ dir = 4 }, -/turf/simulated/floor, -/area/maintenance/wing/port/far) +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/atmos) +"vFT" = ( +/obj/effect/floor_decal/corner/black{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/hangar/intrepid) +"vGa" = ( +/obj/effect/floor_decal/industrial/outline/medical, +/obj/structure/closet/secure_closet/personal, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/full, +/area/horizon/medical/washroom) "vGb" = ( /obj/random/pottedplant, /obj/effect/floor_decal/spline/fancy/wood{ @@ -151142,6 +151874,22 @@ }, /turf/unsimulated/floor/wood, /area/antag/raider) +"vGe" = ( +/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{ + dir = 5 + }, +/obj/machinery/power/apc/north, +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_3/central) "vGh" = ( /obj/structure/holohoop{ dir = 8 @@ -151155,34 +151903,35 @@ }, /turf/simulated/floor/holofloor/tiled, /area/horizon/holodeck/source_emptycourt) -"vGj" = ( -/obj/structure/punching_bag, -/obj/effect/floor_decal/corner/brown{ - dir = 9 +"vGn" = ( +/obj/machinery/door/firedoor, +/obj/effect/map_effect/door_helper/unres, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/blast/shutters/open{ + dir = 2; + id = "securitycommandshutter"; + name = "Security Checkpoint External Shutter" }, -/turf/simulated/floor/tiled, -/area/operations/break_room) -"vGk" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 5 +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/map_effect/door_helper/level_access/command_foyer{ + req_one_access_by_level = list("green","yellow"=list(19,38,72),"blue"=list(19,38,72),"red"=list(19,38,72),"delta"=list(19,38,72)); + access_by_level = null }, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/starboard) +/obj/machinery/door/airlock/glass_command{ + dir = 1; + id_tag = "command_foyer"; + name = "Bridge"; + req_one_access = list(19,38,72) + }, +/turf/simulated/floor/tiled/full, +/area/horizon/hallway/primary/deck_3/central) "vGo" = ( /turf/simulated/wall/shuttle/unique/ccia{ icon_state = "10,0" }, /area/shuttle/transport1) -"vGp" = ( -/obj/structure/cable/orange{ - icon_state = "2-8" - }, -/obj/structure/cable/orange{ - icon_state = "2-4" - }, -/obj/structure/lattice/catwalk/indoor, -/turf/simulated/floor/plating, -/area/engineering/bluespace_drive) "vGr" = ( /obj/structure/curtain/black{ icon_state = "open"; @@ -151193,6 +151942,19 @@ }, /turf/unsimulated/floor, /area/centcom/bar) +"vGz" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 5 + }, +/obj/effect/floor_decal/spline/plain/green, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/horizon/service/hydroponics/lower) +"vGA" = ( +/turf/simulated/wall, +/area/horizon/maintenance/deck_1/hangar/starboard) "vGB" = ( /obj/machinery/chemical_dispenser/ert{ dir = 4 @@ -151207,59 +151969,71 @@ /obj/effect/decal/cleanable/vomit, /turf/unsimulated/floor, /area/centcom/legion) -"vGD" = ( -/obj/machinery/portable_atmospherics/canister/empty, -/obj/effect/floor_decal/industrial/outline/grey, -/turf/simulated/floor/tiled/dark, -/area/horizon/maintenance/deck_three/aft/starboard) -"vGE" = ( -/obj/effect/map_effect/window_spawner/full/borosilicate/reinforced/firedoor, -/obj/machinery/door/blast/shutters/open{ - id = "RnDShutters"; - dir = 4 +"vGF" = ( +/turf/simulated/wall/r_wall, +/area/horizon/maintenance/deck_1/wing/starboard) +"vGG" = ( +/obj/structure/table/wood, +/obj/item/storage/box/fancy/candle_box, +/obj/item/storage/box/fancy/candle_box, +/obj/item/storage/box/fancy/candle_box, +/obj/item/holomenu, +/obj/item/book/manual/barman_recipes, +/obj/item/stack/packageWrap, +/obj/item/reagent_containers/food/drinks/shaker, +/obj/machinery/newscaster/west, +/obj/machinery/light{ + dir = 1 }, +/obj/item/device/destTagger, +/turf/simulated/floor/tiled/dark, +/area/horizon/service/bar/backroom) +"vGI" = ( +/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, /turf/simulated/floor/tiled/dark/full, -/area/rnd/lab) -"vGK" = ( -/obj/structure/table/standard, -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/item/paper_bin, -/obj/item/pen, -/turf/simulated/floor/tiled/white, -/area/medical/reception) +/area/horizon/operations/commissary) "vGM" = ( /turf/simulated/wall/elevator, /area/centcom/legion) -"vGN" = ( -/obj/structure/flora/pottedplant{ - icon_state = "plant-33" +"vGO" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 6 +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 }, -/obj/machinery/alarm/east, -/turf/simulated/floor/wood, -/area/rnd/hallway/secondary) -"vGQ" = ( -/obj/machinery/atmospherics/pipe/simple/visible/supply{ - dir = 5 +/obj/structure/lattice/catwalk/indoor/grate, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor, +/area/horizon/command/bridge/upperdeck) +"vGP" = ( +/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/engineering/atmos/air) -"vGS" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 +/area/horizon/shuttle/quark/cockpit) +"vHc" = ( +/obj/effect/floor_decal/corner/dark_green/diagonal, +/obj/machinery/light{ + dir = 4 }, +/obj/effect/floor_decal/industrial/loading/yellow{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/alarm/east, /turf/simulated/floor/tiled, -/area/engineering/lobby) -"vGV" = ( -/obj/structure/lattice/catwalk, -/obj/structure/ladder/up{ - pixel_y = 16 - }, -/obj/item/hullbeacon/red, -/turf/space/dynamic, -/area/template_noop) +/area/horizon/stairwell/starboard/deck_1) "vHd" = ( /obj/structure/curtain/open/shower, /obj/machinery/shower{ @@ -151267,21 +152041,40 @@ }, /turf/simulated/floor/tiled/white, /area/merchant_station) -"vHg" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 +"vHf" = ( +/obj/effect/floor_decal/corner_wide/paleblue{ + dir = 6 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 +/obj/structure/table/standard, +/obj/item/reagent_containers/spray/cleaner{ + desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; + icon_state = "sterilesprayblue"; + name = "surgery cleaner" }, -/obj/structure/cable/green{ +/turf/simulated/floor/tiled/white, +/area/horizon/medical/surgery) +"vHi" = ( +/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" }, -/turf/simulated/floor/tiled/full, -/area/horizon/hallway/deck_three/primary/starboard) +/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/horizon/engineering/hallway/interior) "vHj" = ( /obj/structure/table/wood, /obj/item/paper_bin{ @@ -151296,53 +152089,95 @@ icon_state = "wood" }, /area/centcom/distress_prep) -"vHn" = ( -/obj/effect/floor_decal/corner/dark_green/full{ - dir = 4 +"vHo" = ( +/obj/machinery/door/airlock/multi_tile/glass{ + dir = 2; + name = "Hangar" }, -/obj/structure/table/standard, -/obj/machinery/cell_charger, -/obj/item/paper_scanner, -/obj/item/device/paicard, -/turf/simulated/floor/tiled, -/area/storage/primary) -"vHv" = ( -/obj/machinery/power/supermatter, -/obj/machinery/mass_driver{ - dir = 1; - id = "enginecore" +/obj/machinery/door/firedoor/multi_tile{ + dir = 2 }, -/obj/effect/floor_decal/industrial/warning/full, -/turf/simulated/floor/reinforced/reactor, -/area/engineering/engine_room) +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/blast/shutters/open{ + dir = 8; + id = "shutters_hangardeskcpport"; + name = "Security Checkpoint Shutter" + }, +/obj/machinery/door/blast/regular/open{ + id = "hangarlockdown"; + name = "Hangar Lockdown" + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/security/checkpoint) +"vHq" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/simulated/floor/tiled/dark, +/area/horizon/maintenance/deck_2/wing/starboard) "vHL" = ( /obj/structure/table/standard, /obj/item/clipboard, /obj/item/pen, /turf/simulated/floor/tiled, /area/merchant_station/warehouse) -"vHR" = ( -/obj/structure/cable/green{ - icon_state = "1-2" +"vHQ" = ( +/obj/structure/table/standard, +/obj/effect/floor_decal/corner/mauve{ + dir = 5 }, +/obj/item/device/destTagger{ + pixel_y = 7; + pixel_x = -3 + }, +/obj/item/stack/packageWrap, +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/xenological) +"vHV" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/service/chapel/office) +"vIa" = ( +/obj/item/paper_bin, +/obj/item/pen, +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/shutters{ + id = "vacant_office"; + name = "Public Office Desk Shutter" + }, +/obj/structure/table/reinforced, +/obj/machinery/door/window/desk/southleft{ + name = "Desk Access" + }, +/turf/simulated/floor/tiled, +/area/horizon/crew/vacantoffice) +"vIc" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 5 + }, +/obj/machinery/door/firedoor, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/full, +/area/horizon/hallway/primary/deck_2/central) +"vId" = ( /obj/effect/floor_decal/corner/dark_blue{ dir = 9 }, +/obj/effect/floor_decal/industrial/loading/yellow{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled/dark, -/area/storage/eva) -"vHW" = ( -/obj/structure/shuttle_part/scc/mining{ - icon_state = "1,2" - }, -/turf/simulated/floor/plating, -/area/shuttle/mining) -"vIb" = ( -/obj/structure/ship_weapon_dummy, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/reinforced, -/area/horizon/grauwolf) +/area/horizon/weapons/grauwolf) "vIi" = ( /obj/structure/flora/ausbushes/fullgrass, /obj/effect/decal/fake_object/light_source/invisible{ @@ -151353,6 +152188,44 @@ }, /turf/simulated/floor/exoplanet/grass/grove, /area/centcom/shared_dream) +"vIj" = ( +/obj/machinery/artifact_scanpad, +/obj/effect/floor_decal/spline/plain{ + dir = 10 + }, +/turf/simulated/floor/bluegrid, +/area/horizon/rnd/xenoarch/isolation_b) +"vIp" = ( +/obj/machinery/door/firedoor{ + req_one_access = list(24,11,67,73); + dir = 4 + }, +/obj/effect/floor_decal/industrial/hatch_door/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/glass_service{ + dir = 8; + name = "Buffet" + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/shuttle/intrepid/buffet) +"vIt" = ( +/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/horizon/rnd/xenoarch/atrium) "vIw" = ( /obj/effect/floor_decal/spline/plain{ dir = 4 @@ -151373,167 +152246,151 @@ }, /turf/simulated/floor/tiled/white, /area/horizon/security/autopsy_laboratory) -"vIK" = ( -/obj/structure/platform, -/obj/structure/table/standard, -/obj/machinery/photocopier/faxmachine{ - department = "Research Director's Office" - }, -/turf/simulated/floor/wood, -/area/crew_quarters/heads/hor) -"vIQ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 10 - }, -/obj/random/dirt_75, -/turf/simulated/floor, -/area/maintenance/wing/port/far) -"vIS" = ( -/obj/effect/landmark/entry_point/starboard{ - name = "starboard, d1 maintenance foreside" - }, -/turf/simulated/wall/shuttle/scc_space_ship/cardinal, -/area/maintenance/wing/starboard/deck1) -"vJe" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 10 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/hangar/control) -"vJo" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 6 - }, -/turf/simulated/floor/wood, -/area/chapel/main) -"vJx" = ( -/obj/effect/floor_decal/industrial/warning{ +"vIE" = ( +/obj/structure/railing/mapped{ dir = 8 }, -/obj/random/loot{ - pixel_x = -10 - }, -/obj/random/dirt_75, -/obj/random/dirt_75, +/obj/machinery/light, +/obj/machinery/vending/robotics, +/obj/effect/floor_decal/corner/black/full, /turf/simulated/floor/tiled, -/area/maintenance/wing/port/far) -"vJy" = ( -/obj/machinery/artifact_analyser, -/obj/effect/floor_decal/spline/plain{ +/area/horizon/operations/machinist) +"vIY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/rnd/xenoarch/storage) +"vIZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/fuel, +/turf/simulated/wall/shuttle/unique/scc/scout{ + icon_state = "6,5" + }, +/area/horizon/shuttle/canary) +"vJc" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/effect/floor_decal/corner/brown{ dir = 6 }, -/turf/simulated/floor/bluegrid, -/area/rnd/isolation_a) +/turf/simulated/floor/tiled, +/area/horizon/operations/office) +"vJd" = ( +/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 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/full, +/area/horizon/hallway/primary/deck_2/central) +"vJj" = ( +/obj/structure/table/wood, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/obj/item/reagent_containers/food/condiment/shaker/salt{ + pixel_x = 6; + pixel_y = 7 + }, +/obj/item/reagent_containers/food/condiment/shaker/peppermill{ + pixel_x = 6; + pixel_y = 4 + }, +/obj/structure/platform{ + dir = 8 + }, +/obj/random/pottedplant_small{ + spawn_nothing_percentage = 25; + name = "random potted plant, small (25% nothing)"; + pixel_y = -1; + pixel_x = -1 + }, +/turf/simulated/floor/wood, +/area/horizon/service/dining_hall) +"vJq" = ( +/obj/effect/floor_decal/spline/fancy/wood/corner{ + dir = 8 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/horizon/command/bridge/meeting_room) "vJB" = ( /obj/effect/floor_decal/corner/lime{ dir = 5 }, /turf/unsimulated/floor, /area/antag/jockey) -"vJC" = ( -/obj/structure/cable/green{ - icon_state = "1-2" +"vJI" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/full, +/area/horizon/operations/mining_main/refinery) +"vJK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 }, -/obj/structure/cable/green{ - icon_state = "1-8" +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/corner_wide/green{ - dir = 6 - }, -/obj/structure/disposalpipe/sortjunction/flipped{ - dir = 1; - name = "CMO Office"; - sortType = "CMO Office" - }, -/obj/structure/railing/mapped{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/hallway/medical/upper) -"vJE" = ( -/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/stairwell/central) -"vJF" = ( -/obj/structure/cable/yellow{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/power/apc/low/west, -/turf/simulated/floor/carpet/rubber, -/area/maintenance/engineering/auxillary) -"vJG" = ( -/obj/machinery/door/firedoor{ - req_one_access = list(24,11,67,73); - dir = 4 - }, -/obj/effect/floor_decal/industrial/hatch_door/yellow, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/wood, +/area/horizon/repoffice/representative_two) +"vJP" = ( +/obj/effect/floor_decal/corner/green/diagonal, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 + dir = 4 }, /obj/structure/cable/green{ icon_state = "4-8" }, -/obj/structure/curtain/open/medical, -/turf/simulated/floor/tiled/dark/full, -/area/shuttle/intrepid/medical) -"vJM" = ( -/obj/structure/table/steel, -/obj/item/device/radio/intercom/north, -/obj/effect/floor_decal/corner/purple{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/horizon/custodial) -"vJT" = ( -/obj/effect/decal/cleanable/cobweb2, -/obj/structure/trash_pile, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard/deck1) +/obj/machinery/light, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/ward/isolation) "vJW" = ( /obj/item/ore, /obj/effect/decal/cleanable/dirt, /turf/unsimulated/floor, /area/antag/raider) -"vKd" = ( -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 4 - }, -/obj/machinery/light/floor{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology/xenoflora) "vKe" = ( /obj/effect/floor_decal/corner/red/full{ dir = 8 }, /turf/unsimulated/floor, /area/centcom/control) -"vKh" = ( +"vKj" = ( +/obj/effect/floor_decal/corner_wide/purple{ + dir = 8 + }, +/obj/effect/floor_decal/corner_wide/purple{ + dir = 6 + }, /obj/structure/cable/green{ icon_state = "1-2" }, -/obj/effect/landmark{ - name = "borerstart" - }, -/obj/effect/floor_decal/industrial/warning{ +/obj/structure/platform{ dir = 8 }, -/turf/simulated/floor/tiled/full, -/area/engineering/storage_hard) +/obj/machinery/camera/network/research{ + c_tag = "Research - Xenoarchaeology Suits"; + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/xenoarch/atrium) "vKk" = ( /obj/structure/flora/ausbushes/ywflowers, /obj/effect/floor_decal/spline/plain{ @@ -151541,55 +152398,170 @@ }, /turf/simulated/floor/exoplanet/grass/grove, /area/centcom/shared_dream) +"vKo" = ( +/obj/effect/floor_decal/corner_wide/yellow/full{ + dir = 1 + }, +/obj/machinery/alarm/north, +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/turf/simulated/floor/tiled, +/area/horizon/engineering/bluespace_drive) +"vKp" = ( +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/horizon/hangar/intrepid) +"vKt" = ( +/obj/structure/platform/ledge, +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/closet/crate, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/platform_deco/ledge{ + dir = 9 + }, +/obj/random/loot, +/obj/structure/engineer_maintenance/pipe/wall, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/operations/machinist) "vKu" = ( /obj/effect/shuttle_landmark/legion/interim, /turf/space/transit/east, /area/template_noop) -"vKw" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 6 - }, -/obj/machinery/alarm/east, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 +"vKv" = ( +/turf/simulated/open, +/area/horizon/hallway/primary/deck_2/central) +"vKx" = ( +/obj/machinery/light/small/emergency{ + dir = 4 }, /turf/simulated/floor/tiled/dark/full, -/area/engineering/engine_monitoring/rust) -"vKy" = ( -/obj/structure/cable{ - icon_state = "1-2" +/area/horizon/maintenance/deck_3/aft/port/far) +"vKA" = ( +/obj/item/storage/photo_album, +/obj/item/device/camera_film, +/obj/item/device/camera, +/obj/structure/closet/secure_closet{ + name = "\improper Journalist's closet"; + req_access = list(70) }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/airlock/maintenance_hatch{ - dir = 1 +/obj/item/paper_scanner, +/obj/item/folder/white, +/obj/item/storage/secure/briefcase, +/obj/item/clipboard, +/obj/item/folder/red, +/obj/machinery/light{ + dir = 4 }, -/turf/simulated/floor/tiled, -/area/maintenance/wing/starboard/deck1) -"vKL" = ( -/obj/effect/floor_decal/corner/mauve/full{ - dir = 1 - }, -/obj/random/pottedplant, -/obj/machinery/alarm/north, -/turf/simulated/floor/tiled, -/area/rnd/hallway) -"vKN" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ +/obj/effect/floor_decal/spline/fancy/wood{ dir = 5 }, -/turf/simulated/floor/plating, -/area/rnd/xenoarch_atrium) -"vKP" = ( -/obj/structure/table/steel, -/obj/item/device/flashlight/lamp, -/turf/simulated/floor/reinforced, -/area/rnd/isolation_a) +/obj/item/device/radio/microphone, +/turf/simulated/floor/wood, +/area/horizon/crew/journalistoffice) +"vKB" = ( +/obj/structure/sign/flag/scc{ + pixel_y = 30 + }, +/obj/structure/table/standard, +/obj/machinery/photocopier/faxmachine{ + anchored = 0; + department = "Human Resources"; + pixel_y = 4; + req_one_access = list(38,19,72) + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/machinery/firealarm/west, +/turf/simulated/floor/tiled/full, +/area/horizon/command/bridge/cciaroom) +"vKF" = ( +/obj/structure/closet/emcloset, +/obj/effect/floor_decal/corner/dark_green{ + dir = 9 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/outline/emergency_closet, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_2/starboard) +"vKH" = ( +/obj/machinery/button/remote/blast_door{ + dir = 1; + id = "turbineinterior"; + name = "Interior Blast Door"; + pixel_x = 6; + pixel_y = 22; + req_access = list(24) + }, +/obj/machinery/button/remote/blast_door{ + dir = 1; + id = "turbineexterior"; + name = "Exterior Blast Door"; + pixel_y = 22; + pixel_x = -6; + req_access = list(24) + }, +/obj/machinery/button/remote/airlock{ + dir = 1; + id = "turbine_combustion"; + name = "Door Bolt Control"; + pixel_y = 32; + req_access = list(24); + specialfunctions = 4 + }, +/obj/effect/floor_decal/corner/dark_blue{ + dir = 4 + }, +/obj/effect/floor_decal/corner/yellow{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/visible/purple{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/atmos/turbine) +"vKO" = ( +/obj/effect/floor_decal/corner/purple{ + dir = 9 + }, +/obj/machinery/light_switch{ + dir = 8; + pixel_x = -22; + pixel_y = 23 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/turf/simulated/floor/tiled, +/area/horizon/service/custodial/auxiliary) "vKQ" = ( /obj/effect/decal/fake_object{ icon = 'icons/misc/beach.dmi'; @@ -151611,6 +152583,18 @@ }, /turf/unsimulated/floor/monotile, /area/antag/raider) +"vKX" = ( +/obj/machinery/door/blast/regular{ + dir = 4; + id = "r-ust_vent"; + name = "INDRA Reactor Vent" + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/effect/floor_decal/industrial/loading/yellow{ + dir = 1 + }, +/turf/simulated/floor/reinforced/airless, +/area/horizon/engineering/reactor/indra/mainchamber) "vKY" = ( /obj/machinery/atmospherics/pipe/manifold4w/hidden, /obj/effect/decal/cleanable/dirt, @@ -151623,17 +152607,43 @@ }, /turf/simulated/floor/holofloor/tiled, /area/horizon/holodeck/source_lasertag) -"vLg" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 4 +"vLk" = ( +/obj/effect/floor_decal/industrial/hatch_door/yellow{ + dir = 8 }, -/turf/simulated/floor/wood, -/area/rnd/hallway/secondary) -"vLh" = ( -/obj/machinery/portable_atmospherics/canister/carbon_dioxide, -/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/door/firedoor{ + req_one_access = list(24,11,67,73) + }, +/obj/machinery/door/airlock/hatch{ + name = "Starboard Nacelle" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden, /turf/simulated/floor/tiled/dark/full, -/area/engineering/storage_hard) +/area/horizon/shuttle/intrepid/engineering) +"vLn" = ( +/obj/structure/sign/electricshock{ + pixel_x = 32 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/obj/machinery/power/smes/buildable/substation{ + name = "C-Goliath Drive - Main Circuit"; + RCon_tag = "C-Goliath Drive - Main Circuit" + }, +/obj/structure/cable/green{ + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/horizon/engineering/bluespace_drive) "vLo" = ( /obj/structure/grille, /obj/machinery/door/blast/regular{ @@ -151647,50 +152657,49 @@ /obj/structure/window/shuttle/scc_space_ship/cardinal, /turf/simulated/floor/plating, /area/horizon/security/meeting_room) -"vLv" = ( -/obj/structure/cable/green{ - icon_state = "4-8" +"vLp" = ( +/obj/structure/plasticflaps/airtight{ + dir = 4 }, +/obj/machinery/door/airlock/freezer{ + dir = 4; + name = "Freezer"; + req_access = list(28) + }, +/obj/machinery/door/firedoor, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/full, +/area/horizon/service/kitchen/freezer) +"vLq" = ( +/obj/structure/railing/mapped, +/obj/effect/floor_decal/industrial/warning, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/service/port) +"vLt" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/machinery/camera/network/service{ + c_tag = "Service - Chapel Starboard"; + dir = 1 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/machinery/alarm/north, -/turf/simulated/floor/plating, -/area/maintenance/security_port) -"vLA" = ( -/obj/structure/platform, -/obj/structure/platform_deco, -/turf/simulated/floor/reinforced, -/area/bridge/controlroom) -"vLB" = ( -/turf/simulated/wall/r_wall, -/area/rnd/xenobiology/hazardous) -"vLD" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 9 - }, -/obj/machinery/newscaster/west, -/obj/structure/sink/kitchen{ - dir = 4; - name = "water fountain"; - pixel_x = -20 - }, -/obj/effect/floor_decal/industrial/outline/grey, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/port) -"vLJ" = ( -/obj/structure/railing/mapped{ +/obj/structure/platform_stairs/full/east_west_cap{ dir = 8 }, -/turf/simulated/floor/tiled, -/area/horizon/hydroponics/lower) +/obj/structure/platform/cutout, +/turf/simulated/floor/lino, +/area/horizon/service/chapel/main) +"vLF" = ( +/obj/structure/closet/secure_closet/captains, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/horizon/command/heads/captain) "vLK" = ( /obj/structure/table/holotable, /obj/machinery/readybutton, @@ -151707,38 +152716,36 @@ /obj/effect/floor_decal/industrial/outline/red, /turf/simulated/floor/tiled/dark/full, /area/horizon/security/armoury) -"vLR" = ( -/obj/structure/table/rack, -/obj/effect/floor_decal/industrial/warning{ - dir = 5 +"vMb" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 6 }, -/obj/random/tool, -/obj/structure/sign/fire{ - desc = "A caution sign which reads 'COMBUSTION TURBINE'."; - name = "\improper COMBUSTION TURBINE sign"; - pixel_y = -32 - }, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"vLS" = ( -/obj/machinery/atmospherics/pipe/manifold4w/visible, +/obj/structure/table/standard, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/item/device/hand_labeler, +/obj/item/device/hand_labeler, +/obj/machinery/firealarm/east, /turf/simulated/floor/tiled, -/area/maintenance/aux_atmospherics/deck_2/starboard/wing) -"vLZ" = ( -/obj/machinery/alarm/north, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 5 +/area/horizon/storage/primary) +"vMc" = ( +/obj/machinery/light, +/obj/effect/floor_decal/corner_wide/blue/full{ + dir = 4 }, -/turf/simulated/floor/tiled/dark, -/area/horizon/grauwolf) -"vMh" = ( -/obj/effect/floor_decal/corner/red/diagonal, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small/emergency{ +/obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 }, -/turf/simulated/floor/tiled, -/area/horizon/maintenance/deck_three/aft/starboard) +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/storage/tech) +"vMe" = ( +/obj/machinery/atmospherics/binary/pump{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/horizon/rnd/xenoarch/atrium) "vMl" = ( /obj/structure/table/rack, /obj/item/clothing/under/color/red, @@ -151749,43 +152756,69 @@ /obj/effect/decal/fake_object/light_source/invisible, /turf/simulated/floor, /area/tdome/tdome2) -"vMm" = ( -/obj/structure/lattice/catwalk/indoor, -/obj/effect/floor_decal/industrial/outline/red, -/obj/structure/bed/handrail{ - dir = 4 - }, -/obj/item/hullbeacon/red, -/turf/simulated/floor/plating, -/area/shuttle/intrepid/port_compartment) -"vMB" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/floor_decal/corner/dark_green/full{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hangar/intrepid) -"vMD" = ( -/obj/effect/floor_decal/corner_wide/lime{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/reception) -"vMI" = ( -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/effect/floor_decal/corner_wide/green{ +"vMr" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/effect/floor_decal/industrial/warning{ dir = 5 }, -/obj/effect/floor_decal/industrial/warning{ +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/closet/radiation, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/reactor/indra/monitoring) +"vMv" = ( +/obj/machinery/light/small{ dir = 1 }, -/turf/simulated/floor/tiled/white, -/area/hallway/medical) +/obj/effect/floor_decal/corner/lime{ + dir = 5 + }, +/obj/machinery/firealarm/west, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/structure/closet/crate{ + name = "Cremation Urn Materials" + }, +/obj/item/stack/material/wood/full, +/obj/item/stack/material/steel/full, +/obj/item/stack/material/bronze/full, +/obj/item/stack/material/glass/full, +/obj/item/device/hand_labeler, +/turf/simulated/floor/tiled/white{ + name = "cooled white floor"; + temperature = 278.15 + }, +/area/horizon/medical/morgue) +"vMz" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/turf/simulated/floor/plating, +/area/horizon/hangar/intrepid) +"vMA" = ( +/obj/machinery/door/blast/shutters/open{ + dir = 2; + id = "shutters_deck2_eng_frontdesk"; + name = "Engineering Front Desk Shutter" + }, +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/machinery/door/window/desk/northleft{ + req_access = list(10); + name = "Engineering Front Desk Internal" + }, +/obj/machinery/ringer_button{ + id = "engie_ringer"; + pixel_x = -9; + pixel_y = -9 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/lobby) +"vMH" = ( +/obj/structure/bed/stool, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/port/far) "vML" = ( /obj/effect/floor_decal/corner/paleblue{ dir = 9 @@ -151799,126 +152832,180 @@ }, /turf/unsimulated/floor/plating, /area/centcom/specops) -"vNa" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, +"vMN" = ( +/obj/structure/closet/wardrobe/xenos, +/obj/item/clothing/shoes/footwraps, +/obj/item/clothing/shoes/footwraps, +/obj/item/clothing/shoes/workboots/toeless, +/obj/item/clothing/shoes/workboots/toeless, +/obj/item/clothing/shoes/jackboots/toeless, +/obj/item/clothing/shoes/jackboots/toeless, +/obj/effect/floor_decal/corner/dark_green/full, +/turf/simulated/floor/tiled, +/area/horizon/crew/fitness/changing) +"vMY" = ( +/obj/structure/sink/kitchen{ + pixel_y = 27 + }, +/obj/effect/floor_decal/corner/grey/diagonal{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/service/cafeteria) +"vNe" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/chem_heater, /obj/effect/floor_decal/spline/plain{ - dir = 1 + dir = 10 }, -/obj/machinery/vending/frontiervend, -/turf/simulated/floor/tiled/dark, -/area/hallway/primary/central_one) -"vNb" = ( -/obj/structure/cable/orange{ - icon_state = "1-2" +/turf/simulated/floor/lino, +/area/horizon/service/cafeteria) +"vNg" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/corner/mauve{ + dir = 10 }, -/obj/structure/cable/orange{ - icon_state = "2-8" - }, -/turf/simulated/floor/plating, -/area/engineering/bluespace_drive) -"vNd" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 8 - }, -/obj/machinery/hologram/holopad, -/obj/machinery/newscaster/west, -/turf/simulated/floor/wood, -/area/chapel/office) +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/xenobiology/hazardous) "vNk" = ( /obj/effect/floor_decal/corner/green/diagonal, /obj/structure/engineer_maintenance/pipe/wall, /turf/simulated/floor/tiled/white, /area/horizon/security/brig) -"vNz" = ( -/obj/machinery/light{ +"vNs" = ( +/obj/structure/flora/ausbushes/palebush, +/turf/simulated/floor/grass/no_edge, +/area/horizon/service/cafeteria) +"vNw" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/effect/floor_decal/corner/dark_blue{ dir = 8 }, -/turf/simulated/floor/grass/no_edge, -/area/horizon/hydroponics/lower) +/obj/effect/floor_decal/corner/yellow, +/obj/machinery/camera/network/engineering{ + c_tag = "Engineering - Combustion Turbine Room"; + dir = 1; + pixel_x = -11 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/atmos/turbine) +"vND" = ( +/obj/structure/sign/fire{ + desc = "A caution sign which reads 'STARBOARD PROPULSION'."; + name = "\improper STARBOARD PROPULSION sign"; + pixel_y = 32 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/main/port) "vNF" = ( /obj/effect/floor_decal/industrial/warning, /obj/machinery/light, /turf/unsimulated/floor/plating, /area/centcom/specops) -"vNG" = ( -/obj/machinery/door/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "EngineBlast"; - name = "Engine Monitoring Room Blast Doors"; - opacity = 0 +"vNK" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 8 }, -/obj/effect/map_effect/window_spawner/full/borosilicate/reinforced/firedoor, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/engine_monitoring) -"vNN" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 +/obj/machinery/door/airlock/external, +/obj/effect/map_effect/marker/airlock{ + frequency = 1003; + master_tag = "airlock_horizon_deck_1_starboard_1"; + name = "airlock_horizon_deck_1_starboard_1" }, -/turf/simulated/floor/tiled, -/area/engineering/storage_eva) +/obj/effect/map_effect/marker_helper/airlock/interior, +/obj/machinery/access_button{ + dir = 1; + pixel_x = -28; + pixel_y = 12 + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/wing/starboard/far) "vNS" = ( /turf/simulated/floor/holofloor/reinforced, /area/horizon/holodeck/source_plating) -"vNX" = ( -/obj/structure/foamedmetal, -/turf/simulated/floor/plating, -/area/maintenance/wing/port) -"vNY" = ( -/obj/effect/floor_decal/industrial/warning{ +"vNU" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/horizon/service/bar) +"vOb" = ( +/obj/effect/shuttle_landmark/lift/operations_second_deck, +/turf/simulated/open, +/area/horizon/operations/office) +"vOd" = ( +/obj/structure/table/standard, +/obj/effect/floor_decal/corner/green/full, +/obj/machinery/alarm/south, +/turf/simulated/floor/tiled/white, +/area/horizon/crew/fitness/showers) +"vOg" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/horizon/operations/warehouse) +"vOo" = ( +/obj/machinery/button/remote/airlock{ + dir = 1; + id = "cargobreak_shower"; + name = "Door Bolt Control"; + pixel_x = 7; + pixel_y = 25; + specialfunctions = 4 + }, +/obj/machinery/light/small{ dir = 1 }, -/obj/random/dirt_75, -/turf/simulated/floor/plating, -/area/maintenance/wing/port/far) -"vNZ" = ( +/obj/machinery/shower{ + dir = 4 + }, +/obj/random/contraband, +/turf/simulated/floor/tiled/freezer, +/area/horizon/operations/break_room) +"vOt" = ( +/obj/effect/floor_decal/corner/black{ + dir = 5 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/effect/floor_decal/corner/purple/diagonal, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/structure/table/steel, -/obj/item/material/stool/chair/folding{ - pixel_y = 20 - }, -/obj/item/material/stool/chair/folding{ - pixel_y = 22 - }, -/obj/structure/railing/mapped{ +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/turf/simulated/floor/tiled/dark, -/area/horizon/custodial/disposals) -"vOf" = ( -/obj/structure/sign/nosmoking_1{ - pixel_y = 32 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 10 - }, -/turf/simulated/floor/plating, -/area/maintenance/engineering) -"vOm" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 5 +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 }, /turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/port/docks) -"vOp" = ( -/obj/structure/cable{ - icon_state = "1-2" +/area/horizon/rnd/hallway) +"vOw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 }, -/obj/effect/floor_decal/corner/dark_blue/diagonal, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/dark, -/area/turret_protected/ai_upload_foyer) +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/main/port) +"vOC" = ( +/obj/structure/closet/secure_closet/bridge_crew, +/obj/effect/floor_decal/corner/dark_blue{ + dir = 6 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled, +/area/horizon/command/bridge/supply) "vOE" = ( /obj/effect/floor_decal/corner/red/diagonal, /obj/effect/floor_decal/spline/plain, @@ -151927,51 +153014,25 @@ }, /turf/simulated/floor/tiled, /area/merchant_station) -"vOG" = ( -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ +"vOF" = ( +/obj/effect/floor_decal/corner/dark_green{ dir = 9 }, -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/floor_decal/spline/plain{ - dir = 4 - }, -/obj/structure/table/reinforced/steel, -/obj/item/storage/box/snack{ - desc = "A box full of snack foods. A label is attached that reads, 'Sorry about the microwaves.'"; - name = "corporate care package" - }, -/turf/simulated/floor/carpet/rubber, -/area/engineering/bluespace_drive/monitoring) -"vOI" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden, -/turf/simulated/floor/plating, -/area/medical/cryo) -"vOR" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/effect/floor_decal/spline/plain{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/obj/machinery/disposal/small/south, -/obj/structure/disposalpipe/trunk, /obj/effect/floor_decal/spline/plain{ dir = 8 }, -/turf/simulated/floor/tiled/white, -/area/horizon/kitchen) +/obj/structure/bed/stool/chair/office/light{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/horizon/service/hydroponics) +"vON" = ( +/obj/machinery/light/small/emergency{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/dark, +/area/horizon/maintenance/deck_2/wing/starboard/far) "vOT" = ( /obj/machinery/door/airlock/glass_centcom{ dir = 4; @@ -151979,32 +153040,59 @@ }, /turf/unsimulated/floor, /area/centcom/bar) -"vOV" = ( -/obj/machinery/atmospherics/pipe/simple/visible/green{ - dir = 9 +"vOU" = ( +/obj/machinery/light{ + dir = 4 }, -/obj/machinery/light, -/turf/simulated/floor/plating, -/area/engineering/engine_room) +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/gravity_gen) "vOY" = ( /obj/machinery/photocopier, /turf/simulated/floor/wood, /area/merchant_station) +"vPb" = ( +/obj/machinery/vending/hydronutrients/xenobotany, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark, +/area/horizon/rnd/xenobiology/xenoflora) "vPd" = ( /obj/effect/floor_decal/industrial/outline/security, /turf/simulated/floor/tiled/dark/full, /area/horizon/security/firing_range) -"vPg" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +"vPe" = ( +/obj/effect/floor_decal/corner_wide/yellow/diagonal, +/obj/structure/extinguisher_cabinet/east, +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/break_room) +"vPf" = ( /obj/structure/cable/green{ icon_state = "4-8" }, -/obj/structure/lattice/catwalk/indoor/grate, -/turf/simulated/floor/plating, -/area/hallway/primary/central_two) +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/corner/brown{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/horizon/operations/loading) +"vPi" = ( +/obj/machinery/atmospherics/pipe/simple/visible/green{ + dir = 4 + }, +/obj/structure/closet/firecloset/full, +/obj/effect/floor_decal/industrial/outline/firefighting_closet, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/atmos/propulsion) "vPk" = ( /obj/structure/curtain/open/shower, /obj/effect/floor_decal/spline/fancy{ @@ -152012,84 +153100,55 @@ }, /turf/simulated/floor/tiled/freezer, /area/shuttle/skipjack) -"vPo" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/purple, -/obj/effect/floor_decal/corner_wide/black{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/engineering/atmos/propulsion/starboard) +"vPn" = ( +/obj/machinery/suit_cycler/medical, +/turf/simulated/floor/tiled, +/area/horizon/medical/paramedic) "vPs" = ( /obj/structure/bed/stool/chair/shuttle{ dir = 4 }, /turf/simulated/floor/tiled/dark, /area/shuttle/syndicate_elite) -"vPu" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/machinery/door/airlock/external, -/obj/machinery/access_button{ - dir = 4; - pixel_x = -20; - pixel_y = 28 - }, -/obj/effect/map_effect/marker/airlock{ - frequency = 1004; - master_tag = "airlock_horizon_deck_1_fore_1"; - name = "airlock_horizon_deck_1_fore_1" - }, -/obj/effect/map_effect/marker_helper/airlock/interior, -/turf/simulated/floor/plating, -/area/maintenance/hangar/starboard) "vPx" = ( /obj/effect/map_effect/perma_light/starlight, /obj/structure/grille, /turf/space/dynamic, /area/template_noop) -"vPA" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 6 +"vPO" = ( +/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/engineering/lobby) -"vPB" = ( -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology/dissection) -"vPE" = ( -/obj/structure/ship_weapon_dummy, -/turf/template_noop, -/area/horizon/grauwolf) -"vPK" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/effect/floor_decal/spline/fancy/wood, -/turf/simulated/floor/wood, -/area/crew_quarters/heads/hor) -"vPL" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/structure/lattice/catwalk/indoor, -/turf/simulated/floor/plating, -/area/engineering/engine_room/rust) +/area/horizon/shuttle/quark/cockpit) "vPT" = ( /obj/machinery/telecomms/server/presets/centcomm, /turf/unsimulated/floor{ icon_state = "dark_preview" }, /area/centcom/control) +"vPU" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 4 + }, +/obj/machinery/meter, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/reactor/supermatter/mainchamber) "vQc" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -152128,6 +153187,15 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/holodeck_control) +"vQh" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 10 + }, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/command/teleporter) "vQi" = ( /obj/effect/map_effect/window_spawner/full/reinforced/grille/firedoor, /obj/structure/cable/green{ @@ -152135,6 +153203,17 @@ }, /turf/simulated/floor/tiled, /area/horizon/security/brig) +"vQk" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 9 + }, +/obj/effect/floor_decal/corner/dark_green{ + dir = 9 + }, +/obj/machinery/door/firedoor, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/full, +/area/horizon/hallway/primary/deck_1/central) "vQl" = ( /obj/effect/floor_decal/spline/plain{ dir = 5 @@ -152148,38 +153227,47 @@ }, /turf/simulated/floor/holofloor/tiled, /area/horizon/holodeck/source_gym) -"vQs" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/machinery/camera/network/first_deck{ - c_tag = "First Deck - Hangar 6"; - dir = 4 - }, -/obj/effect/floor_decal/corner/dark_green{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/hangar/intrepid) -"vQw" = ( +"vQu" = ( /obj/effect/floor_decal/corner/dark_blue/full{ dir = 8 }, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/photocopier, /turf/simulated/floor/tiled, -/area/bridge/controlroom) +/area/horizon/command/bridge/controlroom) +"vQv" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/obj/machinery/door/airlock/glass{ + dir = 4 + }, +/turf/simulated/floor/tiled/full, +/area/horizon/hallway/primary/deck_2/starboard) +"vQy" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 5 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/horizon/command/bridge/upperdeck) "vQC" = ( /obj/structure/table/rack, /turf/simulated/floor/tiled/dark, /area/horizon/holodeck/source_pool) -"vQD" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/operations/lobby) "vQG" = ( /obj/structure/toilet{ dir = 4; @@ -152187,26 +153275,6 @@ }, /turf/unsimulated/floor, /area/centcom/specops) -"vQI" = ( -/obj/structure/table/rack, -/obj/random/loot, -/obj/effect/floor_decal/corner/red/diagonal, -/turf/simulated/floor/tiled, -/area/horizon/maintenance/deck_three/aft/starboard) -"vQM" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 6 - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/machinery/alarm/west, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/aux{ - dir = 5 - }, -/turf/simulated/floor/plating, -/area/maintenance/research_port) "vQN" = ( /obj/structure/railing/mapped, /obj/effect/floor_decal/corner/grey{ @@ -152222,15 +153290,19 @@ }, /turf/simulated/floor/marble, /area/horizon/holodeck/source_trinary) -"vQP" = ( -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/effect/floor_decal/corner/dark_green{ - dir = 5 +"vQS" = ( +/obj/effect/floor_decal/corner/black{ + dir = 10 }, /turf/simulated/floor/tiled, -/area/hallway/primary/central_one) +/area/horizon/operations/machinist) +"vQV" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled, +/area/horizon/maintenance/deck_2/wing/starboard/nacelle) "vQX" = ( /obj/effect/floor_decal/corner/paleblue{ dir = 10 @@ -152253,6 +153325,14 @@ }, /turf/unsimulated/floor, /area/centcom/holding) +"vQY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/table/standard{ + no_cargo = 1 + }, +/obj/random/contraband, +/turf/simulated/floor/tiled, +/area/horizon/maintenance/deck_1/wing/starboard/far) "vRa" = ( /obj/effect/floor_decal/spline/fancy/wood/corner{ dir = 4 @@ -152269,6 +153349,22 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled/dark/full, /area/shuttle/mercenary) +"vRd" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/lattice/catwalk/indoor, +/turf/simulated/floor/plating, +/area/horizon/engineering/atmos/air) "vRf" = ( /turf/simulated/floor/wood, /area/shuttle/hapt) @@ -152287,18 +153383,18 @@ }, /turf/simulated/floor/wood, /area/horizon/holodeck/source_pool) -"vRi" = ( +"vRj" = ( /obj/structure/cable/green{ - icon_state = "4-8" - }, -/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, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/central) +/obj/structure/disposalpipe/segment, +/obj/machinery/light/small/emergency{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/operations/starboard) "vRl" = ( /obj/effect/decal/fake_object{ dir = 4; @@ -152318,143 +153414,140 @@ name = "shallow water" }, /area/horizon/holodeck/source_konyang) -"vRq" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, +"vRz" = ( /obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/light/small/emergency{ + dir = 1 + }, /turf/simulated/floor/plating, -/area/maintenance/wing/port) -"vRr" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/cable/green{ - icon_state = "2-4" - }, -/obj/effect/floor_decal/corner/dark_blue/full{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/dark, -/area/turret_protected/ai_upload) -"vRA" = ( -/obj/effect/floor_decal/spline/plain/corner, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/turf/simulated/floor/carpet/rubber, -/area/tcommsat/entrance) +/area/horizon/maintenance/deck_2/wing/starboard/far) "vRE" = ( /turf/simulated/wall/shuttle/scc_space_ship/cardinal, /area/horizon/security/evidence_storage) -"vRT" = ( -/obj/structure/lattice/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ +"vRF" = ( +/obj/effect/floor_decal/corner/red/diagonal, +/obj/effect/floor_decal/spline/plain{ dir = 4 }, +/turf/simulated/floor/lino, +/area/horizon/service/cafeteria) +"vRI" = ( +/obj/structure/disposalpipe/junction, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/wood, +/area/horizon/command/heads/captain) +"vRL" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 5 + }, +/turf/simulated/floor/plating, +/area/horizon/engineering/atmos/air) +"vRP" = ( +/obj/structure/cable/yellow{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/power/apc/low/west, +/turf/simulated/floor/carpet/rubber, +/area/horizon/maintenance/deck_1/workshop) +"vRS" = ( +/obj/effect/floor_decal/spline/fancy, +/obj/item/paper_bin{ + pixel_y = 5 + }, +/obj/item/folder/blue{ + pixel_y = 7 + }, +/obj/item/pen, +/obj/item/pen/blue{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/structure/railing/mapped, +/obj/structure/table/reinforced/steel, +/turf/simulated/floor/carpet/rubber, +/area/horizon/command/bridge/controlroom) +"vRW" = ( +/obj/machinery/door/airlock/command{ + dir = 1; + name = "Direct Fire Artillery System"; + req_one_access = list(75) + }, +/obj/machinery/door/firedoor, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/full, +/area/horizon/weapons/longbow) +"vSb" = ( +/obj/effect/floor_decal/corner/dark_green/diagonal, +/obj/structure/bookcase{ + icon_state = "book-5" + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/structure/cable/green{ - icon_state = "11-4" - }, -/turf/simulated/open, -/area/maintenance/wing/starboard) -"vRZ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/machinery/door/airlock/external, -/obj/machinery/access_button{ - pixel_x = -28 - }, -/obj/effect/map_effect/marker/airlock{ - frequency = 2001; - master_tag = "airlock_horizon_deck_2_starboard_aft"; - name = "airlock_horizon_deck_2_starboard_aft" - }, -/obj/effect/map_effect/marker_helper/airlock/interior, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard) -"vSd" = ( -/obj/effect/floor_decal/corner_wide/yellow{ - dir = 5 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/turf/simulated/floor/tiled/dark/full, -/area/storage/shields) -"vSf" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/engine_room) -"vSh" = ( -/obj/structure/closet/walllocker/medical/secure{ - name = "Stabilization Kit"; - pixel_x = -31 - }, -/obj/item/bodybag/cryobag, -/obj/item/bodybag/cryobag, -/obj/item/bodybag/cryobag, -/obj/item/storage/pill_bottle/mortaphenyl, -/obj/item/storage/pill_bottle/mortaphenyl, -/obj/effect/floor_decal/corner/white/diagonal, -/turf/simulated/floor/tiled, -/area/medical/paramedic) +/turf/simulated/floor/tiled/full, +/area/horizon/medical/ward/isolation) "vSp" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 1 }, /turf/simulated/floor/tiled, /area/horizon/security/brig) -"vSx" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 10 +"vSv" = ( +/obj/structure/railing/mapped{ + dir = 8 }, -/obj/machinery/alarm/south, -/turf/simulated/floor/tiled, -/area/engineering/lobby) -"vSF" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/window/eastright{ - name = "Xenoarchaeology Platform Access"; - req_access = list(65) - }, -/obj/structure/railing/mapped, -/obj/structure/platform_stairs/full{ - dir = 4 - }, -/obj/structure/platform{ +/obj/machinery/autolathe, +/obj/machinery/light{ dir = 1 }, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenoarch_atrium) -"vSI" = ( -/obj/structure/shuttle_part/scc/scout{ - icon_state = "1,6" +/turf/simulated/floor/carpet/rubber, +/area/horizon/operations/machinist) +"vSE" = ( +/obj/structure/table/standard, +/obj/machinery/chemical_dispenser/bar_soft/full{ + dir = 8; + pixel_y = 4; + pixel_x = 3 }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/full, +/area/horizon/command/bridge/cciaroom) +"vSM" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, -/area/shuttle/canary) -"vSO" = ( -/turf/simulated/floor/tiled/dark, -/area/rnd/hallway) +/area/horizon/maintenance/deck_1/wing/starboard/far) +"vSP" = ( +/obj/structure/bed/stool/chair/office/dark, +/obj/effect/landmark/start{ + name = "Assistant" + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/horizon/storage/primary) "vSQ" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/machinery/door/blast/odin{ @@ -152464,11 +153557,6 @@ }, /turf/unsimulated/floor, /area/antag/mercenary) -"vSS" = ( -/obj/random/loot, -/obj/structure/closet/crate, -/turf/simulated/floor/plating, -/area/maintenance/engineering) "vSU" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 8 @@ -152487,59 +153575,21 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/unsimulated/floor, /area/antag/mercenary) -"vTa" = ( -/obj/structure/cable/orange{ - icon_state = "2-8" +"vTd" = ( +/obj/effect/floor_decal/corner/dark_green/full{ + dir = 4 }, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"vTc" = ( -/obj/structure/bed/stool/chair/sofa/pew/right{ - dir = 8 - }, -/obj/effect/floor_decal/spline/fancy/wood{ +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_3/starboard) +"vTm" = ( +/obj/effect/floor_decal/corner/dark_blue{ dir = 6 }, -/turf/simulated/floor/wood, -/area/chapel/main) -"vTe" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/structure/window/shuttle/scc_space_ship, -/turf/simulated/floor/plating, -/area/horizon/maintenance/deck_three/aft/starboard) -"vTk" = ( +/obj/machinery/recharge_station, /obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/full, -/area/horizon/hallway/deck_three/primary/starboard) -"vTl" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 9 - }, -/obj/structure/closet/walllocker/firecloset{ - pixel_x = -32 - }, -/obj/effect/floor_decal/industrial/outline/firefighting_closet, +/obj/machinery/firealarm/north, /turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/port) -"vTq" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/effect/floor_decal/corner_wide/green{ - dir = 10 - }, -/obj/structure/railing/mapped, -/turf/simulated/floor/tiled/white, -/area/hallway/medical/upper) +/area/horizon/stairwell/bridge) "vTr" = ( /obj/effect/floor_decal/industrial/warning{ dir = 1 @@ -152552,35 +153602,37 @@ }, /turf/unsimulated/floor/monotile, /area/antag/raider) -"vTA" = ( -/obj/machinery/conveyor{ - dir = 8; - id = "mining_2" - }, -/turf/simulated/floor/plating, -/area/outpost/mining_main/refinery) -"vTI" = ( -/obj/item/trap/animal/large, -/obj/item/trap/animal/large, -/obj/machinery/light, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/dark/full, -/area/rnd/xenobiology/foyer) -"vTJ" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/effect/floor_decal/corner/brown{ +"vTt" = ( +/obj/effect/floor_decal/spline/plain/green, +/obj/effect/floor_decal/corner/dark_green{ dir = 5 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ +/obj/machinery/atmospherics/pipe/simple/hidden/universal{ dir = 4 }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ +/turf/simulated/floor/tiled, +/area/horizon/service/hydroponics/lower) +"vTx" = ( +/obj/machinery/door/firedoor, +/obj/effect/floor_decal/corner_wide/paleblue{ dir = 1 }, -/turf/simulated/floor/tiled, -/area/hangar/operations) +/obj/effect/floor_decal/corner_wide/green{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/hallway) +"vTz" = ( +/obj/machinery/door/blast/regular{ + dir = 4; + id = "EngineVent"; + name = "Reactor Vent" + }, +/obj/effect/floor_decal/industrial/hatch/red, +/obj/effect/floor_decal/industrial/warning/cee, +/turf/simulated/floor/reinforced/airless, +/area/horizon/engineering/reactor/supermatter/mainchamber) "vTM" = ( /obj/machinery/light{ dir = 8 @@ -152588,79 +153640,30 @@ /obj/structure/computerframe, /turf/simulated/floor/tiled/dark, /area/centcom/bar) -"vTN" = ( -/obj/structure/disposalpipe/segment{ - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/obj/structure/lattice/catwalk/indoor/grate, -/turf/simulated/floor/plating, -/area/hallway/primary/central_one) -"vTT" = ( -/obj/effect/floor_decal/corner/yellow, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 9 - }, -/turf/simulated/floor/tiled/dark, -/area/engineering/atmos) -"vTV" = ( -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/railing/mapped{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/horizon/hallway/deck_three/primary/port) -"vTZ" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'KEEP CLEAR OF DOCKING AREA'."; - name = "KEEP CLEAR: DOCKING AREA"; - pixel_y = 32 - }, -/obj/effect/landmark/entry_point/port{ - name = "port, deck 3 port docks" - }, -/obj/effect/shuttle_landmark/horizon/dock/deck_3/port_3{ - dir = 8 - }, -/obj/machinery/door/airlock/external{ - dir = 4 - }, -/obj/effect/map_effect/marker/airlock/docking{ - landmark_tag = "nav_horizon_dock_deck_3_port_5"; - master_tag = "airlock_horizon_dock_deck_3_port_5"; - name = "airlock_horizon_dock_deck_3_port_5" - }, -/obj/effect/map_effect/marker_helper/airlock/exterior, -/obj/machinery/access_button{ - dir = 4; - pixel_x = 12; - pixel_y = 28 +"vTP" = ( +/obj/structure/grille, +/obj/structure/window/shuttle/scc_space_ship, +/obj/machinery/door/firedoor, +/obj/effect/landmark/entry_point/fore{ + name = "fore, chapel" }, /turf/simulated/floor/plating, -/area/horizon/hallway/deck_three/primary/port/docks) -"vUe" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/alarm/north, -/turf/simulated/floor/plating, -/area/maintenance/wing/port/deck1) +/area/horizon/service/chapel/office) +"vTR" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 6 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/horizon/service/library) +"vUc" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/reinforced, +/area/horizon/command/bridge/selfdestruct) "vUj" = ( /obj/structure/bed/stool/chair{ dir = 4 @@ -152668,24 +153671,22 @@ /obj/effect/floor_decal/corner/paleblue/full, /turf/unsimulated/floor, /area/centcom/legion) -"vUl" = ( -/obj/effect/floor_decal/corner/dark_blue{ +"vUk" = ( +/obj/machinery/computer/ship/navigation{ dir = 4 }, -/turf/simulated/floor/tiled/dark, -/area/horizon/grauwolf) -"vUm" = ( -/obj/structure/bed/stool/chair/padded/red{ +/obj/effect/floor_decal/corner/dark_blue/full{ + dir = 8 + }, +/obj/structure/platform, +/obj/structure/platform{ dir = 4 }, -/turf/simulated/floor/carpet/red, -/area/horizon/crew_quarters/lounge/bar) -"vUo" = ( -/obj/effect/floor_decal/industrial/warning{ +/obj/structure/platform_deco{ dir = 5 }, /turf/simulated/floor/tiled/dark, -/area/engineering/atmos/propulsion/starboard) +/area/horizon/command/bridge/controlroom) "vUp" = ( /obj/item/clothing/accessory/storage/pouches/black{ pixel_x = -12; @@ -152737,51 +153738,51 @@ }, /turf/simulated/floor/plating, /area/shuttle/transport1) -"vUr" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 10 - }, -/obj/structure/trash_pile, -/turf/simulated/floor/plating, -/area/maintenance/wing/cargo_compartment) -"vUt" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 10 - }, -/obj/machinery/power/apc/low/north, +"vUu" = ( /obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" + icon_state = "0-4" }, -/turf/simulated/floor, -/area/horizon/maintenance/deck_three/aft/starboard) +/obj/effect/map_effect/window_spawner/full/reinforced/grille/firedoor, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/tcommsat/chamber) "vUy" = ( /turf/simulated/wall/shuttle/unique/ert{ icon_state = "6,0" }, /area/centcom/specops) -"vUG" = ( -/obj/random/junk, -/obj/effect/floor_decal/industrial/warning{ - dir = 5 +"vUE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 }, -/turf/simulated/floor/plating, -/area/maintenance/research_port) +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/carpet/rubber, +/area/horizon/rnd/lab) +"vUF" = ( +/obj/machinery/photocopier, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/carpet, +/area/horizon/repoffice/consular_one) "vUJ" = ( /obj/structure/shuttle_part/scc_space_ship{ icon_state = "d2-4" }, /turf/space/dynamic, /area/template_noop) -"vUN" = ( -/obj/machinery/atmospherics/binary/passive_gate/supply{ - target_pressure = 250 - }, -/obj/structure/cable/green{ - icon_state = "4-8" +"vUK" = ( +/obj/machinery/status_display{ + pixel_y = 32 }, +/turf/simulated/wall, +/area/horizon/crew/lounge) +"vUM" = ( +/obj/structure/window/shuttle/scc_space_ship/cardinal, +/obj/structure/grille, +/obj/machinery/door/firedoor, /turf/simulated/floor/tiled/dark/full, -/area/shuttle/canary) +/area/horizon/command/heads/rd) "vUP" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 10 @@ -152790,45 +153791,79 @@ /obj/effect/decal/cleanable/dirt, /turf/unsimulated/floor/wood, /area/antag/burglar) -"vUT" = ( -/obj/effect/floor_decal/corner_wide/purple{ - dir = 6 +"vUR" = ( +/obj/structure/railing/mapped{ + dir = 8 }, -/obj/effect/floor_decal/industrial/warning/corner{ +/obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 }, -/obj/effect/floor_decal/corner_wide/purple/diagonal, -/turf/simulated/floor/tiled/white, -/area/rnd/test_range) -"vVd" = ( -/obj/machinery/door/airlock/external{ - dir = 1; - frequency = 1386; - icon_state = "door_locked"; - id_tag = "canary_out" +/obj/effect/floor_decal/corner/black{ + dir = 9 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 }, /obj/structure/cable{ icon_state = "1-2" }, -/obj/effect/landmark/entry_point/aft{ - name = "aft, airlock" +/turf/simulated/floor/tiled/dark, +/area/horizon/hangar/intrepid) +"vUU" = ( +/obj/structure/sign/nosmoking_1{ + pixel_y = 32 + }, +/obj/machinery/atmospherics/pipe/manifold/visible/green{ + dir = 1 }, /turf/simulated/floor/plating, -/area/shuttle/canary) +/area/horizon/engineering/atmos/air) +"vUV" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/full, +/area/horizon/engineering/storage_hard) +"vUX" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/wall/shuttle/scc_space_ship/cardinal, +/area/horizon/command/bridge/meeting_room) +"vVc" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/table/wood, +/obj/random/pottedplant_small{ + pixel_x = 7; + pixel_y = 2 + }, +/obj/machinery/power/outlet{ + pixel_y = 4; + pixel_x = -8 + }, +/turf/simulated/floor/carpet/art, +/area/horizon/crew/lounge) "vVh" = ( /obj/structure/table/steel, /obj/item/reagent_containers/food/drinks/flask/barflask, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/carpet, /area/shuttle/skipjack) -"vVj" = ( -/obj/machinery/porta_turret, -/obj/effect/floor_decal/industrial/warning/full, -/obj/machinery/light/small{ +"vVi" = ( +/obj/structure/closet/secure_closet/hangar_tech, +/obj/machinery/alarm/east, +/obj/effect/floor_decal/corner/brown/full{ dir = 1 }, -/turf/simulated/floor/tiled/dark/full, -/area/turret_protected/ai_upload) +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled, +/area/horizon/operations/office) "vVl" = ( /obj/structure/closet/hazmat/general, /obj/effect/floor_decal/industrial/outline/yellow, @@ -152887,12 +153922,18 @@ /obj/structure/table/reinforced/steel, /turf/unsimulated/floor/plating, /area/centcom/specops) -"vVx" = ( -/obj/effect/floor_decal/industrial/outline/emergency_closet, -/obj/structure/closet/emcloset, -/obj/structure/engineer_maintenance/electric/wall, -/turf/simulated/floor/plating, -/area/hangar/intrepid) +"vVt" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/structure/tank_wall/carbon_dioxide{ + icon_state = "co2-7" + }, +/turf/simulated/floor/airless, +/area/horizon/engineering/atmos) +"vVz" = ( +/turf/simulated/floor/carpet/rubber, +/area/horizon/command/bridge/controlroom) "vVB" = ( /obj/structure/table/rack, /obj/item/plastique{ @@ -152931,45 +153972,41 @@ }, /turf/simulated/floor/shuttle/black, /area/shuttle/hapt) -"vVE" = ( -/obj/structure/bed/stool/chair/office/dark{ - dir = 4 +"vVD" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/security/vacantoffice) -"vVI" = ( -/obj/machinery/computer/general_air_control/large_tank_control/wall{ - input_tag = "o2_in"; - name = "Oxygen Supply Monitor"; - output_tag = "o2_out"; - pixel_x = -32; - sensors = list("o2_sensor"="Tank") - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/lattice/catwalk/indoor, -/turf/simulated/floor/plating, -/area/engineering/atmos/air) -"vVL" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/structure/tank_wall/phoron{ - icon_state = "ph14" - }, -/obj/machinery/atmospherics/pipe/simple/visible/purple{ - dir = 9 - }, -/turf/simulated/floor/airless, -/area/engineering/atmos) +/turf/simulated/floor/tiled/full, +/area/horizon/command/bridge/upperdeck) "vVP" = ( /obj/machinery/suit_cycler{ req_access = list(110) }, /turf/simulated/floor/plating, /area/merchant_station/warehouse) +"vVR" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/reinforced, +/area/horizon/engineering/gravity_gen) +"vVS" = ( +/obj/structure/platform/ledge{ + dir = 1 + }, +/obj/structure/platform/ledge{ + dir = 8 + }, +/obj/structure/platform_deco/ledge{ + dir = 6 + }, +/turf/simulated/open, +/area/horizon/hallway/primary/deck_3/central) "vVV" = ( /obj/effect/floor_decal/industrial/warning{ dir = 4 @@ -153048,43 +154085,42 @@ }, /turf/unsimulated/floor/plating, /area/shuttle/specops) +"vVY" = ( +/obj/effect/floor_decal/corner/lime{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/horizon/rnd/xenobiology/xenoflora) +"vVZ" = ( +/turf/simulated/wall/shuttle/scc_space_ship/cardinal, +/area/horizon/maintenance/deck_3/security/starboard) +"vWb" = ( +/obj/structure/shuttle/engine/propulsion/burst/right{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/horizon/shuttle/escape_pod/pod2) "vWd" = ( /obj/effect/floor_decal/industrial/warning{ dir = 4 }, /turf/simulated/floor/tiled/dark, /area/shuttle/mercenary) -"vWe" = ( -/obj/structure/reagent_dispensers/extinguisher, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor, -/area/horizon/maintenance/deck_three/aft/starboard) -"vWg" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/effect/floor_decal/corner/dark_green{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled, -/area/security/checkpoint2) -"vWj" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 7 - }, -/obj/structure/bed/stool/chair/padded/beige, +"vWh" = ( +/obj/structure/lattice/catwalk, /obj/structure/cable/green{ - icon_state = "4-8" + icon_state = "11-2" }, -/turf/simulated/floor/wood, -/area/crew_quarters/captain) +/obj/structure/disposalpipe/down, +/turf/simulated/open, +/area/horizon/maintenance/deck_2/wing/port/near) "vWm" = ( /obj/item/flame/candle{ pixel_x = 5; @@ -153114,62 +154150,36 @@ }, /turf/unsimulated/floor, /area/centcom/legion) -"vWq" = ( -/obj/effect/floor_decal/corner/mauve{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/rnd/hallway/secondary) -"vWt" = ( -/obj/structure/bed/stool/chair{ - name = "uncomfortable chair" - }, -/turf/simulated/floor/carpet, -/area/horizon/security/head_of_security) "vWv" = ( /obj/effect/floor_decal/industrial/outline/security, /turf/simulated/floor/tiled/dark/full, /area/horizon/security/armoury) -"vWL" = ( -/obj/structure/tank_wall/hydrogen{ - icon_state = "h9" +"vWw" = ( +/obj/effect/floor_decal/corner_wide/yellow{ + dir = 10 }, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 +/obj/machinery/atmospherics/pipe/manifold/hidden/blue{ + dir = 1 }, -/obj/machinery/atmospherics/pipe/simple/visible/red{ - dir = 4 +/turf/simulated/floor/tiled, +/area/horizon/engineering/hallway/aft) +"vWD" = ( +/obj/effect/map_effect/window_spawner/full/shuttle/scc{ + spawn_firedoor = 1; + spawn_grille = 1 }, -/turf/simulated/floor/airless, -/area/engineering/atmos) -"vWM" = ( -/obj/machinery/light/small, -/obj/effect/floor_decal/corner/dark_blue/full, -/turf/simulated/floor/tiled/dark, -/area/horizon/grauwolf) -"vWR" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/structure/tank_wall/air{ - icon_state = "air16" +/obj/machinery/door/blast/shutters/open{ + dir = 8; + id = "intrepid_bay_windows"; + name = "Intrepid Shutter" }, /turf/simulated/floor/plating, -/area/engineering/atmos/air) -"vWX" = ( -/obj/effect/floor_decal/spline/fancy/wood/corner{ - dir = 4 - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 6 - }, -/turf/simulated/floor/wood, -/area/bridge/cciaroom) +/area/horizon/shuttle/intrepid/flight_deck) +"vWP" = ( +/obj/effect/floor_decal/corner/green/diagonal, +/obj/structure/curtain/open, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/ward/isolation) "vXb" = ( /obj/effect/floor_decal/spline/plain{ dir = 1 @@ -153179,6 +154189,13 @@ dir = 8 }, /area/horizon/holodeck/source_tribunal) +"vXd" = ( +/obj/structure/railing/mapped, +/obj/effect/floor_decal/corner/dark_blue{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/weapons/longbow) "vXg" = ( /obj/effect/floor_decal/corner/red/full{ dir = 4 @@ -153192,30 +154209,34 @@ }, /turf/unsimulated/floor, /area/centcom/control) -"vXj" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ +"vXk" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 10 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/item/modular_computer/console/preset/command{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/hangar/control) +"vXl" = ( +/obj/effect/floor_decal/corner_wide/yellow{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/red{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/horizon/engineering/hallway/aft) +"vXn" = ( +/obj/structure/engineer_maintenance/electric, +/obj/structure/engineer_maintenance/pipe{ dir = 4 }, -/obj/effect/map_effect/marker/airlock/docking{ - landmark_tag = "nav_horizon_dock_deck_3_port_4"; - master_tag = "airlock_horizon_dock_deck_3_port_4"; - name = "airlock_horizon_dock_deck_3_port_4" - }, -/turf/simulated/floor/plating, -/area/horizon/hallway/deck_three/primary/port/docks) -"vXm" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor, -/area/maintenance/security_port) +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/bluespace_drive) "vXp" = ( /obj/effect/floor_decal/industrial/warning/corner{ dir = 1 @@ -153223,17 +154244,54 @@ /obj/machinery/recharge_station, /turf/unsimulated/floor, /area/centcom/legion/hangar5) +"vXt" = ( +/obj/effect/floor_decal/industrial/outline/grey, +/obj/structure/survey_probe{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/horizon/hangar/auxiliary) "vXu" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 10 }, /turf/simulated/floor/tiled/dark, -/area/outpost/research/anomaly_storage) +/area/horizon/rnd/xenoarch/anomaly_storage) +"vXy" = ( +/obj/structure/disposalpipe/segment{ + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/reactor/indra/smes) "vXz" = ( /obj/structure/closet/secure_closet/personal, /turf/unsimulated/floor, /area/centcom/legion) +"vXA" = ( +/obj/effect/floor_decal/industrial/warning/corner, +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/fuel{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor/tiled/dark, +/area/horizon/shuttle/intrepid/engineering) "vXI" = ( /obj/machinery/door/airlock/centcom{ id_tag = "tcfllegate"; @@ -153244,53 +154302,102 @@ icon_state = "wood" }, /area/centcom/legion/hangar5) -"vXT" = ( -/obj/structure/table/wood, -/obj/machinery/recharger, -/obj/item/paper_scanner{ - pixel_x = -10 - }, -/obj/item/pen/black, -/obj/item/pen/blue{ - pixel_x = 4; - pixel_y = 4 - }, -/turf/simulated/floor/carpet, -/area/lawoffice/representative_two) -"vXU" = ( -/obj/machinery/newscaster{ - dir = 4; - pixel_x = 14 - }, -/obj/structure/disposalpipe/segment{ - icon_state = "pipe-c" - }, -/obj/effect/floor_decal/corner/paleblue/full{ - dir = 1 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/random/pottedplant, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/bridge/cciaroom/lounge) -"vYg" = ( -/obj/effect/map_effect/window_spawner/full/reinforced/grille/firedoor, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "bridge blast"; - name = "Bridge Blast Doors"; - opacity = 0 +"vXJ" = ( +/obj/machinery/door/airlock/highsecurity{ + dir = 8; + name = "AI Core"; + req_access = list(16) }, /obj/structure/cable/green{ - icon_state = "0-2" + icon_state = "4-8" }, -/turf/simulated/floor, -/area/bridge/supply) +/turf/simulated/floor/tiled/dark, +/area/horizon/ai/upload) +"vXL" = ( +/obj/structure/bed/stool/chair/office/light, +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/xenobiology) +"vXR" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/main/starboard) +"vXW" = ( +/obj/effect/floor_decal/corner/black/full{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/turf/simulated/floor/tiled, +/area/horizon/operations/machinist) +"vXZ" = ( +/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/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled, +/area/horizon/operations/lobby) +"vYh" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 6 + }, +/obj/machinery/mineral/processing_unit_console{ + id = "horizon_processing_2"; + pixel_x = 32 + }, +/obj/machinery/conveyor_switch/oneway{ + pixel_y = 7; + id = "mining_2" + }, +/obj/effect/floor_decal/industrial/hatch_tiny/yellow, +/turf/simulated/floor/tiled, +/area/horizon/operations/mining_main/refinery) +"vYj" = ( +/obj/effect/floor_decal/corner/grey/diagonal, +/obj/effect/floor_decal/spline/plain/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/spline/plain/corner{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/service/kitchen) +"vYk" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/atmos/propulsion) "vYm" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 8 @@ -153307,178 +154414,220 @@ /obj/structure/lattice/catwalk/indoor/grate, /turf/simulated/floor/plating, /area/horizon/security/hallway) -"vYt" = ( -/obj/effect/floor_decal/corner_wide/yellow{ - dir = 10 +"vYp" = ( +/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/disposalpipe/junction{ + dir = 4 + }, +/obj/effect/floor_decal/corner/brown{ + dir = 6 }, /turf/simulated/floor/tiled, -/area/hallway/engineering) +/area/horizon/operations/loading) +"vYs" = ( +/obj/effect/map_effect/marker/airlock{ + frequency = 1004; + master_tag = "airlock_horizon_deck_1_fore_1"; + name = "airlock_horizon_deck_1_fore_1" + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/hangar/starboard) "vYu" = ( /obj/structure/window/reinforced/holowindow{ dir = 1 }, /turf/simulated/floor/holofloor/space, /area/horizon/holodeck/source_basketball) -"vYK" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/industrial/outline/red, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"vYP" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 5 - }, -/obj/structure/cable/green{ - icon_state = "0-4" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/power/apc/north, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/starboard/docks) -"vYT" = ( -/obj/effect/floor_decal/corner_wide/yellow{ - dir = 5 - }, -/obj/structure/closet/walllocker/firecloset{ - pixel_y = 32 - }, -/obj/effect/floor_decal/industrial/outline/firefighting_closet, -/turf/simulated/floor/tiled, -/area/hallway/engineering/rust) -"vYV" = ( -/obj/structure/tank_wall/air{ - density = 0; - icon_state = "air6"; - opacity = 0 - }, -/turf/simulated/floor/reinforced/airmix, -/area/engineering/atmos/air) -"vZa" = ( -/obj/structure/bed/stool/chair/office/bridge/generic, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 6 - }, -/turf/simulated/floor/tiled/dark, -/area/horizon/longbow) -"vZl" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/structure/tank_wall/nitrous_oxide{ - icon_state = "h14" - }, -/turf/simulated/floor/plating, -/area/engineering/atmos/air) -"vZq" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/structure/engineer_maintenance/electric/wall, -/turf/simulated/floor/tiled/dark, -/area/horizon/security/firing_range) -"vZr" = ( -/obj/machinery/atmospherics/pipe/simple/visible/cyan{ - dir = 6 - }, -/turf/simulated/floor/reinforced/oxygen, -/area/engineering/atmos/air) -"vZx" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/full, -/area/engineering/storage_hard) -"vZA" = ( -/obj/effect/floor_decal/spline/fancy{ - dir = 1 - }, -/obj/structure/platform, -/obj/machinery/hologram/holopad/long_range{ - pixel_y = -10 - }, -/turf/simulated/floor/carpet/rubber, -/area/bridge/controlroom) -"vZC" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/effect/floor_decal/corner/dark_blue/full, -/obj/structure/closet/walllocker/firecloset{ - pixel_x = -32 - }, -/obj/effect/floor_decal/industrial/outline/firefighting_closet, -/obj/structure/railing/mapped, -/turf/simulated/floor/tiled/dark, -/area/horizon/grauwolf) -"vZD" = ( -/obj/effect/floor_decal/corner/brown/full{ - dir = 4 - }, -/obj/machinery/vending/zora, -/obj/structure/sign/directions/dock{ - pixel_y = -32 - }, -/turf/simulated/floor/tiled, -/area/operations/lobby) -"vZG" = ( -/obj/effect/floor_decal/corner/brown{ - dir = 10 - }, -/obj/structure/table/standard, -/turf/simulated/floor/tiled, -/area/operations/lobby) -"vZI" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/unsimulated/floor, -/area/antag/ninja) -"vZK" = ( -/obj/structure/disposalpipe/segment, +"vYz" = ( /obj/structure/cable/green{ icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/corner/brown{ + dir = 6 }, -/obj/structure/lattice/catwalk/indoor/grate, -/turf/simulated/floor/plating, -/area/hangar/intrepid/interstitial) -"vZL" = ( +/turf/simulated/floor/tiled, +/area/horizon/operations/mining_main/refinery) +"vYF" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/obj/machinery/button/remote/blast_door{ - dir = 1; - id = "warehouse3"; - name = "Warehouse Shutter"; - pixel_x = -31; - pixel_y = 32 - }, -/obj/effect/floor_decal/corner/brown{ - dir = 5 - }, /turf/simulated/floor/tiled, -/area/operations/storage) -"vZO" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 5 - }, -/obj/structure/railing/mapped{ +/area/horizon/hallway/primary/deck_3/central) +"vYL" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black{ dir = 4 }, +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/atmos) +"vYO" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/service{ + dir = 1; + name = "Chapel" + }, +/turf/simulated/floor/tiled/full, +/area/horizon/service/chapel/main) +"vYR" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 6 + }, +/turf/simulated/floor/plating, +/area/horizon/engineering/storage/lower) +"vZb" = ( +/obj/structure/table/rack, +/obj/effect/floor_decal/corner/lime/full, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/platform{ + dir = 4 + }, +/obj/structure/railing/mapped{ + dir = 8 + }, +/turf/simulated/floor/tiled/white{ + name = "cooled white floor"; + temperature = 278.15 + }, +/area/horizon/medical/morgue) +"vZc" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/alarm/east{ + req_one_access = list(24,11,55) + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/horizon/crew/lounge) +"vZg" = ( /obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/reinforced, -/area/shuttle/mining) +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/storage/eva) +"vZm" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 1 + }, +/obj/machinery/light/small/emergency, +/obj/effect/map_effect/marker/airlock{ + frequency = 1004; + master_tag = "airlock_horizon_deck_1_fore_1"; + name = "airlock_horizon_deck_1_fore_1" + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/hangar/starboard) +"vZn" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 10 + }, +/obj/structure/extinguisher_cabinet/south, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_2/fore) +"vZo" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance{ + dir = 1; + req_one_access = list(11,24) + }, +/turf/simulated/floor, +/area/horizon/engineering/break_room) +"vZq" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/structure/engineer_maintenance/electric/wall, +/turf/simulated/floor/tiled/dark, +/area/horizon/security/firing_range) +"vZu" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/lattice/catwalk/indoor/grate, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/turf/simulated/floor, +/area/horizon/hallway/primary/deck_3/starboard) +"vZE" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/structure/tank_wall/oxygen{ + icon_state = "o2-9" + }, +/turf/simulated/floor/plating, +/area/horizon/engineering/atmos/air) +"vZF" = ( +/obj/structure/table/standard, +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/floor_decal/corner/mauve/full{ + dir = 4 + }, +/obj/item/paper_bin, +/obj/item/pen/black, +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/xenological) +"vZH" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/aux{ + dir = 8 + }, +/turf/simulated/wall/shuttle/scc, +/area/horizon/shuttle/quark/cargo_hold) +"vZI" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/unsimulated/floor, +/area/antag/ninja) +"vZP" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/machinery/alarm/north{ + pixel_y = 51 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/rnd/xenoarch/storage) "vZQ" = ( /obj/machinery/door/blast/odin/open{ _wifi_id = "merc_droppod_2"; @@ -153499,105 +154648,74 @@ /obj/effect/floor_decal/spline/fancy/wood, /turf/unsimulated/floor/carpet, /area/centcom/bar) -"wab" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/hangar/auxiliary) -"wac" = ( -/obj/structure/shuttle_part/scc_space_ship{ - icon_state = "d3-4-f" - }, -/turf/simulated/wall/shuttle/scc_space_ship/cardinal, -/area/maintenance/wing/starboard) -"waj" = ( -/obj/effect/floor_decal/sign/w, +"vZT" = ( /obj/structure/cable/green{ icon_state = "1-2" }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_engineering{ + dir = 1; + name = "Engineering Hallway"; + req_access = list(10) }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 +/obj/effect/map_effect/door_helper/unres{ + dir = 1 }, -/obj/machinery/access_button{ - command = "cycle_exterior"; - frequency = 1379; - master_tag = "processing_airlock_control"; - name = "Exterior access button"; - pixel_x = 25; - pixel_y = 25; - req_access = list(5) +/turf/simulated/floor/tiled/full, +/area/horizon/engineering/hallway/fore) +"wad" = ( +/obj/structure/railing/mapped, +/obj/structure/platform/ledge{ + dir = 1 }, -/turf/simulated/floor/tiled/white, -/area/hallway/medical/upper) -"wak" = ( -/obj/machinery/light/small{ +/obj/structure/platform/ledge{ dir = 4 }, -/obj/effect/floor_decal/industrial/warning{ +/obj/structure/platform_deco/ledge{ + dir = 10 + }, +/turf/simulated/open, +/area/horizon/hallway/primary/deck_2/central) +"wae" = ( +/obj/effect/floor_decal/corner/black{ dir = 5 }, -/turf/simulated/floor/reinforced, -/area/rnd/xenobiology) -"wal" = ( -/obj/structure/table/wood/gamblingtable, -/obj/item/deck/cards{ - pixel_y = -6 - }, -/turf/simulated/floor/wood, -/area/maintenance/wing/starboard) -"wan" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/turf/simulated/floor/tiled/white, -/area/shuttle/intrepid/buffet) -"war" = ( -/turf/simulated/wall/shuttle/scc_space_ship/cardinal, -/area/tcommsat/chamber) +/turf/simulated/floor/tiled/full, +/area/horizon/hallway/primary/deck_2/central) "was" = ( /turf/simulated/wall/shuttle/scc_space_ship/cardinal, /area/horizon/security/meeting_room) -"wat" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/aux{ - dir = 1 - }, -/obj/structure/cable/green{ - icon_state = "2-4" - }, -/turf/simulated/floor/tiled/dark/full, -/area/bridge/aibunker) -"wav" = ( -/turf/simulated/wall, -/area/horizon/kitchen) -"waE" = ( -/obj/machinery/atmospherics/unary/vent_pump/aux{ +"wax" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ dir = 4 }, -/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 - }, +/obj/effect/floor_decal/corner/brown, /turf/simulated/floor/tiled/dark, -/area/hangar/auxiliary) -"waG" = ( -/obj/effect/floor_decal/industrial/warning/corner{ +/area/horizon/shuttle/intrepid/port_compartment) +"waB" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1; + level = 2 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 1 }, -/obj/random/junk, -/turf/simulated/floor/plating, -/area/maintenance/wing/cargo_compartment) +/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/horizon/shuttle/quark/cockpit) "waH" = ( /obj/effect/floor_decal/corner/white/diagonal, /obj/machinery/door/airlock{ @@ -153611,12 +154729,6 @@ /obj/machinery/light/small, /turf/simulated/floor/tiled/dark, /area/shuttle/mercenary) -"waJ" = ( -/obj/structure/platform_stairs/full/east_west_cap{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/wing/port/far) "waL" = ( /obj/effect/floor_decal/corner/lime/diagonal{ dir = 8 @@ -153624,61 +154736,175 @@ /obj/structure/bed/roller, /turf/simulated/floor/tiled/dark, /area/shuttle/mercenary) -"waN" = ( -/obj/effect/floor_decal/corner/dark_green{ +"waO" = ( +/obj/machinery/door/airlock/command{ + dir = 1; + id_tag = "hopdoor"; + name = "Executive Officer's Office"; + req_access = list(57) + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/horizon/command/heads/xo) +"waP" = ( +/turf/simulated/wall, +/area/horizon/maintenance/substation/civ_d3) +"waX" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/effect/floor_decal/industrial/loading/yellow, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/port/far) +"wba" = ( +/obj/effect/floor_decal/corner/white{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/storage/eva) +"wbh" = ( +/obj/structure/railing/mapped{ dir = 8 }, +/obj/effect/floor_decal/corner/dark_blue{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/command/bridge/controlroom) +"wbr" = ( +/obj/machinery/light/small/emergency{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/aux{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 10 + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/auxatmos) +"wbs" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/emergency{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/maintenance/deck_2/wing/starboard/far) +"wbv" = ( +/obj/machinery/light/small/emergency{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable{ icon_state = "1-2" }, -/turf/simulated/floor/tiled, -/area/hallway/primary/aft) -"waR" = ( -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/effect/floor_decal/corner/brown{ - dir = 9 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled, -/area/operations/office_aux) -"wbf" = ( -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/obj/structure/disposalpipe/segment{ - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/port) -"wbg" = ( -/obj/structure/closet/secure_closet/custodial, -/obj/effect/floor_decal/corner/purple/full{ +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/operations/starboard/amidships) +"wbx" = ( +/obj/structure/platform{ dir = 1 }, -/obj/effect/floor_decal/industrial/outline/custodial, -/turf/simulated/floor/tiled, -/area/horizon/custodial) -"wbi" = ( -/obj/structure/table/wood, -/obj/machinery/librarycomp{ - pixel_y = 4 +/obj/structure/railing/mapped, +/obj/effect/floor_decal/corner/mauve/diagonal, +/obj/machinery/light/floor, +/obj/machinery/papershredder{ + pixel_x = 7 }, -/turf/simulated/floor/carpet/red, -/area/horizon/library) -"wbo" = ( -/obj/random/junk, -/obj/effect/floor_decal/industrial/outline/grey, -/turf/simulated/floor, -/area/maintenance/security_port) -"wbq" = ( +/obj/structure/filingcabinet/filingcabinet{ + pixel_x = -7 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/lab) +"wbD" = ( +/obj/effect/floor_decal/corner_wide/yellow/full{ + dir = 4 + }, +/obj/effect/floor_decal/corner_wide/yellow/diagonal, +/obj/structure/table/steel, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/chemical_dispenser/bar_soft/full{ + pixel_y = 7 + }, +/obj/item/reagent_containers/food/drinks/drinkingglass/newglass/coffeecup{ + pixel_x = 6; + pixel_y = -12 + }, +/obj/item/reagent_containers/food/drinks/drinkingglass/newglass/coffeecup{ + pixel_x = -6; + pixel_y = -12 + }, +/obj/item/reagent_containers/food/drinks/drinkingglass/newglass/coffeecup{ + pixel_x = 6; + pixel_y = -19 + }, +/obj/item/reagent_containers/food/drinks/drinkingglass/newglass/coffeecup{ + pixel_x = -6; + pixel_y = -19 + }, +/turf/simulated/floor/tiled, +/area/horizon/engineering/break_room) +"wbH" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance_hatch{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/main/starboard) +"wbJ" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/table/rack, +/obj/item/rig/ert/engineer, +/turf/unsimulated/floor/plating, +/area/centcom/specops) +"wbP" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/space_heater, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/maintenance/deck_2/cargo_compartment) +"wbT" = ( +/obj/machinery/computer/aiupload{ + dir = 1 + }, +/obj/effect/floor_decal/corner/dark_blue{ + dir = 5 + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/ai/upload_foyer) +"wbU" = ( +/obj/effect/floor_decal/corner/lime/full{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/horizon/rnd/xenobiology/xenoflora) +"wbW" = ( /obj/machinery/door/firedoor, /obj/effect/map_effect/door_helper/unres, /obj/effect/floor_decal/industrial/hatch/yellow, @@ -153693,59 +154919,7 @@ req_one_access = list(19,38,72) }, /turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/central) -"wbt" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 5 - }, -/obj/machinery/vending/tool, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled, -/area/storage/primary) -"wby" = ( -/turf/simulated/wall, -/area/security/vacantoffice) -"wbJ" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/structure/table/rack, -/obj/item/rig/ert/engineer, -/turf/unsimulated/floor/plating, -/area/centcom/specops) -"wbL" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/corner/red/diagonal, -/obj/effect/floor_decal/spline/plain{ - dir = 8 - }, -/obj/structure/railing/mapped{ - dir = 8 - }, -/turf/simulated/floor/lino, -/area/horizon/cafeteria) -"wbO" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 4 - }, -/obj/effect/floor_decal/corner/yellow, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/atmos) -"wbR" = ( -/obj/structure/bed/stool/chair/padded/beige, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor/carpet, -/area/crew_quarters/captain) -"wbS" = ( -/obj/structure/flora/ausbushes/ywflowers, -/turf/simulated/floor/grass/no_edge, -/area/horizon/cafeteria) +/area/horizon/command/bridge/upperdeck) "wbX" = ( /obj/structure/table/reinforced/steel, /obj/structure/cable/green{ @@ -153753,14 +154927,50 @@ }, /obj/machinery/power/apc/east, /turf/simulated/floor/tiled/dark, -/area/outpost/research/anomaly_storage) -"wca" = ( -/obj/machinery/power/apc/east, -/obj/structure/cable/green{ - icon_state = "0-8" +/area/horizon/rnd/xenoarch/anomaly_storage) +"wbY" = ( +/obj/effect/floor_decal/corner_wide/blue{ + dir = 1 }, +/obj/effect/floor_decal/spline/plain/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/universal{ + dir = 4 + }, +/obj/machinery/meter, /turf/simulated/floor/tiled, -/area/operations/lower/machinist/surgicalbay) +/area/horizon/engineering/atmos/storage) +"wcg" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/wood, +/area/horizon/repoffice/consular_one) +"wch" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/random/junk, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/wing/port/far) +"wck" = ( +/obj/structure/platform{ + dir = 8 + }, +/obj/effect/floor_decal/spline/plain{ + dir = 5 + }, +/turf/simulated/floor/carpet/rubber, +/area/horizon/operations/machinist) "wco" = ( /obj/effect/floor_decal/carpet{ dir = 1 @@ -153776,6 +154986,40 @@ }, /turf/simulated/floor/holofloor/carpet, /area/horizon/holodeck/source_courtroom) +"wcq" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner/yellow{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/horizon/engineering/hallway/fore) +"wcr" = ( +/obj/structure/table/standard, +/obj/item/reagent_containers/spray/cleaner{ + desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; + icon_state = "sterilesprayblue"; + name = "surgery cleaner" + }, +/obj/effect/floor_decal/corner_wide/paleblue{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/surgery) +"wct" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/storage/eva) +"wcw" = ( +/obj/random/pottedplant, +/turf/simulated/floor/wood/walnut, +/area/horizon/medical/smoking) "wcx" = ( /obj/effect/floor_decal/corner/grey{ dir = 6 @@ -153793,10 +155037,27 @@ }, /turf/simulated/floor/marble, /area/horizon/holodeck/source_trinary) -"wcz" = ( -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/maintenance/hangar/port) +"wcC" = ( +/obj/structure/bed/stool/bar/padded/blue, +/obj/effect/floor_decal/spline/fancy/wood, +/turf/simulated/floor/wood, +/area/horizon/command/bridge/minibar) +"wcD" = ( +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/shuttle/intrepid/junction_compartment) "wcE" = ( /obj/structure/table/rack, /obj/machinery/light{ @@ -153829,139 +155090,87 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/unsimulated/floor, /area/antag/mercenary) -"wcF" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 6 - }, -/turf/simulated/floor/tiled/dark, -/area/turret_protected/ai_upload_foyer) "wcI" = ( /obj/effect/floor_decal/industrial/warning{ dir = 4 }, /turf/unsimulated/floor, /area/centcom/legion/hangar5) -"wcK" = ( -/obj/structure/cable{ +"wcO" = ( +/obj/effect/floor_decal/corner/dark_green/full{ + dir = 8 + }, +/obj/structure/cable/green{ icon_state = "4-8" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard) -"wcN" = ( -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/dark, -/area/engineering/smes) -"wcQ" = ( -/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/lobby) -"wcU" = ( -/obj/effect/floor_decal/corner_wide/purple/diagonal, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/white, -/area/rnd/test_range) -"wcZ" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille/diagonal, -/obj/structure/window/shuttle/scc_space_ship, -/turf/simulated/floor/reinforced, -/area/horizon/crew_quarters/lounge/bar) -"wdb" = ( -/obj/structure/railing/mapped, -/obj/structure/table/rack, -/obj/item/primer/low, -/obj/item/primer, -/obj/item/primer, -/obj/item/primer, -/obj/item/primer, -/obj/item/primer/high, -/obj/effect/floor_decal/corner/dark_blue{ +/turf/simulated/floor/tiled, +/area/horizon/stairwell/port/deck_2) +"wcX" = ( +/obj/effect/floor_decal/corner_wide/purple{ dir = 10 }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/dark, -/area/horizon/longbow) -"wdf" = ( -/obj/machinery/chemical_dispenser/full{ +/obj/effect/floor_decal/corner_wide/purple{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 }, -/obj/effect/floor_decal/spline/plain{ - dir = 6 +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/xenoarch/atrium) +"wdd" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 }, -/turf/simulated/floor/carpet/rubber, -/area/medical/pharmacy) -"wdh" = ( -/obj/machinery/door/blast/shutters/open{ - dir = 2; - id = "seconddeckdockext"; - name = "Security Checkpoint External Shutter" - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/dark/full, -/area/security/checkpoint2) +/obj/random/junk, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/main/interstitial) "wdo" = ( /turf/simulated/floor/holofloor/tiled, /area/horizon/holodeck/source_lasertag) -"wdu" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/maintenance/aux_atmospherics/deck_2/starboard/wing) -"wdw" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, +"wdq" = ( +/turf/simulated/wall/shuttle/scc, +/area/horizon/shuttle/intrepid/port_storage) +"wdr" = ( /obj/structure/disposalpipe/segment{ - dir = 4 + dir = 1; + icon_state = "pipe-c" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/obj/structure/cable/green{ + icon_state = "1-4" }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/effect/floor_decal/corner_wide/green{ +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/full, +/area/horizon/command/bridge/upperdeck) +"wdt" = ( +/obj/random/junk, +/obj/structure/railing/mapped{ dir = 8 }, -/turf/simulated/floor/tiled/white, -/area/medical/gen_treatment) -"wdH" = ( -/obj/structure/shuttle_part/scc_space_ship{ - icon_state = "d2-2" - }, -/turf/simulated/wall, -/area/maintenance/wing/cargo_compartment) -"wdM" = ( -/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/industrial/warning{ - dir = 1 + dir = 10 }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/main/starboard) +"wdE" = ( +/obj/structure/table/glass{ + table_reinf = "glass" + }, +/obj/effect/floor_decal/corner/paleblue/diagonal, /turf/simulated/floor/tiled/white, -/area/medical/gen_treatment) +/area/horizon/command/heads/cmo) +"wdG" = ( +/obj/effect/floor_decal/industrial/hatch/red, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/light/small/emergency, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/operations/secure_ammunition_storage) "wdO" = ( /obj/effect/floor_decal/corner/white/diagonal, /obj/effect/floor_decal/spline/plain{ @@ -153969,13 +155178,6 @@ }, /turf/simulated/floor/holofloor/tiled, /area/horizon/holodeck/source_emptycourt) -"wdT" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/maintenance/engineering) "wdW" = ( /obj/structure/table/reinforced/steel, /obj/item/spacecash/c1000{ @@ -154001,61 +155203,112 @@ }, /turf/simulated/floor/wood, /area/merchant_station/warehouse) -"wdX" = ( -/obj/structure/tank_wall/phoron{ - density = 0; - icon_state = "ph6"; - opacity = 0 +"wea" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 10 }, -/turf/simulated/floor/reinforced/phoron, -/area/engineering/atmos) +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_3/port/docks) "web" = ( /obj/machinery/vending/security, /turf/unsimulated/floor{ icon_state = "dark_preview" }, /area/centcom/control) -"weg" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" +"wec" = ( +/obj/structure/cable{ + icon_state = "1-2" }, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology/xenoflora) -"wel" = ( -/obj/structure/sign/biohazard, -/turf/simulated/wall, -/area/medical/ward/isolation) -"wep" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/starboard/far) +"wee" = ( /obj/structure/table/standard, -/obj/machinery/requests_console/east{ - department = "Research and Development"; - name = "RnD Requests Console" - }, -/obj/item/paper_bin, -/obj/item/pen{ - pixel_x = -4 - }, -/obj/item/pen/red{ - pixel_x = -1; - pixel_y = 4 - }, -/obj/item/pen/blue{ - pixel_x = 3; - pixel_y = 7 - }, -/obj/effect/floor_decal/corner/mauve/full{ - dir = 1 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/machinery/recharger{ - pixel_x = -7; +/obj/item/storage/firstaid/o2{ + pixel_x = -17; pixel_y = 8 }, +/obj/effect/floor_decal/corner_wide/green{ + dir = 5 + }, +/obj/item/storage/firstaid/o2{ + pixel_x = -17; + pixel_y = 3 + }, +/obj/item/storage/firstaid/toxin{ + pixel_x = -2; + pixel_y = 8 + }, +/obj/item/storage/firstaid/toxin{ + pixel_x = -2; + pixel_y = 3 + }, +/obj/item/storage/firstaid/fire{ + pixel_x = 13; + pixel_y = 8 + }, +/obj/item/storage/firstaid/fire{ + pixel_x = 13; + pixel_y = 3 + }, /turf/simulated/floor/tiled/white, -/area/rnd/lab) +/area/horizon/medical/main_storage) +"wef" = ( +/turf/simulated/floor, +/area/horizon/maintenance/substation/command) +"wer" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/corner/brown{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/horizon/operations/office) +"wes" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 4 + }, +/turf/simulated/floor/reinforced/airless, +/area/horizon/engineering/atmos/propulsion) +"wet" = ( +/obj/structure/railing/mapped{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_3/central) +"wew" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/floor_decal/corner/dark_green{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/horizon/engineering/hallway/fore) "wex" = ( /obj/machinery/atmospherics/pipe/simple/hidden, /obj/structure/bed/stool/padded, @@ -154064,26 +155317,36 @@ }, /turf/simulated/floor/plating, /area/shuttle/skipjack) -"weE" = ( -/obj/effect/floor_decal/corner_wide/yellow{ - dir = 5 +"weD" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 10 }, -/obj/machinery/light{ +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/horizon/rnd/hallway) +"weF" = ( +/obj/structure/table/steel, +/obj/item/storage/toolbox/mechanical, +/obj/item/storage/toolbox/electrical{ + pixel_y = 8 + }, +/obj/effect/floor_decal/corner/dark_blue/full, +/obj/machinery/light, +/turf/simulated/floor/tiled/dark, +/area/horizon/storage/eva) +"weJ" = ( +/obj/machinery/atmospherics/portables_connector, +/obj/machinery/portable_atmospherics/canister/air/airlock, +/obj/effect/floor_decal/industrial/warning{ dir = 1 }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled, -/area/hallway/engineering/rust) -"weK" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/hatch{ - locked = 1; - name = "INDRA Reactor Core Access"; - req_one_access = list(11,24) - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/engine_room/rust) +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/atmos/propulsion) "weL" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -154112,67 +155375,40 @@ /obj/machinery/atmospherics/pipe/simple/visible/purple, /turf/space/dynamic, /area/horizon/exterior) -"weO" = ( -/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/machinery/camera/network/first_deck{ - c_tag = "First Deck - Pilot Room Hallway"; - dir = 1 - }, -/obj/effect/floor_decal/corner/dark_green{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/hangar/intrepid) -"weT" = ( -/obj/structure/bed/stool/chair{ - dir = 8 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/item/storage/secure/safe{ - pixel_y = 36 - }, -/turf/simulated/floor/carpet, -/area/crew_quarters/heads/hop/xo) "weU" = ( /obj/effect/floor_decal/spline/plain{ dir = 10 }, /turf/unsimulated/floor, /area/antag/mercenary) -"weY" = ( -/obj/machinery/door/airlock/external{ - dir = 4; - frequency = 1380; - icon_state = "door_locked"; - id_tag = "escape_pod_1_berth_hatch"; - locked = 1; - name = "Escape Pod"; - req_access = list(13) - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled, -/area/hangar/auxiliary) -"wfa" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/effect/floor_decal/spline/plain{ +"weV" = ( +/obj/structure/bed/stool/chair/padded/black{ dir = 8 }, -/obj/machinery/firealarm/west, +/obj/machinery/button/remote/airlock{ + desc = "A remote control-switch for the office door."; + id = "chapdoor"; + name = "Office Door Control"; + pixel_x = 6; + pixel_y = 28; + req_access = list(22) + }, +/obj/machinery/button/switch/windowtint{ + id = "chapel"; + pixel_x = -6; + pixel_y = 28 + }, +/turf/simulated/floor/carpet, +/area/horizon/service/chapel/office) +"wfg" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 6 + }, +/obj/machinery/firealarm/east, +/obj/machinery/atmospherics/pipe/simple/visible/universal, +/obj/machinery/meter, /turf/simulated/floor/tiled/dark, -/area/horizon/bar) +/area/horizon/engineering/reactor/supermatter/waste) "wfi" = ( /obj/structure/bed/stool/chair/shuttle{ dir = 4 @@ -154182,18 +155418,6 @@ }, /turf/simulated/floor/tiled/dark, /area/shuttle/legion) -"wfm" = ( -/turf/simulated/wall/r_wall, -/area/engineering/break_room) -"wfn" = ( -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 5 - }, -/obj/structure/sign/vacuum{ - pixel_x = -32 - }, -/turf/simulated/floor/plating, -/area/engineering/engine_room) "wfp" = ( /obj/structure/bed/stool/chair/shuttle{ dir = 4 @@ -154203,21 +155427,13 @@ }, /turf/simulated/floor/tiled/dark, /area/shuttle/legion) -"wfv" = ( -/obj/effect/floor_decal/spline/fancy/wood{ +"wfw" = ( +/obj/random/pottedplant, +/obj/effect/floor_decal/corner/dark_green/full{ dir = 8 }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 4 - }, -/obj/structure/bed/stool/chair/sofa/red{ - dir = 8 - }, -/obj/structure/railing/mapped{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/horizon/cafeteria) +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_3/central) "wfy" = ( /obj/effect/floor_decal/corner/red/diagonal, /obj/machinery/vending/snack{ @@ -154226,14 +155442,107 @@ }, /turf/simulated/floor/tiled, /area/merchant_station) -"wfM" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ +"wfz" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/closet/crate, +/obj/random/loot, +/obj/random/contraband, +/obj/machinery/alarm/north, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/maintenance/deck_2/cargo_compartment) +"wfO" = ( +/obj/structure/plasticflaps/airtight, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/medical{ + dir = 1; + name = "Cold Storage"; + req_access = list(66) + }, +/turf/simulated/floor/tiled/full, +/area/horizon/medical/surgery/storage) +"wfS" = ( +/obj/effect/floor_decal/corner/grey/diagonal, +/obj/effect/floor_decal/spline/plain{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/service/kitchen) +"wfT" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/corner/dark_green{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_3/port) +"wfU" = ( +/obj/item/modular_computer/console/preset/research{ + dir = 4 + }, +/turf/simulated/floor/carpet/purple, +/area/horizon/command/heads/rd) +"wfV" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/corner/dark_green{ dir = 6 }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/maintenance/hangar/starboard) +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_3/central) +"wfX" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/corner/dark_green{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_3/central) +"wfY" = ( +/obj/structure/table/steel, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/item/aicard, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/window/southright{ + name = "High Risk Modules"; + desc = "Warning: Experimental modules designed to be used in extreme situations. Exercise extreme caution when utilizing."; + req_access = list(20) + }, +/obj/item/aiModule/freeform{ + pixel_x = 5 + }, +/obj/item/aiModule/quarantine{ + pixel_x = 5; + pixel_y = 9 + }, +/obj/item/aiModule/protectStation, +/obj/item/aiModule/corp{ + pixel_x = -5 + }, +/obj/item/aiModule/safeguard{ + pixel_y = 9 + }, +/obj/item/aiModule/conglomerate_aggressive{ + pixel_x = -5; + pixel_y = 9 + }, +/obj/item/aiModule/conglomerate{ + pixel_x = -5; + pixel_y = 9 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/ai/upload) "wga" = ( /obj/effect/floor_decal/corner/teal/full, /turf/unsimulated/floor/marble, @@ -154243,37 +155552,88 @@ icon_state = "d3-2-f" }, /turf/simulated/floor/reinforced/airless, -/area/template_noop) -"wgd" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ +/area/horizon/exterior) +"wgj" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/shuttle/intrepid/starboard_compartment) +"wgl" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/machinery/alarm/east, +/turf/simulated/floor/reinforced, +/area/horizon/engineering/gravity_gen) +"wgp" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/obj/structure/disposalpipe/junction{ dir = 1 }, -/turf/simulated/floor/carpet/rubber, -/area/maintenance/engineering/auxillary) -"wgx" = ( -/turf/simulated/wall/r_wall, -/area/turret_protected/ai_upload) +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/service/port) +"wgt" = ( +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/binary/pump/fuel{ + dir = 1; + name = "Fuel Tank to Thrusters" + }, +/obj/effect/floor_decal/industrial/outline/operations, +/turf/simulated/floor/tiled/dark, +/area/horizon/shuttle/mining) +"wgu" = ( +/obj/random/pottedplant, +/obj/effect/floor_decal/corner/dark_green/full{ + dir = 8 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/horizon/engineering/hallway/fore) +"wgy" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 7 + }, +/obj/machinery/requests_console/south{ + department = "Conference Room"; + name = "Conference Room Requests Console"; + dir = 1; + pixel_y = 37 + }, +/turf/simulated/floor/wood, +/area/horizon/command/bridge/meeting_room) "wgB" = ( /obj/machinery/porta_turret/crescent, /obj/effect/floor_decal/industrial/warning/full, /obj/machinery/light, /turf/unsimulated/floor, /area/centcom/control) -"wgC" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/turret_protected/ai_upload_foyer) "wgF" = ( /obj/effect/floor_decal/industrial/outline/yellow, /obj/structure/table/rack, @@ -154285,16 +155645,16 @@ }, /turf/simulated/floor/holofloor/carpet, /area/horizon/holodeck/source_biesel) -"wgH" = ( -/obj/structure/bed/stool/chair/office/dark{ - dir = 1 +"wgM" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + icon_state = "1-2" }, -/obj/effect/landmark/start{ - name = "Engineer" - }, -/obj/effect/floor_decal/spline/plain, -/turf/simulated/floor/tiled/dark, -/area/engineering/break_room) +/turf/simulated/floor/tiled, +/area/horizon/rnd/hallway/secondary) "wgP" = ( /obj/effect/floor_decal/corner/dark_blue{ dir = 6 @@ -154304,6 +155664,10 @@ }, /turf/simulated/floor/tiled, /area/horizon/security/hallway) +"wgR" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging, +/turf/simulated/floor/reinforced/airless, +/area/horizon/engineering/atmos/propulsion/starboard) "wgS" = ( /obj/effect/map_effect/window_spawner/full/reinforced/indestructible, /obj/structure/sign/pods{ @@ -154312,92 +155676,67 @@ }, /turf/unsimulated/floor/plating, /area/antag/mercenary) -"wha" = ( -/obj/structure/cable/green{ - icon_state = "1-2" +"wgT" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 9 }, -/turf/simulated/wall/shuttle/scc_space_ship/cardinal, -/area/bridge/meeting_room) +/turf/simulated/floor, +/area/horizon/maintenance/deck_3/aft/starboard) +"wgZ" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 6 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_2/starboard) "whb" = ( /obj/structure/bed/stool/chair, /turf/unsimulated/floor{ icon_state = "dark_preview" }, /area/centcom/specops) -"whg" = ( -/obj/machinery/camera/network/mining{ - c_tag = "Mining - Production Room"; - dir = 1 +"whd" = ( +/obj/structure/railing/mapped{ + dir = 4 }, -/obj/effect/floor_decal/corner/brown/full, -/obj/effect/floor_decal/industrial/warning/corner{ +/obj/structure/railing/mapped, +/obj/machinery/light{ dir = 1 }, -/obj/machinery/embedded_controller/radio/simple_docking_controller{ - dir = 1; - frequency = 1380; - id_tag = "cargo_shuttle_dock"; - name = "cargo shuttle docking controller"; - pixel_x = -7; - pixel_y = -22; - req_one_access = list(13,31); - tag_door = "cargo_shuttle_dock_airlock" - }, /obj/structure/railing/mapped{ dir = 8 }, -/turf/simulated/floor/tiled, -/area/operations/loading) -"whi" = ( -/obj/machinery/light, -/turf/simulated/floor/reinforced, -/area/rnd/xenobiology/hazardous) -"whn" = ( -/obj/effect/landmark/start{ - name = "Chief Medical Officer" +/turf/simulated/open, +/area/horizon/service/hydroponics) +"whk" = ( +/turf/simulated/wall, +/area/horizon/rnd/xenoarch/atrium) +"who" = ( +/obj/effect/floor_decal/corner/dark_blue/full, +/obj/machinery/light{ + dir = 8 }, -/obj/structure/bed/stool/chair/office/bridge/generic{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/hallway/medical/upper) -"wht" = ( -/obj/machinery/atmospherics/pipe/tank/carbon_dioxide/scc_shuttle, -/turf/simulated/wall/shuttle/unique/scc/scout{ - icon_state = "5,10" - }, -/area/shuttle/canary) +/turf/simulated/floor/tiled/dark, +/area/horizon/command/bridge/meeting_room) +"whs" = ( +/turf/simulated/wall/shuttle/scc_space_ship/cardinal, +/area/horizon/maintenance/deck_2/security_port) "whu" = ( /turf/unsimulated/wall/fakepdoor, /area/centcom/legion/hangar5) -"whB" = ( -/obj/effect/floor_decal/corner/dark_green/diagonal, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/structure/sink/kitchen{ +"why" = ( +/obj/structure/stairs_railing{ dir = 4; - name = "sink"; - pixel_x = -20 + pixel_x = -32 + }, +/turf/simulated/floor/holofloor/tiled/ramp/bottom, +/area/horizon/stairwell/starboard/deck_2) +"whD" = ( +/obj/structure/cable{ + icon_state = "1-8" }, /turf/simulated/floor/tiled, -/area/horizon/hydroponics) -"whH" = ( -/obj/structure/lattice/catwalk/indoor/grate/damaged, -/obj/item/stack/rods, -/obj/effect/decal/cleanable/cobweb2, -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/aux{ - dir = 10 - }, -/turf/simulated/floor/plating, -/area/maintenance/research_port) +/area/horizon/hangar/intrepid) "whM" = ( /obj/effect/decal/fake_object{ color = "#545c68"; @@ -154419,27 +155758,10 @@ density = 1 }, /area/antag/ninja) -"whN" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/structure/sign/drop{ - name = "\improper DANGER: DROP ON OTHER SIDE OF DOOR sign"; - pixel_x = -32 - }, -/turf/simulated/floor, -/area/horizon/maintenance/deck_three/aft/starboard) -"whS" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/structure/table/rack, -/obj/random/loot, -/turf/simulated/floor, -/area/maintenance/engineering_ladder) +"whQ" = ( +/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/hallway/fore) "whT" = ( /obj/effect/ghostspawpoint{ identifier = "TCFLSentinel"; @@ -154475,74 +155797,41 @@ }, /turf/unsimulated/floor/plating, /area/centcom/legion) -"whW" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/machinery/alarm/west, -/obj/structure/railing/mapped, -/turf/simulated/floor/tiled, -/area/operations/lower/machinist/surgicalbay) -"wic" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/lattice/catwalk/indoor/grate/damaged, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard/deck1) -"wie" = ( -/obj/effect/landmark/entry_point/aft{ - name = "aft, bottom AI core" - }, -/turf/simulated/wall/shuttle/scc_space_ship/cardinal, -/area/maintenance/research_port) -"wif" = ( -/obj/machinery/door/airlock/multi_tile/glass{ - dir = 2; - name = "Hangar" - }, -/obj/machinery/door/firedoor/multi_tile{ - dir = 2 - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/blast/shutters/open{ - dir = 8; - id = "shutters_hangardeskcpport"; - name = "Security Checkpoint Shutter" - }, -/obj/machinery/door/blast/regular/open{ - id = "hangarlockdown"; - name = "Hangar Lockdown" - }, -/turf/simulated/floor/tiled/dark, -/area/security/checkpoint) -"wij" = ( -/obj/structure/platform_stairs/full{ - dir = 8 - }, -/obj/structure/platform{ - dir = 1 +"wii" = ( +/obj/structure/cable/green{ + icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/simulated/floor/tiled/dark/full, -/area/operations/lower/machinist) -"win" = ( -/obj/effect/floor_decal/corner_wide/yellow{ - dir = 5 +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/platform, -/obj/machinery/firealarm/north, -/turf/simulated/floor/tiled, -/area/hallway/engineering) -"wiv" = ( -/obj/effect/floor_decal/spline/plain{ +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/effect/floor_decal/corner_wide/green{ dir = 8 }, -/turf/simulated/floor/tiled/dark, -/area/horizon/bar) +/turf/simulated/floor/tiled/white, +/area/horizon/medical/gen_treatment) +"wik" = ( +/obj/structure/bed/stool/chair/office/dark{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/horizon/engineering/lobby) +"wiq" = ( +/obj/effect/floor_decal/corner/lime/diagonal, +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/washroom) "wiy" = ( /obj/structure/table/reinforced/steel, /obj/item/pinpointer/nukeop, @@ -154551,58 +155840,73 @@ }, /turf/simulated/floor/tiled/dark, /area/shuttle/mercenary) -"wiE" = ( -/obj/structure/railing/mapped{ - dir = 4 +"wiA" = ( +/obj/structure/sign/nosmoking_1{ + pixel_x = 32 + }, +/obj/structure/closet/emcloset, +/obj/item/storage/toolbox/emergency, +/obj/item/storage/toolbox/emergency, +/obj/item/crowbar/red, +/obj/effect/floor_decal/corner/dark_green/full{ + dir = 1 }, -/obj/effect/floor_decal/corner/dark_blue/diagonal, /obj/machinery/light{ - dir = 8 + dir = 4 }, -/obj/effect/floor_decal/industrial/outline/firefighting_closet, -/obj/structure/closet/walllocker/firecloset{ - pixel_x = -32 - }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/dark, -/area/horizon/longbow) -"wiF" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/floor_decal/industrial/outline/emergency_closet, /obj/machinery/alarm/north, -/turf/simulated/floor/tiled/dark, -/area/horizon/maintenance/deck_three/aft/starboard) -"wiI" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/lino, -/area/chapel/main) -"wiM" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, +/turf/simulated/floor/tiled, +/area/horizon/crew/resdeck/living_quarters_lift) +"wiG" = ( +/turf/simulated/wall, +/area/horizon/maintenance/deck_2/cargo_compartment) +"wiH" = ( +/obj/machinery/appliance/cooker/fryer, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 1 }, -/obj/structure/disposalpipe/segment{ +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/effect/floor_decal/industrial/outline/grey, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/service/kitchen) +"wiL" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/light/small/emergency{ + dir = 8 + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/research) +"wiO" = ( +/obj/effect/floor_decal/corner_wide/blue{ + dir = 1 + }, +/obj/effect/floor_decal/corner_wide/yellow{ + dir = 4 + }, +/obj/effect/floor_decal/spline/plain/corner{ + dir = 1 + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/red{ + dir = 8 + }, +/obj/machinery/door/airlock/glass_atmos{ + dir = 4; + name = "Atmospherics Locker Room"; + req_access = list(24) + }, +/obj/effect/map_effect/door_helper/unres{ dir = 4 }, /turf/simulated/floor/tiled/full, -/area/hallway/primary/central_one) -"wiP" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology/xenological) +/area/horizon/engineering/atmos/storage) "wiQ" = ( /obj/random/pottedplant, /obj/effect/floor_decal/spline/fancy/wood{ @@ -154614,85 +155918,88 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/holodeck/source_biesel) -"wiR" = ( -/obj/effect/floor_decal/corner_wide/yellow{ +"wiS" = ( +/obj/effect/floor_decal/industrial/hatch_door/yellow, +/obj/machinery/door/firedoor{ + req_one_access = list(24,11,67,73); + dir = 4 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/shuttle/intrepid/main_compartment) +"wiT" = ( +/obj/effect/floor_decal/corner/brown{ dir = 6 }, -/obj/machinery/camera/network/engineering{ - c_tag = "Engineering - Hallway 5"; - dir = 8 - }, -/obj/structure/sign/directions/prop{ - dir = 4; - pixel_x = 32; - pixel_y = 10 - }, /turf/simulated/floor/tiled, -/area/hallway/engineering/rust) +/area/horizon/operations/lobby) "wiU" = ( /obj/effect/floor_decal/industrial/warning{ dir = 1 }, /turf/simulated/floor/tiled, /area/merchant_station/warehouse) -"wiW" = ( -/obj/effect/floor_decal/industrial/warning{ +"wiV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/aux{ + dir = 4 + }, +/obj/machinery/alarm/south, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/command/bridge/aibunker) +"wjg" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/closet/firecloset{ + anchored = 1; + canbemoved = 1 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/reactor/supermatter/mainchamber) +"wjj" = ( +/obj/machinery/firealarm/north, +/obj/effect/floor_decal/corner/dark_green/full{ dir = 8 }, -/obj/machinery/alarm/east, -/obj/structure/table/rack, -/obj/random/loot, -/turf/simulated/floor, -/area/maintenance/security_port) -"wiZ" = ( -/obj/structure/cable/green{ - icon_state = "1-2" +/obj/effect/floor_decal/industrial/loading/yellow{ + dir = 4 }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor, -/area/maintenance/security_port) -"wjk" = ( -/obj/structure/closet/walllocker/medical/firstaid{ - pixel_x = -32 +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_2/central) +"wjn" = ( +/obj/effect/floor_decal/corner/brown/diagonal, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/effect/floor_decal/industrial/warning, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 }, -/obj/effect/floor_decal/industrial/outline/medical, -/turf/simulated/floor/tiled/dark/full, -/area/bridge/aibunker) +/turf/simulated/floor/tiled/dark, +/area/horizon/operations/office) "wjo" = ( /obj/effect/floor_decal/industrial/outline/security, /turf/simulated/floor/holofloor/tiled, /area/horizon/holodeck/source_lasertag) -"wjp" = ( -/obj/effect/floor_decal/corner/dark_blue{ +"wju" = ( +/obj/effect/floor_decal/corner/yellow{ dir = 9 }, -/obj/structure/closet/secure_closet/bridge_crew, -/obj/effect/floor_decal/industrial/outline/security, +/obj/machinery/atmospherics/pipe/simple/visible/cyan, /turf/simulated/floor/tiled/dark, -/area/hangar/control) -"wjr" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/material/shard{ - icon_state = "medium" - }, -/turf/simulated/floor/tiled, -/area/maintenance/operations) -"wjA" = ( -/obj/machinery/power/apc/south, -/obj/structure/cable/green, -/obj/structure/table/standard, -/obj/item/paper_scanner, -/obj/item/pen, -/obj/item/folder/white, -/obj/item/folder/blue, -/obj/effect/floor_decal/corner/beige{ - dir = 10 - }, -/obj/structure/closet/walllocker/medical/firstaid{ - pixel_y = -32 - }, -/turf/simulated/floor/tiled, -/area/security/vacantoffice) +/area/horizon/engineering/reactor/supermatter/waste) +"wjx" = ( +/obj/structure/sign/flag/scc/unmovable, +/turf/simulated/wall/r_wall, +/area/horizon/command/heads/xo) +"wjB" = ( +/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, +/turf/simulated/floor/plating, +/area/horizon/hangar/operations) "wjD" = ( /obj/machinery/body_scanconsole{ dir = 4 @@ -154702,27 +156009,6 @@ }, /turf/simulated/floor/tiled/white, /area/shuttle/hapt) -"wjH" = ( -/obj/effect/floor_decal/corner/yellow{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/tiled/dark, -/area/engineering/storage/tech) -"wjJ" = ( -/obj/machinery/atmospherics/portables_connector, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/portable_atmospherics/powered/scrubber, -/obj/effect/floor_decal/industrial/outline/red, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/atmos/storage) "wjL" = ( /obj/structure/shuttle_part/ert{ icon_state = "9,3"; @@ -154730,38 +156016,40 @@ }, /turf/unsimulated/floor/plating, /area/centcom/specops) -"wjV" = ( -/obj/machinery/light/small/red{ +"wjT" = ( +/obj/machinery/alarm/north, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/simulated/floor/tiled/dark, -/area/maintenance/wing/starboard/far) -"wjW" = ( -/obj/machinery/light{ +/obj/effect/floor_decal/corner/brown{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenoarch_storage) -"wjY" = ( -/turf/space/dynamic, -/area/engineering/atmos/propulsion) -"wka" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 9 +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 }, -/obj/effect/floor_decal/corner/dark_green{ - dir = 9 +/obj/machinery/light/floor{ + dir = 1 }, -/obj/machinery/door/firedoor, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/full, -/area/hallway/primary/aft) -"wkd" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/machinery/atmospherics/portables_connector, -/turf/simulated/floor/plating, -/area/medical/cryo) +/turf/simulated/floor/tiled, +/area/horizon/rnd/hallway) +"wkc" = ( +/obj/structure/bed/stool/chair/office/light{ + dir = 8 + }, +/obj/effect/landmark/start{ + name = "Xenobiologist" + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/horizon/rnd/conference) "wke" = ( /obj/effect/floor_decal/industrial/warning{ dir = 1 @@ -154781,13 +156069,6 @@ icon_state = "dark_preview" }, /area/centcom/control) -"wkj" = ( -/obj/machinery/atmospherics/pipe/simple/visible/black, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/engineering/atmos/propulsion) "wkk" = ( /obj/effect/floor_decal/industrial/warning{ dir = 1 @@ -154808,6 +156089,9 @@ /obj/structure/table/steel, /turf/unsimulated/floor/plating, /area/centcom/specops) +"wkl" = ( +/turf/simulated/floor, +/area/horizon/maintenance/deck_3/aft/port) "wkn" = ( /obj/structure/cryofeed, /obj/structure/window/reinforced/crescent, @@ -154816,18 +156100,21 @@ }, /turf/unsimulated/floor, /area/centcom/spawning) -"wkt" = ( -/obj/effect/floor_decal/corner/dark_green, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/effect/floor_decal/spline/plain/corner/orange, -/obj/effect/floor_decal/spline/plain/corner/red{ - dir = 1 - }, -/obj/effect/floor_decal/corner/dark_green{ - dir = 1 - }, +"wkq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, -/area/horizon/hydroponics) +/area/horizon/hangar/auxiliary) +"wkr" = ( +/obj/machinery/door/airlock/multi_tile/glass{ + dir = 2; + name = "Public Garden" + }, +/obj/machinery/door/firedoor/multi_tile{ + dir = 1 + }, +/turf/simulated/floor/tiled/full, +/area/horizon/service/hydroponics/garden) "wkv" = ( /obj/effect/floor_decal/corner/dark_blue{ dir = 9 @@ -154839,38 +156126,9 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/security/evidence_storage) -"wky" = ( -/obj/structure/ship_weapon_dummy, -/obj/machinery/ship_weapon/grauwolf{ - pixel_x = -32; - pixel_y = -192; - weapon_id = "Grauwolf Flak Battery" - }, -/turf/simulated/floor/reinforced, -/area/horizon/grauwolf) "wkz" = ( /turf/unsimulated/floor, /area/centcom/holding) -"wkD" = ( -/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, -/turf/simulated/floor/tiled/dark/full, -/area/outpost/mining_main/refinery) -"wkH" = ( -/obj/machinery/atmospherics/pipe/simple/visible/black{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/lattice/catwalk/indoor, -/turf/simulated/floor/plating, -/area/engineering/atmos/air) "wkI" = ( /obj/machinery/door/airlock/centcom{ dir = 4; @@ -154889,24 +156147,6 @@ "wkJ" = ( /turf/simulated/floor/tiled/white, /area/merchant_station) -"wkO" = ( -/obj/effect/floor_decal/corner/brown/diagonal, -/obj/effect/landmark/start{ - name = "Shaft Miner" - }, -/turf/simulated/floor/tiled/dark, -/area/outpost/mining_main/eva) -"wkP" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/reagent_dispensers/cookingoil, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard) -"wkQ" = ( -/obj/effect/floor_decal/corner/black/full{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/hangar/intrepid) "wkS" = ( /obj/structure/bed/stool/padded{ pixel_y = 10 @@ -154916,42 +156156,28 @@ }, /turf/unsimulated/floor/wood, /area/centcom/bar) -"wkY" = ( -/obj/machinery/atmospherics/pipe/simple/visible/green{ - dir = 4 - }, -/obj/machinery/light, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"wlf" = ( -/obj/effect/floor_decal/spline/plain/green{ +"wkW" = ( +/turf/simulated/wall/r_wall, +/area/horizon/service/hydroponics) +"wlb" = ( +/obj/random/junk, +/obj/effect/floor_decal/industrial/outline/grey, +/turf/simulated/floor, +/area/horizon/maintenance/deck_3/aft/starboard) +"wli" = ( +/obj/machinery/computer/ship/navigation{ dir = 1 }, -/obj/effect/floor_decal/spline/plain/blue, -/obj/machinery/atmospherics/pipe/simple/hidden/universal{ - dir = 4 +/obj/effect/floor_decal/corner/dark_blue{ + dir = 10 + }, +/obj/machinery/camera/network/third_deck{ + c_tag = "Third Deck - Command Entrance"; + dir = 1; + network = list("Third Deck","Command","XO_Office","Capt_Office") }, /turf/simulated/floor/tiled, -/area/horizon/hydroponics/lower) -"wlg" = ( -/obj/structure/disposaloutlet{ - dir = 8 - }, -/obj/structure/disposalpipe/trunk, -/obj/effect/floor_decal/industrial/warning/full, -/obj/structure/plasticflaps/airtight{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark/full, -/area/operations/mail_room) -"wlh" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "cargo_1" - }, -/obj/machinery/alarm/south, -/turf/simulated/floor/tiled, -/area/operations/loading) +/area/horizon/hallway/primary/deck_3/central) "wlm" = ( /turf/simulated/floor/holofloor/reinforced, /area/horizon/holodeck/betadeck) @@ -154966,35 +156192,16 @@ name = "staircase" }, /area/centcom/spawning) -"wlp" = ( -/obj/effect/decal/cleanable/cobweb2, -/turf/simulated/floor/tiled/dark, -/area/maintenance/wing/starboard/far) -"wlu" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 6 +"wlr" = ( +/turf/simulated/wall, +/area/horizon/operations/warehouse) +"wlt" = ( +/obj/structure/platform{ + dir = 1 }, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/engine_room) -"wlw" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/obj/machinery/door/airlock/external{ - dir = 4 - }, -/obj/effect/map_effect/marker_helper/airlock/interior, -/obj/effect/map_effect/marker/airlock/docking{ - landmark_tag = "nav_horizon_dock_deck_3_starboard_1"; - master_tag = "airlock_horizon_dock_deck_3_starboard_1"; - name = "airlock_horizon_dock_deck_3_starboard_1" - }, -/turf/simulated/floor/plating, -/area/horizon/hallway/deck_three/primary/starboard/docks) -"wlx" = ( -/obj/effect/floor_decal/corner/dark_green/full, +/obj/effect/floor_decal/corner/mauve/diagonal, /turf/simulated/floor/tiled, -/area/horizon/hallway/deck_two/fore) +/area/horizon/rnd/hallway/secondary) "wly" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 9 @@ -155002,33 +156209,100 @@ /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 +"wlz" = ( +/obj/effect/floor_decal/industrial/outline/grey, +/obj/structure/table/steel, +/obj/item/storage/toolbox/emergency{ + pixel_x = -7; + pixel_y = 8 + }, +/obj/item/device/flashlight{ + pixel_x = 4 }, /turf/simulated/floor/plating, -/area/shuttle/quark/cargo_hold) -"wlM" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 10 +/area/horizon/hangar/intrepid) +"wlA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 }, -/obj/structure/reagent_dispensers/watertank, -/turf/simulated/floor/plating, -/area/horizon/maintenance/deck_two/fore/port) -"wlT" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/machinery/light{ +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/lino, +/area/horizon/service/bar) +"wlC" = ( +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/structure/railing/mapped, +/obj/machinery/button/remote/blast_door{ + dir = 4; + id = "shutters_deck2_hydroponicswindowssafety"; + name = "Viewing Shutters"; + pixel_x = 19; + pixel_y = 5 + }, +/turf/simulated/open, +/area/horizon/service/hydroponics) +"wlD" = ( +/obj/structure/table/standard, +/obj/item/device/paicard{ + pixel_x = 5 + }, +/obj/effect/floor_decal/corner/mauve/full{ dir = 1 }, -/obj/machinery/computer/general_air_control/large_tank_control/terminal{ - name = "Hydrogen Supply Monitor"; - output_tag = "H2_out_starboardthruster"; - sensors = list("h_sensor"="Tank") +/obj/structure/extinguisher_cabinet/east, +/obj/machinery/button/remote/blast_door{ + dir = 10; + id = "telesci_lockdown"; + name = "Telescience Lockdown"; + pixel_x = -7; + req_access = list(47); + pixel_y = 5 }, -/obj/effect/floor_decal/industrial/outline/firefighting_closet, -/turf/simulated/floor/tiled/dark, -/area/engineering/atmos/propulsion/starboard) +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/telesci) +"wlO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/camera/network/service{ + c_tag = "Dinner - Kitchen Freezer"; + dir = 8 + }, +/turf/simulated/floor/tiled/freezer{ + name = "cooled tiles"; + temperature = 253.15 + }, +/area/horizon/service/kitchen/freezer) +"wlP" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/main_storage) +"wlQ" = ( +/obj/structure/window/shuttle/scc_space_ship, +/obj/structure/grille, +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 2; + icon_state = "shutter0"; + id = "LCKDshutters"; + name = "MedBay Lockdown Shutters"; + opacity = 0 + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/horizon/medical/smoking) "wlV" = ( /obj/structure/table/rack, /obj/item/clothing/shoes/magboots, @@ -155038,20 +156312,6 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/unsimulated/floor, /area/antag/mercenary) -"wlY" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 1 - }, -/obj/structure/table/wood, -/obj/random/pottedplant_small{ - pixel_x = 4; - pixel_y = 5 - }, -/obj/machinery/power/outlet{ - pixel_y = -2 - }, -/turf/simulated/floor/wood, -/area/horizon/cafeteria) "wma" = ( /obj/item/modular_computer/console/preset/security{ dir = 4 @@ -155060,47 +156320,56 @@ icon_state = "dark_preview" }, /area/centcom/control) -"wml" = ( -/obj/structure/cable{ - icon_state = "1-2" +"wmg" = ( +/obj/structure/morgue/crematorium{ + _wifi_id = "xenobio_crema" }, -/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{ +/obj/effect/floor_decal/corner/mauve/full{ dir = 8 }, -/obj/structure/platform_deco/ledge{ +/obj/effect/floor_decal/industrial/outline/red, +/turf/simulated/floor/tiled, +/area/horizon/rnd/xenobiology) +"wmj" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 5 + }, +/obj/machinery/firealarm/north, +/obj/machinery/disposal/small/west, +/obj/structure/disposalpipe/trunk, +/turf/simulated/floor/wood, +/area/horizon/service/chapel/office) +"wmk" = ( +/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/rnd/hallway/secondary) +"wmn" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/sortjunction{ + dir = 4; + name = "Atmospherics"; + sortType = "Atmospherics" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor/plating, +/area/horizon/engineering/hallway/aft) +"wmE" = ( +/obj/effect/floor_decal/industrial/warning{ dir = 9 }, -/obj/structure/railing/mapped{ - dir = 4 - }, -/turf/simulated/open, -/area/operations/office) -"wmx" = ( -/obj/structure/sign/securearea, -/turf/simulated/wall/r_wall, -/area/rnd/test_range) -"wmD" = ( -/obj/structure/railing/mapped, -/obj/effect/floor_decal/spline/plain, -/obj/structure/morgue, -/turf/simulated/floor/tiled/freezer{ - name = "cooled tiles"; - temperature = 278.15 - }, -/area/medical/morgue/lower) +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/main/starboard) "wmG" = ( /obj/structure/sign/flag/nanotrasen/large/north, /obj/structure/bed/stool/chair/office/bridge, @@ -155114,10 +156383,6 @@ icon_state = "carpet14-10" }, /area/centcom/specops) -"wmL" = ( -/obj/effect/shuttle_landmark/escape_pod/start/pod2, -/turf/simulated/floor/shuttle/dark_blue, -/area/shuttle/escape_pod/pod2) "wmN" = ( /obj/effect/decal/cleanable/vomit, /obj/effect/decal/cleanable/dirt, @@ -155147,56 +156412,64 @@ icon_state = "dark_preview" }, /area/centcom/checkpoint/fore) -"wmS" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/alarm/north, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard/deck1) +"wmT" = ( +/obj/machinery/camera/network/command{ + c_tag = "AI Core - External"; + dir = 4; + pixel_x = 32 + }, +/turf/simulated/wall/shuttle/scc_space_ship/cardinal, +/area/horizon/ai/upload_foyer) +"wmU" = ( +/obj/effect/floor_decal/corner/purple/diagonal, +/obj/machinery/firealarm/west, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/service/custodial/disposals/deck_2) "wmX" = ( /obj/structure/shuttle/engine/propulsion/burst/left, /turf/unsimulated/floor/plating, /area/shuttle/distress) -"wna" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/structure/platform, -/obj/machinery/door/firedoor{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/bridge/upperdeck) -"wnc" = ( -/obj/effect/floor_decal/corner/dark_blue, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 5 - }, -/obj/machinery/alarm/east, -/obj/machinery/light/floor{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/storage/eva) "wnd" = ( /obj/effect/floor_decal/corner/teal{ dir = 4 }, /turf/unsimulated/floor/dark, /area/antag/actor) -"wng" = ( -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/plating, -/area/maintenance/hangar/port) +"wne" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/airlock/glass_mining{ + dir = 4; + name = "Operations Hangar"; + req_one_access = list(26,29,31,48,67,70) + }, +/obj/machinery/door/firedoor, +/obj/effect/map_effect/door_helper/unres{ + dir = 8 + }, +/turf/simulated/floor/tiled/full, +/area/horizon/stairwell/starboard/deck_1) +"wnf" = ( +/turf/simulated/floor/tiled, +/area/horizon/maintenance/deck_2/wing/port/nacelle) "wnj" = ( /obj/structure/flora/stump{ pixel_x = 15; @@ -155217,58 +156490,94 @@ dir = 4 }, /area/antag/raider) -"wnv" = ( +"wnm" = ( +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/maintenance{ + dir = 4; + req_one_access = list(12,48) + }, +/turf/simulated/floor/tiled/full, +/area/horizon/hangar/intrepid) +"wno" = ( +/obj/structure/bed/stool/chair/padded/red{ + dir = 8 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, /obj/structure/cable/green{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 + icon_state = "4-8"; + d1 = 4; + d2 = 8 }, +/obj/structure/engineer_maintenance/electric/wall, +/turf/simulated/floor/wood, +/area/horizon/service/dining_hall) +"wnw" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/wood/walnut, +/area/horizon/medical/smoking) +"wnC" = ( +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/effect/floor_decal/corner/black{ dir = 6 }, +/obj/effect/floor_decal/industrial/loading/yellow, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/hangar/intrepid) +"wnF" = ( +/obj/effect/floor_decal/corner/green/full{ + dir = 8 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/vending/lavatory, +/turf/simulated/floor/tiled/white, +/area/horizon/crew/washroom/deck_3) +"wnI" = ( +/obj/random/pottedplant, +/obj/effect/floor_decal/spline/fancy/wood/full, +/obj/structure/railing/mapped, +/obj/structure/railing/mapped{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/horizon/hallway/primary/deck_3/central) +"wnJ" = ( +/obj/structure/platform_stairs/full/east_west_cap{ + dir = 8 + }, +/obj/structure/platform/cutout, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, /obj/structure/cable/green{ icon_state = "4-8" }, -/obj/effect/floor_decal/spline/plain/corner{ +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/effect/floor_decal/spline/plain/corner{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/black{ - dir = 5 - }, -/turf/simulated/floor/carpet/rubber, -/area/tcommsat/entrance) -"wnz" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/structure/tank_wall/carbon_dioxide{ - icon_state = "co2-3" - }, -/turf/simulated/floor/airless, -/area/engineering/atmos) +/turf/simulated/floor/tiled, +/area/horizon/command/bridge/cciaroom/lounge) "wnL" = ( /obj/machinery/vending/dinnerware/bar, /obj/effect/floor_decal/industrial/outline/medical, /turf/unsimulated/floor/marble, /area/antag/wizard) -"wnM" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 9 - }, -/obj/machinery/disposal/small/east, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_two/fore) -"wnP" = ( -/obj/structure/sign/electricshock, -/turf/simulated/wall/r_wall, -/area/tcommsat/chamber) "wnR" = ( /obj/machinery/door/airlock/centcom{ dir = 1; @@ -155277,54 +156586,12 @@ }, /turf/unsimulated/floor, /area/antag/mercenary) -"wnV" = ( -/obj/effect/map_effect/marker/airlock/shuttle{ - cycle_to_external_air = 1; - master_tag = "airlock_shuttle_intrepid"; - name = "airlock_shuttle_intrepid"; - req_one_access = null; - shuttle_tag = "Intrepid" +"wnY" = ( +/obj/machinery/vending/encryption{ + pixel_y = 29 }, -/obj/machinery/atmospherics/pipe/manifold4w/hidden, -/turf/simulated/floor/tiled/dark/full, -/area/shuttle/intrepid/main_compartment) -"wnW" = ( -/obj/machinery/porta_turret, -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/obj/effect/floor_decal/industrial/warning/full, -/turf/simulated/floor/bluegrid{ - name = "cooled mainframe floor"; - temperature = 278 - }, -/area/turret_protected/ai) -"wnZ" = ( -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/machinery/light/small/emergency{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/wing/port/far) -"wod" = ( -/obj/structure/bed/stool/chair/padded/brown, -/obj/effect/floor_decal/spline/fancy/wood/cee{ - dir = 1 - }, -/obj/machinery/camera/network/third_deck{ - c_tag = "Third Deck - Port Main Hallway Port" - }, -/turf/simulated/floor/wood, -/area/horizon/hallway/deck_three/primary/port) -"woe" = ( -/obj/structure/table/stone/marble, -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/shutters{ - id = "shutters_deck2_kitchendesk"; - name = "Kitchen Desk Shutter" - }, -/turf/simulated/floor/tiled/dark, -/area/horizon/kitchen) +/turf/simulated/floor/carpet, +/area/horizon/command/heads/xo) "wof" = ( /obj/effect/decal/fake_object{ dir = 4; @@ -155345,49 +156612,58 @@ name = "shallow water" }, /area/horizon/holodeck/source_konyang) -"woi" = ( -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/turf/simulated/wall/shuttle/scc_space_ship/cardinal, -/area/bridge/controlroom) -"woo" = ( -/obj/item/hullbeacon/red, -/turf/simulated/floor/reinforced/airless, -/area/template_noop) -"woq" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/effect/floor_decal/spline/fancy/wood/corner{ +"woh" = ( +/obj/structure/grille/broken, +/obj/effect/floor_decal/industrial/warning{ dir = 1 }, -/turf/simulated/floor/wood, -/area/crew_quarters/captain) -"wos" = ( -/obj/structure/cable/green{ - icon_state = "4-8" +/turf/simulated/floor, +/area/horizon/maintenance/deck_3/aft/port/far) +"wok" = ( +/obj/structure/table/reinforced/steel, +/obj/effect/floor_decal/corner/dark_blue/diagonal, +/obj/item/book/manual/wiki/security_space_law{ + pixel_x = 1; + pixel_y = 2 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ +/turf/simulated/floor/tiled/dark, +/area/horizon/command/bridge/aibunker) +"won" = ( +/obj/structure/table/standard, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/item/stack/material/phoron{ + amount = 6; + pixel_x = 12 + }, +/obj/machinery/reagentgrinder{ + pixel_y = 16 + }, +/obj/item/screwdriver, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/pharmacy) +"wor" = ( +/obj/effect/floor_decal/spline/plain{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 +/obj/effect/floor_decal/spline/plain{ + dir = 8 }, -/obj/effect/floor_decal/corner/brown{ +/obj/machinery/atmospherics/pipe/simple/hidden/black, +/turf/simulated/floor/carpet/rubber, +/area/horizon/tcommsat/chamber) +"wov" = ( +/obj/structure/disposalpipe/segment{ + icon_state = "pipe-c" + }, +/obj/effect/floor_decal/corner_wide/green{ dir = 5 }, -/obj/machinery/camera/network/supply{ - c_tag = "Operations - Mining Entrance" - }, -/turf/simulated/floor/tiled, -/area/hangar/operations) -"woA" = ( -/obj/machinery/firealarm/south, -/obj/effect/floor_decal/corner/dark_blue/full, -/obj/machinery/alarm/west, -/turf/simulated/floor/tiled/dark, -/area/turret_protected/ai_upload_foyer) +/obj/machinery/firealarm/north, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/hallway/upper) "woB" = ( /obj/structure/window/reinforced/crescent{ dir = 4 @@ -155400,12 +156676,16 @@ }, /turf/unsimulated/floor/carpet, /area/centcom/bar) -"woD" = ( -/obj/effect/landmark/entry_point/aft{ - name = "aft, deck 1 port maintenance, starboard side" +"woE" = ( +/obj/structure/railing/mapped{ + dir = 8 }, -/turf/simulated/wall/shuttle/scc_space_ship/cardinal, -/area/engineering/bluespace_drive) +/obj/structure/platform/ledge{ + dir = 4 + }, +/obj/structure/platform/ledge, +/turf/simulated/open, +/area/horizon/hallway/primary/deck_3/central) "woH" = ( /obj/structure/window/reinforced/crescent{ dir = 4 @@ -155414,32 +156694,25 @@ /obj/effect/floor_decal/sign/b, /turf/unsimulated/floor, /area/antag/mercenary) -"woM" = ( +"woK" = ( /obj/structure/grille, /obj/machinery/door/firedoor, /obj/structure/window/shuttle/scc_space_ship/cardinal, +/obj/machinery/door/blast/shutters/open{ + dir = 2; + id = "kitchen_window_shutters"; + name = "Viewing Shutter" + }, /turf/simulated/floor/plating, -/area/horizon/hallway/deck_three/primary/port) -"woT" = ( -/obj/machinery/conveyor{ - id = "Robocompo" - }, -/obj/structure/platform{ - dir = 4 - }, -/obj/machinery/camera/network/supply{ - c_tag = "Operations - Machinist Workshop Starboard"; - dir = 4 +/area/horizon/service/kitchen) +"woX" = ( +/obj/vehicle/train/cargo/trolley, +/obj/effect/floor_decal/corner/brown{ + dir = 10 }, +/obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled, -/area/operations/lower/machinist) -"woW" = ( -/obj/structure/table/rack, -/obj/random/loot, -/obj/random/loot, -/obj/random/loot, -/turf/simulated/floor/plating, -/area/maintenance/aft) +/area/horizon/operations/warehouse) "wpb" = ( /obj/structure/ladder{ pixel_y = 16 @@ -155450,38 +156723,44 @@ /obj/structure/lattice, /turf/simulated/open/airless, /area/horizon/exterior) -"wpd" = ( -/obj/machinery/light/small{ +"wph" = ( +/obj/structure/table/rack, +/obj/structure/window/reinforced{ dir = 4 }, -/obj/effect/map_effect/marker/airlock/docking{ - landmark_tag = "nav_horizon_dock_deck_3_starboard_3"; - master_tag = "airlock_horizon_dock_deck_3_starboard_3"; - name = "airlock_horizon_dock_deck_3_starboard_3" +/obj/structure/window/reinforced, +/turf/simulated/floor/tiled/freezer, +/area/horizon/crew/fitness/showers) +"wpi" = ( +/obj/structure/cable{ + icon_state = "4-8" }, -/turf/simulated/floor/plating, -/area/horizon/hallway/deck_three/primary/starboard/docks) -"wpe" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/effect/floor_decal/spline/plain{ - dir = 8 - }, -/obj/effect/floor_decal/spline/plain/corner, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/white, -/area/horizon/kitchen) -"wpl" = ( -/obj/structure/table/wood, /obj/effect/floor_decal/corner/dark_green{ dir = 5 }, -/obj/random/pottedplant_small{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/machinery/newscaster/north, /turf/simulated/floor/tiled, -/area/engineering/lobby) +/area/horizon/hangar/auxiliary) +"wpm" = ( +/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/dark_green{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/loading/yellow{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/horizon/security/checkpoint) "wpo" = ( /obj/machinery/atmospherics/binary/passive_gate{ dir = 1; @@ -155495,46 +156774,57 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/shuttle/skipjack) -"wpq" = ( -/obj/structure/cable/green{ - icon_state = "4-8" +"wpz" = ( +/obj/structure/railing/mapped, +/obj/structure/table/rack, +/obj/item/primer/low, +/obj/item/primer, +/obj/item/primer, +/obj/item/primer, +/obj/item/primer, +/obj/item/primer/high, +/obj/effect/floor_decal/corner/dark_blue{ + dir = 10 }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark, +/area/horizon/weapons/longbow) +"wpB" = ( +/obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/corner/mauve{ dir = 1 }, +/obj/item/storage/secure/safe{ + pixel_y = 33; + pixel_x = 31 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/item/modular_computer/console/preset/command/account{ + dir = 8; + pixel_x = 18 + }, +/turf/simulated/floor/carpet, +/area/horizon/command/heads/captain) +"wpF" = ( +/obj/machinery/door/airlock/glass_research{ + dir = 4; + name = "Research Directors Lobby" + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor{ + dir = 4 + }, /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/simulated/floor/tiled, -/area/rnd/hallway) -"wpv" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/aux{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/obj/machinery/button/remote/blast_door{ - id = "command_bunker_lockdown"; - name = "Command Bunker Lockdown"; - pixel_y = -17; - req_access = list(19); - tag = "command_bunker_lockdown" +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 }, -/turf/simulated/floor/tiled/dark, -/area/bridge/aibunker) +/turf/simulated/floor/tiled/dark/full, +/area/horizon/command/heads/rd) "wpG" = ( /obj/structure/shuttle/engine/propulsion/burst/right{ dir = 4 @@ -155581,29 +156871,22 @@ /obj/structure/lattice, /turf/simulated/open/airless, /area/horizon/exterior) -"wpO" = ( -/turf/simulated/wall, -/area/rnd/xenobiology) -"wpT" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/bed/stool/chair/padded/black{ +"wpS" = ( +/obj/effect/floor_decal/corner_wide/blue/diagonal, +/obj/effect/floor_decal/corner_wide/yellow/diagonal{ dir = 4 }, -/obj/machinery/light/small/emergency{ +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/effect/floor_decal/spline/plain/cee{ dir = 8 }, /turf/simulated/floor/tiled, -/area/maintenance/wing/starboard/deck1) -"wpV" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/bridge/bridge_crew) +/area/horizon/engineering/atmos/storage) +"wpX" = ( +/turf/simulated/wall, +/area/horizon/service/dining_hall) "wpZ" = ( /obj/effect/decal/cleanable/cobweb, /obj/effect/floor_decal/corner/grey{ @@ -155611,12 +156894,6 @@ }, /turf/unsimulated/floor, /area/antag/raider) -"wqd" = ( -/obj/effect/floor_decal/corner/dark_green/full{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hangar/intrepid/interstitial) "wqe" = ( /obj/structure/closet/walllocker/medical/firstaid{ pixel_x = -32 @@ -155629,17 +156906,27 @@ /obj/machinery/light/floor, /turf/simulated/floor/tiled/dark, /area/horizon/holodeck_control) -"wqf" = ( +"wqh" = ( /obj/effect/floor_decal/corner/dark_green{ - dir = 5 + dir = 9 + }, +/obj/effect/floor_decal/spline/plain/lime{ + dir = 8 }, -/obj/machinery/vending/cola, /turf/simulated/floor/tiled, -/area/hangar/intrepid) -"wqj" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/maintenance/operations) +/area/horizon/hallway/primary/deck_2/fore) +"wql" = ( +/obj/structure/bed/stool/chair{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/item/storage/secure/safe{ + pixel_y = 36 + }, +/turf/simulated/floor/carpet, +/area/horizon/command/heads/xo) "wqn" = ( /obj/effect/floor_decal/corner/red{ dir = 6 @@ -155652,22 +156939,23 @@ }, /turf/unsimulated/floor, /area/centcom/evac) -"wqr" = ( -/obj/machinery/light{ - dir = 1 +"wqq" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 6 }, -/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ - dir = 4 +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 + dir = 9 }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/engineering/atmos) -"wqs" = ( -/turf/simulated/floor/tiled/dark/full, -/area/maintenance/research_port) +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/extinguisher_cabinet/east, +/turf/simulated/floor/tiled, +/area/horizon/command/bridge/upperdeck) "wqv" = ( /obj/item/ammo_magazine/mc9mmt{ pixel_x = 1; @@ -155764,6 +157052,12 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/security/holding_cell_b) +"wqx" = ( +/obj/structure/railing/mapped{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/horizon/engineering/reactor/supermatter/mainchamber) "wqA" = ( /obj/machinery/light{ dir = 4 @@ -155771,6 +157065,34 @@ /obj/structure/computerframe, /turf/simulated/floor/tiled/dark, /area/centcom/bar) +"wqD" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor/plating, +/area/horizon/rnd/hallway) +"wqE" = ( +/obj/structure/bed/handrail{ + dir = 1 + }, +/obj/effect/floor_decal/corner/brown{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/shuttle/intrepid/starboard_compartment) "wqI" = ( /obj/machinery/vending/generic_clothing, /turf/unsimulated/floor, @@ -155795,6 +157117,36 @@ }, /turf/unsimulated/floor, /area/centcom/bar) +"wqO" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 10 + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/structure/platform{ + dir = 1 + }, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/turf/simulated/floor/tiled/full, +/area/horizon/command/bridge/upperdeck) +"wqP" = ( +/obj/effect/floor_decal/corner_wide/yellow/diagonal, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/break_room) "wqQ" = ( /obj/structure/table/wood, /turf/simulated/floor/holofloor/carpet, @@ -155819,43 +157171,83 @@ icon_state = "dark_preview" }, /area/centcom/spawning) -"wrg" = ( -/obj/effect/floor_decal/corner/mauve{ - dir = 6 +"wqY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/bed/stool/chair/padded/black{ + dir = 4 }, -/obj/machinery/button/remote/blast_door{ - dir = 4; - id = "xenobio_d"; - name = "Cell Containment Blast Doors"; - pixel_x = 21; - req_access = list(47) - }, -/obj/structure/sink{ - dir = 4; - pixel_x = 12 - }, -/obj/effect/floor_decal/industrial/outline_corner/security{ +/obj/machinery/light/small/emergency{ dir = 8 }, +/turf/simulated/floor/tiled, +/area/horizon/maintenance/deck_1/wing/starboard/far) +"wrb" = ( +/obj/machinery/light, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/table/rack, +/obj/item/storage/box/monkeycubes, +/obj/item/storage/box/monkeycubes, +/obj/item/storage/box/monkeycubes, +/obj/item/storage/box/monkeycubes, +/obj/item/reagent_containers/spray/chemsprayer/xenobiology, +/obj/item/reagent_containers/spray/chemsprayer/xenobiology, +/obj/item/melee/baton/slime{ + pixel_x = 3; + pixel_y = -1 + }, +/obj/item/melee/baton/slime{ + pixel_x = 3; + pixel_y = -1 + }, +/obj/item/reagent_containers/spray/cleaner, /turf/simulated/floor/tiled/white, -/area/rnd/xenobiology) -"wrk" = ( -/obj/structure/table/reinforced/wood, -/obj/item/modular_computer/laptop/preset/command/xo{ - pixel_y = 10 +/area/horizon/rnd/xenobiology) +"wrd" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/structure/sign/emergency/evacuation{ + dir = 4; + pixel_y = -32 + }, +/obj/effect/floor_decal/corner/dark_green/full{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/horizon/hangar/intrepid) +"wri" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/corner/dark_blue/full{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/storage/eva) +"wrq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/light{ + dir = 8 }, /turf/simulated/floor/carpet, -/area/crew_quarters/heads/hop/xo) -"wro" = ( -/obj/structure/shuttle_part/scc_space_ship{ - icon_state = "d3-4" +/area/horizon/command/heads/hos) +"wrr" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 }, -/obj/structure/girder, -/obj/effect/landmark/entry_point/aft{ - name = "aft, deck 2 maintenance" +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 }, +/obj/structure/lattice/catwalk/indoor/grate, /turf/simulated/floor/plating, -/area/maintenance/wing/port/far) +/area/horizon/hangar/auxiliary) "wrs" = ( /obj/structure/table/standard, /obj/item/device/flashlight/lamp, @@ -155863,73 +157255,118 @@ icon_state = "wood" }, /area/centcom/legion/hangar5) -"wrt" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/structure/railing/mapped, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard) -"wru" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/wood, -/area/crew_quarters/lounge) -"wry" = ( -/obj/effect/floor_decal/corner_wide/blue/full{ - dir = 1 - }, -/obj/structure/table/reinforced/steel, -/obj/structure/window/reinforced{ +"wrx" = ( +/obj/machinery/power/portgen/basic, +/obj/effect/floor_decal/industrial/warning/full, +/obj/structure/cable/green, +/obj/item/stack/material/graphite/full, +/turf/simulated/floor, +/area/horizon/command/bridge/aibunker) +"wrz" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 }, -/obj/structure/window/reinforced{ - dir = 8 +/obj/structure/cable/green{ + icon_state = "4-8" }, -/obj/machinery/door/window/southright{ - name = "Storage"; - req_access = list(20) +/turf/simulated/floor/tiled/white, +/area/horizon/medical/surgery) +"wrA" = ( +/obj/structure/table/rack, +/obj/item/device/gps/science{ + pixel_x = 4; + pixel_y = 11 }, -/obj/random/vault_weapon{ - pixel_y = 12 +/obj/item/device/gps/science{ + pixel_x = 4; + pixel_y = 7 }, -/obj/random/vault_weapon{ - pixel_y = 6 +/obj/item/device/gps/science{ + pixel_x = 4; + pixel_y = 3 }, -/obj/random/vault_weapon, -/obj/item/storage/box/syndie_kit/random_weapon{ - pixel_y = 6 +/obj/item/device/gps/science{ + pixel_y = -1; + pixel_x = 4 + }, +/obj/machinery/alarm/north, +/obj/item/device/multitool{ + pixel_x = -8; + pixel_y = 10 + }, +/obj/item/screwdriver, +/obj/machinery/camera/network/research{ + c_tag = "Research - Telescience"; + dir = 4 }, /turf/simulated/floor/tiled/dark/full, -/area/storage/secure) -"wrD" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 +/area/horizon/rnd/telesci) +"wrB" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 6 }, -/obj/machinery/light{ +/obj/structure/closet/secure_closet/guncabinet{ + name = "Bridge Defense Equipment"; + req_access = list(60) + }, +/obj/item/melee/baton/loaded, +/obj/item/melee/baton/loaded, +/obj/item/melee/baton/loaded, +/obj/effect/floor_decal/industrial/outline/red, +/turf/simulated/floor/tiled, +/area/horizon/command/bridge/bridge_crew) +"wrF" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/effect/landmark/latejoinlift, +/obj/structure/disposalpipe/junction{ + dir = 8; + icon_state = "pipe-j2" + }, +/turf/simulated/floor/tiled, +/area/horizon/crew/resdeck/living_quarters_lift) +"wrG" = ( +/obj/structure/bed/stool/chair/wood{ dir = 4 }, -/turf/simulated/floor/reinforced, -/area/rnd/test_range) -"wrE" = ( +/turf/simulated/floor/wood/mahogany, +/area/horizon/service/dining_hall) +"wrH" = ( /obj/structure/cable/green{ - icon_state = "1-2" + icon_state = "4-8" }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/door/airlock/service{ + dir = 4; + name = "Chaplain's Office and Chapel Storage"; + req_access = list(22) + }, +/obj/effect/map_effect/door_helper/unres{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/full, +/area/horizon/service/chapel/office) +"wrI" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, /obj/structure/cable/green{ - icon_state = "1-8" + icon_state = "4-8" }, -/obj/machinery/alarm/east, /turf/simulated/floor/plating, -/area/maintenance/substation/hangar) +/area/horizon/maintenance/deck_1/hangar/starboard) "wrK" = ( /obj/machinery/sleeper{ dir = 4 @@ -155939,42 +157376,73 @@ }, /turf/simulated/floor/tiled/white, /area/merchant_station) -"wrL" = ( -/obj/machinery/door/firedoor, -/obj/effect/floor_decal/corner/brown{ - dir = 4 - }, -/obj/effect/floor_decal/corner/dark_green{ +"wrM" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/light/small/emergency{ dir = 1 }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled, -/area/operations/lobby) -"wrX" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/ore_box, -/obj/machinery/light{ +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/port/near) +"wrP" = ( +/obj/machinery/atmospherics/pipe/simple/visible/purple{ dir = 4 }, +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/atmos) +"wrY" = ( +/obj/effect/floor_decal/corner/black{ + dir = 6 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/hangar/auxiliary) +"wsa" = ( +/obj/effect/floor_decal/corner/red/diagonal, +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/spline/plain{ + dir = 8 + }, +/obj/structure/railing/mapped{ + dir = 8 + }, +/turf/simulated/floor/lino, +/area/horizon/service/cafeteria) +"wsd" = ( +/obj/effect/floor_decal/corner_wide/blue/full{ + dir = 8 + }, +/obj/structure/table/reinforced/steel, +/obj/random/finances{ + pixel_y = -10 + }, +/obj/random/finances{ + pixel_y = -5 + }, +/obj/random/finances, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door/window/southleft{ + name = "Storage"; + req_access = list(20) + }, /turf/simulated/floor/tiled/dark/full, -/area/outpost/mining_main/refinery) -"wrZ" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/engineering/locker_room) -"wsh" = ( -/obj/structure/platform{ +/area/horizon/storage/secure) +"wsi" = ( +/obj/effect/floor_decal/industrial/loading/yellow{ dir = 4 }, -/obj/structure/table/standard, -/obj/effect/floor_decal/spline/plain{ - dir = 9 - }, -/obj/item/storage/toolbox/mechanical, -/turf/simulated/floor/carpet/rubber, -/area/operations/lower/machinist) +/turf/simulated/floor/tiled/dark, +/area/horizon/rnd/xenoarch/atrium) +"wsl" = ( +/obj/effect/floor_decal/industrial/hatch/red, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/weapons/longbow) "wsm" = ( /obj/effect/mist, /turf/simulated/floor/exoplanet/water/shallow{ @@ -155983,29 +157451,40 @@ icon_state = "beach" }, /area/horizon/holodeck/source_moghes) -"wss" = ( -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/machinery/light/small/emergency{ - dir = 1 +"wso" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 5 }, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard) -"wsu" = ( -/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, -/area/bridge/aibunker) -"wsA" = ( -/obj/machinery/light/small/emergency, /obj/structure/cable/green{ - icon_state = "4-8" + icon_state = "1-4" }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard/deck1) +/turf/simulated/floor/carpet, +/area/horizon/command/bridge/meeting_room) +"wsq" = ( +/turf/simulated/floor/tiled/dark, +/area/horizon/rnd/lab) +"wsv" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/airlock/maintenance{ + dir = 1; + name = "Machinist Workshop Maintenance"; + req_access = list(29) + }, +/turf/simulated/floor/tiled, +/area/horizon/operations/machinist) +"wsw" = ( +/obj/effect/floor_decal/corner/purple{ + dir = 10 + }, +/obj/structure/table/steel, +/obj/item/toy/figure/janitor, +/obj/machinery/atmospherics/pipe/simple/hidden/purple{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/service/custodial/disposals/deck_1) "wsB" = ( /obj/structure/table/rack, /obj/item/ammo_magazine/a10mm{ @@ -156048,61 +157527,54 @@ /obj/machinery/light, /turf/unsimulated/floor, /area/antag/mercenary) -"wsD" = ( -/obj/machinery/firealarm/west{ - pixel_x = -24 - }, -/obj/effect/floor_decal/corner/brown{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/operations/storage) -"wsF" = ( -/obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction{ - dir = 4 - }, -/turf/simulated/floor/reinforced/airless, -/area/engineering/atmos/propulsion) -"wsP" = ( -/obj/effect/floor_decal/corner_wide/green{ - dir = 5 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ +"wsC" = ( +/obj/machinery/alarm/west, +/turf/simulated/floor, +/area/horizon/maintenance/deck_3/aft/port) +"wsN" = ( +/obj/structure/railing/mapped, +/obj/structure/railing/mapped{ dir = 4 }, /obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/turf/simulated/floor/tiled/white, -/area/medical/gen_treatment) -"wsS" = ( -/obj/machinery/atmospherics/binary/pump{ - dir = 8; - name = "Nitrogen to Mix" + dir = 6 }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/trash_pile, /turf/simulated/floor/plating, -/area/engineering/atmos/air) -"wsT" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ +/area/horizon/maintenance/deck_1/wing/starboard/far) +"wsR" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/corner_wide/paleblue{ dir = 5 }, -/obj/effect/floor_decal/corner/lime{ - dir = 10 +/obj/structure/cable/green{ + icon_state = "1-2" }, -/turf/simulated/floor/tiled/white{ - name = "cooled white floor"; - temperature = 278.15 +/turf/simulated/floor/tiled/white, +/area/horizon/medical/hallway) +"wsU" = ( +/obj/structure/cable/green{ + icon_state = "2-8" }, -/area/medical/morgue/lower) +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/hangar/port) +"wsZ" = ( +/obj/effect/floor_decal/corner_wide/yellow{ + dir = 9 + }, +/obj/structure/closet/walllocker/firecloset{ + pixel_x = -32 + }, +/obj/effect/floor_decal/industrial/outline/firefighting_closet, +/turf/simulated/floor/tiled, +/area/horizon/engineering/hallway/interior) "wta" = ( /obj/effect/floor_decal/corner/lime/diagonal{ dir = 8 @@ -156114,16 +157586,33 @@ icon_state = "white" }, /area/centcom/legion) -"wtl" = ( +"wtb" = ( +/obj/structure/bed/stool/chair, +/obj/effect/floor_decal/corner/dark_green/diagonal, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_3/port) +"wte" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner/dark_green{ + dir = 5 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 9 +/obj/structure/cable/green{ + icon_state = "0-8" }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/turf/simulated/floor/tiled/dark, -/area/storage/eva) +/obj/machinery/power/apc/north, +/turf/simulated/floor/tiled, +/area/horizon/stairwell/starboard/deck_1) "wtp" = ( /obj/structure/closet/crate/medical, /obj/item/reagent_containers/inhaler/pneumalin, @@ -156141,66 +157630,87 @@ /obj/effect/floor_decal/industrial/outline/red, /turf/simulated/floor/tiled/dark/full, /area/shuttle/burglar) -"wtq" = ( -/obj/effect/floor_decal/corner/mauve{ - dir = 9 +"wtr" = ( +/obj/effect/floor_decal/corner/dark_green/full{ + dir = 8 }, -/obj/machinery/button/remote/blast_door{ - dir = 8; - id = "xenobio_a"; - name = "Cell Containment Blast Doors"; - pixel_x = -21; - req_access = list(47) - }, -/obj/structure/sink{ - dir = 8; - pixel_x = -12 - }, -/obj/effect/floor_decal/industrial/outline_corner/security{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology) -"wtx" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 1 - }, -/obj/structure/railing/mapped{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/horizon/cafeteria) -"wtz" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/corner/red/diagonal, -/obj/structure/extinguisher_cabinet/west, +/obj/machinery/disposal/small/south, +/obj/structure/disposalpipe/trunk, /turf/simulated/floor/tiled, -/area/storage/primary) -"wtB" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/alarm/north, -/turf/simulated/floor/tiled, -/area/maintenance/wing/starboard/deck1) -"wtD" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/door/firedoor, +/area/horizon/hangar/intrepid) +"wty" = ( /obj/structure/cable/green{ icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/airlock/medical{ - dir = 1; - id_tag = "EXdoor1"; - name = "Examination Room"; - req_access = list(5) +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/horizon/engineering/storage/lower) +"wtE" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 6 + }, +/obj/machinery/firealarm/east, +/obj/machinery/light, +/obj/machinery/computer/ship/navigation{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/horizon/crew/lounge) +"wtF" = ( +/obj/effect/floor_decal/corner/grey/diagonal, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/effect/floor_decal/spline/plain/corner{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/shuttle/intrepid/buffet) +"wtH" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/surgery) +"wtI" = ( +/obj/machinery/door/blast/regular{ + id = "iso_b_purge"; + name = "Exterior Blast Door" + }, +/obj/effect/landmark/entry_point/port{ + name = "port, xenobiology" + }, +/turf/simulated/floor/reinforced, +/area/horizon/rnd/xenoarch/isolation_b) +"wtK" = ( +/obj/machinery/door/airlock/glass_research{ + name = "Xenological Studies"; + req_access = list(7); + dir = 4 + }, +/obj/effect/map_effect/door_helper/unres{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor{ + dir = 4 }, -/turf/simulated/floor/tiled/full, -/area/medical/exam) -"wtG" = ( -/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, /turf/simulated/floor/tiled/dark/full, -/area/horizon/hallway/deck_two/fore) +/area/horizon/rnd/xenological) "wtM" = ( /obj/item/device/suit_cooling_unit, /obj/item/device/suit_cooling_unit, @@ -156209,6 +157719,47 @@ /obj/structure/table/standard, /turf/unsimulated/floor, /area/antag/ninja) +"wtN" = ( +/obj/effect/floor_decal/corner/green/full, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/item/device/radio/intercom/west, +/turf/simulated/floor/tiled/white, +/area/horizon/crew/washroom/deck_3) +"wtO" = ( +/obj/effect/floor_decal/corner_wide/purple{ + dir = 9 + }, +/obj/effect/floor_decal/corner_wide/purple{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible/yellow, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/platform_deco{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/xenoarch/atrium) +"wtR" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/shutters/open{ + dir = 8; + id = "shutters_deck3_cafedesk"; + name = "Cafe Desk Shutter" + }, +/obj/structure/table/stone/marble, +/obj/random/pottedplant_small{ + pixel_x = -8 + }, +/obj/machinery/power/outlet{ + pixel_y = 4; + pixel_x = 10 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/service/cafeteria) "wtS" = ( /turf/space/dynamic, /area/template_noop) @@ -156221,53 +157772,66 @@ }, /turf/simulated/floor/marble/dark, /area/horizon/holodeck/source_trinary) -"wtV" = ( -/obj/machinery/door/window/eastleft{ - name = "Xenoarchaeology Platform Access"; - req_access = list(65) - }, -/obj/structure/platform_stairs/full/east_west_cap{ - dir = 8 - }, -/obj/structure/platform/cutout, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenoarch_atrium) "wub" = ( /obj/machinery/atmospherics/pipe/simple/visible/red{ dir = 10 }, /turf/space/dynamic, /area/horizon/exterior) -"wui" = ( -/obj/effect/floor_decal/corner_wide/yellow{ - dir = 5 +"wuf" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/lino, +/area/horizon/service/bar) +"wuk" = ( /obj/structure/cable{ icon_state = "1-2" }, -/turf/simulated/floor/tiled, -/area/hallway/engineering) -"wum" = ( -/obj/structure/platform_stairs/full/east_west_cap, -/turf/simulated/floor/tiled/dark, -/area/horizon/crew_quarters/lounge/bar) -"wuo" = ( -/obj/structure/platform/ledge, -/obj/structure/platform/ledge{ - dir = 8 +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/airlock/maintenance_hatch{ + dir = 1 }, -/obj/structure/platform/ledge{ +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/port/far) +"wul" = ( +/obj/structure/disposalpipe/sortjunction/flipped{ + dir = 8; + name = "Journalist"; + sortType = "Journalist" + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor, +/area/horizon/hallway/primary/deck_3/starboard) +"wur" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/structure/platform_deco/ledge{ - dir = 5 +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 }, -/obj/structure/platform_deco/ledge{ - dir = 9 - }, -/turf/simulated/open, -/area/operations/office) +/turf/simulated/floor/tiled, +/area/horizon/operations/lobby) "wus" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -156288,12 +157852,6 @@ }, /turf/simulated/floor/reinforced/airless, /area/horizon/exterior) -"wuu" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/operations/lobby) "wuy" = ( /obj/structure/table/rack, /obj/item/storage/belt/utility/full{ @@ -156308,9 +157866,28 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/unsimulated/floor, /area/centcom/legion/hangar5) -"wuD" = ( -/turf/simulated/wall, -/area/hangar/intrepid) +"wuA" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/reactor/supermatter/mainchamber) +"wuB" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 5 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/structure/table/standard, +/obj/item/storage/box/fancy/vials, +/obj/item/reagent_containers/dropper/electronic_pipette, +/obj/item/reagent_containers/glass/beaker/large, +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/chemistry) "wuI" = ( /obj/machinery/vending/coffee/free{ pixel_x = 2 @@ -156318,35 +157895,27 @@ /obj/machinery/light, /turf/unsimulated/floor, /area/centcom/ferry) -"wuL" = ( -/obj/item/crowbar/red, -/obj/item/material/hatchet/butch, -/obj/item/material/hook, -/obj/structure/table/standard, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 +"wuJ" = ( +/obj/effect/floor_decal/industrial/warning/corner, +/obj/structure/cable{ + icon_state = "1-2" }, -/turf/simulated/floor/tiled/freezer{ - name = "cooled tiles"; - temperature = 253.15 +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 }, -/area/horizon/kitchen/freezer) -"wuT" = ( -/obj/structure/disposalpipe/segment{ +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 +/turf/simulated/floor/tiled/full, +/area/horizon/engineering/storage_hard) +"wuS" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 6 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/structure/cable{ - icon_state = "1-8" - }, -/turf/simulated/floor, -/area/maintenance/security_port) +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark, +/area/horizon/maintenance/deck_2/wing/starboard/nacelle) "wuU" = ( /obj/effect/floor_decal/corner/red{ dir = 9 @@ -156357,99 +157926,93 @@ /obj/effect/floor_decal/ss13/odin3, /turf/unsimulated/floor, /area/centcom/evac) -"wuW" = ( -/obj/effect/floor_decal/corner_wide/black{ +"wvd" = ( +/obj/structure/platform/ledge, +/obj/structure/platform/ledge{ + dir = 4 + }, +/obj/structure/platform_deco/ledge{ + dir = 5 + }, +/turf/simulated/open, +/area/horizon/hallway/primary/deck_2/central) +"wvj" = ( +/obj/machinery/camera/network/first_deck{ + c_tag = "First Deck - Hangar 4"; + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/corner/dark_green{ dir = 6 }, +/turf/simulated/floor/tiled, +/area/horizon/hangar/intrepid) +"wvm" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 5 + }, +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/structure/closet/secure_closet/xenobotany, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark, +/area/horizon/rnd/xenobiology/xenoflora) +"wvp" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 10 + }, +/obj/machinery/camera/network/second_deck{ + c_tag = "Second Deck - Chapel Entrance"; + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_2/starboard) +"wvs" = ( +/obj/structure/window/shuttle/scc_space_ship, +/obj/structure/grille/diagonal{ + dir = 8 + }, +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 4; + icon_state = "shutter0"; + id = "LCKDshutters"; + name = "MedBay Lockdown Shutters"; + opacity = 0 + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/horizon/medical/smoking) +"wvu" = ( +/obj/machinery/light{ + dir = 4 + }, /obj/effect/floor_decal/industrial/warning{ dir = 4 }, -/obj/machinery/atmospherics/binary/pump/high_power{ - dir = 8; - name = "Phoron to Burn Mix" - }, -/turf/simulated/floor/tiled/dark, -/area/engineering/atmos/propulsion/starboard) -"wvb" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/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 - }, -/turf/simulated/floor/tiled, -/area/rnd/hallway) -"wvc" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/highsecurity{ - dir = 4; - icon_state = "door_locked"; - id_tag = "airlocks_deck2_ammostorage"; - locked = 1; - name = "Secure Ammunition Storage"; - req_one_access = list(75) - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/blast/regular{ - dir = 2; - id = "shutters_deck1_ammostorage"; - name = "Secure Ammunition Storage Blast Door" - }, -/turf/simulated/floor/tiled/full, -/area/horizon/secure_ammunition_storage) -"wvr" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/bridge/cciaroom/lounge) -"wvx" = ( -/turf/simulated/floor/reinforced, -/area/rnd/isolation_a) -"wvz" = ( -/obj/effect/floor_decal/corner/green/diagonal, -/obj/structure/mirror{ - pixel_y = 36 - }, -/obj/structure/sink{ - pixel_y = 28 - }, -/turf/simulated/floor/tiled/white, -/area/horizon/crew_quarters/washroom/central) +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/reactor/supermatter/mainchamber) "wvA" = ( /obj/structure/shuttle_part/scc_space_ship{ icon_state = "d2-4-f" }, /turf/space/dynamic, /area/template_noop) -"wvB" = ( -/obj/machinery/atmospherics/pipe/simple/visible/universal{ - dir = 4 +"wvD" = ( +/obj/structure/cable{ + icon_state = "4-8" }, -/obj/structure/cable/yellow{ +/obj/structure/cable{ icon_state = "2-8" }, -/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/light/spot{ + dir = 1 + }, +/obj/structure/lattice/catwalk/indoor/grate, /turf/simulated/floor/plating, -/area/engineering/engine_room/turbine) -"wvI" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark/full, -/area/rnd/xenoarch_atrium) +/area/horizon/hangar/auxiliary) "wvJ" = ( /obj/effect/floor_decal/corner/red{ dir = 5 @@ -156459,80 +158022,87 @@ }, /turf/simulated/floor/holofloor/tiled, /area/template_noop) -"wvR" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 9 - }, -/obj/machinery/camera/network/command{ - c_tag = "Bridge - Starboard 2"; - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/bridge/controlroom) -"wvY" = ( -/obj/machinery/light/spot{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 5 - }, -/turf/simulated/floor/plating, -/area/hangar/intrepid) -"wwa" = ( -/obj/structure/platform/ledge{ - dir = 1 - }, -/obj/structure/platform/ledge{ - dir = 8 - }, -/obj/structure/platform_deco/ledge{ - dir = 6 - }, -/turf/simulated/open, -/area/horizon/hallway/deck_three/primary/central) -"wwd" = ( -/obj/item/bedsheet/medical, -/obj/structure/bed/padded, -/obj/effect/floor_decal/corner_wide/green/full{ - dir = 8 - }, -/obj/machinery/camera/network/medbay{ - c_tag = "Medical - Examination Office 1" - }, -/obj/machinery/newscaster/east{ - dir = 8; - pixel_x = -8 - }, -/turf/simulated/floor/tiled/white, -/area/medical/ward) "wwg" = ( /obj/structure/flora/rock/pile, /obj/item/clothing/mask/skrell/skull, /obj/effect/floor_decal/spline/plain/corner, /turf/simulated/floor/exoplanet/barren, /area/centcom/shared_dream) -"wwl" = ( -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/machinery/alarm/north, -/obj/random/dirt_75, -/turf/simulated/floor/plating, -/area/maintenance/wing/port/far) -"wwo" = ( -/obj/structure/cable/green{ - icon_state = "1-2" +"wwj" = ( +/obj/machinery/alarm/north{ + req_one_access = list(24,11,55) }, -/obj/structure/lattice/catwalk/indoor, -/obj/structure/railing/mapped{ - dir = 8 +/obj/structure/table/stone/marble, +/obj/random/pottedplant_small{ + pixel_x = 6; + pixel_y = -2 }, +/obj/item/reagent_containers/food/condiment/sugar{ + pixel_y = 13; + pixel_x = -7 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/service/bar) +"wwp" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/horizon/service/bar) +"wwr" = ( +/obj/structure/grille, +/obj/machinery/door/firedoor, +/obj/structure/window/shuttle/scc_space_ship, /turf/simulated/floor/plating, -/area/engineering/bluespace_drive) +/area/horizon/maintenance/deck_1/wing/starboard/far) +"wws" = ( +/obj/effect/floor_decal/industrial/loading/yellow{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/horizon/operations/lobby) "www" = ( /obj/structure/shuttle_part/scc_space_ship{ icon_state = "d3-3" }, /turf/space/dynamic, /area/template_noop) +"wwA" = ( +/obj/machinery/door/firedoor, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/full, +/area/horizon/maintenance/deck_2/wing/port) +"wwC" = ( +/obj/structure/disposalpipe/segment{ + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor, +/area/horizon/maintenance/deck_3/aft/starboard/far) +"wwD" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/structure/table/wood, +/obj/machinery/light_switch{ + dir = 4; + pixel_x = 22; + pixel_y = -16 + }, +/obj/machinery/disposal/small/south, +/obj/machinery/light{ + dir = 4 + }, +/obj/item/material/ashtray/glass, +/turf/simulated/floor/wood/walnut, +/area/horizon/medical/smoking) "wwE" = ( /obj/machinery/optable, /obj/structure/closet/crate/medical{ @@ -156573,13 +158143,6 @@ }, /turf/unsimulated/floor, /area/centcom/distress_prep) -"wwG" = ( -/obj/effect/map_effect/window_spawner/full/reinforced/grille/firedoor, -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/turf/simulated/floor/plating, -/area/engineering/bluespace_drive/monitoring) "wwH" = ( /obj/machinery/light{ dir = 4 @@ -156599,44 +158162,68 @@ }, /turf/simulated/floor/tiled/dark, /area/shuttle/mercenary) -"wwM" = ( -/obj/machinery/door/airlock/medical{ - dir = 1; - name = "Psychiatric Office"; - req_access = list(64) - }, -/obj/machinery/door/firedoor, -/obj/effect/map_effect/door_helper/unres{ +"wwP" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/light{ dir = 1 }, -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 2; - icon_state = "shutter0"; - id = "LCKDshutters"; - name = "Medical Lockdown Shutters"; - opacity = 0 +/obj/machinery/computer/general_air_control/large_tank_control/terminal{ + sensors = list("h_sensor"="Tank"); + output_tag = "h_out"; + name = "Hydrogen Supply Console"; + input_tag = "h_in" }, -/turf/simulated/floor/tiled/full, -/area/medical/psych) -"wwN" = ( -/obj/machinery/radiocarbon_spectrometer, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/carpet/rubber, -/area/rnd/xenoarch_atrium) -"wwZ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/atmos) +"wwR" = ( +/obj/machinery/vending/coffee, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 6 + }, +/turf/simulated/floor/wood, +/area/horizon/command/bridge/meeting_room) +"wwV" = ( +/obj/structure/table/standard, +/obj/effect/floor_decal/corner/grey/diagonal, +/obj/item/paper_bin, +/obj/item/pen, /turf/simulated/floor/tiled/white, -/area/hallway/medical/upper) -"wxa" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 +/area/horizon/medical/reception) +"wwX" = ( +/obj/machinery/light/small/emergency{ + dir = 4 + }, +/obj/structure/reagent_dispensers/watertank, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_3/security/starboard) +"wwY" = ( +/obj/machinery/atm{ + dir = 1; + pixel_y = 28 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/structure/engineer_maintenance/electric{ + dir = 1 + }, +/obj/structure/engineer_maintenance/pipe{ dir = 8 }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora) +/turf/simulated/floor/tiled/full, +/area/horizon/operations/commissary) "wxd" = ( /obj/structure/grille/diagonal{ dir = 1 @@ -156644,54 +158231,78 @@ /obj/structure/lattice, /turf/space/dynamic, /area/horizon/exterior) -"wxm" = ( +"wxk" = ( +/obj/machinery/light/small/red{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/maintenance/deck_2/wing/port/nacelle) +"wxp" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 8 + }, +/turf/simulated/wall/shuttle/unique/scc/research{ + icon_state = "11,17" + }, +/area/horizon/shuttle/mining) +"wxr" = ( +/obj/structure/closet/crate/rad, +/obj/item/stack/material/tritium/full, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/carpet/rubber, +/area/horizon/engineering/reactor/indra/mainchamber) +"wxu" = ( +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/machinery/power/terminal{ + dir = 8 + }, +/obj/machinery/light/small/emergency{ + dir = 4 + }, +/obj/machinery/camera/network/engineering{ + c_tag = "Engineering - Deck 1 - Atmospherics Substation"; + dir = 8 + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/substation/engineering/lower) +"wxA" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/obj/structure/platform_deco{ +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/structure/platform_deco{ - dir = 1 +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/simulated/floor/lino, -/area/chapel/main) -"wxs" = ( -/obj/structure/shuttle_part/scc/mining{ - icon_state = "0,4"; - outside_part = 0; - pixel_x = -32 - }, -/turf/simulated/wall/shuttle/unique/scc/mining{ - icon_state = "1,4" - }, -/area/shuttle/mining) -"wxz" = ( -/obj/effect/map_effect/window_spawner/full/reinforced/polarized/grille/firedoor{ - id = "consularB" - }, -/obj/structure/cable/green, /obj/structure/cable/green{ - icon_state = "1-4" + icon_state = "4-8" }, -/turf/simulated/floor, -/area/lawoffice/consular_two) +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor/plating, +/area/horizon/hangar/intrepid) "wxB" = ( /turf/simulated/wall/r_wall, /area/horizon/security/holding_cell_a) -"wxC" = ( -/obj/effect/floor_decal/corner/dark_blue/diagonal, -/obj/structure/bed/stool/chair/office/dark, -/turf/simulated/floor/tiled/dark, -/area/security/checkpoint) -"wxE" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/red{ - dir = 9 +"wxF" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/green{ + dir = 8 }, -/turf/simulated/wall/shuttle/unique/scc/mining{ - icon_state = "7,6" +/obj/machinery/meter, +/turf/simulated/floor/plating, +/area/horizon/engineering/reactor/supermatter/mainchamber) +"wxG" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/light/small/emergency{ + dir = 4 }, -/area/shuttle/mining) +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/service/starboard) "wxH" = ( /obj/effect/floor_decal/corner/beige/diagonal, /obj/structure/cable/green{ @@ -156705,31 +158316,17 @@ }, /turf/simulated/floor/tiled/white, /area/horizon/security/forensic_laboratory) -"wxJ" = ( -/obj/structure/cable/green{ - icon_state = "4-8" +"wxI" = ( +/turf/simulated/wall, +/area/horizon/service/kitchen) +"wxN" = ( +/obj/machinery/door/airlock/maintenance{ + dir = 4; + req_one_access = list(5,12) }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/operations/mail_room) -"wxP" = ( -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/manifold/visible/black{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/engine_room/turbine) -"wxR" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_two/fore) +/obj/machinery/door/firedoor, +/turf/simulated/floor, +/area/horizon/maintenance/deck_3/aft/port/far) "wxX" = ( /obj/effect/floor_decal/corner/red/full{ dir = 4 @@ -156755,26 +158352,13 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled, /area/horizon/security/hallway) -"wye" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ +"wya" = ( +/obj/effect/floor_decal/industrial/warning{ dir = 1 }, -/turf/simulated/open, -/area/maintenance/wing/starboard) -"wyf" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 4 - }, -/obj/machinery/camera/network/third_deck{ - c_tag = "Third Deck - Crew Lounge Port"; - dir = 8 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/lounge/secondary) +/obj/machinery/alarm/east, +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/atmos/propulsion) "wyg" = ( /obj/structure/closet/gimmick{ name = "emergency response team wardrobe" @@ -156807,175 +158391,86 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/holodeck_control/beta) -"wyq" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ +"wyu" = ( +/turf/simulated/wall/shuttle/scc_space_ship/cardinal, +/area/horizon/rnd/xenobiology/xenoflora) +"wyC" = ( +/obj/structure/table/wood, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/full, -/area/engineering/storage_hard) -"wyv" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small/emergency{ - dir = 4 - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/machinery/atmospherics/pipe/simple/hidden/aux{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ +/turf/simulated/floor/carpet, +/area/horizon/repoffice/representative_one) +"wyD" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ dir = 9 }, +/obj/effect/floor_decal/industrial/warning, /turf/simulated/floor/plating, -/area/maintenance/research_port) -"wyy" = ( -/obj/machinery/vending/frontiervend, -/obj/effect/floor_decal/industrial/outline/grey, -/obj/structure/railing/mapped, -/obj/structure/railing/mapped{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/cafeteria) -"wyz" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/effect/floor_decal/spline/plain{ - dir = 4 - }, -/obj/effect/floor_decal/spline/plain/corner{ - dir = 4 - }, -/obj/effect/floor_decal/spline/plain/corner{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/white, -/area/horizon/kitchen) -"wyA" = ( -/turf/simulated/wall/r_wall, -/area/horizon/secure_ammunition_storage) -"wyB" = ( -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/door/airlock/medical{ - dir = 4; - name = "Recovery"; - req_access = list(5) - }, -/turf/simulated/floor/tiled/white, -/area/medical/ward) +/area/horizon/engineering/reactor/supermatter/mainchamber) "wyI" = ( /turf/simulated/wall/shuttle/unique/tcfl{ icon_state = "14,1" }, /area/shuttle/legion) -"wyK" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 9 +"wyL" = ( +/obj/machinery/atmospherics/portables_connector/supply{ + dir = 8 }, -/obj/effect/floor_decal/spline/plain/blue{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/horizon/hydroponics/lower) -"wyN" = ( -/obj/effect/floor_decal/corner_wide/purple{ +/obj/machinery/portable_atmospherics/canister/air, +/obj/effect/floor_decal/industrial/hatch_small/yellow, +/obj/effect/floor_decal/industrial/warning{ dir = 10 }, -/obj/effect/floor_decal/corner_wide/purple{ +/obj/machinery/light/small{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/obj/structure/platform{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenoarch_atrium) -"wyO" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 4 - }, -/obj/machinery/portable_atmospherics/canister/air/airlock, -/obj/machinery/door/window/westleft{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/turf/simulated/floor/tiled, -/area/security/checkpoint2) -"wyQ" = ( -/obj/structure/ladder{ - pixel_y = 8 - }, -/turf/simulated/open, -/area/maintenance/engineering_ladder) -"wyS" = ( -/obj/structure/cable/green{ - icon_state = "1-8" +/turf/simulated/floor/plating, +/area/horizon/shuttle/quark/cargo_hold) +"wyT" = ( +/obj/structure/table/rack/retail_shelf, +/obj/machinery/vending/wallpharm{ + pixel_x = 28; + pixel_y = 3 }, +/obj/item/device/radio/intercom/south, +/turf/simulated/floor/tiled/full, +/area/horizon/operations/commissary) +"wyV" = ( /obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor, +/area/horizon/command/bridge/upperdeck) +"wyY" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/random/junk, /turf/simulated/floor/plating, -/area/maintenance/research_port) -"wza" = ( -/obj/effect/floor_decal/corner/dark_green/full, -/obj/machinery/camera/network/third_deck{ - c_tag = "Third Deck - Central Stairwell"; - dir = 4 +/area/horizon/maintenance/deck_2/wing/starboard) +"wzc" = ( +/obj/structure/cable{ + icon_state = "2-4" }, -/obj/structure/sign/emergency/evacuation/stairs, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/effect/floor_decal/industrial/loading/yellow, -/turf/simulated/floor/tiled, -/area/horizon/stairwell/central) -"wze" = ( -/obj/effect/floor_decal/industrial/hatch/red, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 }, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/secure_ammunition_storage) +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/wing/port/far) +"wzf" = ( +/obj/effect/floor_decal/spline/fancy/wood, +/obj/structure/railing/mapped, +/obj/random/pottedplant, +/turf/simulated/floor/wood, +/area/horizon/service/cafeteria) "wzh" = ( /obj/machinery/door/window/holowindoor, /obj/effect/floor_decal/spline/fancy/wood{ @@ -157008,18 +158503,24 @@ }, /turf/simulated/floor/lino, /area/horizon/security/investigators_office) +"wzp" = ( +/obj/structure/cable/green, +/obj/machinery/power/apc/south, +/obj/effect/floor_decal/corner/mauve{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/chemistry) +"wzr" = ( +/obj/effect/shuttle_landmark/lift/operations_third_deck, +/turf/simulated/open, +/area/horizon/operations/office_aux) "wzw" = ( /obj/structure/shuttle_part/ert{ icon_state = "10,4" }, /turf/unsimulated/floor/plating, /area/centcom/specops) -"wzC" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/captain) "wzD" = ( /obj/effect/floor_decal/spline/fancy/wood/corner, /turf/unsimulated/floor/wood, @@ -157036,6 +158537,18 @@ icon_state = "wood" }, /area/centcom/distress_prep) +"wzI" = ( +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_3/port) "wzJ" = ( /obj/structure/shuttle/engine/propulsion/burst/left{ dir = 4 @@ -157056,16 +158569,66 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/holodeck/source_biesel) -"wzN" = ( -/obj/structure/railing/mapped{ +"wzM" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ dir = 4 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/corner_wide/green{ + dir = 10 + }, +/obj/machinery/light/floor, +/obj/structure/railing/mapped, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/hallway/upper) +"wzO" = ( +/obj/machinery/door/airlock/external{ + dir = 4 + }, +/obj/machinery/access_button{ + pixel_x = 28; + pixel_y = 32 + }, +/obj/effect/map_effect/marker/airlock{ + frequency = 1004; + master_tag = "airlock_horizon_deck_1_fore_1"; + name = "airlock_horizon_deck_1_fore_1" + }, +/obj/effect/map_effect/marker_helper/airlock/exterior, /turf/simulated/floor/plating, -/area/engineering/engine_room) -"wzQ" = ( -/obj/effect/floor_decal/spline/fancy/wood, +/area/horizon/maintenance/deck_1/hangar/starboard) +"wzR" = ( +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/structure/bed/stool/chair/sofa/left/purple{ + dir = 4 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, /turf/simulated/floor/wood, -/area/hallway/primary/central_two) +/area/horizon/rnd/hallway/secondary) +"wzS" = ( +/obj/effect/floor_decal/corner/beige/full{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/loading/yellow{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/medical/gen_treatment) "wzY" = ( /obj/structure/flora/ausbushes/ywflowers, /obj/effect/decal/fake_object/light_source/invisible{ @@ -157076,120 +158639,114 @@ }, /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 - }, -/obj/structure/railing/mapped, -/turf/simulated/floor/tiled, -/area/operations/lower/machinist/surgicalbay) -"wAf" = ( -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/full, -/area/horizon/hallway/deck_two/fore) -"wAk" = ( -/obj/machinery/door/window/westright{ - name = "Xenoarchaeology Platform Access"; - req_access = list(65) - }, -/obj/structure/platform_stairs/full/east_west_cap, -/obj/structure/platform/cutout{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenoarch_atrium) -"wAn" = ( -/obj/effect/floor_decal/corner/dark_green{ +"wAh" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ dir = 10 }, -/obj/machinery/light, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_two) -"wAu" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable{ - icon_state = "1-2" +/turf/simulated/wall/shuttle/unique/scc/scout{ + icon_state = "6,6" }, -/obj/structure/disposalpipe/segment, -/turf/simulated/open, -/area/maintenance/wing/starboard) -"wAy" = ( -/obj/effect/floor_decal/industrial/warning{ +/area/horizon/shuttle/canary) +"wAj" = ( +/obj/structure/table/standard, +/obj/item/paper_bin, +/obj/item/pen, +/obj/structure/railing/mapped, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/hallway) +"wAl" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner/brown{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/obj/random/dirt_75, -/turf/simulated/floor/plating, -/area/maintenance/wing/port/far) -"wAF" = ( -/obj/effect/floor_decal/corner/mauve/diagonal, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 1 }, +/obj/structure/engineer_maintenance/electric/wall, +/turf/simulated/floor/tiled, +/area/horizon/hangar/operations) +"wAp" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/plating, +/area/horizon/hangar/auxiliary) +"wAz" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/structure/railing/mapped, +/turf/simulated/open/airless, +/area/horizon/exterior) +"wAH" = ( +/obj/structure/railing/mapped, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, /obj/structure/cable/green{ icon_state = "2-8" }, -/obj/structure/disposalpipe/segment{ - icon_state = "pipe-c" +/obj/structure/cable/green{ + icon_state = "2-4" }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ +/obj/effect/floor_decal/industrial/warning, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_3/security/starboard) +"wAK" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/random/junk, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel, +/obj/machinery/atmospherics/pipe/simple/hidden/aux, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/auxatmos) +"wAL" = ( +/obj/machinery/light, +/obj/machinery/power/smes/buildable/substation{ + RCon_tag = "Substation - Deck 3 Telecommunications"; + charge = 5000000; + input_attempt = 1; + input_level = 200000; + output_attempt = 1; + output_level = 200000 + }, +/obj/structure/cable/green{ + icon_state = "0-8" + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/tcommsat/entrance) +"wAO" = ( +/obj/effect/floor_decal/spline/fancy/wood, +/obj/effect/floor_decal/spline/fancy/wood/corner{ dir = 1 }, -/turf/simulated/floor/tiled/white, -/area/rnd/lab) -"wAG" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/reinforced, -/area/bridge/selfdestruct) -"wAS" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ +/obj/effect/floor_decal/spline/fancy/wood/corner{ dir = 4 }, -/obj/machinery/camera/network/service{ - c_tag = "Service - Chapel Starboard"; +/turf/simulated/floor/wood, +/area/horizon/command/bridge/cciaroom) +"wAV" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/power/terminal{ dir = 1 }, -/obj/structure/platform_stairs/full/east_west_cap{ +/obj/structure/bed/handrail{ dir = 8 }, -/obj/structure/platform/cutout, -/turf/simulated/floor/lino, -/area/chapel/main) -"wAT" = ( -/obj/structure/sink/kitchen{ - dir = 4; - name = "surgical sink"; - pixel_x = -20 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/white, -/area/medical/ors) +/turf/simulated/floor/plating, +/area/horizon/shuttle/intrepid/port_compartment) "wAY" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/mech_wreckage{ @@ -157197,45 +158754,6 @@ }, /turf/unsimulated/floor/plating, /area/centcom/legion/hangar5) -"wBd" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 5 - }, -/obj/machinery/door/airlock/glass{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/port) -"wBe" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/window/southright{ - name = "Bar Access"; - req_access = list(25) - }, -/obj/machinery/button/remote/blast_door{ - dir = 4; - id = "bar_shutter"; - name = "Desk Shutters"; - pixel_x = 19; - pixel_y = 13; - req_access = list(25) - }, -/obj/machinery/door/blast/shutters{ - dir = 2; - id = "bar_shutter"; - name = "Bar Shutter" - }, -/obj/machinery/button/remote/blast_door{ - dir = 4; - id = "bar_viewing_shutters"; - name = "Viewing Shutters"; - pixel_x = 19; - pixel_y = -9 - }, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/bar) "wBf" = ( /obj/structure/table/reinforced/steel, /obj/machinery/button/remote/blast_door{ @@ -157257,57 +158775,28 @@ icon_state = "dark_preview" }, /area/centcom/checkpoint/aft) -"wBi" = ( -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/structure/table/wood, -/obj/item/flora/pottedplant_small{ - pixel_x = -16 - }, -/turf/simulated/floor/wood, -/area/rnd/hallway/secondary) -"wBk" = ( -/obj/machinery/telecomms/processor/preset_three, -/turf/simulated/floor/bluegrid, -/area/tcommsat/chamber) -"wBz" = ( -/obj/machinery/alarm/north, -/obj/effect/decal/cleanable/dirt, +"wBl" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/carpet, +/area/horizon/command/heads/hos) +"wBp" = ( +/obj/structure/platform/ledge, +/turf/simulated/floor/carpet/rubber, +/area/horizon/rnd/telesci) +"wBx" = ( +/obj/structure/platform, /turf/simulated/floor/plating, -/area/engineering/storage/lower) -"wBC" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 5 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/bed/stool/chair/padded/brown{ - dir = 8 - }, -/obj/effect/landmark/start{ - name = "Assistant" - }, -/turf/simulated/floor/tiled, -/area/operations/lobby) -"wBE" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, +/area/horizon/maintenance/deck_2/wing/port/far) +"wBB" = ( +/obj/structure/disposalpipe/segment, /obj/structure/cable/green{ - icon_state = "4-8" + icon_state = "1-2" }, -/turf/simulated/floor/tiled/full, -/area/hallway/primary/central_two) -"wBF" = ( -/obj/machinery/power/apc/east, -/obj/structure/cable/green{ - icon_state = "0-8" - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/lattice/catwalk/indoor/grate, /turf/simulated/floor/plating, -/area/maintenance/security_port) +/area/horizon/hangar/intrepid/interstitial) "wBG" = ( /obj/machinery/light/small{ dir = 4; @@ -157317,46 +158806,33 @@ /obj/structure/table/rack, /turf/unsimulated/floor/linoleum, /area/antag/actor) -"wBN" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 5 +"wBI" = ( +/obj/machinery/holosign/service{ + id = 4 }, +/turf/simulated/wall, +/area/horizon/hallway/primary/deck_2/fore) +"wBP" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/horizon/command/bridge/bridge_crew) +"wBS" = ( /obj/structure/cable/green{ icon_state = "4-8" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/starboard) -"wBO" = ( -/obj/effect/floor_decal/spline/fancy/wood, -/obj/effect/floor_decal/spline/fancy/wood{ +/obj/structure/disposalpipe/junction/yjunction{ dir = 1 }, -/obj/machinery/button/remote/blast_door{ - pixel_y = -18; - name = "External Shutters"; - id = "ccia_shutters" - }, -/turf/simulated/floor/wood, -/area/bridge/cciaroom) +/turf/simulated/floor/tiled, +/area/horizon/operations/lobby) "wBT" = ( /obj/effect/map_effect/window_spawner/full/reinforced/indestructible, /turf/unsimulated/floor{ icon_state = "plating" }, /area/centcom/holding) -"wBU" = ( -/obj/machinery/telecomms/message_server/preset, -/turf/simulated/floor/bluegrid, -/area/tcommsat/chamber) -"wBV" = ( -/turf/simulated/wall/shuttle/scc_space_ship/cardinal, -/area/crew_quarters/heads/hop/xo) "wCb" = ( /obj/effect/floor_decal/corner/brown/diagonal, /obj/machinery/light/spot{ @@ -157372,13 +158848,17 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/unsimulated/floor, /area/antag/mercenary) -"wCf" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/bed/stool/chair/folding{ +"wCe" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/turf/simulated/floor/tiled, -/area/maintenance/wing/starboard/deck1) +/obj/machinery/light/small, +/obj/effect/floor_decal/corner/blue/diagonal, +/turf/simulated/floor/tiled/white, +/area/horizon/command/bridge/supply) "wCg" = ( /obj/structure/window/reinforced/crescent{ dir = 1 @@ -157391,28 +158871,59 @@ /obj/structure/flora/ausbushes/pointybush, /turf/simulated/floor/grass/no_edge, /area/centcom/spawning) -"wCi" = ( -/obj/structure/lattice, -/turf/simulated/open, -/area/operations/office) -"wCk" = ( +"wCn" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/diagonal, +/turf/simulated/floor/tiled/white, +/area/horizon/command/bridge/supply) +"wCp" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/reactor/indra/mainchamber) +"wCu" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/research{ + dir = 1; + name = "Suit Storage"; + req_access = list(65) + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/rnd/xenoarch/storage) +"wCz" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/obj/effect/floor_decal/spline/fancy/wood/corner{ + dir = 8 + }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 10 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/turf/simulated/floor/lino, -/area/chapel/main) -"wCx" = ( -/obj/effect/floor_decal/corner/brown{ dir = 10 }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/refinery) +/turf/simulated/floor/wood, +/area/horizon/service/dining_hall) +"wCA" = ( +/obj/effect/floor_decal/industrial/outline/service, +/obj/machinery/portable_atmospherics/hydroponics, +/obj/machinery/atmospherics/portables_connector{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/service/hydroponics/lower) "wCF" = ( /obj/structure/table/stone/marble, /obj/item/reagent_containers/food/snacks/blt{ @@ -157425,41 +158936,6 @@ }, /turf/unsimulated/floor, /area/centcom/bar) -"wCG" = ( -/obj/machinery/camera/network/medbay{ - c_tag = "Medical - Cryogenics Control"; - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden{ - dir = 8 - }, -/obj/structure/cable/green{ - icon_state = "2-4" - }, -/turf/simulated/floor/plating, -/area/medical/cryo) -"wCH" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 5 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/vending/snack, -/turf/simulated/floor/tiled, -/area/hangar/intrepid) -"wCL" = ( -/obj/effect/map_effect/window_spawner/full/reinforced/grille/firedoor, -/obj/structure/cable/green{ - icon_state = "0-4" - }, -/obj/machinery/door/blast/regular/open{ - id = "AICore"; - name = "AI Core Blast Door"; - dir = 4 - }, -/turf/simulated/floor/tiled/dark/full, -/area/turret_protected/ai_upload) "wCM" = ( /obj/structure/shuttle_part/scc_space_ship{ icon_state = "d2-3-f" @@ -157489,17 +158965,122 @@ icon_state = "white" }, /area/centcom/legion) -"wCQ" = ( -/obj/random/dirt_75, -/turf/simulated/floor/tiled/dark, -/area/maintenance/wing/port/far) -"wCW" = ( -/obj/machinery/atmospherics/pipe/tank/air/scc_shuttle, +"wCT" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, /turf/simulated/floor/plating, -/area/shuttle/intrepid/engineering) -"wDq" = ( +/area/horizon/engineering/drone_fabrication) +"wCU" = ( +/obj/structure/cable/green{ + icon_state = "0-8" + }, +/obj/effect/map_effect/window_spawner/full/reinforced/grille/firedoor, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/service/custodial/disposals/deck_1) +"wDd" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/atmospherics/pipe/simple/hidden/yellow, +/turf/simulated/floor/plating, +/area/horizon/engineering/storage/lower) +"wDe" = ( +/obj/machinery/door/airlock/command{ + id_tag = "rep_office_a"; + name = "Representative Office Alpha"; + req_access = list(38); + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/door/firedoor{ + req_one_access = list(24,11,67,73); + dir = 4 + }, /turf/simulated/floor/tiled, -/area/maintenance/wing/starboard/far) +/area/horizon/command/bridge/upperdeck) +"wDj" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/external{ + dir = 4; + frequency = 1380; + icon_state = "door_locked"; + id_tag = "escape_pod_4_berth_hatch"; + locked = 1; + name = "Escape Pod"; + req_access = list(13) + }, +/turf/simulated/floor/tiled, +/area/horizon/hangar/operations) +"wDl" = ( +/obj/effect/floor_decal/corner/beige{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/command/bridge/aibunker) +"wDp" = ( +/obj/structure/window/reinforced, +/obj/structure/table/reinforced/steel, +/obj/machinery/cell_charger, +/obj/item/storage/bag/inflatable, +/obj/item/storage/bag/inflatable, +/obj/item/device/camera, +/turf/simulated/floor/tiled/dark, +/area/horizon/rnd/xenoarch/atrium) +"wDr" = ( +/obj/structure/morgue/crematorium{ + _wifi_id = "chapel_crema" + }, +/obj/machinery/button/switch/crematorium{ + _wifi_id = "chapel_crema"; + dir = 4; + pixel_x = 20; + pixel_y = 8; + req_access = null + }, +/obj/effect/floor_decal/industrial/outline/red, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/service/chapel/office) "wDt" = ( /obj/structure/window/reinforced{ dir = 4 @@ -157514,76 +159095,31 @@ }, /turf/unsimulated/floor/plating, /area/centcom/legion) -"wDy" = ( -/obj/machinery/door/firedoor, -/obj/effect/floor_decal/corner/dark_green{ - dir = 5 - }, -/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{ +"wDu" = ( +/obj/structure/railing/mapped{ 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{ +/obj/machinery/computer/rdconsole/core{ dir = 4 }, -/turf/simulated/floor/plating, -/area/shuttle/quark/cargo_hold) +/obj/machinery/light/floor{ + dir = 8 + }, +/turf/simulated/floor/carpet/rubber, +/area/horizon/rnd/lab) +"wDz" = ( +/obj/effect/floor_decal/corner_wide/purple/diagonal, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/test_range) "wDB" = ( /obj/effect/floor_decal/corner/green/full{ dir = 8 }, /turf/unsimulated/floor, /area/centcom/bar) -"wDF" = ( -/obj/machinery/recharge_station, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/dark/full, -/area/rnd/hallway) -"wDG" = ( -/obj/item/folder/blue, -/obj/item/pen, -/obj/structure/table/reinforced/wood, -/turf/simulated/floor/tiled/dark, -/area/bridge/meeting_room) -"wDH" = ( -/obj/machinery/body_scanconsole{ - dir = 8 - }, -/obj/effect/floor_decal/corner/beige/full{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/medical/icu) -"wDK" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/structure/bed/stool/chair{ - dir = 8 - }, -/obj/effect/floor_decal/corner/brown{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/operations/lobby) -"wDL" = ( -/obj/effect/floor_decal/corner/dark_blue/diagonal, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/bridge/supply) "wDM" = ( /obj/structure/bed/stool/chair/shuttle{ can_dismantle = 1; @@ -157595,17 +159131,12 @@ }, /turf/simulated/floor/shuttle/black, /area/shuttle/hapt) -"wDQ" = ( -/obj/effect/floor_decal/corner_wide/green/diagonal, -/turf/simulated/floor/tiled/white, -/area/medical/exam) -"wDW" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/effect/floor_decal/corner_wide/yellow{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/engineering/bluespace_drive) +"wDX" = ( +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/simple/visible/universal, +/obj/machinery/alarm/west, +/turf/simulated/floor/plating, +/area/horizon/engineering/atmos/air) "wDY" = ( /obj/structure/table/standard, /obj/structure/window/reinforced/crescent, @@ -157619,28 +159150,41 @@ icon_state = "white" }, /area/centcom/holding) -"wEd" = ( -/obj/effect/floor_decal/corner/mauve{ - dir = 10 - }, -/obj/machinery/camera/network/research{ - c_tag = "Research - Corridor Camera"; - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/rnd/hallway) "wEf" = ( /obj/machinery/chemical_dispenser/ert{ dir = 4 }, /turf/simulated/floor/tiled/white, /area/shuttle/hapt) +"wEi" = ( +/obj/effect/floor_decal/corner/mauve/full{ + dir = 8 + }, +/obj/structure/closet/emcloset, +/obj/effect/floor_decal/industrial/outline/emergency_closet, +/turf/simulated/floor/tiled, +/area/horizon/rnd/hallway/secondary) "wEj" = ( /obj/structure/flora/ausbushes/sparsegrass, /turf/simulated/floor/holofloor/beach/sand{ icon_state = "desert" }, /area/horizon/holodeck/source_desert) +"wEm" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/port) +"wEn" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 5 + }, +/obj/machinery/light/floor{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/horizon/command/bridge/upperdeck) "wEo" = ( /obj/structure/table/rack, /obj/effect/floor_decal/industrial/outline/yellow, @@ -157694,25 +159238,39 @@ }, /turf/unsimulated/floor, /area/antag/mercenary) -"wEs" = ( -/obj/effect/floor_decal/industrial/warning{ +"wEr" = ( +/turf/simulated/wall/shuttle/scc_space_ship/cardinal, +/area/horizon/operations/office_aux) +"wEu" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 7 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/firealarm/west{ + dir = 1; + pixel_x = 0; + pixel_y = 31 + }, +/turf/simulated/floor/wood, +/area/horizon/command/bridge/meeting_room) +"wEx" = ( +/obj/effect/floor_decal/corner_wide/black/full{ dir = 8 }, -/obj/machinery/light/small/emergency{ - dir = 1 +/obj/effect/floor_decal/industrial/warning{ + dir = 9 }, -/obj/structure/table/rack, -/obj/random/loot, -/obj/effect/decal/cleanable/cobweb2, -/turf/simulated/floor, -/area/horizon/maintenance/deck_three/aft/starboard) -"wEv" = ( -/obj/structure/railing/mapped{ - dir = 1 +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 }, -/obj/structure/railing/mapped, -/turf/simulated/open, -/area/maintenance/wing/starboard) +/obj/structure/engineer_maintenance/electric/wall, +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/atmos/propulsion) "wEy" = ( /obj/machinery/recharge_station, /obj/effect/floor_decal/corner/brown{ @@ -157721,185 +159279,61 @@ /obj/effect/decal/cleanable/dirt, /turf/unsimulated/floor, /area/antag/burglar) -"wEC" = ( -/obj/effect/shuttle_landmark/horizon/dock/deck_3/starboard_3{ - dir = 1 - }, -/obj/machinery/door/airlock/external, -/obj/machinery/access_button{ - pixel_x = 28 - }, -/obj/effect/map_effect/marker_helper/airlock/exterior, -/obj/effect/map_effect/marker/airlock/docking{ - landmark_tag = "nav_horizon_dock_deck_3_starboard_3"; - master_tag = "airlock_horizon_dock_deck_3_starboard_3"; - name = "airlock_horizon_dock_deck_3_starboard_3" - }, -/turf/simulated/floor/plating, -/area/horizon/hallway/deck_three/primary/starboard/docks) -"wED" = ( -/obj/machinery/porta_turret, -/obj/effect/floor_decal/industrial/warning/full, +"wEA" = ( +/obj/structure/closet/emcloset, +/obj/effect/floor_decal/industrial/outline/emergency_closet, /turf/simulated/floor/tiled/dark/full, -/area/turret_protected/ai_upload_foyer) -"wEF" = ( -/obj/structure/curtain/black{ - icon_state = "open"; - opacity = 0 +/area/horizon/engineering/hallway/aft) +"wEX" = ( +/obj/machinery/door/blast/shutters/open{ + dir = 8; + id = "intrepid_bay_windows"; + name = "Intrepid Shutter" }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 10 +/obj/effect/map_effect/window_spawner/full/shuttle/scc{ + spawn_firedoor = 1; + spawn_grille = 1 }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/wood, -/area/horizon/crew_quarters/lounge/bar) -"wEG" = ( -/obj/effect/floor_decal/corner_wide/green/full, -/obj/structure/table/wood, -/obj/item/paper_bin{ - pixel_y = 4 - }, -/obj/item/pen{ - pixel_y = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/exam) -"wEM" = ( -/obj/structure/grille/diagonal{ - dir = 1 - }, -/obj/structure/window/shuttle/scc_space_ship, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 10 - }, -/turf/simulated/floor/wood, -/area/horizon/bar) -"wEQ" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 1 - }, -/obj/effect/floor_decal/spline/plain{ - dir = 4 - }, -/obj/machinery/alarm/east, -/turf/simulated/floor/carpet/rubber, -/area/engineering/bluespace_drive/monitoring) -"wER" = ( -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 1 - }, -/turf/simulated/floor/reinforced/airless, -/area/engineering/engine_room/rust) -"wES" = ( -/obj/structure/curtain/black{ - icon_state = "open"; - opacity = 0 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 8 - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/horizon/bar) -"wEV" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/door/firedoor, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/machinery/door/airlock/maintenance, /turf/simulated/floor/plating, -/area/maintenance/wing/starboard/far) +/area/horizon/shuttle/intrepid/port_compartment) "wEY" = ( /turf/space/dynamic, /area/horizon/exterior) -"wFa" = ( +"wEZ" = ( +/obj/machinery/door/firedoor, +/obj/effect/floor_decal/industrial/hatch/yellow, /obj/structure/cable{ - icon_state = "2-8" + icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"wFb" = ( -/obj/structure/bed/stool/chair/shuttle{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/outline/security, -/turf/simulated/floor/tiled/dark/full, -/area/shuttle/intrepid/flight_deck) -"wFd" = ( -/obj/structure/railing/mapped, -/obj/effect/floor_decal/industrial/outline/emergency_closet, -/obj/structure/closet/emcloset{ - anchored = 1; - canbemoved = 1 - }, -/obj/machinery/light/spot{ dir = 4 }, -/turf/simulated/floor/carpet/rubber, -/area/engineering/engine_room/rust) -"wFh" = ( -/obj/effect/floor_decal/corner/beige{ - dir = 5 - }, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge/aibunker) -"wFj" = ( -/obj/structure/flora/ausbushes/sparsegrass, -/obj/effect/floor_decal/spline/fancy/wood/corner{ - dir = 1 - }, -/turf/simulated/floor/holofloor/grass, -/area/horizon/holodeck/source_picnicarea) -"wFk" = ( -/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/machinery/door/firedoor, +/turf/simulated/floor/tiled/full, +/area/horizon/engineering/hallway/aft) +"wFf" = ( +/obj/machinery/door/airlock/engineering{ + dir = 1; + name = "Operations Substation" + }, /obj/structure/cable/green{ icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/airlock/glass_medical{ - dir = 1; - name = "Medical Equipment" +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/horizon/maintenance/substation/operations) +"wFj" = ( +/obj/structure/flora/ausbushes/sparsegrass, +/obj/effect/floor_decal/spline/fancy/wood/corner{ + dir = 1 }, -/turf/simulated/floor/tiled/full, -/area/medical/equipment) +/turf/simulated/floor/holofloor/grass, +/area/horizon/holodeck/source_picnicarea) "wFl" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/curtain/open/shower, @@ -157908,28 +159342,37 @@ }, /turf/unsimulated/floor, /area/centcom/legion/hangar5) -"wFw" = ( +"wFn" = ( +/obj/machinery/door/airlock/command{ + dir = 4; + id_tag = "conference_room"; + name = "Conference Room"; + req_one_access = list(19,38,72) + }, +/obj/machinery/door/firedoor, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled, +/area/horizon/command/bridge/meeting_room) +"wFp" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/structure/table/rack, +/obj/item/storage/toolbox/emergency, +/obj/item/storage/box/gloves, +/obj/item/storage/box/lights/mixed{ + pixel_x = 5; + pixel_y = -2 + }, +/obj/item/storage/box/samplebags, +/turf/simulated/floor/tiled/dark, +/area/horizon/rnd/xenoarch/storage) +"wFv" = ( /obj/structure/cable/green{ - icon_state = "4-8" + icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/aux{ - dir = 8 - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/machinery/atmospherics/pipe/simple/hidden/green{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/engineering) +/turf/simulated/floor/tiled/full, +/area/horizon/engineering/reactor/indra/office) "wFx" = ( /obj/structure/lattice/catwalk, /obj/structure/disposalpipe/segment, @@ -157951,79 +159394,70 @@ name = "overgrowth" }, /area/horizon/holodeck/source_moghes) -"wFL" = ( -/obj/effect/floor_decal/corner/dark_green/full, -/turf/simulated/floor/tiled, -/area/engineering/lobby) -"wFU" = ( -/obj/structure/closet/emcloset, -/obj/effect/floor_decal/industrial/outline/emergency_closet, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 8 +"wFH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/bed/stool/bar/padded/red, +/turf/simulated/floor/tiled/dark, +/area/horizon/maintenance/deck_3/aft/port/far) +"wFQ" = ( +/obj/effect/floor_decal/corner_wide/green{ + dir = 5 }, -/turf/simulated/floor/wood, -/area/hallway/engineering) -"wGa" = ( -/obj/item/modular_computer/console/preset/supply, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled, -/area/operations/lobby) -"wGd" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/machinery/button/remote/airlock{ - dir = 1; - id = "engine_electrical_maintenance"; - name = "Door Bolt Control"; - pixel_y = 32; - req_one_access = list(11,24); - specialfunctions = 4 +/turf/simulated/floor/tiled/white, +/area/horizon/medical/equipment) +"wGg" = ( +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/obj/structure/cable/green{ + icon_state = "2-4" }, -/obj/machinery/power/apc/low/east, -/obj/structure/cable{ +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/turf/simulated/floor/plating, +/area/horizon/shuttle/intrepid/main_compartment) +"wGj" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/reinforced, +/area/horizon/engineering/gravity_gen) +"wGl" = ( +/obj/structure/cable/green{ icon_state = "0-2" }, -/obj/machinery/light{ - dir = 1 +/obj/structure/cable/green, +/obj/effect/map_effect/window_spawner/full/reinforced/polarized/grille/firedoor{ + id = "HoS Windows" }, -/turf/simulated/floor/tiled/dark, -/area/engineering/smes) -"wGp" = ( -/obj/structure/cable/green{ - icon_state = "1-2" +/turf/simulated/floor/tiled/dark/full, +/area/horizon/command/heads/hos) +"wGm" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 }, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenoarch_storage) -"wGq" = ( -/turf/simulated/wall/shuttle/scc_space_ship/cardinal, -/area/horizon/hallway/deck_three/primary/port) -"wGs" = ( -/obj/structure/shuttle_part/scc_space_ship{ - icon_state = "d3-6-f" +/obj/effect/floor_decal/corner/lime{ + dir = 10 }, -/turf/simulated/wall, -/area/engineering/drone_fabrication) +/turf/simulated/floor/tiled/white{ + name = "cooled white floor"; + temperature = 278.15 + }, +/area/horizon/medical/morgue) "wGv" = ( /obj/structure/shuttle_part/mercenary/small{ icon_state = "0,1" }, /turf/unsimulated/floor/plating, /area/shuttle/syndicate_elite) -"wGx" = ( -/obj/effect/floor_decal/corner/dark_blue/full{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/starboard/docks) -"wGA" = ( -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/engine_room) "wGD" = ( /obj/item/hullbeacon/red, /obj/structure/railing/mapped{ @@ -158038,28 +159472,9 @@ }, /turf/unsimulated/floor, /area/centcom/bar) -"wGF" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/structure/disposalpipe/junction{ - icon_state = "pipe-j2" - }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/lattice/catwalk/indoor/grate, -/turf/simulated/floor/plating, -/area/rnd/hallway/secondary) -"wGG" = ( -/obj/effect/floor_decal/industrial/warning/cee{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard) +"wGH" = ( +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_3/central) "wGK" = ( /obj/structure/table/reinforced/steel, /obj/machinery/light/small{ @@ -158080,6 +159495,29 @@ }, /turf/unsimulated/floor/dark_monotile, /area/antag/actor) +"wGN" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 10 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/horizon/engineering/reactor/indra/office) +"wGP" = ( +/obj/structure/tank_wall/nitrogen{ + density = 0; + icon_state = "n12"; + opacity = 0 + }, +/turf/simulated/floor/reinforced/nitrogen, +/area/horizon/engineering/atmos/air) "wGQ" = ( /obj/machinery/alarm/west, /obj/machinery/light{ @@ -158092,6 +159530,10 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, /area/horizon/security/brig) +"wGS" = ( +/obj/effect/floor_decal/corner_wide/purple/diagonal, +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/test_range) "wGU" = ( /obj/machinery/access_button{ dir = 4; @@ -158133,12 +159575,59 @@ }, /turf/simulated/floor/tiled/white, /area/merchant_station) +"wGZ" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/obj/effect/floor_decal/industrial/warning/corner, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/service/port) +"wHe" = ( +/obj/structure/morgue/crematorium{ + _wifi_id = "medical_crema" + }, +/obj/machinery/button/switch/crematorium{ + _wifi_id = "medical_crema"; + dir = 4; + pixel_x = 20; + pixel_y = 8; + req_access = null + }, +/obj/effect/floor_decal/corner/lime{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/outline/red, +/obj/machinery/camera/network/medbay{ + c_tag = "Medical - Autopsy and Cremation" + }, +/turf/simulated/floor/tiled/white{ + name = "cooled white floor"; + temperature = 278.15 + }, +/area/horizon/medical/morgue) "wHf" = ( /obj/effect/floor_decal/corner/lime{ dir = 5 }, /turf/unsimulated/floor, /area/centcom/legion) +"wHg" = ( +/obj/machinery/alarm/north, +/obj/effect/floor_decal/corner/dark_green{ + dir = 5 + }, +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_3/central) +"wHh" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/horizon/hangar/operations) "wHj" = ( /obj/structure/bed/stool/chair/padded/black, /obj/effect/floor_decal/corner/grey{ @@ -158146,20 +159635,6 @@ }, /turf/unsimulated/floor, /area/antag/mercenary) -"wHk" = ( -/turf/simulated/wall, -/area/engineering/atmos/storage) -"wHp" = ( -/obj/effect/floor_decal/corner/yellow/full{ - dir = 1 - }, -/obj/machinery/alarm/north, -/obj/structure/table/standard, -/obj/item/storage/box/fancy/crayons/chalkbox{ - pixel_y = 5 - }, -/turf/simulated/floor/tiled, -/area/engineering/lobby) "wHq" = ( /obj/effect/floor_decal/corner/red/diagonal, /obj/effect/floor_decal/spline/fancy{ @@ -158167,87 +159642,85 @@ }, /turf/simulated/floor/tiled/white, /area/centcom/shared_dream) -"wHu" = ( -/obj/effect/floor_decal/corner/mauve/full{ - dir = 4 - }, -/obj/structure/platform{ +"wHx" = ( +/obj/machinery/light/small/emergency{ dir = 8 }, -/obj/machinery/light/floor{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/rnd/hallway/secondary) -"wHv" = ( -/obj/structure/table/wood, -/obj/machinery/power/outlet, -/obj/item/paper_bin{ - pixel_x = 5; - pixel_y = 12 - }, -/obj/item/pen{ - pixel_x = 5; - pixel_y = 13 - }, -/obj/item/paper/crumpled{ - pixel_x = -8; - pixel_y = 7 - }, -/obj/item/toy/desk/fan{ - pixel_x = -1; - pixel_y = -6 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/carpet/red, -/area/horizon/library) -"wHy" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 9 - }, -/obj/structure/bed/stool/chair/office/bridge{ - dir = 4 - }, -/obj/effect/landmark/start{ - name = "Bridge Crew" +/obj/random/junk, +/obj/effect/floor_decal/industrial/outline_segment/yellow{ + dir = 10 }, /turf/simulated/floor/tiled/dark, -/area/bridge/meeting_room) -"wHJ" = ( -/obj/effect/landmark/entry_point/fore{ - name = "fore, d1 airlock" - }, -/turf/simulated/wall/shuttle/scc_space_ship/cardinal, -/area/maintenance/hangar/starboard) -"wHM" = ( -/turf/simulated/wall, -/area/rnd/hallway) -"wHO" = ( -/obj/effect/floor_decal/corner/mauve{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/conference) -"wHX" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/light/spot{ - dir = 4 +/area/horizon/maintenance/deck_2/wing/starboard/nacelle) +"wHB" = ( +/obj/structure/cable{ + icon_state = "4-8" }, /obj/effect/floor_decal/corner/dark_green{ - dir = 6 + dir = 5 }, /turf/simulated/floor/tiled, -/area/hangar/intrepid) -"wHY" = ( -/obj/structure/cable{ - icon_state = "0-2" +/area/horizon/hangar/intrepid) +"wHC" = ( +/obj/effect/floor_decal/corner_wide/yellow/full, +/turf/simulated/floor/tiled, +/area/horizon/engineering/reactor/indra/office) +"wHF" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 5 }, -/obj/effect/floor_decal/industrial/warning, -/obj/machinery/power/apc/north, -/turf/simulated/floor/plating, -/area/maintenance/wing/port/deck1) +/obj/machinery/alarm/north, +/turf/simulated/floor/tiled, +/area/horizon/operations/lobby) +"wHK" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/floor_decal/spline/plain, +/turf/simulated/floor/carpet/rubber, +/area/horizon/engineering/reactor/supermatter/monitoring) +"wHL" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/horizon/rnd/hallway/secondary) +"wHP" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/shuttle/intrepid/main_compartment) +"wHS" = ( +/obj/structure/table/standard, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/effect/floor_decal/corner/grey/diagonal, +/obj/item/glass_jar/gumball/medical, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/reception) +"wHU" = ( +/obj/machinery/atmospherics/unary/outlet_injector{ + frequency = 1441; + id = "co2_in"; + name = "carbon dioxide injector"; + use_power = 1 + }, +/turf/simulated/floor/reinforced/carbon_dioxide, +/area/horizon/engineering/atmos) "wHZ" = ( /obj/effect/floor_decal/spline/plain{ dir = 9 @@ -158256,25 +159729,28 @@ /obj/effect/floor_decal/spline/plain/corner, /turf/simulated/floor/exoplanet/grass/grove, /area/centcom/shared_dream) +"wIb" = ( +/obj/effect/floor_decal/industrial/outline/grey, +/obj/structure/closet/crate/freezer/rations, +/obj/item/storage/box/kitchen, +/turf/simulated/floor/plating, +/area/horizon/hangar/intrepid) "wIf" = ( /turf/simulated/mineral/random/high_chance/phoron, /area/centcom/shared_dream) -"wIj" = ( -/obj/structure/cable/green{ - icon_state = "2-8" +"wIi" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 1 }, -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/obj/machinery/alarm/east{ - req_one_access = list(24,11,55) - }, -/obj/machinery/camera/network/engineering{ - c_tag = "Engineering - Deck 2 - Engineering Substation"; - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/substation/engineering) +/obj/effect/floor_decal/spline/plain, +/turf/simulated/floor/carpet/rubber, +/area/horizon/tcommsat/chamber) +"wIl" = ( +/obj/machinery/atmospherics/portables_connector, +/obj/machinery/portable_atmospherics/powered/scrubber, +/obj/effect/floor_decal/industrial/outline/red, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/hallway/aft) "wIm" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -158286,39 +159762,6 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/holodeck_control) -"wIq" = ( -/obj/structure/platform/ledge, -/turf/simulated/open, -/area/hallway/medical/upper) -"wIr" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/full, -/area/rnd/hallway) -"wIu" = ( -/obj/effect/floor_decal/corner/black/full, -/obj/machinery/firealarm/south, -/turf/simulated/floor/tiled, -/area/operations/lower/machinist) -"wIv" = ( -/obj/effect/floor_decal/corner/yellow{ - dir = 10 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/engineering/rust_office) "wIA" = ( /obj/structure/table/rack, /obj/item/clothing/shoes/magboots, @@ -158328,6 +159771,20 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/unsimulated/floor, /area/antag/mercenary) +"wIB" = ( +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/simple/visible/black, +/obj/effect/floor_decal/corner/yellow{ + dir = 1 + }, +/obj/effect/floor_decal/corner/dark_blue{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/atmos) +"wIE" = ( +/turf/simulated/wall, +/area/horizon/hangar/auxiliary) "wIF" = ( /obj/structure/flora/ausbushes/ywflowers, /obj/effect/floor_decal/spline/plain{ @@ -158341,10 +159798,13 @@ }, /turf/simulated/floor/exoplanet/grass/grove, /area/centcom/shared_dream) -"wIJ" = ( -/obj/effect/floor_decal/corner/dark_green/full{ - dir = 8 +"wIM" = ( +/obj/machinery/artifact_harvester{ + pixel_y = 1 }, +/turf/simulated/floor/bluegrid, +/area/horizon/rnd/xenoarch/anomaly_harvest) +"wIQ" = ( /obj/structure/cable/green{ icon_state = "4-8" }, @@ -158352,112 +159812,58 @@ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 + dir = 9 }, +/obj/effect/floor_decal/corner/brown{ + dir = 10 + }, +/obj/machinery/light, /turf/simulated/floor/tiled, -/area/hangar/intrepid/interstitial) -"wIK" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 5 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/structure/closet/walllocker/medical/firstaid{ - pixel_y = 32 - }, -/obj/effect/floor_decal/industrial/outline/medical, -/turf/simulated/floor/tiled/dark, -/area/horizon/grauwolf) -"wIM" = ( -/obj/machinery/artifact_harvester{ - pixel_y = 1 - }, -/turf/simulated/floor/bluegrid, -/area/outpost/research/anomaly_harvest) -"wIO" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/engineering/atmos) -"wIS" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/black{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/engineering/engine_waste) -"wIU" = ( -/obj/structure/railing/mapped, -/turf/simulated/floor/tiled/dark, -/area/shuttle/intrepid/main_compartment) +/area/horizon/operations/mail_room) "wIV" = ( /obj/effect/floor_decal/corner/grey{ dir = 10 }, /turf/unsimulated/floor, /area/antag/loner) -"wJg" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/manifold/hidden, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/maintenance/hangar/starboard) -"wJh" = ( -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/maintenance/hangar/starboard) -"wJo" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "bridge blast"; - name = "Bridge Blast Doors"; - opacity = 0 +"wIY" = ( +/obj/effect/floor_decal/corner/brown/full{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled, +/area/horizon/operations/commissary) +"wJp" = ( +/turf/simulated/wall/r_wall, +/area/horizon/command/bridge/upperdeck) +"wJr" = ( +/obj/effect/floor_decal/corner_wide/yellow{ + dir = 5 }, -/turf/simulated/floor/tiled/full, -/area/horizon/hallway/deck_three/primary/central) -"wJq" = ( -/obj/machinery/door/firedoor, /obj/structure/cable/green{ icon_state = "4-8" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 +/obj/structure/platform, +/obj/machinery/firealarm/north, +/turf/simulated/floor/tiled, +/area/horizon/engineering/hallway/interior) +"wJv" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/airlock/glass{ - dir = 4 - }, -/turf/simulated/floor/tiled/full, -/area/horizon/hallway/deck_three/primary/port/docks) -"wJw" = ( -/obj/structure/lattice/catwalk, -/turf/simulated/open, -/area/maintenance/wing/starboard) -"wJx" = ( -/turf/simulated/floor/tiled/full, -/area/horizon/hallway/deck_two/fore) -"wJz" = ( -/obj/effect/floor_decal/industrial/outline/medical, -/obj/structure/closet/walllocker/medical/firstaid{ +/obj/structure/sign/nosmoking_1{ pixel_y = 32 }, -/turf/simulated/floor/tiled/dark, -/area/horizon/hallway/deck_three/primary/central) -"wJA" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/full, -/area/hallway/primary/central_one) +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/reactor/indra/mainchamber) +"wJy" = ( +/turf/simulated/wall, +/area/horizon/rnd/xenobiology) "wJB" = ( /turf/simulated/open, /area/horizon/security/investigations_hallway) @@ -158468,123 +159874,126 @@ name = "airlock_horizon_dock_deck_3_starboard_2" }, /turf/simulated/floor/reinforced/airless, -/area/template_noop) -"wJN" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 9 +/area/horizon/exterior) +"wJM" = ( +/obj/effect/floor_decal/corner/purple, +/obj/machinery/atmospherics/pipe/simple/hidden/purple{ + dir = 6 }, /turf/simulated/floor/tiled/dark, -/area/maintenance/wing/port/far) -"wJO" = ( -/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) +/area/horizon/service/custodial/disposals/deck_1) "wJS" = ( /obj/effect/step_trigger/thrower/shuttle/north, /turf/space/transit/north, /area/template_noop) -"wJZ" = ( -/obj/effect/floor_decal/corner/white/diagonal, -/obj/structure/table/standard, -/obj/item/reagent_containers/hypospray{ - pixel_x = -2; - pixel_y = 5 +"wJX" = ( +/obj/machinery/ship_weapon/longbow{ + pixel_x = -32; + pixel_y = -320; + weapon_id = "Longbow Cannon" }, -/obj/item/reagent_containers/hypospray{ - pixel_x = 4; - pixel_y = 5 +/obj/structure/ship_weapon_dummy, +/obj/effect/floor_decal/industrial/hatch/red, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/weapons/longbow) +"wKe" = ( +/obj/structure/sink/kitchen{ + name = "water fountain"; + pixel_y = 26 }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/item/storage/toolbox/mechanical{ - pixel_y = -11 - }, -/turf/simulated/floor/tiled, -/area/medical/paramedic) -"wKb" = ( -/turf/simulated/wall, -/area/journalistoffice) -"wKd" = ( -/obj/structure/table/standard, -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard/far) -"wKh" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/corner/dark_blue/diagonal, -/turf/simulated/floor/tiled/dark, -/area/security/checkpoint) -"wKm" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/dark, -/area/maintenance/wing/port/far) -"wKo" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 6 - }, -/obj/structure/bed/stool/bar/padded/black{ +/obj/effect/floor_decal/corner/lime/diagonal, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/washroom) +"wKl" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden{ dir = 8 }, -/turf/simulated/floor/wood, -/area/horizon/crew_quarters/lounge/bar) -"wKp" = ( -/obj/structure/closet/radiation, -/obj/structure/window/reinforced{ - dir = 4 +/obj/machinery/airlock_sensor{ + dir = 4; + pixel_x = -20 }, -/obj/structure/window/reinforced, -/obj/random/dirt_75, -/obj/random/dirt_75, -/turf/simulated/floor/carpet/rubber, -/area/maintenance/wing/port/far) +/obj/effect/map_effect/marker/airlock{ + frequency = 1004; + master_tag = "airlock_horizon_deck_1_fore_1"; + name = "airlock_horizon_deck_1_fore_1" + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/hangar/starboard) "wKq" = ( /obj/structure/shuttle_part/mercenary/small{ icon_state = "1,12" }, /turf/unsimulated/floor/plating, /area/shuttle/syndicate_elite) -"wKB" = ( -/obj/item/modular_computer/console/preset/medical{ - dir = 8 - }, -/obj/effect/floor_decal/corner_wide/paleblue{ - dir = 5 +"wKs" = ( +/obj/effect/floor_decal/corner_wide/green/diagonal, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/exam) +"wKu" = ( +/obj/machinery/conveyor{ + id = "cargo_1" }, +/turf/simulated/floor/tiled, +/area/horizon/hangar/operations) +"wKw" = ( +/obj/effect/floor_decal/corner/green/diagonal, +/obj/machinery/disposal/small/south, +/obj/structure/disposalpipe/trunk, +/turf/simulated/floor/tiled/white, +/area/horizon/crew/washroom/deck_2) +"wKF" = ( /obj/structure/railing/mapped{ dir = 4 }, -/turf/simulated/floor/tiled/white, -/area/hallway/medical) -"wKC" = ( -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ +/obj/structure/lattice, +/obj/structure/railing/mapped{ + dir = 1 + }, +/turf/simulated/open, +/area/horizon/maintenance/deck_2/wing/port) +"wKJ" = ( +/obj/structure/lattice, +/obj/structure/platform/ledge, +/turf/simulated/open, +/area/horizon/hallway/primary/deck_2/central) +"wKK" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/computer/guestpass{ + pixel_y = 32 + }, +/obj/effect/floor_decal/corner/dark_green{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/horizon/engineering/hallway/fore) +"wKN" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/engineering{ + dir = 4; + name = "Engineering Substation"; + req_one_access = list(11,24) + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/substation/engineering/lower) +"wKR" = ( +/obj/machinery/atmospherics/omni/filter{ + name = "oxygen filter"; + tag_east = 3; + tag_north = 1; + tag_south = 2 + }, +/obj/effect/floor_decal/corner/yellow, +/obj/effect/floor_decal/corner/dark_blue{ dir = 4 }, -/obj/machinery/meter, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/engine_room) -"wKO" = ( -/obj/machinery/camera/network/engineering{ - c_tag = "Engineering - Supermatter Reactor Monitoring"; - dir = 8 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/computer/security/engineering/terminal, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/engine_monitoring) +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/atmos) "wKS" = ( /obj/item/trash/tastybread, /obj/item/trash/koisbar, @@ -158603,46 +160012,20 @@ /obj/structure/lattice/catwalk/indoor/grate/dark, /turf/simulated/floor/plating, /area/shuttle/skipjack) -"wKW" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ +"wLd" = ( +/obj/structure/bookcase, +/obj/item/book/manual/wiki/ntsl2, +/obj/item/book/manual/wiki/station_procedure, +/obj/item/book/manual/research_and_development, +/obj/item/book/manual/ka_custom, +/obj/item/book/manual/excavation, +/obj/item/book/manual/anomaly_testing, +/obj/item/book/manual/anomaly_spectroscopy, +/obj/machinery/light{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/door/blast/regular/open{ - id = "hangarlockdown"; - name = "Hangar Lockdown" - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/full, -/area/horizon/stairwell/central) -"wKY" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology) -"wLa" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor, -/area/horizon/maintenance/deck_three/aft/starboard) -"wLe" = ( -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/machinery/alarm/east, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard/far) -"wLk" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, /turf/simulated/floor/wood, -/area/crew_quarters/heads/hor) +/area/horizon/rnd/hallway/secondary) "wLn" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/door/airlock/hatch{ @@ -158658,36 +160041,37 @@ /obj/effect/floor_decal/industrial/hatch_door/yellow, /turf/simulated/floor/tiled/dark/full, /area/shuttle/skipjack) -"wLr" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/reagent_dispensers/fueltank, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard) -"wLs" = ( -/turf/simulated/wall/r_wall, -/area/engineering/smes/rust) -"wLx" = ( -/turf/simulated/wall/r_wall, -/area/engineering/lobby) -"wLA" = ( -/obj/item/circuitboard/security/engineering{ - pixel_y = 4 +"wLq" = ( +/turf/simulated/floor/tiled/freezer{ + name = "cooled tiles"; + temperature = 253.15 }, -/obj/item/circuitboard/atmos_alert, -/obj/item/circuitboard/security{ - pixel_y = -4 +/area/horizon/service/kitchen/freezer) +"wLy" = ( +/obj/effect/floor_decal/corner_wide/purple{ + dir = 4 }, -/obj/item/circuitboard/message_monitor{ - pixel_y = -8 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/table/rack{ +/obj/effect/floor_decal/corner_wide/purple{ dir = 8 }, -/obj/effect/floor_decal/corner/yellow/diagonal, -/obj/machinery/light/small, -/turf/simulated/floor/tiled/dark, -/area/engineering/storage/tech) +/obj/effect/floor_decal/corner_wide/purple{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/xenoarch/atrium) "wLC" = ( /obj/machinery/light{ dir = 1 @@ -158702,27 +160086,23 @@ }, /turf/simulated/floor/shuttle/dark_blue, /area/shuttle/transport1) -"wLJ" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 1 +"wLF" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 5 }, -/obj/structure/disposalpipe/trunk, -/obj/machinery/disposal/small/south, -/turf/simulated/floor/wood, -/area/horizon/library) -"wLL" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/machinery/status_display{ + pixel_y = 32 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/lattice/catwalk/indoor/grate, -/turf/simulated/floor/plating, -/area/hallway/primary/aft) +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_3/starboard/docks) +"wLN" = ( +/obj/structure/table/standard, +/obj/item/storage/slimes, +/obj/machinery/recharger, +/obj/item/net_container, +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/xenobiology) "wLV" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -158771,29 +160151,6 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/unsimulated/floor, /area/centcom/legion/hangar5) -"wMn" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/effect/floor_decal/spline/plain{ - dir = 5 - }, -/turf/simulated/floor/carpet/rubber, -/area/operations/lower/machinist) -"wMp" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/closet/crate, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/item/stack/material/phoron{ - amount = 20 - }, -/obj/item/stack/material/uranium{ - amount = 10 - }, -/turf/simulated/floor/tiled/dark/full, -/area/operations/lower/machinist) "wMq" = ( /turf/simulated/wall/shuttle/unique/tcfl{ icon_state = "6,0" @@ -158831,6 +160188,17 @@ }, /turf/unsimulated/floor, /area/centcom/control) +"wMz" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 6 + }, +/obj/machinery/camera/motion{ + c_tag = "Technical Storage"; + dir = 8; + network = list("Command","Security","Engineering") + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/storage/tech) "wMA" = ( /obj/effect/decal/fake_object{ icon = 'icons/obj/doors/rapid_pdoor.dmi'; @@ -158840,41 +160208,28 @@ }, /turf/simulated/floor/plating, /area/merchant_station/warehouse) -"wMB" = ( +"wML" = ( /obj/structure/cable/green{ icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 +/obj/machinery/button/remote/blast_door{ + dir = 6; + id = "shutters_deck3_longbow"; + name = "Safety Blast Doors Control"; + pixel_y = -27 }, -/obj/effect/floor_decal/corner/dark_green{ - dir = 9 - }, -/obj/machinery/camera/network/first_deck{ - c_tag = "First Deck - Hangar 7"; - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 1 +/turf/simulated/floor/tiled/dark, +/area/horizon/weapons/longbow) +"wMM" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 5 }, /turf/simulated/floor/tiled, -/area/hangar/intrepid) -"wMO" = ( -/obj/structure/stairs_railing{ - dir = 8 - }, -/turf/simulated/floor/holofloor/tiled/ramp/bottom, -/area/horizon/stairwell/central) -"wMU" = ( -/obj/machinery/atmospherics/unary/vent_pump/aux{ - dir = 8 - }, -/turf/simulated/floor/reinforced, -/area/bridge/selfdestruct) -"wMV" = ( -/turf/simulated/wall/r_wall, -/area/engineering/smes) +/area/horizon/rnd/eva) +"wMP" = ( +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/dark, +/area/horizon/rnd/xenoarch/atrium) "wMW" = ( /obj/machinery/light{ dir = 4 @@ -158885,42 +160240,12 @@ }, /turf/simulated/floor/tiled, /area/horizon/security/investigations_hallway) -"wMX" = ( -/obj/structure/cable/green{ - icon_state = "1-2" +"wNe" = ( +/obj/structure/ship_weapon_dummy{ + opacity = 1 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/corner/red/diagonal, -/obj/effect/floor_decal/spline/plain{ - dir = 9 - }, -/turf/simulated/floor/lino, -/area/horizon/cafeteria) -"wNb" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 10 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"wNc" = ( -/obj/structure/table/stone/marble, -/obj/item/reagent_containers/glass/bucket{ - pixel_y = 6; - pixel_x = 7 - }, -/obj/item/reagent_containers/glass/bucket{ - pixel_y = 2; - pixel_x = -6 - }, -/obj/effect/floor_decal/spline/plain/lime, -/turf/simulated/floor/tiled/dark, -/area/horizon/hydroponics/garden) +/turf/simulated/floor/tiled/dark/full, +/area/horizon/weapons/longbow) "wNf" = ( /obj/effect/floor_decal/corner/dark_blue/full{ dir = 8 @@ -158937,36 +160262,6 @@ /obj/structure/flora/ausbushes/ppflowers, /turf/unsimulated/floor/grass, /area/antag/actor) -"wNk" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/door/airlock/glass_engineering{ - dir = 4; - name = "Engineering Locker Room"; - req_access = list(11) - }, -/obj/machinery/door/firedoor{ - dir = 4 - }, -/turf/simulated/floor/tiled/full, -/area/engineering/locker_room) -"wNn" = ( -/obj/effect/floor_decal/corner_wide/purple{ - dir = 9 - }, -/obj/effect/floor_decal/corner_wide/purple{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/visible/yellow, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/platform{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenoarch_atrium) "wNo" = ( /obj/structure/window/reinforced/holowindow{ dir = 4 @@ -158976,41 +160271,30 @@ }, /turf/simulated/floor/holofloor/tiled, /area/horizon/holodeck/source_battlemonsters) -"wNq" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/horizon/maintenance/deck_two/fore/port) -"wNw" = ( -/obj/structure/bed/stool/chair/padded/black{ - dir = 8 - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/lawoffice/representative) "wNx" = ( /obj/effect/floor_decal/corner/red/full{ dir = 8 }, /turf/simulated/floor/marble, /area/horizon/holodeck/source_trinary) -"wNE" = ( -/turf/simulated/floor/tiled/dark/full, -/area/maintenance/wing/cargo_compartment) -"wNG" = ( +"wNz" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 5 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 }, /obj/structure/cable/green{ - icon_state = "2-4" + icon_state = "4-8" }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/horizon/cafeteria) +/turf/simulated/floor/tiled, +/area/horizon/service/hydroponics/garden) "wNH" = ( /obj/machinery/door/airlock/hatch{ dir = 1; @@ -159023,6 +160307,9 @@ /obj/machinery/door/firedoor/noid, /turf/simulated/floor/tiled/dark/full, /area/shuttle/mercenary) +"wNN" = ( +/turf/simulated/wall/r_wall, +/area/horizon/command/bridge/aibunker) "wNO" = ( /obj/structure/closet/secure_closet/guncabinet{ name = "FIB Primary"; @@ -159038,67 +160325,30 @@ icon_state = "dark_preview" }, /area/centcom/control) +"wNP" = ( +/obj/effect/floor_decal/corner_wide/blue{ + dir = 1 + }, +/obj/effect/floor_decal/corner_wide/yellow{ + dir = 4 + }, +/obj/effect/floor_decal/spline/plain{ + dir = 1 + }, +/obj/machinery/atmospherics/binary/pump/high_power/on{ + dir = 4; + name = "Scrubber to Waste"; + target_pressure = 15000 + }, +/turf/simulated/floor/tiled, +/area/horizon/engineering/atmos/storage) "wNQ" = ( /obj/effect/floor_decal/spline/fancy/wood, /turf/simulated/floor/holofloor/grass, /area/horizon/holodeck/source_picnicarea) -"wNR" = ( -/obj/structure/table/standard, -/obj/item/device/mmi{ - pixel_y = 4 - }, -/obj/item/device/mmi{ - pixel_y = 11 - }, -/turf/simulated/floor/tiled, -/area/operations/lower/machinist) -"wNS" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/door/airlock/engineering{ - dir = 4; - name = "Deck 2 and 3 Security Substation"; - req_one_access = list(11,24) - }, -/obj/machinery/door/blast/regular/open{ - id = "hangarlockdown"; - name = "Hangar Lockdown" - }, -/turf/simulated/floor/tiled/full, -/area/maintenance/substation/security) -"wNW" = ( -/obj/structure/extinguisher_cabinet/east, -/obj/random/dirt_75, +"wNT" = ( /turf/simulated/floor/plating, -/area/maintenance/wing/port/far) -"wNX" = ( -/obj/structure/table/rack, -/obj/random/contraband, -/turf/simulated/floor/plating, -/area/maintenance/wing/port/far) -"wOd" = ( -/obj/effect/floor_decal/corner/yellow{ - dir = 5 - }, -/obj/structure/table/rack, -/obj/item/stack/material/plasteel{ - amount = 10; - pixel_x = 4; - pixel_y = -4 - }, -/obj/item/stack/material/plasteel{ - amount = 10 - }, -/obj/item/stack/material/plasteel{ - amount = 10; - pixel_x = -4; - pixel_y = 4 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled, -/area/engineering/storage_eva) +/area/horizon/maintenance/deck_1/wing/port/far) "wOe" = ( /obj/structure/table/standard, /obj/item/clothing/glasses/hud/health, @@ -159111,12 +160361,16 @@ icon_state = "white" }, /area/centcom/legion) -"wOj" = ( +"wOf" = ( +/obj/machinery/camera/network/reactor{ + c_tag = "Engineering - INDRA SMES Room 1"; + dir = 1 + }, /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 }, -/turf/simulated/floor/tiled, -/area/engineering/lobby) +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/reactor/indra/smes) "wOl" = ( /obj/machinery/light{ name = "adjusted light fixture"; @@ -159192,37 +160446,61 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/holodeck_control/beta) -"wOB" = ( -/obj/machinery/porta_turret, -/obj/effect/floor_decal/industrial/warning/full, -/turf/simulated/floor/bluegrid{ - name = "cooled mainframe floor"; - temperature = 278 - }, -/area/turret_protected/ai) -"wOE" = ( -/obj/effect/floor_decal/corner_wide/yellow/full{ - dir = 1 - }, -/obj/effect/floor_decal/corner_wide/yellow/diagonal{ +"wOy" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume/aux{ dir = 4 }, -/obj/effect/floor_decal/spline/plain{ +/obj/effect/floor_decal/industrial/outline_door/red, +/obj/effect/floor_decal/industrial/outline_straight/red{ dir = 8 }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/structure/engineer_maintenance/electric/wall, -/turf/simulated/floor/tiled, -/area/engineering/break_room) -"wOH" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 9 +/obj/structure/bed/handrail{ + dir = 4; + pixel_x = -2 }, -/obj/machinery/atmospherics/pipe/manifold/hidden{ +/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/horizon/shuttle/quark/cargo_hold) +"wOA" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 6 + }, +/obj/structure/table/standard, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/machinery/power/apc/east, +/obj/structure/cable/green{ + icon_state = "0-8" + }, +/turf/simulated/floor/tiled, +/area/horizon/storage/primary) +"wOC" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 1 }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/mining) +/turf/simulated/floor/tiled, +/area/horizon/engineering/locker_room) +"wOF" = ( +/obj/machinery/door/airlock/multi_tile/glass{ + dir = 2; + name = "Deck 2 Stairwell" + }, +/obj/machinery/door/firedoor/multi_tile{ + dir = 1 + }, +/turf/simulated/floor/tiled/full, +/area/horizon/operations/lobby) "wOJ" = ( /obj/effect/floor_decal/corner/paleblue{ dir = 5 @@ -159230,100 +160508,108 @@ /obj/effect/floor_decal/corner/paleblue, /turf/unsimulated/floor, /area/centcom/holding) -"wOO" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ +"wON" = ( +/obj/machinery/light{ dir = 4 }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/random/dirt_75, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/turf/simulated/floor/plating, -/area/maintenance/wing/port/far) -"wOP" = ( -/obj/effect/floor_decal/corner/lime/full{ +/obj/effect/floor_decal/corner/dark_blue/full{ dir = 1 }, -/turf/simulated/floor/tiled/white{ - name = "cooled white floor"; - temperature = 278.15 - }, -/area/medical/morgue/lower) +/turf/simulated/floor/tiled/dark, +/area/horizon/storage/eva) "wOQ" = ( /obj/structure/shuttle_part/mercenary/small, /turf/unsimulated/floor/plating, /area/shuttle/syndicate_elite) -"wOT" = ( -/obj/effect/floor_decal/industrial/hatch_door/red, -/obj/machinery/door/airlock/external{ +"wOR" = ( +/obj/structure/table/wood, +/obj/machinery/photocopier/faxmachine{ + anchored = 0; + department = "Representative's Office A"; + pixel_y = 4 + }, +/obj/effect/floor_decal/spline/fancy/wood/cee{ dir = 8 }, -/obj/machinery/atmospherics/pipe/manifold/hidden, -/obj/effect/map_effect/marker_helper/airlock/interior, -/obj/effect/map_effect/marker/airlock{ - master_tag = "sccv_intrepid_port"; - name = "sccv_intrepid_port"; - req_one_access = null - }, -/turf/simulated/floor/tiled/dark/full, -/area/shuttle/intrepid/port_compartment) +/turf/simulated/floor/wood, +/area/horizon/repoffice/representative_one) "wOU" = ( /turf/simulated/wall/shuttle/unique/ccia{ icon_state = "4,4" }, /area/shuttle/transport1) -"wOV" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/hallway/medical) -"wPd" = ( -/obj/effect/floor_decal/spline/plain/cee{ - dir = 4 - }, -/turf/simulated/floor/carpet/rubber, -/area/hallway/primary/central_one) -"wPf" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/turf/unsimulated/floor/linoleum, -/area/antag/actor) -"wPo" = ( -/obj/structure/dispenser/oxygen, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/window/westleft{ - name = "Oxygen Supplies Access"; - req_access = list(48) - }, -/turf/simulated/floor/tiled/dark/full, -/area/outpost/mining_main/refinery) -"wPB" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 +"wPe" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 9 }, /obj/structure/cable/green{ - icon_state = "4-8" + icon_state = "1-8" }, -/obj/structure/lattice/catwalk/indoor/grate, -/turf/simulated/floor/plating, -/area/hallway/primary/central_two) -"wPD" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/turf/simulated/floor/tiled/dark, -/area/hangar/intrepid) +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_3/starboard/docks) +"wPg" = ( +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/horizon/engineering/storage/lower) +"wPv" = ( +/obj/effect/floor_decal/corner/grey/diagonal, +/obj/effect/floor_decal/spline/plain/corner{ + dir = 4 + }, +/obj/effect/floor_decal/spline/plain/corner{ + dir = 1 + }, +/obj/effect/floor_decal/spline/plain/corner, +/obj/structure/disposalpipe/segment, +/obj/machinery/firealarm/west, +/obj/machinery/camera/network/service{ + c_tag = "Dinner - Kitchen 2"; + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/service/kitchen) +"wPw" = ( +/turf/simulated/wall, +/area/horizon/crew/fitness/showers) +"wPy" = ( +/obj/machinery/atmospherics/portables_connector, +/obj/machinery/door/window/southright{ + name = "Canister Access" + }, +/obj/machinery/portable_atmospherics/canister/air/airlock, +/obj/effect/decal/cleanable/cobweb2, +/turf/simulated/floor, +/area/horizon/maintenance/deck_3/bridge) +"wPC" = ( +/obj/machinery/light/small/emergency, +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/main/starboard) +"wPF" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/horizon/engineering/storage_eva) +"wPG" = ( +/obj/structure/shuttle/engine/heater{ + dir = 1 + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/structure/railing/mapped, +/turf/simulated/floor/plating, +/area/horizon/engineering/atmos/propulsion) "wPI" = ( /obj/effect/decal/fake_object{ dir = 4; @@ -159366,43 +160652,11 @@ name = "shallow water" }, /area/horizon/holodeck/source_konyang) -"wPJ" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/maintenance/wing/port/far) "wPS" = ( /obj/structure/lattice, /obj/structure/grille/broken, /turf/space/dynamic, /area/template_noop) -"wPV" = ( -/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, -/obj/machinery/recharger{ - pixel_x = -5; - pixel_y = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/quark/cockpit) "wPY" = ( /obj/effect/floor_decal/corner/dark_blue{ dir = 10 @@ -159413,44 +160667,25 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/security/evidence_storage) +"wQa" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/corner/brown{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/horizon/operations/office) "wQb" = ( /obj/structure/flora/ausbushes/ppflowers, /turf/simulated/floor/holofloor/grass, /area/horizon/holodeck/source_wildlife) -"wQc" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/full, -/area/hallway/primary/central_one) -"wQe" = ( -/obj/effect/floor_decal/corner/white/diagonal, -/obj/structure/table/standard, -/obj/item/storage/belt/medical/paramedic, -/obj/item/storage/belt/medical/paramedic, -/obj/machinery/alarm/south, -/obj/machinery/requests_console/east{ - department = "Paramedic Bay" - }, -/obj/item/device/radio/med{ - pixel_x = -6; - pixel_y = 6 - }, -/obj/item/device/radio/med{ - pixel_x = 6; - pixel_y = 6 - }, -/obj/item/device/gps/medical{ - pixel_x = -7 - }, -/obj/item/device/gps/medical{ - pixel_x = 5 - }, -/turf/simulated/floor/tiled, -/area/medical/paramedic) "wQj" = ( /obj/structure/flora/pottedplant{ dead = 1; @@ -159463,53 +160698,23 @@ icon_state = "wood" }, /area/centcom/legion/hangar5) -"wQn" = ( -/turf/simulated/wall/shuttle/scc, -/area/shuttle/intrepid/buffet) -"wQo" = ( -/obj/structure/reagent_dispensers/keg/mead, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/wood, -/area/maintenance/wing/starboard) -"wQr" = ( -/obj/machinery/atmospherics/pipe/manifold/visible, -/obj/structure/cable/green{ - icon_state = "4-8" +"wQk" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume, +/obj/machinery/airlock_sensor{ + pixel_x = 6; + pixel_y = 28 }, -/turf/simulated/floor/tiled/dark, -/area/engineering/atmos) -"wQs" = ( -/turf/simulated/floor, -/area/maintenance/security_port) -"wQv" = ( -/obj/machinery/light/small/emergency, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 +/obj/effect/map_effect/marker/airlock/docking{ + landmark_tag = "nav_horizon_dock_deck_3_starboard_1"; + master_tag = "airlock_horizon_dock_deck_3_starboard_1"; + name = "airlock_horizon_dock_deck_3_starboard_1" + }, +/obj/machinery/embedded_controller/radio/airlock/docking_port{ + pixel_x = -6; + pixel_y = 28 }, /turf/simulated/floor/plating, -/area/maintenance/research_port) -"wQx" = ( -/obj/effect/floor_decal/corner/brown{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/operations/loading) -"wQA" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 10 - }, -/obj/effect/floor_decal/spline/plain/corner/blue{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/spline/plain/red{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/horizon/hydroponics/lower) +/area/horizon/hallway/primary/deck_3/port/docks) "wQF" = ( /obj/structure/lattice/catwalk/indoor, /obj/machinery/door/blast/odin/open{ @@ -159518,12 +160723,13 @@ }, /turf/unsimulated/floor, /area/centcom/legion/hangar5) -"wQH" = ( -/obj/structure/railing/mapped, -/obj/effect/floor_decal/corner/dark_green/diagonal, -/obj/effect/floor_decal/spline/fancy/wood, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/starboard) +"wQG" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/machinery/firealarm/west, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/ai/upload) "wQI" = ( /obj/machinery/alarm/south, /obj/machinery/atmospherics/unary/vent_scrubber/on{ @@ -159534,39 +160740,84 @@ }, /turf/simulated/floor/tiled, /area/horizon/security/brig) -"wQK" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 +"wQR" = ( +/obj/machinery/door/firedoor, +/obj/structure/window/shuttle/scc_space_ship, +/obj/structure/grille, +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id = "bridge blast"; + name = "Bridge Blast Doors"; + opacity = 0 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 +/obj/machinery/door/blast/shutters{ + dir = 4; + id = "shutters_deck3_xo"; + name = "Safety Shutter" }, -/obj/effect/floor_decal/corner/black{ +/turf/simulated/floor/tiled/dark/full, +/area/horizon/command/heads/xo) +"wQS" = ( +/obj/effect/floor_decal/corner/purple/full{ dir = 1 }, +/obj/machinery/light_switch{ + dir = 1; + pixel_x = -7; + pixel_y = 24 + }, +/obj/item/reagent_containers/glass/bucket, +/obj/structure/sink{ + dir = 1; + pixel_x = 8; + pixel_y = 26 + }, +/obj/effect/floor_decal/industrial/outline/custodial, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/firealarm/east, +/obj/structure/janitorialcart{ + dir = 4 + }, /turf/simulated/floor/tiled, -/area/operations/lower/machinist) -"wQW" = ( -/obj/structure/table/reinforced/wood, -/obj/machinery/computer/guestpass{ - pixel_y = 27 +/area/horizon/service/custodial/auxiliary) +"wQT" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/item/paper_bin, -/obj/item/pen/blue{ - pixel_x = 4; - pixel_y = 4 +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/camera/network/research{ + dir = 1; + c_tag = "Xenobio - Cell C"; + network = list("Xeno_Bio") }, -/obj/item/pen, -/obj/item/stamp/xo{ - pixel_x = 6; - pixel_y = 14 +/turf/simulated/floor/reinforced, +/area/horizon/rnd/xenobiology) +"wQU" = ( +/obj/machinery/body_scanconsole{ + dir = 1; + pixel_y = 6 }, -/obj/item/stamp/denied{ - pixel_y = 14; - pixel_x = -2 +/obj/effect/floor_decal/corner/beige/full, +/turf/simulated/floor/tiled/dark, +/area/horizon/medical/gen_treatment) +"wQX" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 8 }, -/turf/simulated/floor/carpet, -/area/crew_quarters/heads/hop/xo) +/obj/effect/floor_decal/corner/yellow, +/obj/machinery/atmospherics/binary/pump{ + dir = 4; + name = "Hydrogen to Mixer" + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/atmos/turbine) "wQZ" = ( /obj/structure/table/rack, /obj/item/clothing/gloves/yellow/specialu, @@ -159578,15 +160829,15 @@ /obj/item/storage/belt/utility/very_full, /turf/unsimulated/floor, /area/centcom/distress_prep) -"wRa" = ( -/obj/machinery/power/breakerbox/activated{ - RCon_tag = "Xenoarchaeology Substation" +"wRd" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 }, -/turf/simulated/floor/plating, -/area/maintenance/substation/research_sublevel) -"wRc" = ( -/obj/structure/cable/green{ - icon_state = "4-8" +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -159594,15 +160845,8 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/structure/lattice/catwalk/indoor/grate, -/turf/simulated/floor/plating, -/area/hallway/primary/central_two) -"wRe" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/central) +/turf/simulated/floor/wood, +/area/horizon/command/heads/rd) "wRf" = ( /obj/machinery/door/airlock/highsecurity{ dir = 4; @@ -159611,34 +160855,16 @@ }, /turf/simulated/floor/tiled/dark/full, /area/shuttle/hapt) -"wRj" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/structure/railing/mapped, -/obj/machinery/light/small/emergency{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/green{ - icon_state = "4-8" - }, +"wRi" = ( +/obj/structure/window/shuttle/scc_space_ship, +/obj/structure/grille, +/obj/machinery/door/firedoor, /turf/simulated/floor/plating, -/area/maintenance/wing/starboard) -"wRk" = ( -/turf/simulated/wall/shuttle/scc_space_ship/cardinal, -/area/crew_quarters/heads/hor) -"wRn" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/effect/floor_decal/corner/yellow/full{ - dir = 4 - }, -/obj/machinery/alarm/east, +/area/horizon/maintenance/substation/engineering) +"wRq" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/black, /turf/simulated/floor/tiled/dark, -/area/engineering/engine_waste) +/area/horizon/engineering/atmos/propulsion/starboard) "wRu" = ( /obj/effect/decal/fake_object{ dir = 4; @@ -159661,48 +160887,92 @@ }, /turf/simulated/floor/holofloor/reinforced, /area/horizon/holodeck/source_biesel) -"wRE" = ( -/turf/simulated/wall, -/area/storage/eva) -"wRG" = ( -/obj/machinery/power/generator{ - anchored = 1 +"wRv" = ( +/obj/effect/floor_decal/corner/grey/diagonal, +/obj/effect/floor_decal/spline/plain/corner{ + dir = 1 }, -/obj/effect/floor_decal/industrial/outline_straight/yellow{ +/turf/simulated/floor/tiled/white, +/area/horizon/service/kitchen) +"wRx" = ( +/turf/simulated/wall/shuttle/scc, +/area/horizon/shuttle/intrepid/port_compartment) +"wRy" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black{ dir = 4 }, -/obj/effect/floor_decal/industrial/outline_straight/yellow{ +/turf/simulated/wall/shuttle/scc_space_ship/cardinal, +/area/horizon/engineering/atmos/propulsion) +"wRA" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan, +/turf/simulated/floor/reinforced/airless, +/area/horizon/engineering/atmos/turbine) +"wRC" = ( +/obj/structure/table/wood, +/obj/item/device/flashlight/lamp/green{ + pixel_x = 7; + pixel_y = 3 + }, +/obj/item/toy/desk/officetoy{ + pixel_x = -9; + pixel_y = 5 + }, +/turf/simulated/floor/carpet/red, +/area/horizon/service/library) +"wRD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/floor_decal/industrial/warning{ dir = 8 }, -/obj/structure/cable/yellow{ - icon_state = "0-8" +/obj/structure/closet, +/obj/random/loot, +/obj/random/contraband, +/turf/simulated/floor, +/area/horizon/maintenance/deck_3/security/port) +"wRO" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 6 }, -/turf/simulated/floor/plating, -/area/engineering/engine_room/turbine) -"wRK" = ( -/obj/machinery/door/airlock{ - dir = 1; - id_tag = "central_stall_1"; - name = "Stall 1" +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" }, -/obj/machinery/door/firedoor{ +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 4 }, -/turf/simulated/floor/tiled/full, -/area/horizon/crew_quarters/washroom/central) -"wRN" = ( -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 2; - icon_state = "shutter0"; - id = "LCKDshutters"; - name = "MedBay Lockdown Shutters"; - opacity = 0 +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 }, -/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, -/obj/structure/sign/greencross/small, -/turf/simulated/floor/tiled/dark/full, -/area/medical/gen_treatment) +/turf/simulated/floor/tiled, +/area/horizon/operations/commissary) +"wRR" = ( +/obj/machinery/button/remote/airlock{ + dir = 4; + id = "CEdoor"; + name = "Office Door Control"; + pixel_x = 25; + pixel_y = -8; + req_access = list(56) + }, +/obj/machinery/button/switch/windowtint{ + dir = 4; + id = "ce"; + pixel_x = 25; + pixel_y = 2; + range = 9 + }, +/obj/machinery/light_switch{ + dir = 4; + pixel_x = 25; + pixel_y = 12 + }, +/obj/machinery/keycard_auth{ + dir = 8; + pixel_x = 19; + pixel_y = -4 + }, +/turf/simulated/floor/carpet, +/area/horizon/command/heads/chief) "wRV" = ( /obj/structure/bed/stool/chair/shuttle, /obj/machinery/vending/wallmed1{ @@ -159713,6 +160983,19 @@ }, /turf/simulated/floor/shuttle/black, /area/shuttle/specops) +"wRX" = ( +/obj/machinery/power/breakerbox/activated{ + RCon_tag = "Combustion Turbine Grid Bypass" + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/aux{ + dir = 6 + }, +/turf/simulated/floor/plating, +/area/horizon/engineering/atmos/turbine) "wRY" = ( /obj/structure/table/standard, /obj/item/storage/box/gloves, @@ -159733,77 +161016,47 @@ icon_state = "white" }, /area/centcom/legion) -"wRZ" = ( -/obj/effect/floor_decal/corner/white/diagonal, -/obj/effect/floor_decal/spline/plain{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/horizon/hallway/deck_three/primary/central) -"wSb" = ( -/obj/structure/table/standard, -/obj/machinery/recharger{ - pixel_y = 6; - pixel_x = 8 - }, -/obj/machinery/button/remote/airlock{ - id = "xeno_dissection"; - name = "Dissection access"; - req_access = list(55); - specialfunctions = 4; - dir = 10; - pixel_x = -6; - pixel_y = 1; - desiredstate = 1 - }, -/obj/effect/floor_decal/corner/mauve/full{ - dir = 8 - }, -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/machinery/firealarm/west, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology/hazardous) -"wSd" = ( -/obj/machinery/door/firedoor, -/obj/structure/table/reinforced/steel, -/obj/item/paper_bin, -/obj/item/pen, -/obj/machinery/door/blast/shutters{ - dir = 2; - id = "shutters_hangarseccpdesk"; - name = "Security Checkpoint Desk Shutter" - }, -/obj/machinery/door/window/desk/northleft{ - name = "Arrivals Checkpoint Processing Desk"; - req_access = list(63) - }, -/turf/simulated/floor/tiled/dark/full, -/area/security/checkpoint) -"wSl" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/reinforced, -/area/rnd/isolation_c) -"wSr" = ( -/obj/structure/tank_wall/carbon_dioxide{ - density = 0; - icon_state = "co2-11"; - opacity = 0 - }, -/obj/machinery/atmospherics/pipe/simple/visible/black, -/turf/simulated/floor/reinforced/carbon_dioxide, -/area/engineering/atmos) -"wSx" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 10 - }, -/obj/structure/platform{ +"wSa" = ( +/obj/effect/floor_decal/spline/fancy/wood{ dir = 1 }, -/obj/machinery/atmospherics/unary/vent_pump/on{ +/turf/simulated/floor/wood, +/area/horizon/service/chapel/main) +"wSj" = ( +/obj/machinery/atmospherics/pipe/simple/visible/red{ dir = 4 }, -/turf/simulated/floor/tiled, -/area/bridge) +/obj/effect/floor_decal/corner_wide/black{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/machinery/meter, +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/atmos/propulsion/starboard) +"wSp" = ( +/obj/structure/tank_wall{ + density = 0; + icon_state = "m-6"; + opacity = 0 + }, +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 4 + }, +/turf/simulated/floor/reinforced/airless, +/area/horizon/engineering/atmos) +"wSs" = ( +/obj/effect/floor_decal/industrial/outline/service, +/obj/structure/closet/crate/hydroponics/herbalism, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/service/hydroponics/lower) +"wSt" = ( +/obj/effect/landmark/entry_point/starboard{ + name = "starboard, rear" + }, +/turf/simulated/wall/shuttle/scc, +/area/horizon/shuttle/quark/cargo_hold) "wSz" = ( /obj/effect/floor_decal/industrial/warning{ dir = 9 @@ -159817,25 +161070,72 @@ /obj/effect/landmark/skrell_srom, /turf/simulated/floor/exoplanet/grass/grove, /area/centcom/shared_dream) -"wSB" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/structure/closet/crate, -/obj/random/loot, -/turf/simulated/floor/plating, -/area/maintenance/research_port) "wSC" = ( /obj/machinery/atmospherics/pipe/simple/visible/red{ dir = 6 }, /turf/space/dynamic, /area/horizon/exterior) -"wSH" = ( -/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, +"wSF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/starboard/far) +"wSI" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 6 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/horizon/command/bridge/controlroom) +"wSJ" = ( +/obj/effect/floor_decal/corner/green/diagonal, +/obj/machinery/disposal/small/south, +/obj/structure/disposalpipe/trunk, +/turf/simulated/floor/tiled/white, +/area/horizon/crew/fitness/changing) +"wSK" = ( +/obj/structure/cable/green{ + icon_state = "0-8" + }, +/obj/machinery/power/apc/low/north, +/obj/effect/floor_decal/corner/dark_green/full{ + dir = 1 + }, +/obj/effect/floor_decal/spline/plain/red, +/obj/random/pottedplant, +/obj/structure/sink/kitchen{ + dir = 8; + name = "sink"; + pixel_x = 19 + }, +/turf/simulated/floor/tiled, +/area/horizon/service/hydroponics/lower) +"wSL" = ( +/obj/structure/table/reinforced/steel, +/obj/item/paper_bin{ + pixel_x = 4; + pixel_y = 8 + }, +/obj/item/pen{ + pixel_x = 5; + pixel_y = 9 + }, +/obj/machinery/light{ + dir = 1 + }, /turf/simulated/floor/tiled/dark/full, -/area/maintenance/wing/starboard/far) +/area/horizon/engineering/reactor/indra/monitoring) "wSP" = ( /obj/effect/map_effect/window_spawner/full/reinforced/indestructible, /obj/machinery/door/blast/odin{ @@ -159849,28 +161149,19 @@ }, /turf/unsimulated/floor/plating, /area/centcom/checkpoint/fore) -"wSR" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ +"wSV" = ( +/obj/effect/floor_decal/corner_wide/black{ + dir = 6 + }, +/obj/effect/floor_decal/industrial/warning{ dir = 4 }, -/obj/structure/cable/green{ - icon_state = "4-8" +/obj/machinery/atmospherics/binary/pump/high_power{ + dir = 8; + name = "Phoron to Burn Mix" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/firedoor{ - dir = 4 - }, -/obj/machinery/door/airlock/glass{ - dir = 4 - }, -/turf/simulated/floor/tiled/full, -/area/hallway/primary/central_two) -"wSS" = ( -/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, -/turf/simulated/floor/plating, -/area/hangar/operations) +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/atmos/propulsion) "wSW" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 @@ -159880,6 +161171,45 @@ }, /turf/simulated/floor/tiled, /area/horizon/security/lobby) +"wSX" = ( +/obj/structure/bed/stool/chair/sofa/pew/left{ + dir = 8 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/horizon/service/chapel/main) +"wTc" = ( +/obj/effect/floor_decal/corner_wide/yellow/full{ + dir = 1 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/button/remote/blast_door{ + dir = 4; + id = "shutters_deck3_shieldwindows"; + name = "Viewing Shutters"; + pixel_x = 23 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/shields) +"wTf" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor/plating, +/area/horizon/hangar/intrepid/interstitial) "wTj" = ( /obj/structure/reagent_dispensers/fueltank, /obj/machinery/atmospherics/pipe/simple/hidden{ @@ -159898,36 +161228,62 @@ }, /turf/simulated/floor/holofloor/tiled, /area/horizon/holodeck/source_lasertag) -"wTo" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor, -/area/maintenance/security_port) "wTq" = ( /obj/effect/spider/cocoon, /obj/effect/spider/stickyweb, /turf/simulated/floor/exoplanet/barren/raskara, /area/centcom/shared_dream) -"wTA" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 6 +"wTt" = ( +/obj/effect/floor_decal/corner_wide/purple{ + dir = 5 }, -/obj/machinery/light/spot{ +/obj/effect/floor_decal/corner_wide/purple{ + dir = 8 + }, +/obj/structure/noticeboard/anomaly{ + pixel_y = 30 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/xenoarch/atrium) +"wTv" = ( +/obj/effect/floor_decal/corner/dark_green/diagonal, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, /turf/simulated/floor/tiled, -/area/hangar/auxiliary) +/area/horizon/crew/fitness/gym) +"wTw" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/starboard/far) +"wTz" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/operations/starboard/far) +"wTD" = ( +/obj/effect/floor_decal/corner/dark_blue/full{ + dir = 1 + }, +/obj/machinery/light_switch{ + pixel_x = 9; + pixel_y = 24 + }, +/obj/machinery/camera/motion{ + c_tag = "Grauwolf"; + dir = 8; + network = list("Command","Security") + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/weapons/grauwolf) "wTE" = ( /turf/simulated/floor/exoplanet/water/shallow{ dir = 1; @@ -159936,33 +161292,65 @@ name = "coast" }, /area/horizon/holodeck/source_konyang) -"wTG" = ( +"wTF" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/shutters/open{ + dir = 8; + id = "shutters_deck3_cafedesk"; + name = "Cafe Desk Shutter" + }, +/obj/structure/table/stone/marble, +/obj/item/material/ashtray/bronze{ + pixel_y = -5 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/service/cafeteria) +"wTP" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/structure/tank_wall/air{ + icon_state = "air8" + }, +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 10 + }, +/turf/simulated/floor/plating, +/area/horizon/engineering/atmos/air) +"wTY" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/structure/lattice/catwalk/indoor/grate, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/aux{ + dir = 8 + }, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 4 + }, /turf/simulated/floor/plating, -/area/hangar/auxiliary) -"wTK" = ( -/obj/machinery/door/firedoor{ - dir = 4 +/area/horizon/maintenance/deck_1/main/port) +"wUd" = ( +/obj/effect/floor_decal/corner_wide/yellow{ + dir = 9 }, -/obj/effect/floor_decal/industrial/hatch_door/red, -/obj/machinery/door/airlock/maintenance_hatch{ - dir = 4 - }, -/obj/effect/decal/cleanable/cobweb2, -/turf/simulated/floor/tiled/dark, -/area/maintenance/wing/port/far) -"wTR" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 +/obj/structure/cable/green{ + icon_state = "1-2" }, /turf/simulated/floor/tiled, -/area/maintenance/aux_atmospherics/deck_2/starboard/wing) +/area/horizon/engineering/hallway/aft) "wUe" = ( /obj/effect/floor_decal/corner/white/diagonal, /obj/effect/floor_decal/spline/plain{ @@ -159976,14 +161364,48 @@ }, /turf/unsimulated/floor/rubber_carpet, /area/centcom/control) -"wUn" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/effect/floor_decal/corner_wide/green{ - dir = 5 +"wUi" = ( +/obj/machinery/portable_atmospherics/canister/nitrogen/prechilled, +/obj/machinery/atmospherics/portables_connector, +/obj/machinery/light{ + dir = 1 }, -/obj/machinery/alarm/north, -/turf/simulated/floor/tiled/white, -/area/hallway/medical/upper) +/turf/simulated/floor/carpet/rubber, +/area/horizon/rnd/server) +"wUj" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/machinery/light/small/emergency{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/structure/cable, +/obj/machinery/power/apc/east, +/obj/structure/disposalpipe/segment{ + icon_state = "pipe-c" + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/aft) +"wUl" = ( +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/obj/machinery/power/smes/buildable{ + charge = 5000000; + input_attempt = 1; + input_level = 200000; + output_attempt = 1; + output_level = 200000 + }, +/turf/simulated/floor, +/area/horizon/ai/upload_foyer) "wUo" = ( /obj/machinery/atmospherics/pipe/simple/visible/purple{ dir = 9 @@ -159991,13 +161413,6 @@ /obj/structure/lattice/catwalk/indoor, /turf/space/dynamic, /area/horizon/exterior) -"wUq" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/grass/no_edge, -/area/horizon/hydroponics/lower) "wUr" = ( /obj/structure/window/shuttle/scc_space_ship, /obj/structure/grille/diagonal, @@ -160005,12 +161420,32 @@ /obj/structure/cable/green, /turf/simulated/floor/plating, /area/horizon/security/brig) -"wUt" = ( -/obj/structure/window/shuttle/scc_space_ship, -/obj/structure/grille, -/obj/machinery/door/firedoor, +"wUs" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/machinery/door/airlock/external{ + dir = 4 + }, +/obj/effect/map_effect/marker/airlock/docking{ + landmark_tag = "nav_horizon_dock_deck_3_port_5"; + master_tag = "airlock_horizon_dock_deck_3_port_5"; + name = "airlock_horizon_dock_deck_3_port_5" + }, +/obj/effect/map_effect/marker_helper/airlock/interior, /turf/simulated/floor/plating, -/area/maintenance/substation/engineering) +/area/horizon/hallway/primary/deck_3/starboard/docks) +"wUv" = ( +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/visible/black, +/obj/structure/lattice/catwalk/indoor, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/horizon/engineering/atmos/air) "wUx" = ( /obj/structure/closet/bombclosetsecurity, /obj/effect/floor_decal/corner/dark_blue/full{ @@ -160023,46 +161458,6 @@ }, /turf/simulated/floor/tiled, /area/horizon/security/warden) -"wUy" = ( -/obj/machinery/light/small/emergency{ - dir = 1 - }, -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 4 - }, -/obj/machinery/airlock_sensor{ - dir = 1; - pixel_x = -6; - pixel_y = -20 - }, -/obj/machinery/embedded_controller/radio/airlock/airlock_controller{ - dir = 1; - pixel_x = 6; - pixel_y = -20 - }, -/obj/effect/map_effect/marker/airlock{ - frequency = 2003; - master_tag = "airlock_horizon_deck_2_aft_indra"; - name = "airlock_horizon_deck_2_aft_indra" - }, -/turf/simulated/floor/plating, -/area/engineering/aft_airlock) -"wUz" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_command{ - dir = 4; - name = "EVA Storage"; - req_access = list(18) - }, -/turf/simulated/floor/tiled/full, -/area/storage/eva) "wUB" = ( /obj/machinery/light/colored/red{ dir = 1 @@ -160071,6 +161466,13 @@ /obj/effect/floor_decal/industrial/warning/full, /turf/simulated/floor/reinforced, /area/shuttle/hapt) +"wUD" = ( +/obj/machinery/atmospherics/unary/engine/scc_shuttle, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/reinforced, +/area/horizon/shuttle/quark/cargo_hold) "wUF" = ( /obj/machinery/chemical_dispenser/ert{ pixel_x = -3 @@ -160081,39 +161483,26 @@ icon_state = "white" }, /area/centcom/holding) -"wUI" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 1 +"wUG" = ( +/obj/structure/table/stone/marble, +/obj/machinery/chemical_dispenser/bar_soft/full{ + pixel_x = -10; + pixel_y = 16 }, -/obj/structure/table/reinforced/steel, -/obj/machinery/button/remote/blast_door{ - desc = "A remote control-switch for the engine control room blast doors."; - dir = 1; - id = "EngineBlast"; - name = "Supermatter Reactor Monitoring Room Blast Doors"; - pixel_y = -3; - req_one_access = list(11,24) +/obj/item/reagent_containers/food/drinks/shaker{ + pixel_x = 3; + pixel_y = 5 }, -/obj/machinery/button/remote/emitter{ - desc = "A remote control-switch for the supermatter reactor's emitter."; - dir = 1; - id = "ReactorEmitter"; - name = "Supermatter Reactor Emitter"; - pixel_x = 6; - pixel_y = 7; - req_one_access = list(11,24) +/obj/item/reagent_containers/food/drinks/shaker{ + pixel_x = -9; + pixel_y = 5 }, -/obj/machinery/button/remote/blast_door{ - desc = "A remote control-switch for the engine charging port."; - dir = 1; - id = "SupermatterPort"; - name = "Supermatter Reactor Crystal Viewing Blast Doors"; - pixel_x = -6; - pixel_y = 7; - req_one_access = list(11,24) - }, -/turf/simulated/floor/carpet/rubber, -/area/engineering/engine_monitoring) +/turf/simulated/floor/tiled/dark, +/area/horizon/service/bar) +"wUJ" = ( +/obj/effect/map_effect/map_helper/ruler_tiles_3, +/turf/simulated/wall/shuttle/scc_space_ship/cardinal, +/area/horizon/hallway/primary/deck_3/port/docks) "wUK" = ( /obj/structure/bed/stool/chair/office/light{ dir = 8 @@ -160126,19 +161515,17 @@ }, /turf/simulated/floor/tiled, /area/horizon/security/brig) -"wUM" = ( -/obj/effect/floor_decal/corner_wide/purple{ - dir = 4 - }, -/obj/effect/floor_decal/corner_wide/purple{ +"wUO" = ( +/obj/effect/floor_decal/corner_wide/green{ dir = 9 }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" +/obj/machinery/requests_console/west{ + department = "Medical"; + departmentType = 2; + name = "Medical Requests Console" }, /turf/simulated/floor/tiled/white, -/area/rnd/xenoarch_atrium) +/area/horizon/medical/hallway/upper) "wUY" = ( /obj/machinery/light, /obj/structure/table/reinforced/steel, @@ -160171,20 +161558,58 @@ /turf/unsimulated/floor, /area/centcom/specops) "wVd" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/firealarm/west, -/obj/effect/floor_decal/corner/dark_green{ - dir = 9 +/obj/structure/disposalpipe/segment, +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor/plating, +/area/horizon/hallway/primary/deck_2/central) +"wVe" = ( +/obj/effect/map_effect/door_helper/unres, +/obj/machinery/door/firedoor{ + dir = 4 }, -/obj/machinery/light/spot{ - dir = 8 +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id = "bridge blast"; + name = "Bridge Blast Doors"; + opacity = 0 + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/airlock/glass_command{ + dir = 1; + id_tag = "bridge_foyer"; + name = "Bridge"; + req_one_access = list(19) }, /turf/simulated/floor/tiled, -/area/hangar/intrepid) +/area/horizon/command/bridge/upperdeck) +"wVj" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/simulated/floor, +/area/horizon/maintenance/deck_3/aft/starboard) +"wVn" = ( +/obj/effect/floor_decal/spline/fancy/wood/cee, +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/structure/bed/stool/chair/padded/black{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/horizon/hallway/primary/deck_2/central) "wVq" = ( /obj/machinery/computer/rdservercontrol{ badmin = 1; @@ -160195,107 +161620,130 @@ icon_state = "dark_preview" }, /area/centcom/control) -"wVs" = ( -/obj/structure/railing/mapped{ - dir = 8 - }, +"wVu" = ( +/obj/structure/lattice, /obj/structure/railing/mapped, -/obj/structure/bed/stool/chair/sofa/right/purple{ +/obj/structure/railing/mapped{ dir = 4 }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 10 - }, -/turf/simulated/floor/wood, -/area/rnd/hallway/secondary) -"wVt" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/medical/pharmacy) +/turf/simulated/open, +/area/horizon/hallway/primary/deck_3/port) "wVw" = ( /turf/simulated/floor/shuttle/black, /area/shuttle/distress) +"wVx" = ( +/obj/machinery/disposal/small/north{ + pixel_y = -17 + }, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/wood, +/area/horizon/crew/journalistoffice) "wVz" = ( /obj/effect/floor_decal/corner/grey{ dir = 9 }, /turf/unsimulated/floor/dark, /area/antag/actor) -"wVE" = ( -/obj/machinery/atmospherics/pipe/simple/visible/black{ - dir = 4 - }, -/obj/machinery/meter, -/turf/simulated/floor/tiled/dark, -/area/engineering/atmos/propulsion) "wVG" = ( /obj/structure/table/wood, /obj/item/paper_bin, /obj/item/pen/fountain/black, /turf/simulated/floor/carpet, /area/merchant_station) -"wVU" = ( -/obj/effect/floor_decal/industrial/warning{ +"wVL" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/railing/mapped{ dir = 8 }, -/obj/structure/tank_wall/carbon_dioxide{ - icon_state = "co2-10" - }, -/turf/simulated/floor/airless, -/area/engineering/atmos) -"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 +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/port/near) +"wVO" = ( +/obj/effect/floor_decal/spline/fancy/wood, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/structure/bed/stool/chair/office/dark{ +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/structure/disposalpipe/segment{ + icon_state = "pipe-c" + }, +/turf/simulated/floor/wood, +/area/horizon/repoffice/consular_one) +"wVR" = ( +/obj/effect/floor_decal/corner_wide/green{ + dir = 5 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/obj/effect/floor_decal/industrial/warning{ dir = 1 }, -/turf/simulated/floor/plating, -/area/engineering/atmos/propulsion) -"wWj" = ( -/obj/effect/floor_decal/industrial/warning/full, -/obj/machinery/porta_turret, -/obj/machinery/alarm/west, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/gen_treatment) +"wVY" = ( +/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/horizon/shuttle/quark/cockpit) +"wVZ" = ( +/turf/simulated/wall/r_wall, +/area/horizon/engineering/hallway/fore) +"wWd" = ( +/turf/simulated/wall/r_wall, +/area/horizon/maintenance/deck_2/wing/port/near) +"wWg" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning, +/obj/structure/cable/green{ + icon_state = "4-8" + }, /turf/simulated/floor/tiled/dark/full, -/area/storage/secure) -"wWl" = ( -/obj/structure/table/rack, -/obj/random/loot, -/obj/random/loot, -/turf/simulated/floor/plating, -/area/maintenance/aft) +/area/horizon/engineering/bluespace_drive) +"wWh" = ( +/obj/effect/floor_decal/corner/dark_blue/diagonal, +/turf/simulated/floor/tiled/dark, +/area/horizon/security/checkpoint) "wWn" = ( /obj/effect/floor_decal/corner_wide/blue{ dir = 10 @@ -160306,22 +161754,6 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/holodeck/source_pool) -"wWo" = ( -/obj/machinery/computer/ship/helm/cockpit{ - pixel_y = -18 - }, -/obj/machinery/light/spot, -/obj/structure/bed/stool/chair/cockpit, -/obj/machinery/computer/ship/engines/cockpit{ - pixel_x = 26 - }, -/obj/machinery/computer/shuttle_control/explore/canary/left{ - pixel_x = -25; - req_one_access = list(73,74); - req_access = null - }, -/turf/simulated/floor/carpet/rubber, -/area/shuttle/canary) "wWp" = ( /obj/structure/bed/stool/chair{ dir = 8 @@ -160337,37 +161769,29 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/security/interrogation) -"wWr" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 +"wWw" = ( +/obj/structure/cable/yellow{ + d2 = 4; + icon_state = "0-4" }, -/obj/random/loot, -/obj/structure/table/rack, -/turf/simulated/floor/plating, -/area/maintenance/wing/port) -"wWs" = ( -/obj/structure/railing/mapped, -/obj/structure/lattice, -/obj/structure/platform/ledge{ - dir = 1 - }, -/turf/simulated/open, -/area/hallway/primary/central_one) -"wWA" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ +/obj/machinery/power/terminal{ dir = 8 }, -/obj/structure/closet/crate, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard/far) +/obj/effect/decal/cleanable/generic, +/turf/simulated/floor/carpet/rubber, +/area/horizon/maintenance/deck_1/workshop) "wWD" = ( /obj/structure/holostool{ dir = 4 }, /turf/simulated/floor/wood/maple, /area/horizon/holodeck/source_cafe) +"wWE" = ( +/obj/effect/floor_decal/corner_wide/yellow/diagonal, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/break_room) "wWG" = ( /obj/machinery/light{ dir = 8 @@ -160430,38 +161854,38 @@ icon_state = "dark_preview" }, /area/centcom/specops) -"wWJ" = ( -/obj/effect/floor_decal/corner/dark_blue/full{ - dir = 8 +"wWM" = ( +/obj/effect/floor_decal/corner/grey/diagonal, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 }, -/obj/structure/platform, -/turf/simulated/floor/tiled/dark, -/area/bridge/controlroom) -"wWO" = ( -/obj/structure/table/reinforced/wood, -/obj/machinery/photocopier/faxmachine{ - department = "Executive Officer's Office" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 7 +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/reception) +"wWN" = ( +/obj/structure/platform_deco{ + dir = 1 }, -/turf/simulated/floor/wood, -/area/crew_quarters/heads/hop/xo) +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/machinery/disposal/small/north, +/obj/effect/floor_decal/corner/paleblue/full{ + dir = 4 + }, +/obj/machinery/alarm/north{ + dir = 4; + pixel_y = 0; + pixel_x = 10 + }, +/turf/simulated/floor/tiled, +/area/horizon/command/bridge/cciaroom/lounge) "wWR" = ( /turf/simulated/open/airless, /area/template_noop) -"wWT" = ( -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/structure/railing/mapped, -/obj/machinery/light/small/emergency, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"wWU" = ( -/obj/effect/floor_decal/corner/mauve{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/storage/eva) "wWV" = ( /obj/machinery/door/window/southleft{ name = "Artifact Secure Storage"; @@ -160470,51 +161894,60 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled/dark, -/area/outpost/research/anomaly_storage) -"wWY" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/engineering/storage/lower) +/area/horizon/rnd/xenoarch/anomaly_storage) "wWZ" = ( /obj/structure/bonfire/light_up, /turf/simulated/floor/exoplanet/grass, /area/centcom/shared_dream) -"wXg" = ( -/obj/structure/stairs/north, -/turf/simulated/floor/tiled/dark, -/area/horizon/stairwell/central) -"wXo" = ( -/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, +"wXb" = ( +/obj/effect/floor_decal/industrial/warning/corner, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, /turf/simulated/floor/tiled/dark/full, -/area/engineering/atmos/storage) -"wXB" = ( -/obj/structure/cable{ - icon_state = "4-8" +/area/horizon/engineering/reactor/indra/mainchamber) +"wXd" = ( +/obj/machinery/light/small{ + dir = 4 }, -/obj/structure/cable{ - icon_state = "1-4" +/obj/structure/railing/mapped, +/obj/effect/floor_decal/corner/brown{ + dir = 6 }, -/turf/simulated/floor/plating, -/area/maintenance/substation/engineering/lower) -"wXF" = ( -/obj/machinery/camera/network/first_deck{ - c_tag = "First Deck - Atmospherics Entrance" +/turf/simulated/floor/tiled/dark, +/area/horizon/shuttle/intrepid/port_compartment) +"wXx" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 5 }, -/obj/effect/floor_decal/corner/dark_green/full{ - dir = 8 +/obj/structure/sign/directions/dock{ + dir = 8; + pixel_y = 28 + }, +/obj/structure/sign/directions/dock{ + dir = 4; + pixel_y = 36 }, /turf/simulated/floor/tiled, -/area/hallway/primary/aft) +/area/horizon/hallway/primary/deck_3/port) +"wXD" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/extinguisher_cabinet/west, +/turf/simulated/floor/plating, +/area/horizon/shuttle/intrepid/port_compartment) +"wXN" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/red{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/atmos) "wXO" = ( /obj/structure/table/standard, /obj/structure/window/reinforced/crescent{ @@ -160530,30 +161963,56 @@ icon_state = "white" }, /area/centcom/holding) -"wXU" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" +"wXQ" = ( +/obj/effect/floor_decal/industrial/hatch_door/red, +/obj/machinery/door/airlock/external{ + dir = 8 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 +/obj/effect/map_effect/marker_helper/airlock/exterior, +/obj/machinery/door/blast/shutters/open{ + dir = 8; + id = "intrepid_bay_outer"; + name = "Intrepid Shutter" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 +/obj/effect/map_effect/marker/airlock{ + master_tag = "sccv_intrepid_starboard"; + name = "sccv_intrepid_starboard"; + req_one_access = null }, -/turf/simulated/floor/tiled/full, -/area/bridge) -"wXV" = ( -/obj/item/modular_computer/console/preset/engineering{ - dir = 4 - }, -/obj/machinery/light, /turf/simulated/floor/tiled/dark/full, -/area/engineering/bluespace_drive/monitoring) -"wYd" = ( -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology) -"wYg" = ( +/area/horizon/shuttle/intrepid/starboard_compartment) +"wYa" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/floor_decal/corner/dark_green{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_2/central) +"wYh" = ( +/obj/effect/floor_decal/spline/fancy, +/obj/item/modular_computer/console/preset/engineering{ + dir = 1 + }, +/obj/structure/railing/mapped, +/turf/simulated/floor/carpet/rubber, +/area/horizon/command/bridge/controlroom) +"wYi" = ( +/obj/structure/window/reinforced/crescent{ + dir = 8 + }, +/obj/structure/window/reinforced/crescent, +/obj/structure/flora/ausbushes/grassybush{ + pixel_y = 3 + }, +/turf/simulated/floor/grass/no_edge, +/area/centcom/holding) +"wYj" = ( +/obj/structure/flora/ausbushes/sparsegrass, +/turf/simulated/floor/grass/no_edge, +/area/horizon/service/hydroponics/lower) +"wYk" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 4 }, @@ -160570,50 +162029,23 @@ dir = 8 }, /turf/simulated/floor/wood, -/area/operations/qm) -"wYi" = ( -/obj/structure/window/reinforced/crescent{ - dir = 8 +/area/horizon/command/heads/om) +"wYw" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" }, -/obj/structure/window/reinforced/crescent, -/obj/structure/flora/ausbushes/grassybush{ - pixel_y = 3 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + icon_state = "1-2" }, -/turf/simulated/floor/grass/no_edge, -/area/centcom/holding) -"wYm" = ( -/obj/structure/foamedmetal, -/turf/simulated/floor/plating, -/area/maintenance/wing/cargo_compartment) -"wYp" = ( -/obj/structure/sign/fire{ - desc = "A caution sign which reads 'STARBOARD PROPULSION'."; - name = "\improper STARBOARD PROPULSION sign"; - pixel_y = 32 +/obj/structure/cable/green{ + icon_state = "2-4" }, -/obj/effect/floor_decal/industrial/warning{ - dir = 6 - }, -/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 - }, -/obj/machinery/spectrophotometer, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology/xenological) +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor, +/area/horizon/command/bridge/upperdeck) "wYx" = ( /obj/effect/floor_decal/corner/grey{ dir = 5 @@ -160624,20 +162056,44 @@ }, /turf/unsimulated/floor, /area/centcom/control) -"wYE" = ( -/obj/effect/floor_decal/corner/lime/diagonal, -/turf/simulated/floor/tiled/white{ - name = "cooled white floor"; - temperature = 278.15 - }, -/area/medical/morgue/lower) -"wYG" = ( -/obj/structure/shuttle_part/scc_space_ship{ - icon_state = "d3-5" - }, -/obj/structure/girder, +"wYB" = ( +/obj/effect/floor_decal/industrial/warning, /turf/simulated/floor/plating, -/area/maintenance/wing/port/far) +/area/horizon/maintenance/deck_1/main/starboard) +"wYC" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 9 + }, +/obj/structure/flora/pottedplant{ + icon_state = "plant-29" + }, +/turf/simulated/floor/wood, +/area/horizon/service/chapel/main) +"wYH" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/structure/table/rack, +/obj/item/storage/toolbox/emergency, +/obj/item/ladder_mobile, +/obj/item/device/radio{ + pixel_x = -4 + }, +/obj/item/device/radio{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/device/radio{ + pixel_x = 4 + }, +/obj/item/device/radio{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/machinery/alarm/north, +/turf/simulated/floor, +/area/horizon/command/bridge/aibunker) "wYJ" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/bed/stool/chair/office/dark{ @@ -160645,18 +162101,6 @@ }, /turf/unsimulated/floor/plating, /area/centcom/legion/hangar5) -"wYL" = ( -/obj/effect/map_effect/window_spawner/full/borosilicate/reinforced, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 2; - icon_state = "pdoor0"; - id = "SupermatterPort"; - name = "Supermatter Reactor Crystal Viewing Blast Door"; - opacity = 0 - }, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/engine_room) "wYQ" = ( /obj/machinery/door/airlock/centcom{ name = "Arrival Hangar Maintenance"; @@ -160664,93 +162108,84 @@ }, /turf/unsimulated/floor/plating, /area/centcom/evac) -"wYT" = ( -/obj/effect/floor_decal/corner/brown{ - dir = 9 - }, -/obj/effect/floor_decal/spline/plain/black{ - dir = 10 - }, -/obj/structure/bed/stool/chair/shuttle/double{ - pixel_x = 8; - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/intrepid/main_compartment) -"wYX" = ( -/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/brown{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/operations/storage) -"wZb" = ( -/obj/structure/table/standard, -/obj/random/tech_supply, -/obj/random/tech_supply, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/item/storage/bag/inflatable{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/bag/inflatable{ - pixel_x = 3; - pixel_y = 3 - }, +"wYS" = ( +/obj/structure/table/rack, +/obj/random/loot, +/obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/plating, -/area/engineering/drone_fabrication) -"wZf" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/light, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 6 - }, -/turf/simulated/floor/wood, -/area/lawoffice/consular_two) -"wZg" = ( -/obj/machinery/door/firedoor{ - dir = 4 - }, -/obj/machinery/door/airlock/maintenance{ - dir = 4; - req_one_access = list(12) - }, -/turf/simulated/floor/tiled/dark, -/area/horizon/crew_quarters/fitness/gym) -"wZi" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/maintenance_hatch{ - dir = 4 - }, +/area/horizon/maintenance/deck_2/wing/port) +"wYU" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/horizon/engineering/hallway/interior) +"wYY" = ( +/obj/structure/table/standard, +/obj/item/stock_parts/manipulator, +/obj/item/stock_parts/micro_laser, +/obj/item/stock_parts/micro_laser, +/obj/item/stock_parts/capacitor, +/obj/item/stock_parts/capacitor, +/obj/item/stack/cable_coil, +/obj/item/clothing/glasses/safety/goggles/science{ + pixel_y = 10 + }, +/obj/machinery/alarm/west, +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/lab) +"wZe" = ( +/obj/structure/tank_wall/hydrogen{ + density = 0; + icon_state = "h6"; + opacity = 0 + }, +/obj/machinery/atmospherics/unary/vent_pump/siphon/on/atmos{ + dir = 1; + id_tag = "H2_out_portthruster" + }, +/turf/simulated/floor/reinforced/hydrogen, +/area/horizon/engineering/atmos) +"wZj" = ( +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, /turf/simulated/floor/plating, -/area/maintenance/wing/starboard/deck1) +/area/horizon/maintenance/deck_2/wing/port/near) +"wZo" = ( +/obj/machinery/door/airlock/maintenance{ + dir = 4; + name = "Commissary Maintenance"; + req_one_access = list(26,29,31,48,67,35,25,28,37) + }, +/obj/machinery/door/firedoor{ + req_one_access = list(24,11,67,73); + dir = 4 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/operations/commissary) "wZp" = ( /obj/item/device/flashlight/lamp/green{ on = 0; @@ -160760,65 +162195,171 @@ /obj/structure/table/stone/marble, /turf/unsimulated/floor/marble, /area/antag/wizard) -"wZr" = ( -/obj/effect/floor_decal/spline/fancy/wood/corner{ +"wZs" = ( +/obj/effect/floor_decal/corner/green{ dir = 1 }, -/obj/structure/platform{ - dir = 1 +/turf/simulated/floor/tiled/white, +/area/horizon/medical/gen_treatment) +"wZw" = ( +/obj/machinery/door/blast/regular{ + _wifi_id = "waste"; + dir = 4; + id = "waste" }, -/turf/simulated/floor/wood, -/area/horizon/bar) -"wZy" = ( +/obj/effect/floor_decal/industrial/hatch/red, +/obj/structure/plasticflaps/airtight, +/turf/simulated/floor/reinforced{ + roof_type = null + }, +/area/horizon/service/custodial/disposals/deck_1) +"wZx" = ( +/obj/structure/disposalpipe/segment, /obj/structure/cable/green{ icon_state = "1-2" }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor, +/area/horizon/maintenance/deck_3/security/port) +"wZA" = ( +/turf/simulated/wall, +/area/horizon/operations/mining_main/eva) +"wZC" = ( /obj/effect/floor_decal/corner/dark_green{ - dir = 9 + dir = 5 + }, +/obj/machinery/door/window/northleft, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 }, -/obj/structure/extinguisher_cabinet/west, /turf/simulated/floor/tiled, -/area/engineering/lobby) +/area/horizon/stairwell/port/deck_3) +"wZE" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/light/small/emergency{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/starboard/far) +"wZF" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 10 + }, +/obj/structure/table/standard, +/obj/machinery/recharger, +/obj/item/device/camera_film, +/obj/item/device/camera_film, +/obj/item/device/camera, +/obj/machinery/camera/network/second_deck{ + c_tag = "Second Deck - Tool storage"; + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/horizon/storage/primary) +"wZG" = ( +/obj/structure/lattice, +/obj/structure/platform/ledge, +/obj/structure/platform/ledge{ + dir = 1 + }, +/turf/simulated/open, +/area/horizon/hallway/primary/deck_3/central) "wZI" = ( /obj/effect/floor_decal/corner/beige/full{ dir = 1 }, /turf/simulated/floor/tiled/dark, /area/shuttle/merchant) -"wZK" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 8 +"wZJ" = ( +/obj/machinery/nuclearbomb/station, +/obj/effect/floor_decal/industrial/warning/full, +/turf/simulated/floor/reinforced, +/area/horizon/command/bridge/selfdestruct) +"wZM" = ( +/obj/structure/cable{ + icon_state = "2-4" }, -/obj/structure/railing/mapped{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/hallway/primary/central_one) -"wZP" = ( -/obj/effect/floor_decal/industrial/warning{ +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 6 }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 +/obj/structure/lattice/catwalk/indoor/grate/damaged{ + color = "#4c535b" }, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/engine_room/rust) -"wZT" = ( -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor, -/area/maintenance/security_port) -"wZY" = ( -/obj/effect/floor_decal/industrial/hatch/red, -/obj/item/smes_coil{ - pixel_x = 3; - pixel_y = -3 +/obj/effect/decal/cleanable/greenglow, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 }, /turf/simulated/floor/plating, -/area/maintenance/wing/port/far) +/area/horizon/maintenance/deck_1/wing/starboard/far) +"wZO" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/aux{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 5 + }, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/main/port) +"wZV" = ( +/obj/structure/lattice, +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/structure/platform/ledge{ + dir = 8 + }, +/turf/simulated/open, +/area/horizon/operations/office) +"xab" = ( +/obj/effect/map_effect/window_spawner/full/borosilicate/reinforced/firedoor, +/obj/machinery/door/blast/shutters/open{ + id = "RnDShutters" + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/rnd/conference) "xaf" = ( /obj/effect/shuttle_landmark/horizon/exterior/deck_1/port_propulsion, /turf/template_noop, /area/template_noop) +"xah" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/cryopod, +/obj/machinery/computer/cryopod{ + pixel_x = -1; + pixel_y = -26 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/shuttle/intrepid/port_storage) +"xai" = ( +/obj/machinery/body_scanconsole{ + dir = 8 + }, +/obj/effect/floor_decal/corner/beige/full{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/medical/icu) "xaj" = ( /obj/effect/decal/fake_object{ desc = "It's used to monitor rooms."; @@ -160828,16 +162369,49 @@ }, /turf/unsimulated/floor, /area/centcom/specops) -"xas" = ( +"xak" = ( /obj/effect/floor_decal/corner/dark_green{ - dir = 6 + dir = 9 }, -/obj/item/device/radio/intercom/east, -/obj/machinery/light/floor{ - dir = 4 +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + dir = 1 }, /turf/simulated/floor/tiled, -/area/hallway/primary/central_one) +/area/horizon/hallway/primary/deck_2/central) +"xan" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/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, +/turf/simulated/floor/tiled/full, +/area/horizon/engineering/storage_hard) +"xao" = ( +/obj/effect/map_effect/window_spawner/full/reinforced/grille/firedoor, +/obj/machinery/door/blast/regular/open{ + dir = 8; + id = "hangarlockdown"; + name = "Hangar Lockdown" + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/hangar/intrepid) +"xaq" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/rnd/xenoarch/storage) "xav" = ( /obj/effect/floor_decal/corner/brown/diagonal, /obj/machinery/light_switch{ @@ -160859,73 +162433,85 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/holodeck_control/beta) -"xaw" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/effect/floor_decal/spline/plain, -/turf/simulated/floor/tiled/white, -/area/horizon/kitchen) -"xaA" = ( -/obj/machinery/door/firedoor, -/obj/structure/table/reinforced/steel, -/obj/item/paper_bin, -/obj/item/pen, -/obj/machinery/door/blast/shutters{ - dir = 4; - id = "seconddeckdockdesk"; - name = "Security Checkpoint Desk Shutter" - }, -/obj/machinery/door/window/desk/westright{ - name = "Arrivals Processing Desk"; - req_access = list(1) - }, -/turf/simulated/floor/tiled/dark/full, -/area/security/checkpoint2) -"xaB" = ( -/obj/machinery/camera/network/engineering{ - c_tag = "Engineering - Port Propulsion"; - dir = 1 - }, -/obj/effect/floor_decal/corner_wide/black{ +"xax" = ( +/obj/effect/floor_decal/corner/black{ dir = 10 }, -/obj/effect/floor_decal/industrial/warning, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 - }, /turf/simulated/floor/tiled/dark, -/area/engineering/atmos/propulsion) +/area/horizon/hangar/intrepid) +"xaC" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 6 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_3/port) "xaD" = ( /obj/structure/table/wood, /turf/simulated/floor/holofloor/wood, /area/horizon/holodeck/source_dininghall) -"xaE" = ( -/obj/machinery/computer/general_air_control/large_tank_control/wall{ - input_tag = "mixed_in"; - name = "Mixed Gas Tank Monitor"; - output_tag = "mixed_out"; - pixel_y = -3; - sensors = list("mixed_sensor"="Tank") +"xaL" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/simulated/wall/r_wall, -/area/engineering/atmos) -"xaJ" = ( -/obj/structure/cable/green{ +/obj/structure/cable{ icon_state = "4-8" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/port/near) +"xaM" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 +/obj/effect/floor_decal/corner/black{ + dir = 9 }, /turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/central) +/area/horizon/operations/machinist) +"xaQ" = ( +/obj/structure/table/standard, +/obj/effect/floor_decal/corner_wide/green/full{ + dir = 8 + }, +/obj/item/device/mass_spectrometer{ + pixel_x = -7; + pixel_y = 1 + }, +/obj/machinery/alarm/west, +/obj/item/auto_cpr{ + pixel_x = 6; + pixel_y = 3 + }, +/obj/item/auto_cpr{ + pixel_x = 6; + pixel_y = -1 + }, +/obj/item/auto_cpr{ + pixel_x = 6; + pixel_y = -5 + }, +/obj/machinery/status_display{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/gen_treatment) +"xaR" = ( +/obj/structure/table/standard, +/obj/machinery/reagentgrinder{ + pixel_y = 11 + }, +/obj/item/stack/material/phoron{ + amount = 15 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/floor_decal/corner/mauve/diagonal, +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/chemistry) "xaS" = ( /obj/effect/floor_decal/industrial/outline/yellow, /obj/structure/table/rack, @@ -160952,63 +162538,54 @@ }, /turf/unsimulated/floor/dark_monotile, /area/antag/actor) -"xaX" = ( -/obj/machinery/power/apc/east, -/obj/structure/cable/green{ - icon_state = "0-8" +"xbo" = ( +/obj/structure/cable{ + icon_state = "4-8" }, -/turf/simulated/floor/plating, -/area/engineering/storage/lower) -"xbb" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/structure/tank_wall/nitrous_oxide{ - icon_state = "h4" - }, -/obj/machinery/atmospherics/pipe/simple/visible/red{ +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, /turf/simulated/floor/plating, -/area/engineering/atmos/air) -"xbe" = ( -/obj/machinery/door/airlock/freezer{ - dir = 1; - id_tag = "main_unit_2"; - name = "Unit 2" - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/white, -/area/horizon/crew_quarters/fitness/changing) -"xbf" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 5 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 10 - }, -/turf/simulated/floor, -/area/horizon/maintenance/deck_three/aft/starboard) -"xbn" = ( -/obj/effect/floor_decal/corner/mauve{ - dir = 5 - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology) -"xbp" = ( -/obj/effect/floor_decal/corner/grey{ - dir = 10 - }, -/obj/machinery/camera/network/service{ - c_tag = "Service - Deck 2 - Bar Preparation Room"; - dir = 1 +/area/horizon/maintenance/deck_1/wing/starboard) +"xbr" = ( +/obj/machinery/light{ + dir = 4 }, +/obj/item/device/radio/intercom/east, /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 1 }, -/turf/simulated/floor/lino, -/area/horizon/bar) +/obj/effect/floor_decal/corner/dark_green/full{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/horizon/stairwell/starboard/deck_3) +"xbs" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/corner/dark_green{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/junction{ + dir = 1; + icon_state = "pipe-j2" + }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_3/central) "xbt" = ( /obj/machinery/firealarm/east, /obj/machinery/light, @@ -161029,28 +162606,6 @@ }, /turf/simulated/floor/tiled/white, /area/horizon/security/forensic_laboratory) -"xbw" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 4 - }, -/obj/machinery/smartfridge/drinks{ - opacity = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/horizon/bar) -"xbz" = ( -/obj/structure/table/wood, -/obj/item/material/ashtray/bronze{ - pixel_y = -4 - }, -/obj/machinery/power/outlet{ - pixel_y = -3 - }, -/obj/machinery/power/outlet{ - pixel_y = 9 - }, -/turf/simulated/floor/carpet/art, -/area/crew_quarters/lounge/secondary) "xbA" = ( /obj/structure/table/wood, /obj/item/device/flashlight/lamp/green, @@ -161070,83 +162625,6 @@ }, /turf/space/dynamic, /area/horizon/exterior) -"xbJ" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'HIGH VOLTAGE'"; - icon_state = "shock"; - name = "HIGH VOLTAGE"; - pixel_x = -32 - }, -/obj/effect/floor_decal/corner/yellow/full{ - dir = 8 - }, -/obj/structure/sign/nosmoking_1{ - pixel_y = 32 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/table/standard, -/turf/simulated/floor/tiled/dark, -/area/engineering/storage/tech) -"xbO" = ( -/obj/machinery/door/firedoor, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/white, -/area/hallway/medical) -"xbP" = ( -/obj/effect/floor_decal/corner/mauve{ - dir = 6 - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/power/apc/east, -/obj/structure/cable/green{ - icon_state = "0-8" - }, -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/turf/simulated/floor/tiled, -/area/rnd/hallway/secondary) -"xbQ" = ( -/obj/structure/table/standard, -/obj/item/storage/box/syringes{ - pixel_y = 2; - pixel_x = -8 - }, -/obj/item/storage/box/beakers{ - pixel_x = 5; - pixel_y = 5 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/structure/extinguisher_cabinet/east, -/obj/effect/floor_decal/corner/mauve/full{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/chemistry) -"xbS" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/portable_atmospherics/hydroponics, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology/xenoflora) -"xbU" = ( -/obj/machinery/seed_storage/garden, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/hydroponics/garden) "xbX" = ( /obj/structure/table/rack, /obj/item/clothing/under/color/green, @@ -161158,15 +162636,6 @@ /obj/effect/decal/fake_object/light_source/invisible, /turf/simulated/floor, /area/tdome/tdome1) -"xbZ" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/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/maintenance/wing/port/far) "xca" = ( /obj/effect/floor_decal/corner/dark_blue{ dir = 9 @@ -161176,22 +162645,16 @@ }, /turf/simulated/floor/tiled, /area/horizon/security/hallway) -"xcc" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, +"xcb" = ( /obj/structure/cable/green{ - icon_state = "4-8" + icon_state = "1-2" }, -/obj/structure/lattice/catwalk/indoor/grate, -/turf/simulated/floor, -/area/horizon/hallway/deck_three/primary/starboard) +/obj/effect/floor_decal/corner/dark_green{ + dir = 9 + }, +/obj/structure/extinguisher_cabinet/west, +/turf/simulated/floor/tiled, +/area/horizon/engineering/hallway/fore) "xcd" = ( /obj/structure/table/rack, /obj/effect/map_effect/mecha_part_spawner/sensors, @@ -161199,98 +162662,71 @@ /obj/effect/decal/cleanable/dirt, /turf/unsimulated/floor/monotile, /area/antag/jockey) -"xch" = ( -/turf/simulated/wall/shuttle/scc_space_ship/cardinal, -/area/operations/office_aux) -"xcj" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/structure/platform_deco{ +"xcs" = ( +/obj/structure/platform{ dir = 4 }, -/obj/structure/platform_deco{ - dir = 8 - }, -/turf/simulated/floor/carpet/rubber, -/area/bridge/controlroom) -"xcq" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/structure/trash_pile, +/obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/plating, -/area/maintenance/wing/starboard) -"xcv" = ( -/obj/effect/floor_decal/corner/green/diagonal, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/access_button{ - command = "cycle_interior"; - frequency = 1379; - master_tag = "processing_airlock_control"; - name = "Interior access button"; - pixel_x = 25; - pixel_y = -30; - req_access = list(5) - }, -/turf/simulated/floor/tiled/white, -/area/medical/ward/isolation) -"xcL" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, +/area/horizon/maintenance/deck_2/wing/starboard/far) +"xcu" = ( +/obj/machinery/portable_atmospherics/powered/pump/filled, +/obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/plating, -/area/maintenance/wing/starboard) +/area/horizon/hangar/auxiliary) "xcO" = ( /turf/simulated/wall/shuttle/unique/ert{ icon_state = "7,0" }, /area/centcom/specops) -"xcP" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1; - level = 2 +"xcV" = ( +/obj/structure/shuttle_part/scc/scout{ + icon_state = "5,11" + }, +/turf/simulated/floor/plating, +/area/horizon/shuttle/canary) +"xcW" = ( +/obj/effect/floor_decal/industrial/outline/research, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 1 + dir = 9 }, -/obj/effect/floor_decal/corner/purple{ +/obj/machinery/light/small, +/turf/simulated/floor/tiled/dark, +/area/horizon/shuttle/quark/cargo_hold) +"xcX" = ( +/obj/effect/floor_decal/corner/black{ dir = 6 }, -/obj/machinery/light/small{ +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/light/spot{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/hangar/intrepid) +"xcZ" = ( +/obj/structure/table/standard, +/obj/item/book/manual/wiki/security_space_law{ + pixel_x = -4; + pixel_y = 17 + }, +/obj/item/stamp/denied{ + pixel_x = -7 + }, +/obj/item/paper_bin{ + pixel_x = 6; + pixel_y = 2 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 }, -/obj/machinery/recharger/wallcharger{ - pixel_x = 36; - pixel_y = 4 +/obj/machinery/light{ + dir = 8 }, -/obj/structure/bed/handrail{ - dir = 8; - pixel_x = 2 - }, -/turf/simulated/floor/tiled, -/area/shuttle/quark/cockpit) +/turf/simulated/floor/tiled/full, +/area/horizon/command/bridge/cciaroom) "xdc" = ( /obj/effect/decal/fake_object{ dir = 4; @@ -161313,46 +162749,6 @@ name = "shallow water" }, /area/horizon/holodeck/source_konyang) -"xdd" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/spline/fancy/wood/corner{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/bridge/minibar) -"xdk" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/atmospherics/omni/mixer{ - active_power_usage = 7500; - tag_east = 2; - tag_north = 1; - tag_north_con = 0.5; - tag_south = 1; - tag_south_con = 0.5; - tag_west_con = 0; - use_power = 0 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/engine_room/turbine) "xdo" = ( /obj/structure/table/stone/marble, /obj/machinery/recharger{ @@ -161371,54 +162767,72 @@ }, /turf/unsimulated/floor, /area/centcom/control) -"xdr" = ( +"xdw" = ( /obj/structure/cable/green{ - icon_state = "4-8" + icon_state = "1-2" }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 1 +/obj/structure/lattice/catwalk/indoor, +/obj/structure/railing/mapped, +/obj/structure/railing/mapped{ + dir = 8 }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/bridge/bridge_crew) -"xdz" = ( -/obj/structure/table/rack, -/obj/item/storage/box/monkeycubes, -/obj/item/storage/box/monkeycubes, -/obj/item/storage/box/monkeycubes, -/obj/item/storage/box/monkeycubes, -/obj/machinery/alarm/east, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology) +/turf/simulated/floor/plating, +/area/horizon/engineering/bluespace_drive) "xdA" = ( /obj/effect/floor_decal/corner/dark_blue{ dir = 10 }, /turf/simulated/floor/tiled, /area/horizon/security/equipment) -"xdD" = ( -/obj/machinery/light{ - dir = 1 +"xdC" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 8 }, -/turf/simulated/floor/bluegrid{ - name = "cooled mainframe floor"; - temperature = 278 +/obj/machinery/airlock_sensor{ + dir = 8; + pixel_x = 20 }, -/area/turret_protected/ai) -"xdE" = ( -/obj/effect/floor_decal/industrial/outline/red, -/obj/machinery/stasis_cage, -/turf/simulated/floor/tiled/dark/full, -/area/storage/eva) +/obj/effect/map_effect/marker/airlock{ + frequency = 1002; + master_tag = "airlock_horizon_deck_3_fore_starboard_1"; + name = "airlock_horizon_deck_3_fore_starboard_1" + }, +/turf/simulated/floor, +/area/horizon/maintenance/deck_3/bridge) "xdF" = ( /obj/effect/floor_decal/industrial/outline/yellow, /turf/unsimulated/floor/monotile, /area/antag/raider) -"xdG" = ( -/obj/machinery/constructable_frame/machine_frame, -/turf/simulated/floor/carpet/rubber, -/area/maintenance/engineering/auxillary) +"xdL" = ( +/obj/effect/floor_decal/corner/dark_green/full{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/horizon/service/hydroponics/garden) +"xdP" = ( +/obj/item/stack/material/wood/full, +/obj/item/stack/material/steel/full, +/obj/item/stack/material/bronze/full, +/obj/structure/closet/crate{ + name = "Cremation Urn Materials" + }, +/obj/machinery/light, +/obj/item/stack/material/glass/full, +/obj/item/device/hand_labeler, +/turf/simulated/floor/tiled/dark, +/area/horizon/service/chapel/office) "xdR" = ( /obj/effect/floor_decal/corner/dark_blue/full, /obj/structure/table/reinforced, @@ -161463,20 +162877,6 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/security/firing_range) -"xdT" = ( -/obj/structure/cable/green{ - 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/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hangar/intrepid) "xdU" = ( /obj/machinery/recharger/wallcharger{ pixel_x = 4; @@ -161490,37 +162890,10 @@ icon_state = "wood" }, /area/centcom/legion) -"xdV" = ( -/obj/effect/shuttle_landmark/escape_pod/start/pod3, -/turf/simulated/floor/shuttle/dark_blue, -/area/shuttle/escape_pod/pod3) -"xdX" = ( -/obj/effect/floor_decal/corner_wide/green{ - dir = 10 - }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/effect/floor_decal/sign/p, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/sign/p, -/turf/simulated/floor/tiled/white, -/area/hallway/medical) "xea" = ( /obj/structure/sign/electricshock, /turf/unsimulated/wall/darkshuttlewall, /area/centcom/bar) -"xed" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 1 - }, -/obj/machinery/light, -/obj/machinery/portable_atmospherics/powered/pump/filled, -/obj/effect/floor_decal/industrial/outline/blue, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/atmos/storage) "xef" = ( /obj/structure/bed, /obj/machinery/light{ @@ -161528,17 +162901,16 @@ }, /turf/unsimulated/floor, /area/centcom/specops) -"xej" = ( -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/machinery/light/small, -/obj/effect/floor_decal/corner/lime/full, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/medical/morgue/lower) +"xeg" = ( +/obj/random/dirt_75, +/obj/random/dirt_75, +/turf/simulated/floor, +/area/horizon/maintenance/deck_3/aft/starboard) +"xek" = ( +/obj/item/material/shard, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/main/starboard) "xel" = ( /obj/machinery/atmospherics/pipe/simple/heat_exchanging{ dir = 10 @@ -161546,35 +162918,35 @@ /obj/structure/lattice, /turf/simulated/open/airless, /area/horizon/exterior) -"xem" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/horizon/kitchen) -"xen" = ( -/obj/structure/table/standard, -/obj/effect/floor_decal/corner_wide/green/full{ - dir = 4 - }, -/obj/machinery/alarm/east, -/obj/item/storage/toolbox/mechanical{ - pixel_x = 2; - pixel_y = 12 - }, -/obj/item/storage/box/freezer/organcooler{ - pixel_x = -1; - pixel_y = 3 - }, -/turf/simulated/floor/tiled/white, -/area/medical/main_storage) "xep" = ( /obj/effect/floor_decal/corner/grey/full{ dir = 4 }, /turf/unsimulated/floor, /area/centcom/control) +"xer" = ( +/obj/machinery/door/firedoor, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/door/airlock/maintenance_hatch{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/wing/starboard) +"xes" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/wing/starboard/far) "xeu" = ( /obj/structure/table/rack, /obj/item/gun/projectile/automatic/c20r{ @@ -161602,19 +162974,34 @@ icon_state = "desert" }, /area/centcom/shared_dream) -"xeJ" = ( -/obj/effect/floor_decal/corner/black{ - dir = 9 +"xeM" = ( +/obj/machinery/atmospherics/unary/engine/scc_shuttle, +/turf/simulated/floor/plating, +/area/horizon/shuttle/intrepid/engineering) +"xeO" = ( +/obj/structure/bed/stool/chair/shuttle{ + dir = 8 + }, +/obj/effect/floor_decal/corner/dark_blue/diagonal, +/obj/effect/floor_decal/spline/plain/black{ + dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/hangar/intrepid) +/area/horizon/shuttle/intrepid/junction_compartment) +"xeP" = ( +/obj/structure/girder, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/starboard/nacelle) "xeQ" = ( /turf/space/transit/north, /area/template_noop) -"xeR" = ( -/obj/structure/lattice/catwalk/indoor/grate/dark, +"xeS" = ( +/obj/structure/shuttle_part/scc/scout{ + icon_state = "4,0" + }, +/obj/machinery/shipsensors/strong/scc_shuttle, /turf/simulated/floor/plating, -/area/maintenance/aft) +/area/horizon/shuttle/canary) "xeW" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 8 @@ -161627,40 +163014,13 @@ }, /turf/simulated/floor/shuttle/tan, /area/centcom/bar) -"xfd" = ( -/obj/effect/floor_decal/corner/green/diagonal, -/obj/machinery/button/remote/airlock{ - dir = 1; - id = "cargobreak_stall"; - name = "Door Bolt Control"; - pixel_x = 7; - pixel_y = 25; - specialfunctions = 4 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/structure/toilet{ +"xfg" = ( +/obj/machinery/camera/network/supply{ + c_tag = "Operations - Warehouse Starboard Aft Storage Room"; dir = 4 }, -/turf/simulated/floor/tiled/white, -/area/operations/break_room) -"xff" = ( -/obj/structure/sign/securearea{ - icon_state = "radiation" - }, -/turf/simulated/wall/r_wall, -/area/engineering/gravity_gen) -"xfj" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/floor_decal/corner_wide/green/full{ - dir = 4 - }, -/obj/machinery/vending/mredispenser, -/turf/simulated/floor/tiled/white, -/area/medical/ward) +/turf/simulated/floor/tiled, +/area/horizon/operations/warehouse) "xfo" = ( /obj/effect/floor_decal/corner/red/diagonal, /obj/structure/sink{ @@ -161673,58 +163033,53 @@ }, /turf/simulated/floor/tiled, /area/merchant_station) -"xfq" = ( -/obj/machinery/power/apc/east, -/obj/structure/disposalpipe/segment, -/obj/structure/cable/green, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/horizon/maintenance/deck_two/fore/port) -"xfw" = ( -/obj/machinery/atmospherics/pipe/simple/visible/black{ - dir = 1 +"xfp" = ( +/obj/structure/bed/stool/bar/padded/teal{ + dir = 4 }, -/obj/machinery/light/spot{ +/obj/effect/floor_decal/corner/red/diagonal, +/obj/effect/floor_decal/spline/plain{ + dir = 5 + }, +/turf/simulated/floor/lino, +/area/horizon/service/cafeteria) +"xfr" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/effect/floor_decal/corner/green/diagonal{ dir = 8 }, -/turf/simulated/floor/plating, -/area/engineering/engine_room) +/turf/simulated/floor/tiled/white, +/area/horizon/medical/ward) +"xfv" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/full, +/area/horizon/hallway/primary/deck_1/central) "xfC" = ( /obj/effect/floor_decal/corner/paleblue/full{ dir = 4 }, /turf/unsimulated/floor, /area/centcom/ferry) -"xfH" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/floor_decal/corner/dark_green{ +"xfF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ dir = 5 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 +/obj/structure/shuttle_part/scc/scout{ + icon_state = "2,8"; + opacity = 1; + outside_part = 0 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 +/turf/simulated/floor/reinforced{ + blocks_air = 1; + density = 1; + name = "thruster mount"; + opacity = 1 }, -/turf/simulated/floor/tiled, -/area/hangar/auxiliary) -"xfL" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/effect/floor_decal/spline/plain{ - dir = 4 - }, -/turf/simulated/floor/carpet/rubber, -/area/engineering/bluespace_drive/monitoring) +/area/horizon/shuttle/canary) "xfN" = ( /obj/effect/decal/fake_object{ desc = "A sign."; @@ -161744,15 +163099,24 @@ }, /turf/unsimulated/wall/darkshuttlewall, /area/centcom/legion/hangar5) -"xfP" = ( -/obj/effect/floor_decal/corner_wide/green{ - dir = 5 +"xfQ" = ( +/obj/machinery/door/firedoor{ + req_one_access = list(24,11,67,73); + dir = 4 }, -/obj/machinery/light/floor{ - dir = 1 +/obj/effect/floor_decal/industrial/hatch_door/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 }, -/turf/simulated/floor/tiled/white, -/area/hallway/medical/upper) +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/curtain/open/medical, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/shuttle/intrepid/medical) "xfS" = ( /obj/structure/lattice/catwalk/indoor, /obj/machinery/atmospherics/pipe/simple/visible/purple{ @@ -161772,54 +163136,70 @@ }, /turf/unsimulated/wall/darkshuttlewall, /area/centcom/control) -"xfV" = ( -/obj/structure/platform, -/obj/structure/closet/secure_closet/scientist, -/obj/structure/window/borosilicate{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/lab) -"xfX" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 9 - }, -/obj/machinery/light/floor{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/bridge) "xfZ" = ( /turf/simulated/wall/shuttle/unique/mercenary/small{ icon_state = "1,6" }, /area/shuttle/syndicate_elite) +"xgc" = ( +/obj/effect/floor_decal/corner/pink/diagonal, +/obj/structure/table/standard, +/obj/item/folder/envelope/empty/zat{ + pixel_x = -8; + pixel_y = 3 + }, +/obj/item/device/analyzer{ + pixel_x = 3; + pixel_y = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/maintenance/deck_2/wing/starboard/nacelle) "xgd" = ( /obj/structure/table/reinforced/wood, /turf/unsimulated/floor/wood, /area/centcom/bar) -"xgi" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/camera/network/service{ - c_tag = "Service - Hydroponics Lower 2" +"xgf" = ( +/obj/structure/cable{ + icon_state = "1-2" }, -/obj/structure/closet/secure_closet/hydroponics, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/hydroponics/lower) -"xgm" = ( -/obj/machinery/alarm/east, -/obj/effect/floor_decal/industrial/warning{ - dir = 9 +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance_hatch{ + dir = 1 }, /turf/simulated/floor/plating, -/area/maintenance/research_port) +/area/horizon/maintenance/deck_2/wing/port/far) +"xgl" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled, +/area/horizon/operations/lobby) +"xgn" = ( +/obj/structure/table/reinforced/steel, +/obj/item/storage/bag/circuits/basic, +/obj/machinery/light/small/emergency{ + dir = 1 + }, +/turf/simulated/floor/carpet/rubber, +/area/horizon/maintenance/deck_1/workshop) +"xgu" = ( +/obj/machinery/camera/network/engineering{ + c_tag = "Engineering - Deck 1 - Hangar Substation"; + dir = 4 + }, +/obj/machinery/power/terminal{ + dir = 4 + }, +/obj/structure/cable, +/turf/simulated/floor/plating, +/area/horizon/maintenance/substation/hangar) +"xgw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/aft_airlock) "xgx" = ( /obj/effect/floor_decal/corner/beige/full{ dir = 4 @@ -161836,6 +163216,29 @@ icon_state = "dark_preview" }, /area/centcom/control) +"xgA" = ( +/obj/machinery/embedded_controller/radio/simple_docking_controller/escape_pod{ + frequency = 1380; + id_tag = "escape_pod_1"; + pixel_x = -9; + pixel_y = 25; + tag_door = "escape_pod_1_hatch" + }, +/obj/item/modular_computer/console/preset/civilian{ + dir = 8; + pixel_x = 5 + }, +/turf/simulated/floor/shuttle/dark_blue, +/area/horizon/shuttle/escape_pod/pod2) +"xgB" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 9 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/horizon/operations/loading) "xgC" = ( /obj/effect/landmark/thunderdome2, /obj/effect/floor_decal/corner/grey/diagonal{ @@ -161843,22 +163246,6 @@ }, /turf/simulated/floor/holofloor/tiled/dark, /area/tdome/tdome2) -"xgE" = ( -/obj/effect/floor_decal/corner/lime{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/turf/simulated/floor/tiled, -/area/medical/morgue/lower) -"xgF" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/space_heater, -/turf/simulated/floor/tiled/dark/full, -/area/maintenance/wing/cargo_compartment) "xgG" = ( /obj/effect/floor_decal/corner/brown{ dir = 10 @@ -161866,6 +163253,14 @@ /obj/machinery/door/window/southleft, /turf/simulated/floor/tiled/dark, /area/horizon/holodeck_control/beta) +"xgJ" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/door/airlock/maintenance_hatch{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/operations/starboard) "xgK" = ( /obj/structure/railing/mapped, /obj/effect/floor_decal/industrial/warning{ @@ -161879,26 +163274,30 @@ }, /obj/structure/grille, /turf/simulated/floor/tiled/dark/full/airless, -/area/horizon/exterior) -"xgL" = ( -/mob/living/simple_animal/chicken, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 +/area/horizon/command/bridge/controlroom) +"xgW" = ( +/obj/structure/window/shuttle/scc_space_ship, +/obj/structure/grille, +/turf/simulated/wall/shuttle/scc_space_ship/cardinal, +/area/horizon/maintenance/deck_1/wing/port/far) +"xgX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 }, -/turf/simulated/floor/grass/no_edge, -/area/horizon/hydroponics/lower) -"xgP" = ( -/obj/machinery/light/small{ - dir = 1 +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 }, -/obj/structure/cable{ +/obj/structure/cable/green{ icon_state = "4-8" }, -/obj/effect/floor_decal/corner/dark_green{ - dir = 5 +/obj/machinery/door/airlock/hatch{ + dir = 4; + name = "Ship Flak Munitions Bay"; + req_one_access = list(75) }, -/turf/simulated/floor/tiled, -/area/hangar/intrepid) +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/dark, +/area/horizon/weapons/grauwolf) "xhb" = ( /obj/machinery/light/small{ dir = 4 @@ -161907,40 +163306,26 @@ icon_state = "dark_preview" }, /area/centcom/control) -"xhc" = ( -/obj/effect/floor_decal/corner/green/diagonal, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/structure/mirror{ - pixel_y = 36 - }, -/obj/structure/sink{ - pixel_y = 28 - }, -/turf/simulated/floor/tiled/white, -/area/horizon/crew_quarters/washroom/central) -"xhf" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/starboard/docks) -"xhu" = ( -/turf/simulated/wall, -/area/maintenance/wing/starboard/far) -"xhz" = ( -/obj/structure/cable/orange{ - icon_state = "0-2" - }, -/obj/machinery/power/emitter{ +"xhk" = ( +/obj/effect/floor_decal/corner/dark_blue/diagonal, +/obj/machinery/disposal/small/south, +/obj/structure/disposalpipe/trunk{ dir = 8 }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 +/obj/machinery/camera/network/security{ + c_tag = "Security - First Deck Checkpoin" }, -/turf/simulated/floor/plating, -/area/engineering/bluespace_drive) +/turf/simulated/floor/tiled/dark, +/area/horizon/security/checkpoint) +"xhB" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 6 + }, +/obj/effect/floor_decal/spline/plain/black{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/shuttle/intrepid/main_compartment) "xhC" = ( /obj/effect/floor_decal/corner/white/diagonal, /obj/effect/floor_decal/spline/plain{ @@ -161948,17 +163333,6 @@ }, /turf/simulated/floor/holofloor/tiled, /area/horizon/holodeck/source_emptycourt) -"xhE" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/aux, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/maintenance/engineering) "xhF" = ( /obj/structure/table/reinforced/steel, /obj/item/device/camera_film{ @@ -161974,101 +163348,76 @@ }, /turf/simulated/floor/tiled/dark, /area/shuttle/mercenary) -"xhJ" = ( -/obj/structure/table/steel, -/obj/item/paper_bin, -/obj/item/pen, -/obj/item/folder/blue, +"xhH" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/effect/floor_decal/corner_wide/green/full, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/ward) +"xhS" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 4 + }, /turf/simulated/floor/tiled/dark, -/area/engineering/break_room) -"xhL" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/structure/tank_wall/nitrogen{ - icon_state = "n15" +/area/horizon/engineering/reactor/supermatter/waste) +"xhY" = ( +/obj/machinery/power/breakerbox/activated{ + RCon_tag = "Deck 3 Command Substation" }, -/turf/simulated/floor/plating, -/area/engineering/atmos/air) -"xhQ" = ( -/obj/structure/closet/secure_closet/security, -/obj/machinery/alarm/north, -/obj/effect/floor_decal/corner/dark_blue/full{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/dark, -/area/security/checkpoint2) -"xhT" = ( -/obj/machinery/door/firedoor{ - req_one_access = list(24,11,67,73) - }, -/obj/effect/floor_decal/industrial/hatch_door/yellow{ +/obj/effect/floor_decal/industrial/warning{ dir = 8 }, -/obj/machinery/door/airlock/glass_medical{ - name = "Infirmary" +/obj/machinery/light/small/emergency{ + dir = 1 }, -/turf/simulated/floor/tiled/dark/full, -/area/shuttle/intrepid/medical) -"xib" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/structure/bed/stool/chair/padded/beige, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 5 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/bridge) -"xic" = ( /turf/simulated/floor, -/area/maintenance/bridge) -"xif" = ( -/obj/effect/floor_decal/corner/beige{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/aux{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8" +/area/horizon/maintenance/substation/command) +"xid" = ( +/obj/effect/decal/cleanable/dirt, +/obj/random/junk, +/obj/effect/floor_decal/industrial/warning/cee{ + dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/bridge/aibunker) -"xij" = ( -/obj/machinery/power/smes/buildable/horizon_shuttle{ - RCon_tag = "Spark" - }, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 9 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/outline/operations, -/turf/simulated/floor/tiled/dark, -/area/shuttle/mining) -"xiq" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/area/horizon/maintenance/deck_2/wing/port/far) +"xie" = ( /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 }, -/obj/machinery/alarm/east, /turf/simulated/floor/tiled, -/area/hangar/intrepid) -"xit" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/visible/green, -/obj/structure/window/shuttle/scc_space_ship/cardinal, -/turf/simulated/floor/plating, -/area/engineering/engine_room/turbine) +/area/horizon/hangar/auxiliary) +"xiv" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/reactor/supermatter/mainchamber) +"xiw" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/hangar/intrepid) "xiy" = ( /obj/effect/floor_decal/corner/red{ dir = 9 @@ -162080,25 +163429,25 @@ icon_state = "dark_preview" }, /area/centcom/holding) -"xiz" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/portable_atmospherics/hydroponics/soil, -/turf/simulated/floor/grass/no_edge, -/area/rnd/xenobiology/xenoflora) "xiC" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 6 }, /turf/simulated/floor/holofloor/grass, /area/horizon/holodeck/source_picnicarea) -"xiD" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/carpet/purple, -/area/crew_quarters/heads/hor) +"xiE" = ( +/turf/simulated/wall/r_wall, +/area/horizon/command/bridge/cciaroom) +"xiG" = ( +/obj/machinery/kinetic_harvester{ + initial_id_tag = "horizon_fusion" + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/reactor/indra/mainchamber) "xiJ" = ( /obj/structure/flora/grass/jungle, /obj/effect/floor_decal/spline/plain{ @@ -162106,14 +163455,6 @@ }, /turf/simulated/floor/exoplanet/grass, /area/centcom/shared_dream) -"xiN" = ( -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 4 - }, -/obj/structure/closet/emcloset, -/obj/effect/floor_decal/industrial/outline/emergency_closet, -/turf/simulated/floor/tiled, -/area/rnd/xenoarch_atrium) "xiO" = ( /obj/structure/bed/stool/chair, /obj/effect/landmark/thunderdomeobserve, @@ -162123,105 +163464,90 @@ icon_state = "white" }, /area/tdome/tdomeobserve) -"xiP" = ( -/obj/effect/floor_decal/spline/fancy/wood/corner, -/turf/simulated/floor/wood, -/area/horizon/crew_quarters/lounge/bar) -"xiQ" = ( -/obj/effect/floor_decal/corner/dark_blue/diagonal, -/turf/simulated/floor/tiled/dark, -/area/security/checkpoint) -"xiV" = ( -/obj/structure/lattice/catwalk, -/obj/item/hullbeacon/red, -/turf/space/dynamic, -/area/template_noop) +"xiU" = ( +/obj/machinery/door/blast/shutters/open{ + dir = 2; + id = "seconddeckdockint"; + name = "Security Checkpoint Internal Shutter" + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/security/checkpoint2) "xiW" = ( /turf/simulated/wall, /area/horizon/security/interrogation/monitoring) -"xiX" = ( -/obj/effect/floor_decal/corner/brown{ - dir = 10 +"xja" = ( +/obj/structure/platform_stairs/full{ + dir = 4 }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 }, -/obj/machinery/embedded_controller/radio/simple_docking_controller{ - dir = 1; - frequency = 1380; - id_tag = "mining_shuttle_dock"; - name = "\improper Spark docking port controller"; - pixel_x = 6; - pixel_y = -19; - req_one_access = list(31,48,67,74); - tag_door = "mining_shuttle_dock_doors" +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 }, /turf/simulated/floor/tiled, -/area/hangar/operations) -"xjf" = ( -/obj/structure/sign/examroom{ - pixel_y = 32 - }, -/obj/machinery/camera/network/medbay{ - c_tag = "Medical - Hallway 2" - }, -/obj/structure/railing/mapped{ +/area/horizon/rnd/xenobiology/xenoflora) +"xjc" = ( +/obj/machinery/door/firedoor/multi_tile{ dir = 8 }, -/obj/effect/floor_decal/corner_wide/green/full{ - dir = 8 +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/airlock/multi_tile/glass{ + name = "Deck 3 Central Stairwell" }, -/obj/structure/table/standard, -/obj/item/material/stool/chair/wheelchair, -/obj/item/material/stool/chair/wheelchair, -/obj/item/material/stool/chair/wheelchair, -/obj/item/material/stool/chair/wheelchair, -/turf/simulated/floor/tiled/white, -/area/hallway/medical) -"xjj" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 9 - }, -/turf/simulated/floor/tiled/dark, -/area/horizon/grauwolf) -"xjl" = ( /turf/simulated/floor/tiled, -/area/security/vacantoffice) -"xjm" = ( -/obj/effect/floor_decal/corner/white{ - dir = 5 +/area/horizon/stairwell/starboard/deck_3) +"xjd" = ( +/turf/simulated/floor/wood, +/area/horizon/medical/psych) +"xjq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 }, -/obj/effect/floor_decal/corner/mauve{ - dir = 10 +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 }, -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology/xenoflora) -"xjr" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden, -/obj/effect/map_effect/marker/airlock/docking{ - landmark_tag = "nav_horizon_dock_deck_3_starboard_1"; - master_tag = "airlock_horizon_dock_deck_3_starboard_1"; - name = "airlock_horizon_dock_deck_3_starboard_1" - }, -/turf/simulated/floor/plating, -/area/horizon/hallway/deck_three/primary/starboard/docks) -"xjw" = ( -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/structure/railing/mapped{ - dir = 8 - }, -/turf/simulated/open, -/area/horizon/hydroponics) +/obj/effect/floor_decal/corner/brown/full, +/turf/simulated/floor/tiled, +/area/horizon/operations/break_room) "xjx" = ( /obj/structure/bed/stool/chair/office/bridge/pilot, /turf/simulated/floor/tiled/dark/full, /area/shuttle/burglar) +"xjy" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/port/near) +"xjz" = ( +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 2; + icon_state = "shutter0"; + id = "LCKDshutters"; + name = "MedBay Lockdown Shutters"; + opacity = 0 + }, +/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, +/obj/structure/sign/greencross/small, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/medical/gen_treatment) "xjB" = ( /obj/effect/floor_decal/spline/plain{ dir = 9 @@ -162229,97 +163555,35 @@ /obj/effect/floor_decal/spline/plain/corner, /turf/simulated/floor/exoplanet/grass, /area/centcom/shared_dream) -"xjE" = ( -/obj/effect/floor_decal/corner/dark_green{ +"xjC" = ( +/obj/effect/floor_decal/corner/yellow{ dir = 5 }, -/obj/structure/cable/green{ - icon_state = "1-2" +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/machinery/disposal/small/south, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/light{ + dir = 1 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/central) -"xjL" = ( -/obj/structure/bed/handrail{ - dir = 4 +/area/horizon/engineering/lobby) +"xjP" = ( +/obj/machinery/camera/network/third_deck{ + c_tag = "Third Deck - Crew Lounge Starboard" }, -/obj/effect/map_effect/marker/airlock/shuttle{ - cycle_to_external_air = 1; - master_tag = "airlock_shuttle_intrepid"; - name = "airlock_shuttle_intrepid"; - req_one_access = null; - shuttle_tag = "Intrepid" +/obj/structure/bed/stool/chair/sofa/right/brown, +/obj/effect/landmark/start{ + name = "Passenger" }, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/atmospherics/unary/vent_pump/high_volume, -/obj/machinery/atmospherics/unary/vent_pump/high_volume, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 5 - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/shuttle/intrepid/main_compartment) -"xjQ" = ( -/obj/structure/cable/green{ - icon_state = "0-4" - }, -/obj/effect/floor_decal/corner/dark_green{ - dir = 9 - }, -/obj/machinery/power/apc/super/critical/west, -/obj/structure/engineer_maintenance/pipe{ - dir = 8 - }, -/obj/structure/engineer_maintenance/electric, -/turf/simulated/floor/tiled, -/area/hangar/auxiliary) -"xjR" = ( -/obj/effect/floor_decal/corner/mauve/full{ - dir = 8 - }, -/obj/structure/sink{ - pixel_y = 28; - pixel_x = -10 - }, -/obj/machinery/button/remote/blast_door{ - desc = "It controls the research shutters."; - id = "exploratory_chem_shutters"; - name = "Exploratory Chemistry Shutters"; - dir = 1; - pixel_y = 37; - pixel_x = 8 - }, -/obj/machinery/button/remote/blast_door{ - desc = "It controls the research shutters."; - id = "science_chem_desk"; - name = "Exploratory Chemistry Desk"; - pixel_x = 8; - dir = 1; - pixel_y = 26 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/chemistry) -"xjT" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/structure/tank_wall/oxygen{ - icon_state = "o2-16" - }, -/turf/simulated/floor/plating, -/area/engineering/atmos/air) -"xjX" = ( -/obj/structure/platform_stairs, -/obj/machinery/door/window/northleft, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology/dissection) +/turf/simulated/floor/carpet/art, +/area/horizon/crew/lounge) "xjZ" = ( /obj/machinery/door/blast/regular/open{ dir = 8; @@ -162329,95 +163593,48 @@ icon_state = "dark_preview" }, /area/centcom/specops) -"xkh" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 9 - }, -/obj/structure/platform, -/obj/effect/floor_decal/corner/dark_blue, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/vending/snack, -/turf/simulated/floor/tiled, -/area/bridge) -"xki" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/structure/tank_wall/phoron{ - icon_state = "ph15" - }, -/obj/machinery/atmospherics/pipe/simple/visible/purple, -/turf/simulated/floor/airless, -/area/engineering/atmos) -"xko" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/corner_wide/purple/full{ - dir = 8 - }, +"xkb" = ( +/obj/effect/decal/cleanable/dirt, /obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenoarch_atrium) -"xku" = ( -/obj/structure/plasticflaps/airtight, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/medical{ - dir = 1; - name = "Cold Storage"; - req_access = list(66) - }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/full, -/area/medical/surgery) -"xkw" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 10 - }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/storage/eva) -"xkx" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/structure/tank_wall/nitrous_oxide{ - icon_state = "h13" - }, -/obj/machinery/atmospherics/pipe/simple/visible/red{ - dir = 4 + icon_state = "1-4" }, /turf/simulated/floor/plating, -/area/engineering/atmos/air) -"xkA" = ( -/obj/effect/floor_decal/corner/mauve{ - dir = 6 +/area/horizon/maintenance/deck_1/hangar/starboard) +"xkd" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 10 }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology) -"xkB" = ( -/obj/effect/floor_decal/spline/fancy/wood{ +/obj/structure/bed/stool/chair{ + dir = 8 + }, +/obj/effect/landmark/start{ + name = "Assistant" + }, +/turf/simulated/floor/tiled, +/area/horizon/operations/lobby) +"xkk" = ( +/obj/effect/floor_decal/corner_wide/green{ dir = 9 }, -/turf/simulated/floor/wood, -/area/horizon/crew_quarters/lounge/bar) +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/item/device/radio/intercom/west, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/main_storage) +"xkn" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/turf/simulated/floor, +/area/horizon/maintenance/deck_3/aft/starboard/far) +"xks" = ( +/obj/structure/bed/stool/chair/office/dark{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/horizon/crew/vacantoffice) "xkG" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/effect/floor_decal/industrial/warning{ @@ -162425,20 +163642,12 @@ }, /turf/simulated/floor/reinforced/airless, /area/horizon/exterior) -"xkJ" = ( -/obj/effect/decal/cleanable/cobweb2{ - icon_state = "cobweb1" +"xkK" = ( +/obj/effect/floor_decal/corner_wide/yellow/full{ + dir = 8 }, -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 6 - }, -/obj/structure/closet/crate/bin, -/obj/random/loot, -/turf/simulated/floor/plating, -/area/maintenance/research_port) +/turf/simulated/floor/tiled, +/area/horizon/engineering/hallway/aft) "xkO" = ( /obj/structure/table/rack, /obj/item/mecha_equipment/shield, @@ -162471,97 +163680,21 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/unsimulated/floor/monotile, /area/antag/jockey) -"xkQ" = ( -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/platform{ +"xlc" = ( +/obj/structure/platform_deco/ledge{ dir = 4 }, -/turf/simulated/floor/tiled/dark, -/area/maintenance/wing/port/far) -"xkS" = ( -/obj/effect/floor_decal/industrial/outline/grey, -/obj/structure/closet/crate/plastic{ - name = "warning cones crate" - }, -/obj/item/clothing/head/cone, -/obj/item/clothing/head/cone, -/obj/item/clothing/head/cone, -/obj/item/clothing/head/cone, -/obj/item/clothing/head/cone, -/obj/item/clothing/head/cone, -/obj/item/clothing/head/cone, -/obj/item/clothing/head/cone, -/obj/item/clothing/head/cone, -/obj/item/clothing/head/cone, -/obj/item/clothing/head/cone, -/obj/item/clothing/head/cone, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/hangar/intrepid) -"xkV" = ( -/obj/effect/floor_decal/corner_wide/yellow{ - dir = 9 - }, -/obj/effect/floor_decal/spline/plain{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/engineering/break_room) -"xlb" = ( -/obj/structure/cable/green{ +/turf/simulated/open, +/area/horizon/hallway/primary/deck_3/central) +"xlm" = ( +/turf/simulated/wall, +/area/horizon/medical/icu) +"xlo" = ( +/obj/structure/cable{ icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/obj/effect/floor_decal/corner/brown/full{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/refinery) -"xll" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/effect/floor_decal/corner/lime/diagonal, -/turf/simulated/floor/tiled/white{ - name = "cooled white floor"; - temperature = 278.15 - }, -/area/medical/morgue/lower) -"xlp" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/camera/motion{ - network = list("Command","Security","Tcomsat"); - c_tag = "Telecommunications - Control Room" - }, -/obj/machinery/atmospherics/unary/freezer{ - dir = 8; - icon_state = "freezer_1"; - use_power = 1 - }, -/obj/effect/floor_decal/industrial/outline/blue, -/turf/simulated/floor/tiled/dark/full, -/area/tcommsat/entrance) +/turf/simulated/floor/plating, +/area/horizon/hangar/auxiliary) "xlq" = ( /obj/effect/decal/rolling_fog, /obj/structure/railing/mapped{ @@ -162569,126 +163702,121 @@ }, /turf/simulated/floor/holofloor/reinforced, /area/horizon/holodeck/source_biesel) -"xlr" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/red{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/engineering/atmos) "xlt" = ( /obj/effect/floor_decal/spline/plain{ dir = 5 }, /turf/simulated/floor/exoplanet/barren/raskara, /area/centcom/shared_dream) +"xly" = ( +/obj/effect/floor_decal/spline/plain/lime{ + dir = 4 + }, +/obj/structure/sink/kitchen{ + dir = 8; + name = "sink"; + pixel_x = 21 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/dark, +/area/horizon/service/hydroponics/garden) "xlA" = ( /obj/effect/floor_decal/spline/plain{ dir = 8 }, /turf/simulated/floor/exoplanet/barren/raskara, /area/centcom/shared_dream) -"xlF" = ( -/obj/structure/cable/green{ - icon_state = "4-8" +"xlC" = ( +/obj/effect/floor_decal/industrial/hatch/red, +/obj/effect/floor_decal/industrial/warning{ + dir = 5 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/airlock/maintenance{ - dir = 4; - req_one_access = list(12,26,29,31,48,67) - }, -/turf/simulated/floor/tiled/full, -/area/maintenance/wing/starboard) +/turf/simulated/floor/tiled/dark/full, +/area/horizon/service/custodial/disposals/deck_1) "xlG" = ( /turf/unsimulated/floor{ icon_state = "wood" }, /area/centcom/specops) -"xlI" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/wood, -/area/lawoffice/representative) -"xlN" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/effect/floor_decal/corner/dark_green{ - dir = 5 +"xlM" = ( +/obj/effect/floor_decal/corner/dark_blue/full{ + dir = 4 }, +/obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/starboard) -"xlQ" = ( -/obj/machinery/camera/network/research{ - c_tag = "Research - Mech Bay Camera" +/area/horizon/hallway/primary/deck_3/central) +"xlU" = ( +/obj/structure/stairs_railing{ + dir = 8 }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/effect/floor_decal/corner/dark_green{ - dir = 5 - }, -/obj/machinery/firealarm/north, /turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"xlS" = ( -/obj/effect/floor_decal/industrial/warning/corner, -/turf/simulated/floor/plating, -/area/maintenance/wing/port/deck1) -"xlZ" = ( -/obj/effect/floor_decal/corner/dark_blue/diagonal, -/obj/machinery/atmospherics/pipe/simple/hidden/aux{ +/area/horizon/operations/warehouse) +"xlV" = ( +/obj/structure/bed/stool/chair/padded/brown{ + dir = 4 + }, +/obj/effect/floor_decal/spline/fancy/wood{ dir = 10 }, -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/turf/simulated/floor/tiled/dark, -/area/bridge/aibunker) +/turf/simulated/floor/wood, +/area/horizon/hallway/primary/deck_3/central) "xma" = ( /obj/effect/floor_decal/spline/plain/corner{ dir = 8 }, /turf/unsimulated/floor, /area/antag/mercenary) -"xmb" = ( -/obj/structure/table/standard, -/obj/item/stack/nanopaste{ - pixel_y = 9 +"xmd" = ( +/obj/random/junk, +/obj/effect/floor_decal/industrial/warning{ + dir = 10 }, -/obj/item/stack/nanopaste, -/obj/item/device/radio/intercom/north, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/carpet/rubber, -/area/rnd/xenoarch_atrium) -"xmc" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/firedoor, -/obj/structure/plasticflaps/airtight{ - dir = 4 - }, -/obj/machinery/door/airlock/glass_mining{ - dir = 4; - name = "Fuel Bay"; - req_one_access = list(26,29,31,48,67,24,47,73) - }, -/turf/simulated/floor/tiled, -/area/hangar/intrepid) -"xmg" = ( -/turf/simulated/floor/reinforced/airless, -/area/engineering/atmos) -"xmp" = ( -/obj/structure/bed/stool/chair/padded/red{ - dir = 8 +/obj/structure/sign/electricshock{ + desc = "A caution sign which reads 'CAUTION: HEAVY MACHINERY IN USE' and 'THIS EQUIPMENT STARTS AND STOPS AUTOMATICALLY.'."; + name = "\improper CAUTION: HEAVY MACHINERY IN USE sign"; + pixel_y = 32 }, /obj/machinery/light/small{ dir = 4 }, -/turf/simulated/floor/carpet/red, -/area/horizon/crew_quarters/lounge/bar) +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/main/interstitial) +"xme" = ( +/obj/machinery/alarm/north, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/horizon/service/chapel/office) +"xmj" = ( +/obj/machinery/r_n_d/circuit_imprinter, +/obj/item/reagent_containers/glass/beaker{ + pixel_y = 8 + }, +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/carpet/rubber, +/area/horizon/operations/machinist) +"xmq" = ( +/obj/machinery/alarm/south, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/suit_cycler/engineering/prepared, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/storage_eva) +"xmr" = ( +/obj/structure/closet/crate/bin, +/obj/random/loot, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/teleporter) "xmu" = ( /obj/item/device/radio/intercom/east, /obj/effect/floor_decal/corner/dark_blue/full{ @@ -162699,59 +163827,57 @@ /obj/structure/closet/secure_closet/brig, /turf/simulated/floor/tiled, /area/horizon/security/holding_cell_a) -"xmJ" = ( -/obj/machinery/atmospherics/pipe/simple/visible/black{ - dir = 4 +"xmB" = ( +/obj/structure/table/steel, +/obj/item/device/multitool, +/obj/machinery/camera/network/research{ + c_tag = "Research - Server Room" }, -/obj/machinery/atmospherics/binary/pump{ - name = "Hydrogen to Mix" +/obj/machinery/firealarm/north, +/turf/simulated/floor/carpet/rubber, +/area/horizon/rnd/server) +"xmF" = ( +/obj/structure/shuttle_part/scc/mining{ + icon_state = "6,1"; + outside_part = 0 }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/atmos) -"xmK" = ( -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/machinery/power/terminal, -/obj/structure/table/rack, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ +/obj/machinery/light/small{ dir = 1 }, -/obj/machinery/light/colored/blue{ +/turf/simulated/floor/plating, +/area/horizon/shuttle/mining) +"xmG" = ( +/obj/effect/floor_decal/spline/fancy/wood{ dir = 8 }, -/obj/machinery/door/window/eastright, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark/full, -/area/shuttle/canary) +/turf/simulated/floor/wood, +/area/horizon/command/heads/om) +"xmI" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/alarm/east, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/port/far) +"xmM" = ( +/turf/simulated/floor/tiled/white, +/area/horizon/storage/eva/expedition) "xmN" = ( /obj/effect/floor_decal/corner/white/full{ dir = 8 }, /turf/simulated/floor/holofloor/tiled/dark, /area/horizon/holodeck/source_boxingcourt) -"xmP" = ( -/obj/effect/floor_decal/corner_wide/green/full, -/obj/effect/floor_decal/sign/cmo, -/turf/simulated/floor/tiled/white, -/area/hallway/medical) -"xmS" = ( -/obj/structure/platform{ - dir = 1 +"xmQ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/corner/dark_blue{ + dir = 10 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 +/obj/structure/cable/green{ + icon_state = "1-2" }, -/obj/structure/railing/mapped, /turf/simulated/floor/tiled, -/area/operations/lower/machinist/surgicalbay) +/area/horizon/command/bridge/bridge_crew) "xmT" = ( /obj/structure/bed/stool/chair{ dir = 1 @@ -162761,37 +163887,6 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/security/meeting_room) -"xmV" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard/deck1) -"xmW" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor, -/area/maintenance/security_port) -"xmY" = ( -/obj/machinery/atmospherics/pipe/manifold/visible{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology/xenoflora) -"xna" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/cyan{ - dir = 4 - }, -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/engineering/engine_room) "xnb" = ( /obj/effect/floor_decal/spline/plain{ dir = 8 @@ -162799,23 +163894,30 @@ /obj/effect/floor_decal/industrial/warning, /turf/unsimulated/floor, /area/antag/mercenary) -"xnd" = ( -/obj/machinery/door/firedoor/multi_tile, -/obj/machinery/door/airlock/multi_tile/glass{ - id_tag = "dinerbolt"; - name = "Kitchen" +"xne" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 10 }, -/turf/simulated/floor/tiled/full, -/area/horizon/crew_quarters/lounge/bar) -"xnf" = ( -/obj/machinery/atmospherics/portables_connector/fuel{ +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/survey_probe, +/turf/simulated/floor/tiled, +/area/horizon/operations/mining_main/refinery) +"xnh" = ( +/obj/machinery/camera/network/third_deck{ + c_tag = "Third Deck - Crew Lounge Fore"; 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) +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/horizon/crew/lounge) +"xni" = ( +/obj/effect/landmark/entry_point/aft{ + name = "aft engines, starboard 2" + }, +/turf/space/dynamic, +/area/horizon/engineering/atmos/propulsion) "xnl" = ( /obj/structure/sign/securearea{ desc = "A caution sign which reads 'CAUTION: BRIG AREA' and 'SECURE AREA'."; @@ -162824,110 +163926,115 @@ }, /turf/simulated/floor/reinforced/airless, /area/horizon/exterior) -"xnv" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 8 - }, -/obj/machinery/light_switch{ - dir = 8; - pixel_x = -22; - pixel_y = 5 - }, -/turf/simulated/floor/carpet/rubber, -/area/engineering/bluespace_drive/monitoring) -"xnw" = ( -/turf/simulated/wall/r_wall, -/area/bridge) -"xnD" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/effect/floor_decal/spline/plain/corner{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/white, -/area/horizon/kitchen) -"xnF" = ( -/obj/effect/floor_decal/corner/dark_blue/diagonal, -/obj/structure/bed/stool/chair/office/bridge, -/turf/simulated/floor/tiled/dark, -/area/shuttle/intrepid/flight_deck) -"xnP" = ( -/obj/machinery/light/floor, -/obj/machinery/camera/network/command{ - c_tag = "Bridge - Atrium Fore"; - dir = 1 - }, -/turf/simulated/floor/tiled/full, -/area/bridge) -"xnS" = ( +"xno" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/computer/security/engineering/terminal{ - dir = 4 +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/operations/starboard) +"xnr" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 9 }, -/obj/machinery/atmospherics/pipe/simple/hidden/red{ +/obj/effect/floor_decal/industrial/loading/yellow{ dir = 8 }, -/obj/effect/floor_decal/industrial/outline/operations, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/atmos/propulsion) -"xnW" = ( -/obj/structure/table/wood, -/obj/machinery/chemical_dispenser/coffeemaster/full{ - dir = 0; - pixel_y = 12 - }, -/obj/item/reagent_containers/food/drinks/drinkingglass/newglass/coffeecup/rainbow{ - pixel_x = 11; - pixel_y = -2 - }, -/obj/item/reagent_containers/food/drinks/drinkingglass/newglass/coffeecup/sol{ - pixel_x = 6; - pixel_y = -2 - }, -/obj/item/reagent_containers/food/drinks/drinkingglass/newglass/coffeecup/black{ - pixel_x = 1; - pixel_y = -2 - }, -/obj/item/reagent_containers/food/drinks/drinkingglass/newglass/coffeecup/zeng{ - pixel_x = -4; - pixel_y = -2 - }, -/obj/item/reagent_containers/food/drinks/drinkingglass/newglass/coffeecup/nt{ - pixel_x = -9; - pixel_y = -2 - }, -/obj/effect/floor_decal/spline/fancy/wood/cee{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/heads/hor) -"xoa" = ( -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/wood, -/area/horizon/library) -"xof" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, +/obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled, -/area/hangar/operations) -"xoi" = ( -/obj/structure/table/standard, -/obj/item/folder/yellow{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/device/hand_labeler{ - pixel_y = -5 - }, +/area/horizon/operations/mining_main/refinery) +"xnx" = ( +/obj/machinery/portable_atmospherics/canister/empty/air, +/turf/simulated/floor/plating, +/area/horizon/engineering/reactor/indra/office) +"xnE" = ( /obj/effect/floor_decal/corner/yellow{ dir = 6 }, +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/aft_airlock) +"xnL" = ( +/obj/machinery/light/small/emergency{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 4 + }, +/obj/effect/map_effect/marker/airlock{ + frequency = 2001; + master_tag = "airlock_horizon_deck_2_starboard_aft"; + name = "airlock_horizon_deck_2_starboard_aft" + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/port/near) +"xnQ" = ( +/obj/random/loot, +/obj/structure/closet, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/operations/starboard/far) +"xnR" = ( +/obj/effect/floor_decal/corner_wide/yellow{ + dir = 10 + }, +/obj/item/modular_computer/console/preset/engineering, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/camera/network/engineering{ + c_tag = "Engineering - Lobby"; + dir = 1 + }, /turf/simulated/floor/tiled, -/area/engineering/rust_office) +/area/horizon/engineering/lobby) +"xnT" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/tiled/dark, +/area/horizon/maintenance/deck_2/wing/starboard) +"xnV" = ( +/obj/structure/foamedmetal, +/obj/structure/shuttle_part/scc_space_ship{ + icon_state = "d3-6-f" + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/port) +"xnY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/effect/floor_decal/corner/dark_blue{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/horizon/command/bridge/upperdeck) +"xoa" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/gen_treatment) +"xoe" = ( +/obj/structure/table/wood, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/window/southleft{ + req_access = list(37) + }, +/obj/item/paper_bin{ + pixel_x = -1; + pixel_y = 4 + }, +/obj/item/pen/fountain/black{ + pixel_x = -1; + pixel_y = 6 + }, +/turf/simulated/floor/lino/diamond, +/area/horizon/service/library) "xok" = ( /obj/effect/floor_decal/industrial/outline/yellow, /obj/structure/railing/mapped{ @@ -162938,15 +164045,21 @@ }, /turf/simulated/floor/tiled/dark, /area/shuttle/legion) -"xol" = ( -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 9 +"xoo" = ( +/obj/effect/floor_decal/corner/green/diagonal{ + dir = 8 }, -/obj/structure/cable/green{ - icon_state = "4-8" +/turf/simulated/floor/tiled/white, +/area/horizon/medical/ward) +"xor" = ( +/obj/effect/floor_decal/corner_wide/purple/full{ + dir = 1 }, -/turf/simulated/floor/tiled/dark, -/area/engineering/atmos) +/obj/effect/floor_decal/corner_wide/purple{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/xenoarch/atrium) "xox" = ( /obj/effect/floor_decal/corner/grey/diagonal{ dir = 4 @@ -162965,19 +164078,24 @@ }, /turf/unsimulated/floor/wood, /area/centcom/bar) -"xoH" = ( -/obj/machinery/atmospherics/pipe/simple/visible/purple{ - dir = 6 +"xoG" = ( +/obj/item/modular_computer/console/preset/supply/machinist{ + dir = 4 }, -/obj/effect/floor_decal/corner_wide/black/full{ +/obj/effect/floor_decal/spline/plain/cee{ dir = 8 }, -/obj/effect/floor_decal/industrial/warning{ - dir = 9 +/obj/machinery/ringer/south{ + department = "Machinist Workshop"; + id = "robo_ringer"; + req_access = list(29) }, -/obj/structure/engineer_maintenance/electric/wall, -/turf/simulated/floor/tiled/dark, -/area/engineering/atmos/propulsion) +/obj/machinery/light, +/turf/simulated/floor/carpet/rubber, +/area/horizon/operations/machinist) +"xoK" = ( +/turf/simulated/wall/shuttle/scc_space_ship/cardinal, +/area/horizon/medical/equipment) "xoM" = ( /obj/effect/floor_decal/industrial/warning/dust{ dir = 4 @@ -162987,14 +164105,58 @@ }, /turf/simulated/floor/holofloor/carpet/rubber, /area/horizon/holodeck/source_basketball) +"xoN" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_2/central) +"xoO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/ladder/up{ + pixel_y = 13 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/maintenance/deck_2/wing/port/near) +"xoR" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/full, +/area/horizon/hallway/primary/deck_1/central) +"xoU" = ( +/obj/effect/floor_decal/corner_wide/green{ + dir = 10 + }, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/machinery/disposal/small/north{ + pixel_y = -17 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/equipment) "xoW" = ( /obj/machinery/teleport_odyssey, /obj/effect/decal/warning_stripes, /turf/unsimulated/floor/dark_monotile, /area/antag/actor) -"xoY" = ( -/turf/simulated/wall, -/area/maintenance/substation/civilian_west) "xoZ" = ( /obj/effect/floor_decal/corner/dark_blue{ dir = 5 @@ -163006,104 +164168,103 @@ /obj/machinery/meter, /turf/simulated/floor/tiled, /area/horizon/security/brig) -"xpa" = ( -/obj/structure/cable/green{ - icon_state = "2-8" +"xpf" = ( +/obj/structure/table/stone/marble, +/obj/machinery/door/firedoor{ + req_one_access = list(24,11,67,73) }, -/obj/structure/disposalpipe/junction, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor, -/area/maintenance/engineering_ladder) -"xpj" = ( -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 1 - }, -/turf/simulated/floor/reinforced/airless, -/area/template_noop) -"xpr" = ( -/obj/machinery/smartfridge/secure, /obj/machinery/door/blast/shutters{ - dir = 4; - id = "horizon_commissary_desk" + id = "intrepid_buffet"; + name = "Buffet Desk Shutter" }, /turf/simulated/floor/tiled/dark/full, -/area/horizon/commissary) -"xpv" = ( -/obj/effect/floor_decal/corner/dark_green/full, -/obj/structure/railing/mapped, +/area/horizon/shuttle/intrepid/buffet) +"xpg" = ( +/obj/effect/floor_decal/corner_wide/yellow{ + dir = 5 + }, /turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"xpx" = ( -/obj/structure/table/standard, -/obj/item/device/integrated_electronics/wirer, -/obj/item/device/integrated_electronics/debugger, -/obj/item/storage/bag/circuits/basic, -/obj/machinery/light{ - dir = 8 +/area/horizon/engineering/lobby) +"xpl" = ( +/obj/structure/shuttle_part/scc/scout{ + icon_state = "7,5" }, -/turf/simulated/floor/carpet/rubber, -/area/rnd/lab) -"xpA" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 5 - }, -/obj/structure/bed/stool/chair/padded/black, -/turf/simulated/floor/carpet, -/area/lawoffice/representative) -"xpF" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/multi_tile/glass{ - dir = 2; - name = "Engineering Lobby" - }, -/turf/simulated/floor/tiled/full, -/area/engineering/lobby) -"xpP" = ( -/obj/machinery/camera/network/engineering{ - c_tag = "Engineering - Atmospherics Tanks 2"; - dir = 1 - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/atmospherics/portables_connector{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/outline, /turf/simulated/floor/plating, -/area/engineering/atmos/air) -"xpS" = ( -/obj/machinery/atmospherics/portables_connector, -/obj/machinery/portable_atmospherics/canister/air/airlock, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/engineering/atmos/propulsion) -"xpT" = ( -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 +/area/horizon/shuttle/canary) +"xpp" = ( +/obj/structure/cable/green{ + icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 + dir = 4 }, -/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_medical{ + dir = 4; + name = "Main Storage"; + req_access = list(66) + }, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/main_storage) +"xps" = ( +/obj/structure/cable/green{ + icon_state = "0-8" + }, +/obj/effect/floor_decal/industrial/hatch_tiny/yellow, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/cobweb2, +/obj/machinery/power/apc/east, /turf/simulated/floor/plating, -/area/maintenance/aft) +/area/horizon/maintenance/substation/wing_starboard) +"xpu" = ( +/obj/structure/closet/crate/coffin, +/obj/structure/closet/crate/coffin{ + pixel_y = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/service/chapel/office) +"xpz" = ( +/obj/effect/floor_decal/corner/grey/diagonal, +/obj/effect/floor_decal/spline/plain{ + dir = 8 + }, +/obj/effect/floor_decal/spline/plain/corner{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/white, +/area/horizon/service/kitchen) +"xpE" = ( +/obj/structure/platform/ledge{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/visible, +/turf/simulated/floor/tiled/dark, +/area/horizon/rnd/xenobiology/xenoflora) +"xpH" = ( +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/structure/lattice, +/turf/simulated/open, +/area/horizon/maintenance/deck_2/wing/port) +"xpO" = ( +/obj/effect/floor_decal/corner/dark_green/full, +/obj/machinery/firealarm/south, +/obj/structure/engineer_maintenance/electric, +/obj/structure/engineer_maintenance/pipe{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/horizon/engineering/hallway/fore) +"xpU" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/random/junk, +/turf/simulated/floor, +/area/horizon/maintenance/deck_3/aft/starboard) "xpV" = ( /obj/structure/table/standard, /obj/item/folder/sec, @@ -163117,160 +164278,94 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/security/evidence_storage) -"xpX" = ( -/obj/machinery/light/small, -/obj/machinery/atmospherics/pipe/tank/air/scc_shuttle{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/warning/cee{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/mining) -"xqa" = ( -/obj/structure/platform/ledge, -/obj/structure/sign/poster{ - pixel_y = 32 - }, -/turf/simulated/floor/carpet/rubber, -/area/operations/lower/machinist) -"xqd" = ( -/obj/effect/shuttle_landmark/lift/operations_third_deck, -/turf/simulated/open, -/area/operations/office_aux) -"xqe" = ( -/obj/structure/cable/green, -/obj/structure/closet/crate/trashcart, -/obj/effect/floor_decal/corner/purple{ - dir = 10 - }, -/obj/effect/floor_decal/industrial/outline/custodial, -/obj/machinery/power/apc/super/south, -/obj/item/storage/bag/trash, -/obj/item/storage/bag/trash{ - pixel_x = -9; - pixel_y = 2 - }, -/obj/item/storage/bag/trash{ - pixel_x = -4; - pixel_y = -2 - }, -/turf/simulated/floor/tiled, -/area/horizon/custodial) "xqf" = ( /obj/structure/flora/tree/grove, /turf/simulated/floor/exoplanet/grass/grove, /area/centcom/shared_dream) -"xqh" = ( -/obj/machinery/light, -/obj/effect/floor_decal/corner/dark_green/full{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_two/fore) -"xql" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/starboard/docks) "xqn" = ( /obj/effect/floor_decal/industrial/warning{ dir = 6 }, /turf/simulated/floor/tiled/dark/full, /area/turbolift/scc_ship/operations_lift) -"xqq" = ( -/obj/structure/platform_stairs, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, +"xqo" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 9 + }, +/obj/effect/floor_decal/corner/yellow{ + dir = 9 + }, /turf/simulated/floor/tiled/dark, -/area/rnd/lab) -"xqB" = ( -/obj/structure/table/steel, -/obj/effect/floor_decal/corner/mauve{ - dir = 5 +/area/horizon/engineering/reactor/supermatter/waste) +"xqp" = ( +/obj/structure/shuttle_part/scc/scout{ + icon_state = "7,3" }, -/obj/item/device/radio/sci{ - pixel_y = 12; - pixel_x = 6 +/turf/simulated/floor/plating, +/area/horizon/shuttle/canary) +"xqt" = ( +/obj/structure/tank_wall{ + icon_state = "m-16" }, -/obj/item/device/radio/sci{ - pixel_y = 12; - pixel_x = 6 - }, -/obj/item/device/radio/sci{ - pixel_y = 12; - pixel_x = 6 - }, -/obj/item/device/radio/sci{ - pixel_y = 12; - pixel_x = 6 - }, -/obj/item/device/radio/sci{ - pixel_y = 12; - pixel_x = -6 - }, -/obj/item/device/radio/sci{ - pixel_y = 12; - pixel_x = -6 - }, -/obj/item/device/radio/sci{ - pixel_y = 12; - pixel_x = -6 - }, -/obj/item/device/radio/sci{ - pixel_y = 12; - pixel_x = -6 - }, -/obj/item/stack/material/steel/full, -/obj/item/stack/material/steel/full, -/obj/item/stack/material/steel/full, -/obj/item/stack/rods/full, -/obj/item/stack/rods/full, -/obj/item/storage/toolbox/mechanical, -/turf/simulated/floor/tiled/white, -/area/storage/eva) -"xqC" = ( -/obj/effect/floor_decal/corner/dark_green/full, -/turf/simulated/floor/tiled, -/area/horizon/hydroponics/garden) -"xqE" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark/full, -/area/rnd/xenoarch_atrium) -"xqG" = ( -/obj/effect/floor_decal/corner/brown/full{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/operations/break_room) -"xqL" = ( -/obj/structure/cable/green{ - icon_state = "0-4" - }, -/obj/effect/floor_decal/corner/dark_blue/full{ +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/plating, +/area/horizon/engineering/atmos) +"xqu" = ( +/obj/structure/window/reinforced{ dir = 8 }, -/obj/item/gun/energy/mousegun/xenofauna, -/obj/item/gun/energy/mousegun/xenofauna, -/obj/machinery/firealarm/north, -/obj/machinery/power/apc/critical/west, -/obj/structure/table/steel, -/turf/simulated/floor/tiled/dark, -/area/security/checkpoint2) +/obj/effect/decal/cleanable/dirt, +/obj/random/junk, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/port) +"xqy" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/alarm/north, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/wing/starboard) +"xqD" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/structure/disposalpipe/sortjunction/flipped{ + sortType = "Commissary"; + name = "Commissary" + }, +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor/plating, +/area/horizon/hallway/primary/deck_2/central) +"xqH" = ( +/obj/structure/disposalpipe/trunk, +/obj/machinery/disposal/small/south, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/obj/machinery/camera/network/command{ + c_tag = "Bridge - Breakroom" + }, +/turf/simulated/floor/wood, +/area/horizon/command/bridge/minibar) "xqT" = ( /obj/effect/floor_decal/corner_wide/blue{ dir = 9 @@ -163293,96 +164388,87 @@ icon_state = "desert" }, /area/centcom/shared_dream) -"xqX" = ( -/obj/structure/bed/stool/chair/padded/brown, -/obj/machinery/firealarm/north, -/turf/simulated/floor/wood/walnut, -/area/medical/smoking) -"xqY" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 +"xqW" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 }, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 8 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 }, -/obj/structure/railing/mapped{ - dir = 1; - pixel_y = 8 - }, -/turf/simulated/floor/plating, -/area/hangar/intrepid) -"xre" = ( -/obj/effect/floor_decal/industrial/outline/grey, -/obj/structure/reagent_dispensers/extinguisher, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"xrg" = ( -/obj/structure/cable/green{ +/obj/structure/cable{ icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/corner/green/diagonal{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/medical/ward) -"xrk" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/requests_console/west{ - department = "Vacant Office" - }, -/obj/effect/floor_decal/corner/beige{ - dir = 9 - }, +/obj/effect/floor_decal/corner/dark_green/diagonal, /turf/simulated/floor/tiled, -/area/security/vacantoffice) -"xrn" = ( -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/machinery/light/small/emergency, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard) -"xrp" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/machinery/bluespace_beacon, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" +/area/horizon/hangar/auxiliary) +"xrb" = ( +/obj/machinery/camera/network/first_deck{ + c_tag = "First Deck - Hangar 5"; + dir = 8 }, -/turf/simulated/floor/plating, -/area/shuttle/intrepid/main_compartment) -"xrr" = ( -/obj/effect/floor_decal/spline/fancy/wood{ +/obj/effect/floor_decal/corner/dark_green{ dir = 6 }, -/obj/structure/bed/stool/chair/padded/brown{ +/turf/simulated/floor/tiled, +/area/horizon/hangar/intrepid) +"xro" = ( +/obj/effect/floor_decal/corner/brown{ dir = 1 }, -/obj/machinery/light, -/turf/simulated/floor/wood, -/area/lawoffice/consular) -"xrE" = ( -/turf/simulated/wall, -/area/engineering/storage_eva) -"xrH" = ( -/obj/effect/floor_decal/spline/plain/corner{ - dir = 8 +/turf/simulated/floor/tiled/dark, +/area/horizon/shuttle/intrepid/starboard_compartment) +"xrs" = ( +/obj/structure/cable/green{ + icon_state = "0-8" }, -/obj/effect/floor_decal/spline/plain{ - dir = 5 +/obj/effect/floor_decal/industrial/hatch_tiny/yellow, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/spiderling_remains, +/obj/item/cell/crap/empty{ + pixel_x = -8; + pixel_y = -9 }, -/obj/machinery/light{ +/obj/machinery/power/apc/east, +/turf/simulated/floor/plating, +/area/horizon/maintenance/substation/wing_port) +"xrD" = ( +/obj/effect/floor_decal/corner_wide/yellow{ + dir = 10 + }, +/obj/machinery/camera/network/engineering{ + c_tag = "Engineering - Hallway 4"; dir = 1 }, -/obj/effect/floor_decal/sign/v, -/turf/simulated/floor/carpet/rubber, -/area/tcommsat/chamber) +/turf/simulated/floor/tiled, +/area/horizon/engineering/hallway/interior) +"xrI" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/wall/shuttle/scc, +/area/horizon/shuttle/quark/cockpit) +"xrL" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 10 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/horizon/rnd/hallway) +"xrM" = ( +/obj/machinery/atmospherics/pipe/simple/visible/purple{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/engineering/atmos/propulsion) +"xrN" = ( +/turf/simulated/wall/shuttle/scc_space_ship/cardinal, +/area/horizon/hallway/primary/deck_3/port) "xrO" = ( /obj/structure/bed/stool/chair/office/light{ dir = 8 @@ -163395,20 +164481,21 @@ icon_state = "wood" }, /area/centcom/legion/hangar5) -"xrQ" = ( -/obj/effect/floor_decal/spline/fancy/wood, -/obj/structure/disposalpipe/segment{ - dir = 4 +"xrP" = ( +/obj/machinery/light/small/emergency{ + dir = 1 }, -/obj/effect/floor_decal/spline/fancy/wood/corner{ - dir = 4 +/turf/simulated/floor/tiled/dark, +/area/horizon/maintenance/deck_2/wing/port/near) +"xrR" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/corner_wide/green/diagonal, +/obj/structure/bed/stool/chair/office/dark{ + dir = 8 }, -/obj/machinery/light, -/obj/machinery/alarm/south{ - req_one_access = list(24,11,55) - }, -/turf/simulated/floor/wood, -/area/horizon/crew_quarters/lounge/bar) +/turf/simulated/floor/tiled/white, +/area/horizon/medical/exam) "xrT" = ( /obj/structure/bed/stool/chair/office/dark{ dir = 4 @@ -163420,6 +164507,46 @@ icon_state = "dark_preview" }, /area/centcom/control) +"xrW" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor, +/area/horizon/maintenance/deck_3/aft/starboard/far) +"xsa" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/icu) +"xse" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/tank_wall/oxygen, +/turf/simulated/floor/plating, +/area/horizon/engineering/atmos/air) +"xsh" = ( +/obj/structure/cable/green{ + icon_state = "0-8" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/obj/machinery/power/apc/low/south, +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/xenoarch/isolation_a) +"xsl" = ( +/turf/simulated/wall, +/area/horizon/rnd/telesci) "xsn" = ( /obj/machinery/cryopod, /obj/effect/floor_decal/corner/dark_blue/diagonal, @@ -163446,24 +164573,6 @@ }, /turf/unsimulated/floor/monotile, /area/antag/mercenary) -"xsr" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/meter, -/obj/effect/floor_decal/spline/plain/cee{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/black{ - dir = 8 - }, -/turf/simulated/floor/carpet/rubber, -/area/tcommsat/entrance) -"xst" = ( -/obj/structure/window/shuttle/scc_space_ship, -/obj/structure/grille, -/turf/simulated/wall/shuttle/scc_space_ship/cardinal, -/area/maintenance/wing/port/deck1) "xsu" = ( /obj/effect/landmark{ name = "Nuclear-Bomb" @@ -163471,83 +164580,57 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/reinforced, /area/shuttle/mercenary) -"xsx" = ( -/obj/effect/landmark/entry_point/fore{ - name = "fore, main hangar" +"xsw" = ( +/obj/structure/table/standard, +/obj/effect/floor_decal/corner/beige{ + dir = 6 }, -/turf/unsimulated/wall/fakepdoor{ - dir = 4 +/obj/random/pottedplant_small{ + pixel_x = 7; + pixel_y = 2 }, -/area/hangar/intrepid) +/turf/simulated/floor/tiled, +/area/horizon/crew/vacantoffice) "xsA" = ( /obj/machinery/portable_atmospherics/canister/oxygen, /turf/unsimulated/floor, /area/antag/ninja) -"xsH" = ( -/obj/effect/floor_decal/corner/teal/diagonal, -/obj/item/material/kitchen/utensil/knife{ - pixel_x = -5; - pixel_y = -9 - }, -/obj/item/material/kitchen/rollingpin{ - pixel_x = -1; - pixel_y = -10 - }, -/obj/effect/decal/fake_object{ - desc = "A chalkboard with the menu of the cafe written on it."; - dir = 8; - icon = 'icons/obj/coffeemenu.dmi'; - icon_state = "right"; - name = "coffee menu chalkboard"; - pixel_x = 32 - }, -/obj/structure/table/stone/marble, -/obj/item/pen/black{ - pixel_x = 7; - pixel_y = 6 - }, -/obj/item/reagent_containers/cooking_container/board/bowl{ - pixel_y = -13 - }, -/obj/effect/floor_decal/spline/plain{ - dir = 4 - }, -/turf/simulated/floor/lino, -/area/horizon/cafeteria) -"xsK" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 10 - }, -/obj/machinery/light, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_two/fore) -"xsO" = ( -/obj/structure/railing/mapped, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 10 - }, -/obj/machinery/computer/ship/targeting{ - dir = 1; - req_access = list(19) +"xsC" = ( +/obj/machinery/atmospherics/valve{ + dir = 4; + name = "Equalization Valve" }, +/obj/effect/floor_decal/industrial/hatch/red, /turf/simulated/floor/tiled/dark, -/area/bridge/controlroom) +/area/horizon/engineering/atmos/propulsion) +"xsL" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/trash_pile, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/port) "xsP" = ( /obj/effect/shuttle_landmark/horizon/exterior/deck_2/port_fore, /turf/template_noop, /area/template_noop) -"xsS" = ( -/obj/effect/floor_decal/corner_wide/purple{ - dir = 10 - }, -/obj/effect/floor_decal/corner_wide/purple{ +"xsQ" = ( +/obj/effect/floor_decal/corner/dark_blue{ dir = 4 }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenoarch_atrium) +/obj/structure/bed/stool/chair/office/bridge/pilot, +/turf/simulated/floor/tiled/dark, +/area/horizon/command/bridge/controlroom) +"xsX" = ( +/obj/machinery/atmospherics/unary/vent_pump/siphon/on/atmos{ + dir = 4; + id_tag = "o2_out" + }, +/turf/simulated/floor/reinforced/oxygen, +/area/horizon/engineering/atmos/air) "xta" = ( /obj/structure/statue{ name = "mysterious statue"; @@ -163555,6 +164638,19 @@ }, /turf/unsimulated/floor/wood, /area/antag/actor) +"xtc" = ( +/obj/effect/floor_decal/corner_wide/blue{ + dir = 10 + }, +/obj/effect/floor_decal/corner_wide/yellow{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/firealarm/north, +/turf/simulated/floor/reinforced, +/area/horizon/command/bridge/selfdestruct) "xtf" = ( /obj/structure/closet/secure_closet/refrigerator/standard, /obj/effect/floor_decal/corner/grey/full{ @@ -163563,37 +164659,42 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/unsimulated/floor, /area/antag/mercenary) -"xtj" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 5 +"xth" = ( +/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/machinery/bookbinder, -/obj/structure/engineer_maintenance/electric/wall, -/turf/simulated/floor/wood, -/area/horizon/library) -"xtl" = ( /obj/effect/floor_decal/corner/dark_green{ - dir = 10 + dir = 6 }, -/obj/machinery/firealarm/south, /turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/starboard) -"xtn" = ( -/obj/structure/closet/radiation, -/obj/machinery/camera/network/engineering{ - c_tag = "Engineering - Gravity Generator Control Room" +/area/horizon/hangar/auxiliary) +"xtx" = ( +/obj/machinery/light{ + dir = 8 }, -/turf/simulated/floor/tiled/dark, -/area/engineering/gravity_gen) -"xtp" = ( -/obj/structure/flora/ausbushes/palebush, -/turf/simulated/floor/grass/no_edge, -/area/horizon/cafeteria) -"xtv" = ( /obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/suit_cycler/engineering/prepared, +/obj/structure/closet/hazmat/general, +/obj/item/tank/oxygen, +/obj/item/tank/oxygen, /turf/simulated/floor/tiled/dark/full, -/area/engineering/storage_eva) +/area/horizon/service/hydroponics/lower) +"xtz" = ( +/obj/structure/table/reinforced/wood, +/obj/item/clipboard, +/turf/simulated/floor/tiled/dark, +/area/horizon/command/bridge/meeting_room) +"xtA" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/light/small/emergency{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/wing/starboard) "xtB" = ( /obj/machinery/camera/network/prison{ c_tag = "Security - Brig Communal Aft" @@ -163606,45 +164707,67 @@ }, /turf/simulated/floor/tiled/white, /area/horizon/security/brig) -"xtH" = ( +"xtC" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 8 + }, +/obj/structure/disposalpipe/trunk, +/obj/machinery/disposal/small/east, +/obj/structure/extinguisher_cabinet/west, +/obj/effect/floor_decal/spline/plain{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/service/bar) +"xtD" = ( /obj/structure/cable/green{ - icon_state = "0-8" + icon_state = "4-8" }, -/obj/effect/floor_decal/corner/dark_green/full{ - dir = 1 - }, -/obj/machinery/power/apc/low/east, -/obj/structure/engineer_maintenance/pipe{ - dir = 1 - }, -/obj/structure/engineer_maintenance/electric{ +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/turf/simulated/floor/tiled, -/area/hangar/intrepid/interstitial) +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/door/airlock/medical{ + dir = 1; + name = "Staff Facilities"; + req_access = list(5) + }, +/obj/machinery/door/firedoor, +/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/full, +/area/horizon/medical/washroom) "xtJ" = ( /obj/item/device/flashlight/lantern, /turf/simulated/floor/holofloor/beach/sand{ icon_state = "desert4" }, /area/horizon/holodeck/source_beach) -"xtK" = ( -/turf/simulated/wall/r_wall, -/area/rnd/xenoarch_atrium) -"xtM" = ( -/obj/machinery/atmospherics/unary/engine/scc_shuttle, -/turf/simulated/floor/plating, -/area/shuttle/intrepid/engineering) -"xtU" = ( -/obj/structure/cable/green{ - icon_state = "4-8" +"xtQ" = ( +/obj/machinery/light/small{ + dir = 4 }, -/obj/structure/platform_stairs/full/east_west_cap{ - dir = 8 +/obj/structure/closet/crate, +/obj/effect/floor_decal/corner/brown/full{ + dir = 4 }, -/obj/structure/platform/cutout, +/obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled, -/area/hallway/engineering) +/area/horizon/operations/warehouse) +"xtS" = ( +/obj/machinery/door/airlock/command{ + dir = 4; + id_tag = "hopdoor"; + name = "Executive Officer's Office"; + req_access = list(57) + }, +/turf/simulated/floor/tiled, +/area/horizon/command/heads/xo) "xtV" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 @@ -163663,42 +164786,32 @@ }, /turf/simulated/floor/tiled, /area/horizon/security/brig) -"xtY" = ( -/obj/machinery/button/remote/blast_door{ - dir = 4; - id = "portpropulsionexterior"; - name = "Exterior Blast Door"; - pixel_x = 22; - pixel_y = -3 +"xuc" = ( +/obj/structure/disposalpipe/trunk{ + dir = 8 }, -/obj/machinery/button/remote/blast_door{ - dir = 4; - id = "portpropulsioninterior"; - name = "Interior Blast Door"; - pixel_x = 22; - pixel_y = 8 +/obj/structure/window/reinforced{ + dir = 8 }, -/obj/machinery/button/remote/airlock{ - dir = 4; - id = "port_combustion"; - name = "Door Bolt Control"; - pixel_x = 28; - pixel_y = 7; - req_access = list(10); - specialfunctions = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/visible/black{ +/obj/structure/window/reinforced{ dir = 1 }, -/obj/effect/floor_decal/corner_wide/black{ - dir = 6 - }, -/obj/effect/floor_decal/industrial/warning{ +/obj/machinery/disposal/deliveryChute{ dir = 4 }, -/obj/machinery/meter, -/turf/simulated/floor/tiled/dark, -/area/engineering/atmos/propulsion) +/obj/machinery/door/window/eastleft{ + req_access = list(55) + }, +/obj/machinery/door/blast/regular/open{ + fail_secure = 1; + id = "xenobio_a"; + name = "Cell Containment Blast Door" + }, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/rnd/xenobiology) "xue" = ( /obj/effect/floor_decal/spline/plain, /obj/effect/floor_decal/spline/plain{ @@ -163710,24 +164823,26 @@ /obj/structure/closet/crate/drop/grey, /turf/unsimulated/floor, /area/antag/mercenary) -"xuf" = ( -/obj/structure/table/rack, -/obj/random/loot, -/obj/machinery/light/small{ - dir = 4 +"xuj" = ( +/obj/structure/platform{ + dir = 8 }, -/turf/simulated/floor, -/area/maintenance/engineering_ladder) -"xug" = ( -/obj/effect/floor_decal/spline/fancy/wood{ +/obj/effect/floor_decal/industrial/outline/research, +/obj/structure/closet/secure_closet/RD, +/obj/machinery/light{ dir = 1 }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/random/pottedplant, /turf/simulated/floor/wood, -/area/journalistoffice) +/area/horizon/command/heads/rd) +"xuk" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/horizon/operations/warehouse) "xup" = ( /obj/machinery/light{ name = "adjusted light fixture"; @@ -163747,34 +164862,9 @@ icon_state = "wood" }, /area/centcom/distress_prep) -"xur" = ( -/obj/effect/floor_decal/corner_wide/yellow{ - dir = 9 - }, -/obj/machinery/light/spot{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/engineering/bluespace_drive) -"xuu" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/corner_wide/green{ - dir = 10 - }, -/obj/effect/floor_decal/corner_wide/green{ - dir = 1 - }, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/machinery/disposal/small/north, -/turf/simulated/floor/tiled/white, -/area/medical/exam) +"xut" = ( +/turf/simulated/wall/shuttle/scc_space_ship/cardinal, +/area/horizon/command/bridge/selfdestruct) "xuv" = ( /obj/effect/landmark/thunderdome2, /obj/effect/floor_decal/corner/grey/diagonal{ @@ -163783,29 +164873,63 @@ /obj/effect/decal/fake_object/light_source/invisible, /turf/simulated/floor/holofloor/tiled/dark, /area/tdome/tdome2) -"xuC" = ( -/obj/machinery/mineral/stacking_machine{ - id = "horizon_stacking_1"; +"xuw" = ( +/obj/machinery/camera/network/medbay{ + c_tag = "Medical - Cryogenics Control"; + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden{ dir = 8 }, -/obj/effect/floor_decal/industrial/warning/full, +/obj/structure/cable/green{ + icon_state = "2-4" + }, /turf/simulated/floor/plating, -/area/outpost/mining_main/refinery) -"xuF" = ( -/obj/effect/floor_decal/corner/brown/full{ - dir = 1 +/area/horizon/medical/cryo) +"xux" = ( +/obj/effect/floor_decal/corner/grey{ + dir = 9 }, -/obj/effect/floor_decal/industrial/loading/yellow{ +/obj/machinery/light/small{ dir = 8 }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/closet/crate, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/refinery) +/turf/unsimulated/floor/dark, +/area/antag/actor) +"xuy" = ( +/obj/machinery/portable_atmospherics/canister/empty, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/machinery/light/small/emergency, +/turf/simulated/floor, +/area/horizon/maintenance/deck_3/aft/starboard) +"xuA" = ( +/obj/effect/floor_decal/corner/mauve/full{ + dir = 8 + }, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/machinery/disposal/small/east, +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/telesci) +"xuH" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/structure/tank_wall/oxygen{ + icon_state = "o2-14" + }, +/turf/simulated/floor/plating, +/area/horizon/engineering/atmos/air) "xuJ" = ( /obj/structure/undies_wardrobe, /turf/simulated/floor/wood, /area/merchant_station) +"xuK" = ( +/obj/machinery/door/blast/shutters{ + dir = 4; + id = "cargo_desk" + }, +/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/operations/office) "xuR" = ( /obj/effect/floor_decal/corner/paleblue{ dir = 6 @@ -163816,6 +164940,19 @@ }, /turf/unsimulated/floor, /area/centcom/spawning) +"xuS" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/starboard/far) "xuT" = ( /obj/structure/railing/mapped{ dir = 4 @@ -163828,139 +164965,73 @@ }, /turf/unsimulated/floor, /area/centcom/evac) -"xuV" = ( -/obj/effect/decal/cleanable/dirt, +"xuW" = ( /obj/effect/floor_decal/industrial/warning{ - dir = 8 + dir = 4 }, -/obj/structure/closet, -/obj/random/loot, -/turf/simulated/floor, -/area/maintenance/security_port) -"xvd" = ( -/obj/structure/bed/stool/bar/padded/blue{ - dir = 8 - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/bridge/minibar) -"xvh" = ( -/obj/effect/floor_decal/industrial/outline/grey, -/obj/machinery/portable_atmospherics/canister/empty, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"xvk" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 - }, -/obj/structure/bed/handrail{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/shuttle/intrepid/buffet) -"xvl" = ( /obj/machinery/light{ dir = 4 }, -/obj/effect/floor_decal/corner/dark_green{ - dir = 6 - }, -/obj/machinery/vending/cola, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled, -/area/security/checkpoint2) -"xvm" = ( -/obj/effect/floor_decal/corner/mauve/full{ +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/industrial/warning{ dir = 8 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 +/turf/simulated/floor/reinforced, +/area/horizon/engineering/gravity_gen) +"xuY" = ( +/obj/effect/floor_decal/industrial/warning/cee{ + dir = 1 }, /obj/structure/cable/green{ - icon_state = "4-8" + d2 = 2; + icon_state = "0-2" }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology) -"xvq" = ( -/obj/structure/bed/stool/chair/office/dark, -/obj/effect/floor_decal/industrial/warning/corner{ +/obj/structure/grille, +/obj/structure/railing/mapped{ dir = 1 }, -/turf/simulated/floor/plating, -/area/maintenance/wing/port/far) -"xvt" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_mining{ - dir = 1; - name = "Operations Bay"; - req_one_access = list(26,29,31,48,67,70) +/turf/simulated/floor/tiled/dark/full/airless, +/area/horizon/command/bridge/controlroom) +"xvg" = ( +/obj/machinery/atmospherics/portables_connector, +/obj/machinery/door/window/southleft{ + name = "Canister Access" }, -/obj/effect/map_effect/door_helper/unres{ - dir = 1 +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/portable_atmospherics/canister/air/airlock, +/turf/simulated/floor, +/area/horizon/maintenance/deck_3/bridge) +"xvi" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 9 }, /turf/simulated/floor/tiled, -/area/operations/office) -"xvv" = ( -/obj/structure/bed/stool/chair/office/light{ +/area/horizon/engineering/locker_room) +"xvj" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 9 + }, +/obj/machinery/disposal/small/east, +/obj/structure/disposalpipe/trunk{ dir = 4 }, -/obj/effect/landmark/start{ - name = "Scientist" - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 10 - }, -/turf/simulated/floor/wood, -/area/rnd/conference) -"xvw" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 4 - }, -/obj/effect/floor_decal/corner/yellow, -/obj/machinery/atmospherics/binary/pump{ - dir = 8; - name = "Cooling Array to Turbine" - }, -/turf/simulated/floor/tiled/dark, -/area/engineering/engine_room/turbine) -"xvx" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_2/fore) +"xvu" = ( +/obj/structure/cable{ icon_state = "1-2" }, -/turf/simulated/floor/wood, -/area/horizon/crew_quarters/lounge/bar) +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/substation/xenoarchaeology) "xvy" = ( /obj/machinery/light, /turf/unsimulated/floor/plating, /area/centcom/suppy) -"xvA" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/turf/simulated/floor/lino, -/area/horizon/bar) "xvB" = ( /obj/random/pottedplant, /obj/effect/floor_decal/corner/paleblue/full{ @@ -163978,76 +165049,43 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/tiled/full, /area/horizon/security/equipment) -"xvI" = ( -/obj/structure/closet/walllocker/medical/secure{ - name = "Stabilization Kit"; - pixel_x = -32 - }, -/obj/item/bodybag/cryobag, -/obj/item/bodybag/cryobag, -/obj/item/bodybag/cryobag, +"xvM" = ( /obj/effect/floor_decal/industrial/warning{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 5 - }, -/obj/effect/floor_decal/corner_wide/green{ - dir = 9 - }, -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/obj/item/tank/oxygen, -/obj/item/tank/oxygen, -/obj/item/tank/oxygen, -/obj/item/tank/oxygen, -/obj/item/clothing/mask/breath/medical, -/obj/item/clothing/mask/breath/medical, -/obj/item/clothing/mask/breath/medical, -/obj/item/clothing/mask/breath/medical, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/gen_treatment) -"xvK" = ( -/obj/effect/floor_decal/spline/fancy/wood/cee{ +/obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 }, -/obj/structure/flora/ausbushes/ywflowers, -/turf/simulated/floor/grass/no_edge, -/area/bridge) -"xvP" = ( -/obj/machinery/portable_atmospherics/canister/phoron, -/obj/machinery/door/window/northleft{ - name = "Canister Storage Access"; - req_access = list(65) - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/reinforced, -/area/rnd/xenoarch_atrium) -"xvU" = ( -/obj/effect/floor_decal/corner/mauve/diagonal, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/horizon/hangar/operations) +"xvX" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/turf/simulated/floor/tiled/white, -/area/rnd/lab) -"xvV" = ( -/obj/machinery/firealarm/south, -/obj/effect/floor_decal/corner_wide/yellow{ - dir = 10 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 }, -/turf/simulated/floor/tiled, -/area/engineering/engine_room/rust) +/obj/structure/sign/fire{ + desc = "A caution sign which reads 'COMBUSTION TURBINE'."; + name = "\improper COMBUSTION TURBINE sign"; + pixel_y = 32 + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/main/starboard) +"xwc" = ( +/obj/effect/floor_decal/corner_wide/black/full{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/structure/engineer_maintenance/pipe/wall, +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/atmos/propulsion/starboard) "xwg" = ( /obj/machinery/porta_turret/net{ check_arrest = 0; @@ -164059,62 +165097,32 @@ }, /turf/simulated/floor/tiled/dark, /area/shuttle/merchant) -"xwm" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/corner/brown{ - dir = 9 - }, -/obj/effect/floor_decal/industrial/warning/corner{ +"xwv" = ( +/obj/structure/railing/mapped{ dir = 4 }, -/obj/structure/table/standard, -/obj/machinery/camera/network/supply{ - c_tag = "Operations - Mail Sorting"; - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/operations/mail_room) -"xwo" = ( -/obj/machinery/iff_beacon/horizon/shuttle{ - density = 1; - pixel_y = -15 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 10 - }, -/turf/simulated/floor/reinforced/airless, -/area/shuttle/mining) -"xwu" = ( -/obj/structure/cable/green{ - icon_state = "0-2" - }, -/obj/machinery/power/apc/east, -/obj/effect/floor_decal/corner_wide/green{ - dir = 6 - }, -/obj/effect/floor_decal/corner_wide/green{ +/obj/structure/railing/mapped{ dir = 1 }, -/obj/structure/table/standard, -/turf/simulated/floor/tiled/white, -/area/medical/exam) -"xwA" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 +/turf/simulated/open, +/area/horizon/maintenance/deck_2/wing/port/near) +"xwy" = ( +/obj/effect/shuttle_landmark/escape_pod/start/pod1, +/turf/simulated/floor/shuttle/dark_blue, +/area/horizon/shuttle/escape_pod/pod2) +"xwC" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 5 }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 +/obj/machinery/light/small{ + dir = 1 }, -/obj/machinery/door/firedoor/multi_tile{ - dir = 2 +/obj/structure/closet/walllocker/medical/firstaid{ + pixel_y = 32 }, -/obj/machinery/door/airlock/multi_tile/glass{ - dir = 1; - name = "Deck 1 Port Stairwell Auxiliary Hangar Elevator" - }, -/turf/simulated/floor/tiled/full, -/area/rnd/eva) +/obj/effect/floor_decal/industrial/outline/medical, +/turf/simulated/floor/tiled/dark, +/area/horizon/weapons/grauwolf) "xwF" = ( /obj/effect/floor_decal/corner/dark_blue{ dir = 9 @@ -164127,16 +165135,6 @@ }, /turf/simulated/floor/tiled, /area/horizon/security/hallway) -"xwK" = ( -/obj/machinery/light/small, -/obj/machinery/atmospherics/pipe/manifold/hidden, -/obj/effect/map_effect/marker/airlock/docking{ - landmark_tag = "nav_horizon_dock_deck_3_port_5"; - master_tag = "airlock_horizon_dock_deck_3_port_5"; - name = "airlock_horizon_dock_deck_3_port_5" - }, -/turf/simulated/floor/plating, -/area/horizon/hallway/deck_three/primary/port/docks) "xwN" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 1 @@ -164144,15 +165142,6 @@ /obj/effect/floor_decal/corner/brown/diagonal, /turf/simulated/floor/tiled/dark, /area/horizon/holodeck_control) -"xwP" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/port) "xwT" = ( /obj/machinery/atmospherics/pipe/simple/visible/red{ dir = 5 @@ -164161,32 +165150,97 @@ /obj/machinery/atmospherics/pipe/simple/visible/fuel, /turf/space/dynamic, /area/horizon/exterior) -"xxk" = ( -/obj/structure/bed/roller, -/obj/effect/floor_decal/industrial/warning/corner{ +"xwU" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/platform{ dir = 4 }, -/obj/effect/floor_decal/industrial/outline/medical, -/turf/simulated/floor/tiled/white, -/area/medical/gen_treatment) -"xxt" = ( -/obj/structure/bed/stool/chair/sofa/pew/left{ +/obj/structure/platform{ dir = 8 }, +/turf/simulated/floor/carpet/rubber, +/area/horizon/command/bridge/controlroom) +"xxb" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/auxatmos) +"xxc" = ( +/obj/machinery/portable_atmospherics/hydroponics, +/obj/effect/floor_decal/industrial/outline/service, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/service/hydroponics) +"xxg" = ( /obj/effect/floor_decal/spline/fancy/wood{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/chapel/main) -"xxA" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/effect/floor_decal/corner/brown{ dir = 4 }, -/turf/simulated/floor/tiled, -/area/operations/break_room) +/obj/machinery/light/small/floor, +/turf/simulated/floor/wood, +/area/horizon/service/cafeteria) +"xxi" = ( +/turf/simulated/floor/carpet/rubber, +/area/horizon/rnd/lab) +"xxj" = ( +/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/horizon/shuttle/quark/cockpit) +"xxu" = ( +/turf/simulated/wall, +/area/horizon/engineering/hallway/interior) +"xxw" = ( +/obj/structure/bed/stool/chair/sofa/right/purple{ + dir = 1 + }, +/obj/machinery/camera/network/research{ + c_tag = "Research - Research Director's Office Foyer"; + dir = 8 + }, +/obj/machinery/alarm/south, +/turf/simulated/floor/carpet/purple, +/area/horizon/command/heads/rd) +"xxy" = ( +/obj/structure/table/standard, +/obj/effect/floor_decal/corner/grey/diagonal, +/obj/machinery/button/remote/airlock{ + id = "main_door"; + name = "Triage Door Control"; + pixel_y = 7; + req_access = list(5) + }, +/obj/machinery/door/window{ + name = "Reception Desk"; + req_access = list(5) + }, +/obj/machinery/button/remote/blast_door{ + id = "entrance_shutters"; + name = "Entrance Shutters Control"; + pixel_y = -5; + req_access = list(5) + }, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/reception) +"xxB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 10 + }, +/obj/machinery/door/airlock/external, +/obj/effect/map_effect/marker/airlock{ + frequency = 1003; + master_tag = "airlock_horizon_deck_1_starboard_1"; + name = "airlock_horizon_deck_1_starboard_1" + }, +/obj/effect/map_effect/marker_helper/airlock/interior, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/wing/starboard/far) +"xxC" = ( +/obj/structure/table/rack, +/obj/random/loot, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/starboard/far) "xxE" = ( /obj/machinery/turretid{ check_arrest = 0; @@ -164197,83 +165251,170 @@ }, /turf/simulated/floor/shuttle/dark_red, /area/shuttle/hapt) -"xxP" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 9 - }, -/obj/machinery/light{ +"xxH" = ( +/obj/effect/floor_decal/corner_wide/blue, +/obj/effect/floor_decal/corner_wide/yellow{ dir = 8 }, -/obj/machinery/atmospherics/unary/vent_pump/on{ +/obj/effect/floor_decal/spline/plain, +/obj/machinery/atmospherics/pipe/simple/hidden/universal{ dir = 4 }, +/obj/machinery/meter, /turf/simulated/floor/tiled, -/area/storage/primary) -"xxT" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, +/area/horizon/engineering/atmos/storage) +"xxJ" = ( /obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/full, +/area/horizon/maintenance/deck_2/wing/port/far) +"xxM" = ( +/obj/effect/floor_decal/corner_wide/purple{ + dir = 10 + }, +/obj/effect/floor_decal/corner_wide/purple{ + dir = 4 + }, +/obj/machinery/door/firedoor, /turf/simulated/floor/tiled/white, -/area/medical/icu) +/area/horizon/rnd/xenoarch/atrium) +"xxS" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/corner/beige{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/horizon/crew/vacantoffice) "xxU" = ( /turf/unsimulated/floor{ dir = 4 }, /area/centcom/holding) -"xxW" = ( -/obj/structure/cable/green{ - icon_state = "1-2" +"xyh" = ( +/obj/machinery/atmospherics/pipe/manifold4w/visible/black, +/obj/machinery/meter, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/reactor/supermatter/waste) +"xyj" = ( +/obj/machinery/alarm/south, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 }, +/obj/effect/floor_decal/spline/plain, +/turf/simulated/floor/carpet/rubber, +/area/horizon/engineering/reactor/indra/monitoring) +"xyl" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor, +/area/horizon/hallway/primary/deck_3/central) +"xym" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 6 + }, +/obj/machinery/button/remote/blast_door{ + dir = 4; + id = "xenobio_c"; + name = "Cell Containment Blast Doors"; + pixel_x = 21; + req_access = list(47) + }, +/obj/structure/sink{ + dir = 4; + pixel_x = 12 + }, +/obj/effect/floor_decal/industrial/outline_corner/security{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/xenobiology) +"xyr" = ( +/obj/structure/sign/flag/scc{ + pixel_y = -32 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/universal{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/camera/network/command{ + c_tag = "Bridge - CIC"; + dir = 1 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/command/bridge/aibunker) +"xyx" = ( /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/horizon/shuttle/quark/cargo_hold) +"xyy" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/effect/floor_decal/corner/dark_green, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_2/central) +"xyz" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, /obj/structure/railing/mapped, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/bluespace_drive) -"xya" = ( -/obj/structure/extinguisher_cabinet/north, -/obj/effect/floor_decal/corner/brown{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/rnd/hallway) -"xyd" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 1 - }, -/turf/simulated/floor/carpet/rubber, -/area/rnd/lab) -"xyg" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/structure/cable/green{ - icon_state = "2-4" - }, -/obj/structure/disposalpipe/junction{ - dir = 1 - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, /turf/simulated/floor/plating, -/area/horizon/maintenance/deck_two/fore/starboard) -"xyv" = ( -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard) +/area/horizon/maintenance/deck_2/wing/port/near) "xyA" = ( /obj/structure/lattice, /obj/structure/sign/fire{ @@ -164281,53 +165422,29 @@ }, /turf/space/dynamic, /area/template_noop) -"xyD" = ( -/obj/effect/map_effect/window_spawner/full/borosilicate/reinforced/firedoor, -/obj/machinery/door/blast/regular/open{ - dir = 8; - fail_secure = 1; - id = "telesci_lockdown"; - name = "Hazardous Containment Lockdown" - }, -/turf/simulated/floor/tiled/dark/full, -/area/rnd/telesci) -"xyF" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/obj/effect/floor_decal/industrial/hatch/red, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/aux{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge/selfdestruct) -"xyI" = ( -/obj/effect/floor_decal/spline/plain/corner, -/turf/simulated/floor/exoplanet/grass, -/area/centcom/shared_dream) -"xyJ" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/industrial/warning{ +"xyC" = ( +/obj/effect/floor_decal/industrial/warning/corner{ dir = 4 }, /obj/structure/lattice/catwalk/indoor/grate/dark, /obj/structure/railing/mapped{ - dir = 8 + dir = 4 }, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard) +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/dark/full/airless, +/area/horizon/command/bridge/controlroom) +"xyI" = ( +/obj/effect/floor_decal/spline/plain/corner, +/turf/simulated/floor/exoplanet/grass, +/area/centcom/shared_dream) "xyL" = ( /obj/effect/floor_decal/corner/red/full{ dir = 1 @@ -164340,38 +165457,6 @@ icon_state = "dark_preview" }, /area/centcom/holding) -"xyM" = ( -/obj/effect/floor_decal/corner/grey/diagonal{ - dir = 8 - }, -/obj/machinery/firealarm/east, -/obj/structure/closet/secure_closet/refrigerator/cafe, -/obj/effect/floor_decal/industrial/outline/grey, -/turf/simulated/floor/tiled/white, -/area/horizon/cafeteria) -"xyQ" = ( -/obj/machinery/door/window{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 6 - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor, -/area/horizon/hallway/deck_three/primary/port/docks) -"xyW" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/machinery/door/airlock/maintenance{ - dir = 1; - req_one_access = list(12,63) - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/full, -/area/maintenance/security_port) "xyZ" = ( /obj/structure/railing/mapped, /obj/machinery/light{ @@ -164380,127 +165465,143 @@ /obj/structure/flora/ausbushes/sparsegrass, /turf/simulated/floor/grass/no_edge, /area/centcom/bar) -"xzb" = ( +"xzd" = ( /obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/structure/engineer_maintenance/pipe/wall, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/engine_room/rust) -"xzc" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/engineering/lobby) -"xzm" = ( -/obj/effect/floor_decal/corner/beige{ - dir = 9 - }, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge/aibunker) -"xzp" = ( -/obj/machinery/door/firedoor{ dir = 4 }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/airlock/command{ - dir = 4; - id_tag = "researchdoor"; - name = "Research Director's Office"; - req_access = list(30) +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/reactor/indra/mainchamber) +"xze" = ( +/obj/structure/cable{ + icon_state = "1-2" }, /obj/structure/cable/green{ icon_state = "4-8" }, -/turf/simulated/floor/tiled, -/area/crew_quarters/heads/hor) -"xzu" = ( -/obj/structure/closet/emcloset, -/obj/effect/floor_decal/corner/white/diagonal, -/obj/effect/floor_decal/spline/plain{ - dir = 4 +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/full, +/area/horizon/engineering/hallway/aft) +"xzh" = ( +/obj/machinery/light/spot{ + dir = 4; + must_start_working = 1 }, -/obj/effect/floor_decal/industrial/outline/emergency_closet, -/turf/simulated/floor/tiled/dark, -/area/horizon/hallway/deck_three/primary/central) -"xzw" = ( +/obj/effect/floor_decal/industrial/outline/grey, +/obj/structure/survey_probe{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/horizon/hangar/intrepid) +"xzi" = ( +/obj/structure/window/shuttle/scc_space_ship, /obj/structure/grille, /obj/machinery/door/firedoor, -/obj/effect/landmark/entry_point/port{ - name = "port, kitchen" +/obj/machinery/atmospherics/pipe/simple/hidden/aux, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 1 }, -/obj/structure/window/shuttle/scc_space_ship/cardinal, +/obj/machinery/atmospherics/pipe/simple/hidden/green, /turf/simulated/floor/plating, -/area/horizon/stairwell/bridge) -"xzz" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 8 - }, -/turf/simulated/floor/carpet/rubber, -/area/engineering/bluespace_drive/monitoring) -"xzC" = ( +/area/horizon/stairwell/engineering/deck_1) +"xzj" = ( /obj/effect/floor_decal/spline/fancy/wood{ - dir = 8 + dir = 10 }, +/obj/structure/bed/stool/chair/padded/brown{ + dir = 1 + }, +/obj/structure/railing/mapped, /turf/simulated/floor/wood, -/area/operations/qm) -"xzE" = ( -/obj/machinery/power/portgen/basic, -/obj/effect/floor_decal/industrial/warning/full, -/obj/structure/cable/green, -/obj/item/stack/material/graphite/full, -/turf/simulated/floor, -/area/bridge/aibunker) -"xzF" = ( -/obj/structure/disposalpipe/sortjunction{ - name = "Machinist Workshop"; - sortType = "Machinist Workshop" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ +/area/horizon/service/cafeteria) +"xzo" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 }, -/turf/simulated/floor/tiled, -/area/operations/lower/machinist) +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/effect/floor_decal/corner/black{ + dir = 6 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/hangar/intrepid) +"xzq" = ( +/obj/structure/table/standard{ + no_cargo = 1 + }, +/obj/random/contraband, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/auxatmos) +"xzD" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 10 + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/wing/starboard/far) +"xzF" = ( +/turf/simulated/wall, +/area/horizon/maintenance/deck_1/main/port) +"xzG" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/fuel, +/obj/machinery/atmospherics/portables_connector/scrubber, +/obj/machinery/portable_atmospherics/canister/empty, +/turf/simulated/floor/tiled/dark, +/area/horizon/shuttle/intrepid/engineering) "xzI" = ( /obj/effect/floor_decal/corner/dark_blue{ dir = 6 }, /turf/simulated/floor/tiled/dark, /area/shuttle/hapt) -"xzQ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/aux{ +"xzO" = ( +/turf/simulated/floor/tiled/ramp/bottom{ dir = 8 }, -/obj/machinery/atmospherics/pipe/manifold/hidden/fuel{ +/area/horizon/maintenance/deck_1/wing/starboard) +"xzP" = ( +/obj/effect/floor_decal/spline/plain, +/obj/effect/floor_decal/spline/plain{ dir = 1 }, -/obj/effect/floor_decal/industrial/outline_door/red{ - dir = 1 +/obj/structure/engineer_maintenance/pipe/wall, +/turf/simulated/floor/carpet/rubber, +/area/horizon/tcommsat/chamber) +"xzS" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 }, -/obj/structure/cable/green{ - icon_state = "2-8" +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/effect/floor_decal/corner/black{ + dir = 9 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 }, /turf/simulated/floor/tiled/dark, -/area/shuttle/quark/cargo_hold) -"xzW" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 10 - }, -/obj/structure/table/stone/marble, -/obj/machinery/chemical_dispenser/bar_alc/full{ - dir = 4; - pixel_y = 6 +/area/horizon/hangar/intrepid) +"xzY" = ( +/obj/machinery/alarm/east, +/obj/effect/floor_decal/corner/dark_green/full{ + dir = 1 }, /obj/machinery/light{ - dir = 8 + dir = 1 }, -/turf/simulated/floor/marble/dark, -/area/bridge/minibar) +/turf/simulated/floor/tiled, +/area/horizon/stairwell/port/deck_2) "xzZ" = ( /obj/machinery/door/airlock/centcom{ name = "Checkpoint Equipment Room"; @@ -164508,19 +165609,19 @@ }, /turf/unsimulated/floor, /area/centcom/legion) -"xAb" = ( -/obj/structure/cable{ - icon_state = "1-4" - }, +"xAa" = ( +/obj/effect/floor_decal/corner_wide/green/full, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 + dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 + dir = 4 }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/maintenance/wing/port) +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/hallway) "xAd" = ( /obj/machinery/computer/shuttle_control{ can_rename_ship = 1; @@ -164530,35 +165631,6 @@ }, /turf/simulated/floor/shuttle/dark_blue, /area/shuttle/transport1) -"xAe" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/structure/railing/mapped{ - dir = 1; - pixel_y = 8 - }, -/turf/simulated/floor/plating, -/area/hangar/intrepid) -"xAf" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/aux{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 9 - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/maintenance/operations) "xAi" = ( /obj/machinery/shower{ dir = 1 @@ -164569,32 +165641,20 @@ }, /turf/unsimulated/floor/freezer, /area/antag/mercenary) -"xAk" = ( -/obj/structure/shuttle_part/scc/scout{ - icon_state = "6,4"; - outside_part = 0 +"xAm" = ( +/obj/effect/floor_decal/corner_wide/yellow/diagonal{ + dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel, -/turf/simulated/floor/reinforced{ - blocks_air = 1; - density = 1; - name = "thruster mount"; - opacity = 1 +/obj/effect/floor_decal/corner_wide/blue/diagonal, +/obj/effect/floor_decal/spline/plain{ + dir = 1 }, -/area/shuttle/canary) +/obj/effect/floor_decal/spline/plain, +/turf/simulated/floor/tiled, +/area/horizon/engineering/atmos/storage) "xAo" = ( /turf/simulated/wall/shuttle/scc_space_ship/cardinal, /area/horizon/security/firing_range) -"xAq" = ( -/obj/machinery/mecha_part_fabricator{ - dir = 8 - }, -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/structure/railing/mapped, -/turf/simulated/floor/tiled/dark/full, -/area/operations/lower/machinist) "xAs" = ( /obj/effect/floor_decal/spline/plain{ dir = 4 @@ -164605,37 +165665,14 @@ /obj/structure/flora/ausbushes/fullgrass, /turf/simulated/floor/exoplanet/grass/grove, /area/centcom/shared_dream) +"xAz" = ( +/obj/structure/bed/stool/chair/sofa/orange, +/turf/simulated/floor/carpet/red, +/area/horizon/service/bar) "xAA" = ( /obj/effect/floor_decal/industrial/outline/red, /turf/simulated/floor/holofloor/carpet/rubber, /area/horizon/holodeck/source_basketball) -"xAB" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 10 - }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_two) -"xAF" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/reinforced/airless, -/area/engineering/engine_room/rust) -"xAG" = ( -/obj/effect/floor_decal/corner/brown{ - dir = 9 - }, -/obj/effect/landmark/start{ - name = "Shaft Miner" - }, -/turf/simulated/floor/tiled/dark, -/area/outpost/mining_main/eva) "xAJ" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 8 @@ -164650,15 +165687,6 @@ icon_state = "desert" }, /area/centcom/shared_dream) -"xAU" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/hangar/intrepid) "xAY" = ( /obj/structure/closet/secure_closet/guncabinet{ name = "FIB Sidearm"; @@ -164689,43 +165717,9 @@ icon_state = "dark_preview" }, /area/centcom/control) -"xBf" = ( -/obj/structure/window/shuttle/scc_space_ship, -/obj/structure/grille, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/engineering/atmos/propulsion) -"xBi" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/machinery/light/small/emergency{ - dir = 4 - }, -/turf/simulated/floor, -/area/horizon/maintenance/deck_three/aft/starboard) -"xBl" = ( -/obj/structure/railing/mapped, -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/floor_decal/industrial/warning{ - dir = 6 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/sign/directions/prop{ - dir = 1; - pixel_y = 24 - }, -/turf/simulated/floor/plating, -/area/maintenance/aft) +"xBh" = ( +/turf/simulated/wall/shuttle/scc_space_ship/cardinal, +/area/horizon/command/bridge/controlroom) "xBn" = ( /obj/effect/map_effect/window_spawner/full/reinforced/grille/firedoor, /obj/machinery/door/blast/regular/open{ @@ -164733,77 +165727,110 @@ }, /turf/simulated/floor/tiled/dark/full, /area/shuttle/hapt) -"xBr" = ( +"xBq" = ( +/obj/effect/floor_decal/spline/plain/black{ + dir = 9 + }, +/obj/effect/floor_decal/corner/dark_green, +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled, +/area/horizon/crew/fitness/gym) +"xBv" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 10 + }, +/obj/machinery/light/floor, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_3/port) +"xBz" = ( +/obj/structure/tank_wall/nitrogen{ + density = 0; + icon_state = "n6"; + opacity = 0 + }, +/obj/machinery/atmospherics/pipe/manifold/visible/green{ + dir = 1 + }, +/turf/simulated/floor/reinforced/nitrogen, +/area/horizon/engineering/atmos/air) +"xBE" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/horizon/operations/office) +"xBG" = ( +/obj/effect/floor_decal/corner_wide/purple{ + dir = 8 + }, +/obj/effect/floor_decal/corner_wide/purple{ + dir = 5 + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, /obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/white, -/area/medical/ors) -"xBs" = ( -/obj/machinery/light/small{ dir = 4 }, -/obj/effect/floor_decal/corner/brown{ - dir = 6 +/obj/structure/cable/green{ + icon_state = "4-8" }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/intrepid/port_compartment) -"xBJ" = ( -/obj/effect/floor_decal/industrial/warning/corner{ +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/xenoarch/atrium) +"xBR" = ( +/obj/structure/sign/radiation{ + pixel_y = 32 + }, +/obj/machinery/alarm/west, +/obj/machinery/light{ dir = 1 }, +/obj/structure/closet/radiation, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/turf/simulated/floor/tiled/full, +/area/horizon/engineering/reactor/supermatter/airlock) +"xBV" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/engine_room) -"xBM" = ( -/obj/effect/floor_decal/industrial/loading/engineering{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/bluespace_drive) -"xBP" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/effect/floor_decal/spline/plain{ - dir = 1 +/obj/effect/floor_decal/corner/mauve{ + dir = 5 }, /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/simulated/floor/tiled/white, -/area/horizon/kitchen) -"xBX" = ( -/obj/machinery/door/airlock/security{ - dir = 1; - name = "Deck 2 Starboard Docks - Security Checkpoint"; - req_access = list(63) - }, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - icon_state = "1-2" +/obj/machinery/light/floor{ + dir = 1 }, /turf/simulated/floor/tiled, -/area/security/checkpoint2) -"xBY" = ( -/obj/effect/decal/cleanable/dirt, -/obj/random/junk, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" +/area/horizon/rnd/hallway) +"xBW" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 }, -/turf/simulated/floor/plating, -/area/maintenance/operations) +/turf/simulated/floor/tiled, +/area/horizon/operations/office) "xBZ" = ( /obj/structure/lattice/catwalk, /obj/item/hullbeacon/red, @@ -164814,19 +165841,10 @@ }, /turf/space/dynamic, /area/horizon/exterior) -"xCd" = ( -/obj/effect/floor_decal/corner_wide/yellow/diagonal, -/obj/machinery/requests_console/south{ - department = "Engineering"; - departmentType = 1; - name = "Engineering Breakroom RC" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/table/steel, -/turf/simulated/floor/tiled/dark, -/area/engineering/break_room) +"xCj" = ( +/obj/structure/sign/electricshock, +/turf/simulated/wall/r_wall, +/area/horizon/tcommsat/chamber) "xCl" = ( /obj/effect/decal/fake_object{ dir = 4; @@ -164848,25 +165866,9 @@ name = "shallow water" }, /area/horizon/holodeck/source_konyang) -"xCn" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled/dark, -/area/storage/eva) -"xCq" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/maintenance_hatch{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"xCr" = ( -/obj/effect/floor_decal/corner/dark_blue/full, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/central) +"xCs" = ( +/turf/simulated/wall/r_wall, +/area/horizon/maintenance/deck_2/service/starboard) "xCv" = ( /obj/structure/closet/crate/secure/legion{ locked = 0; @@ -164884,55 +165886,17 @@ }, /turf/unsimulated/floor, /area/centcom/legion/hangar5) -"xCx" = ( +"xCw" = ( /obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/structure/railing/mapped{ - dir = 8 + dir = 1 }, +/obj/structure/engineer_maintenance/pipe/wall, /turf/simulated/floor/tiled/dark/full, -/area/engineering/engine_room/rust) -"xCz" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/effect/decal/cleanable/cobweb2, -/obj/structure/plasticflaps/airtight, -/obj/machinery/door/airlock/hatch{ - dir = 4; - name = "Deck 2 Starboard Pod"; - req_access = list(12) - }, -/obj/item/tape/engineering{ - icon_state = "engineering_door" - }, -/turf/simulated/floor/tiled/dark, -/area/maintenance/wing/starboard/far) +/area/horizon/engineering/reactor/indra/mainchamber) "xCC" = ( /obj/structure/lattice, /turf/space/dynamic, /area/antag/raider) -"xCD" = ( -/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/lime{ - dir = 5 - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/full, -/area/medical/morgue/lower) "xCE" = ( /obj/structure/cable/green{ icon_state = "1-2" @@ -164950,31 +165914,115 @@ }, /turf/simulated/floor/tiled, /area/horizon/security/hallway) +"xCH" = ( +/obj/effect/floor_decal/industrial/warning/corner, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/reinforced/airless, +/area/horizon/exterior) +"xCI" = ( +/obj/structure/platform/ledge{ + dir = 4 + }, +/turf/simulated/open, +/area/horizon/hallway/primary/deck_3/central) "xCL" = ( /obj/machinery/hologram/holopad, /turf/simulated/floor/tiled/dark, /area/horizon/security/meeting_room) -"xCT" = ( -/obj/effect/floor_decal/industrial/outline/grey, -/obj/structure/reagent_dispensers/watertank, -/turf/simulated/floor/plating, -/area/hangar/intrepid) -"xDk" = ( -/obj/machinery/door/airlock/external, -/obj/effect/floor_decal/industrial/hatch/red, -/obj/effect/floor_decal/industrial/warning/cee{ +"xCS" = ( +/obj/structure/table/wood, +/obj/item/flame/candle, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/obj/effect/floor_decal/spline/fancy/wood{ 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/machinery/power/apc/low/east, +/obj/structure/cable/green{ + icon_state = "0-8" }, -/obj/effect/map_effect/marker_helper/airlock/exterior, -/turf/simulated/floor/plating, -/area/shuttle/quark/cargo_hold) +/turf/simulated/floor/wood, +/area/horizon/service/chapel/main) +"xCU" = ( +/obj/effect/floor_decal/corner/brown/diagonal, +/turf/simulated/floor/tiled/dark, +/area/horizon/operations/mining_main/eva) +"xCX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/structure/disposalpipe/junction{ + dir = 4; + icon_state = "pipe-j2" + }, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/full, +/area/horizon/hallway/primary/deck_3/port) +"xDa" = ( +/obj/structure/table/rack, +/obj/item/trap/animal/medium, +/obj/item/trap/animal/medium, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/rnd/xenobiology/foyer) +"xDb" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/platform_deco{ + dir = 4 + }, +/obj/structure/platform_deco{ + dir = 8 + }, +/turf/simulated/floor/carpet/rubber, +/area/horizon/command/bridge/controlroom) +"xDc" = ( +/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/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/horizon/command/bridge/meeting_room) +"xDe" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 9 + }, +/obj/machinery/firealarm/west, +/turf/simulated/floor/tiled, +/area/horizon/hangar/intrepid/interstitial) +"xDi" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/reagent_dispensers/fueltank, +/turf/simulated/floor/tiled/dark, +/area/horizon/maintenance/deck_2/wing/port/far) +"xDj" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 10 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/disposal/small/east, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/horizon/rnd/hallway) "xDm" = ( /obj/machinery/light{ dir = 1 @@ -164986,6 +166034,15 @@ }, /turf/simulated/floor/tiled/white, /area/horizon/security/brig) +"xDp" = ( +/obj/structure/bed/handrail{ + dir = 4 + }, +/obj/structure/bed/stool/bar/padded/red{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/shuttle/intrepid/junction_compartment) "xDq" = ( /obj/effect/decal/fake_object{ name = "service ladder"; @@ -164997,23 +166054,51 @@ }, /turf/unsimulated/floor/plating, /area/antag/ninja) -"xDB" = ( -/obj/effect/map_effect/window_spawner/full/reinforced/polarized/grille/firedoor{ - id = "consularA" +"xDt" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 9 + }, +/turf/simulated/wall/shuttle/scc, +/area/horizon/shuttle/intrepid/port_storage) +"xDu" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/obj/structure/bed/stool/chair/sofa/right/red{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/horizon/rnd/hallway) +"xDv" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/service/bar) +"xDw" = ( +/obj/structure/cable{ + icon_state = "4-8" }, /obj/structure/cable/green{ - icon_state = "0-2" + icon_state = "1-2" }, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "bridge blast"; - name = "Bridge Blast Doors"; - opacity = 0 +/obj/effect/floor_decal/industrial/warning{ + dir = 1 }, -/turf/simulated/floor, -/area/lawoffice/consular) +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/wing/starboard) "xDC" = ( /obj/effect/floor_decal/corner/dark_blue{ dir = 10 @@ -165026,6 +166111,9 @@ }, /turf/simulated/floor/tiled, /area/horizon/security/holding_cell_b) +"xDE" = ( +/turf/simulated/floor/carpet/rubber, +/area/horizon/crew/fitness/gym) "xDF" = ( /obj/machinery/light/small{ dir = 4; @@ -165034,29 +166122,17 @@ /obj/structure/table/reinforced/steel, /turf/unsimulated/floor/linoleum, /area/antag/actor) -"xDH" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/yellow{ - icon_state = "1-2" +"xDK" = ( +/obj/effect/map_effect/window_spawner/full/borosilicate/reinforced, +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id = "SupermatterPort"; + name = "Reactor Blast Door"; + opacity = 0 }, -/obj/effect/floor_decal/corner_wide/yellow{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/engineering/engine_room/rust) -"xDI" = ( -/obj/structure/lattice/catwalk/indoor/grate/damaged{ - color = "#4c535b" - }, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard/deck1) -"xDO" = ( -/obj/structure/disposalpipe/segment{ - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/central) +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/reactor/supermatter/mainchamber) "xDQ" = ( /obj/machinery/vending/coffee, /obj/machinery/vending/coffee{ @@ -165068,68 +166144,83 @@ icon_state = "white" }, /area/tdome/tdomeobserve) -"xDS" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 4 +"xDT" = ( +/obj/effect/floor_decal/corner_wide/yellow{ + dir = 9 }, -/obj/machinery/airlock_sensor{ - dir = 4; - pixel_x = -20 +/obj/structure/cable/green{ + icon_state = "1-2" }, -/obj/effect/map_effect/marker/airlock{ - frequency = 3002; - master_tag = "airlock_horizon_deck_2_port_1"; - name = "airlock_horizon_deck_2_port_1" - }, -/turf/simulated/floor, -/area/maintenance/wing/port/far) -"xDY" = ( -/turf/simulated/wall/shuttle/scc, -/area/shuttle/escape_pod/pod3) -"xEa" = ( -/obj/structure/bed/stool/chair/sofa/left/brown, -/turf/simulated/floor/wood, -/area/medical/psych) -"xEb" = ( -/obj/effect/map_effect/window_spawner/full/reinforced/polarized/firedoor{ - id = "library" - }, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/commissary) -"xEh" = ( -/obj/structure/shuttle/engine/heater{ - dir = 1 - }, -/obj/structure/railing/mapped, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/maintenance/wing/port/far) -"xEu" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 1 - }, -/obj/machinery/portable_atmospherics/canister/air/airlock, -/turf/simulated/floor/plating, -/area/maintenance/hangar/starboard) -"xEz" = ( -/obj/structure/bed/stool/chair/wood{ +/obj/machinery/light{ dir = 8 }, -/turf/simulated/floor/wood/mahogany, -/area/horizon/crew_quarters/lounge/bar) -"xEC" = ( -/obj/structure/platform, -/obj/structure/engineer_maintenance/electric{ +/turf/simulated/floor/tiled, +/area/horizon/engineering/hallway/aft) +"xDX" = ( +/turf/simulated/wall/shuttle/scc_space_ship/cardinal, +/area/horizon/maintenance/deck_1/wing/port/far) +"xEd" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ dir = 4 }, -/obj/structure/engineer_maintenance/pipe, +/obj/machinery/light/floor{ + dir = 1 + }, /turf/simulated/floor/tiled/dark, -/area/rnd/lab) -"xED" = ( -/obj/structure/bed/stool/bar/padded/blue, -/obj/effect/floor_decal/spline/fancy/wood, +/area/horizon/rnd/xenobiology/xenoflora) +"xEg" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/platform, +/obj/machinery/computer/operating{ + name = "Xenobiology Operating Computer"; + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/rnd/xenobiology/dissection) +"xEj" = ( +/obj/structure/bed/stool/chair/padded/black{ + dir = 8 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, /turf/simulated/floor/wood, -/area/bridge/minibar) +/area/horizon/repoffice/representative_two) +"xEl" = ( +/obj/structure/closet/walllocker/medical/secure{ + name = "Stabilization Kit"; + pixel_x = -31 + }, +/obj/item/bodybag/cryobag, +/obj/item/bodybag/cryobag, +/obj/item/bodybag/cryobag, +/obj/item/storage/pill_bottle/mortaphenyl, +/obj/item/storage/pill_bottle/mortaphenyl, +/obj/effect/floor_decal/corner/white/diagonal, +/turf/simulated/floor/tiled, +/area/horizon/medical/paramedic) +"xEs" = ( +/obj/machinery/fusion_fuel_injector/mapped{ + dir = 4; + initial_id_tag = "horizon_fusion" + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/simulated/floor/carpet/rubber, +/area/horizon/engineering/reactor/indra/mainchamber) +"xEx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/platform_deco{ + dir = 4 + }, +/turf/simulated/floor/lino, +/area/horizon/service/chapel/main) "xEJ" = ( /obj/effect/floor_decal/corner/dark_blue/full{ dir = 8 @@ -165183,12 +166274,15 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/security/firing_range) -"xEK" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +"xEL" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/corner/dark_green{ + dir = 6 }, +/obj/machinery/alarm/east, /turf/simulated/floor/tiled, -/area/rnd/hallway) +/area/horizon/hangar/intrepid) "xEO" = ( /obj/effect/floor_decal/spline/plain, /turf/simulated/floor/beach/sand{ @@ -165196,56 +166290,70 @@ icon_state = "beach" }, /area/centcom/shared_dream) -"xEP" = ( -/obj/structure/table/steel, -/obj/item/reagent_containers/food/drinks/waterbottle{ - pixel_x = -4; - pixel_y = 6 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/carpet/rubber, -/area/horizon/crew_quarters/fitness/gym) "xET" = ( /obj/structure/shuttle_part/ccia{ icon_state = "0,3" }, /turf/unsimulated/floor/plating, /area/shuttle/transport1) -"xFi" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 +"xEU" = ( +/obj/structure/railing/mapped, +/obj/structure/cable{ + icon_state = "4-8" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/aft) +"xEW" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/tank_wall/nitrogen, +/turf/simulated/floor/plating, +/area/horizon/engineering/atmos/air) +"xEY" = ( +/obj/structure/bed/stool/chair/shuttle{ + dir = 8 + }, +/turf/simulated/floor/shuttle/dark_blue, +/area/horizon/shuttle/escape_pod/pod3) +"xFb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/alarm/north, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/wing/starboard) +"xFe" = ( +/obj/effect/floor_decal/corner/mauve{ dir = 10 }, -/turf/simulated/floor/tiled, -/area/storage/primary) +/obj/structure/engineer_maintenance/electric, +/obj/structure/engineer_maintenance/pipe{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/rnd/xenobiology/xenoflora) "xFl" = ( /obj/effect/floor_decal/corner/paleblue/diagonal, /turf/unsimulated/floor, /area/centcom/holding) -"xFo" = ( -/obj/structure/cable/green{ - icon_state = "1-2" +"xFm" = ( +/obj/structure/table/wood, +/obj/random/pottedplant_small{ + pixel_x = 7; + pixel_y = 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/carpet, +/area/horizon/crew/journalistoffice) +"xFs" = ( +/obj/effect/floor_decal/corner_wide/purple{ + dir = 6 }, -/turf/simulated/floor/tiled, -/area/hangar/intrepid) -"xFv" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/structure/cable{ - icon_state = "1-2" +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 }, -/turf/simulated/floor/plating, -/area/maintenance/wing/port/far) +/obj/effect/floor_decal/corner_wide/purple/diagonal, +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/test_range) "xFx" = ( /obj/machinery/optable, /obj/effect/floor_decal/corner/paleblue/diagonal{ @@ -165261,23 +166369,56 @@ }, /turf/unsimulated/floor/marble, /area/antag/wizard) -"xFB" = ( -/obj/effect/floor_decal/corner/dark_green{ +"xFA" = ( +/obj/effect/floor_decal/industrial/hatch/grey, +/obj/structure/filingcabinet/filingcabinet{ + pixel_x = -9; + pixel_y = 1 + }, +/obj/machinery/papershredder{ + pixel_x = 6 + }, +/obj/machinery/alarm/west, +/turf/simulated/floor/tiled/full, +/area/horizon/command/heads/om) +"xFJ" = ( +/obj/structure/disposalpipe/segment{ + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/pharmacy) +"xFP" = ( +/obj/structure/closet/crate/solar{ + name = "backup power generation supplies" + }, +/obj/item/stack/material/graphite/full, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/item/stack/material/tritium/full, +/obj/item/circuitboard/portgen/fusion, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/storage_hard) +"xFR" = ( +/obj/effect/floor_decal/corner/mauve{ dir = 9 }, -/turf/simulated/floor/tiled, -/area/hangar/intrepid/interstitial) -"xFQ" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/xenobiology) +"xFS" = ( +/obj/structure/cable/green{ + icon_state = "0-4" }, -/obj/machinery/light/small/emergency, -/obj/structure/reagent_dispensers/watertank, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/effect/floor_decal/industrial/hatch_tiny/yellow, +/obj/machinery/atmospherics/binary/passive_gate/on{ + name = "Air Tank to Air Distribution" }, -/turf/simulated/floor, -/area/horizon/maintenance/deck_three/aft/starboard) +/obj/machinery/power/apc/west{ + req_access = null; + req_one_access = list(11, 24, 47, 65) + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/shuttle/intrepid/engineering) "xFT" = ( /obj/structure/bed/stool/chair/office/bridge{ dir = 8 @@ -165286,20 +166427,31 @@ icon_state = "wood" }, /area/centcom/control) -"xFW" = ( -/turf/simulated/wall/shuttle/scc, -/area/shuttle/intrepid/flight_deck) -"xGe" = ( -/obj/machinery/door/airlock/engineering{ - dir = 1; - name = "Operations Substation" +"xGd" = ( +/obj/machinery/vending/zora, +/obj/effect/floor_decal/industrial/hatch/grey, +/obj/machinery/status_display{ + pixel_x = -16; + pixel_y = 32 }, -/obj/structure/cable/green{ - icon_state = "1-2" +/turf/simulated/floor/tiled/full, +/area/horizon/hallway/primary/deck_3/port) +"xGj" = ( +/obj/machinery/door/firedoor/multi_tile, +/obj/machinery/door/airlock/multi_tile/glass{ + name = "Livestock Pen"; + req_access = list(35) }, -/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/full, +/area/horizon/service/hydroponics/lower) +"xGn" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/structure/table/rack, +/obj/random/loot, /turf/simulated/floor/plating, -/area/maintenance/substation/supply) +/area/horizon/maintenance/deck_2/wing/port) "xGr" = ( /obj/machinery/door/airlock/centcom{ name = "Port Checkpoint Door"; @@ -165309,37 +166461,12 @@ icon_state = "dark_preview" }, /area/centcom/holding) -"xGs" = ( -/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, -/turf/simulated/floor/tiled/dark/full, -/area/rnd/test_range) -"xGu" = ( -/obj/structure/trash_pile, -/turf/simulated/floor/plating, -/area/maintenance/aft) -"xGx" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/full, -/area/hallway/primary/central_one) -"xGE" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"xGF" = ( -/obj/structure/disposalpipe/segment, +"xGA" = ( /obj/effect/floor_decal/industrial/warning{ dir = 4 }, -/obj/structure/railing/mapped{ - dir = 1 - }, /turf/simulated/floor/plating, -/area/maintenance/wing/starboard/deck1) +/area/horizon/maintenance/deck_1/hangar/starboard) "xGG" = ( /obj/structure/table/reinforced/steel, /obj/effect/floor_decal/corner/grey{ @@ -165353,104 +166480,131 @@ icon_state = "dark_preview" }, /area/centcom/control) +"xGL" = ( +/obj/effect/floor_decal/industrial/loading/yellow{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/rnd/xenoarch/atrium) "xGM" = ( /turf/simulated/floor/lino, /area/horizon/security/investigators_office) -"xGQ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 9 +"xGP" = ( +/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, +/obj/machinery/door/blast/shutters/open{ + dir = 4; + id = "shutters_deck2_eng_frontdesk"; + name = "Engineering Front Desk Shutter" }, -/turf/simulated/floor/tiled/dark, -/area/engineering/atmos/propulsion/starboard) -"xGT" = ( -/obj/effect/floor_decal/spline/fancy/wood{ +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/lobby) +"xGS" = ( +/obj/machinery/camera/network/first_deck{ + c_tag = "First Deck - EVA Storage 2" + }, +/obj/structure/reagent_dispensers/extinguisher, +/obj/effect/floor_decal/corner/dark_blue{ dir = 5 }, -/obj/structure/bed/stool/chair/padded/red{ +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark, +/area/horizon/storage/eva) +"xGT" = ( +/obj/effect/floor_decal/industrial/warning{ dir = 4 }, -/turf/simulated/floor/wood, -/area/horizon/hallway/deck_two/fore) -"xGU" = ( -/obj/effect/floor_decal/corner/lime{ - dir = 5 +/obj/structure/cable/green{ + icon_state = "1-2" }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora) -"xGW" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/engineering{ - dir = 1; - name = "Gravity Generator"; - req_access = list(11) +/obj/structure/cable/green{ + icon_state = "2-4" }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/dark, -/area/engineering/gravity_gen) -"xHi" = ( +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/bluespace_drive) +"xGV" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/item/hullbeacon/red, +/turf/simulated/floor/reinforced/airless, +/area/horizon/exterior) +"xGY" = ( /obj/structure/cable/green{ icon_state = "4-8" }, +/obj/effect/floor_decal/corner/yellow/full{ + dir = 4 + }, +/obj/machinery/newscaster/south, +/turf/simulated/floor/tiled, +/area/horizon/engineering/storage_eva) +"xHg" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/light/small/emergency{ dir = 1 }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/maintenance/engineering) -"xHj" = ( /obj/effect/floor_decal/spline/plain{ + dir = 4 + }, +/obj/machinery/alarm/east, +/turf/simulated/floor/carpet/rubber, +/area/horizon/engineering/bluespace_drive/monitoring) +"xHl" = ( +/obj/effect/floor_decal/industrial/warning{ dir = 8 }, -/obj/effect/floor_decal/spline/plain{ +/obj/structure/tank_wall/nitrogen{ + icon_state = "n4" + }, +/turf/simulated/floor/plating, +/area/horizon/engineering/atmos/air) +"xHn" = ( +/obj/effect/floor_decal/corner/dark_blue/full{ + dir = 1 + }, +/obj/machinery/light{ dir = 4 }, -/obj/machinery/atmospherics/unary/vent_pump{ - external_pressure_bound = 0; - external_pressure_bound_default = 0; - icon_state = "map_vent_in"; - initialize_directions = 1; - internal_pressure_bound = 4000; - internal_pressure_bound_default = 4000; - pressure_checks = 2; - pressure_checks_default = 2; - pump_direction = 0; - use_power = 1 +/obj/structure/closet/walllocker/medical/firstaid{ + pixel_y = 32 }, -/turf/simulated/floor/carpet/rubber, -/area/tcommsat/chamber) -"xHs" = ( -/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/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/aux{ +/obj/effect/floor_decal/industrial/outline/medical, +/turf/simulated/floor/tiled/dark, +/area/horizon/weapons/longbow) +"xHt" = ( +/obj/effect/floor_decal/spline/fancy/wood/cee{ dir = 8 }, /obj/structure/cable/green{ - icon_state = "1-4" + icon_state = "1-8" }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/wood, +/area/horizon/command/heads/om) +"xHv" = ( +/obj/machinery/door/airlock/glass_engineering{ + dir = 4; + name = "Shield Generator"; + req_one_access = list(11,24); + secured_wires = 1 + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/turf/simulated/floor/plating, -/area/maintenance/engineering) +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/horizon/engineering/shields) "xHA" = ( /obj/machinery/vending/snack{ density = 0; @@ -165467,35 +166621,57 @@ icon_state = "wood" }, /area/centcom/distress_prep) -"xHH" = ( -/turf/simulated/wall/shuttle/scc_space_ship/cardinal, -/area/horizon/kitchen/freezer) -"xHP" = ( -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/structure/platform/ledge{ +"xHC" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 }, -/obj/structure/platform/ledge, -/turf/simulated/open, -/area/horizon/hallway/deck_three/primary/central) -"xHS" = ( /obj/structure/cable/green{ - icon_state = "4-8" + icon_state = "2-4" }, +/turf/simulated/floor/tiled/freezer{ + name = "cooled tiles"; + temperature = 253.15 + }, +/area/horizon/service/kitchen/freezer) +"xHG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/wing/port/far) +"xHI" = ( +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/airlock/maintenance{ + dir = 1; + req_one_access = list(12,26,29,31,48,67,35,25,28,37) + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/full, +/area/horizon/hallway/primary/deck_2/central) +"xHO" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance{ + dir = 4; + name = "Operations Maintenance"; + req_one_access = list(26,29,31,48,67) }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 +/turf/simulated/floor/tiled/full, +/area/horizon/operations/office) +"xHQ" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 1 + }, +/obj/machinery/meter, +/obj/machinery/light{ + dir = 8 }, -/obj/structure/lattice/catwalk/indoor/grate, /turf/simulated/floor/plating, -/area/operations/lobby) +/area/horizon/engineering/reactor/supermatter/mainchamber) "xHU" = ( /turf/simulated/wall/shuttle/unique/tcfl{ icon_state = "2,5" @@ -165508,42 +166684,49 @@ }, /turf/space/dynamic, /area/horizon/exterior) -"xHX" = ( -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 4 +"xIe" = ( +/obj/structure/cable/green{ + icon_state = "2-8" }, /obj/structure/cable/green{ icon_state = "4-8" }, -/obj/machinery/atmospherics/pipe/simple/visible/black, -/obj/effect/floor_decal/corner/yellow, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/engineering/atmos) -"xIh" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/effect/floor_decal/corner/dark_blue{ +/obj/effect/floor_decal/spline/fancy/wood{ dir = 6 }, -/turf/simulated/floor/tiled/dark, -/area/storage/eva) -"xIo" = ( -/obj/structure/lattice, -/obj/structure/railing/mapped, -/obj/structure/platform/ledge{ +/obj/structure/table/standard, +/obj/item/device/taperecorder{ + pixel_x = -4; + pixel_y = 5 + }, +/obj/machinery/recharger{ + pixel_x = 8; + pixel_y = 6 + }, +/obj/random/pottedplant_small{ + pixel_x = 3; + pixel_y = -2 + }, +/turf/simulated/floor/wood, +/area/horizon/command/heads/xo) +"xIk" = ( +/obj/structure/bed/stool/chair/office/dark{ dir = 1 }, -/turf/simulated/open, -/area/operations/office) -"xIr" = ( -/obj/structure/railing/mapped{ - dir = 8 +/obj/effect/landmark/start{ + name = "Engineer" }, -/obj/structure/railing/mapped, -/turf/simulated/open, -/area/horizon/custodial/disposals) +/obj/effect/floor_decal/spline/plain, +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/break_room) +"xIq" = ( +/obj/structure/closet/emcloset, +/obj/effect/floor_decal/corner/dark_green{ + dir = 9 + }, +/obj/effect/floor_decal/industrial/outline/emergency_closet, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_2/starboard) "xIt" = ( /obj/machinery/computer/cryopod{ pixel_x = 32 @@ -165568,6 +166751,31 @@ name = "overgrowth" }, /area/horizon/holodeck/source_moghes) +"xIB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/main/interstitial) +"xIG" = ( +/obj/structure/bed/stool/chair/office/dark{ + dir = 4 + }, +/obj/effect/landmark/start{ + name = "Engineer" + }, +/obj/effect/floor_decal/spline/plain{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/break_room) "xIH" = ( /obj/structure/window/shuttle/scc_space_ship, /obj/machinery/door/firedoor, @@ -165590,25 +166798,6 @@ }, /turf/simulated/floor/tiled, /area/horizon/security/brig) -"xIJ" = ( -/obj/machinery/ship_weapon/longbow{ - pixel_x = -32; - pixel_y = -320; - weapon_id = "Longbow Cannon" - }, -/obj/structure/ship_weapon_dummy, -/obj/effect/floor_decal/industrial/hatch/red, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/longbow) -"xIL" = ( -/obj/structure/table/reinforced/steel, -/obj/effect/floor_decal/corner/dark_blue/diagonal, -/obj/item/book/manual/wiki/security_space_law{ - pixel_x = 1; - pixel_y = 2 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge/aibunker) "xIO" = ( /obj/machinery/door/airlock/glass_command{ dir = 1; @@ -165617,17 +166806,6 @@ }, /turf/unsimulated/floor, /area/centcom/legion) -"xIS" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 5 - }, -/turf/simulated/floor/plating, -/area/engineering/storage/lower) "xIT" = ( /obj/structure/table/rack, /obj/machinery/light, @@ -165698,84 +166876,84 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/unsimulated/floor, /area/antag/mercenary) -"xJa" = ( -/obj/effect/floor_decal/corner/dark_blue, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/port/docks) -"xJf" = ( -/obj/structure/cable/green{ - icon_state = "0-2" - }, -/obj/machinery/power/apc/low/east, -/obj/machinery/power/sensor{ - name = "Powernet Sensor - Deck 2 Engineering Subgrid"; - name_tag = "Deck 2 Engineering Subgrid" - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/substation/engineering) -"xJi" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/effect/floor_decal/spline/fancy/wood{ +"xIY" = ( +/obj/structure/bed/stool/chair/office/light{ dir = 8 }, -/obj/machinery/hologram/holopad, -/turf/simulated/floor/wood, -/area/lawoffice/representative_two) -"xJn" = ( -/obj/effect/floor_decal/corner_wide/paleblue{ - dir = 9 +/obj/effect/landmark/start{ + name = "Xenoarchaeologist" }, -/obj/item/modular_computer/console/preset/medical/cmo{ +/obj/effect/floor_decal/spline/fancy/wood{ dir = 4 }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/heads/cmo) -"xJq" = ( -/obj/structure/cable/green{ - icon_state = "4-8" +/turf/simulated/floor/wood, +/area/horizon/rnd/conference) +"xIZ" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/structure/tank_wall/nitrous_oxide{ + icon_state = "h14" }, -/obj/machinery/power/sensor{ - name = "Powernet Sensor - AI Subgrid"; - name_tag = "AI Subgrid" +/turf/simulated/floor/plating, +/area/horizon/engineering/atmos/air) +"xJb" = ( +/obj/structure/railing/mapped, +/obj/effect/floor_decal/spline/plain, +/obj/structure/morgue, +/turf/simulated/floor/tiled/freezer{ + name = "cooled tiles"; + temperature = 278.15 }, -/obj/structure/cable/green{ - icon_state = "0-4" +/area/horizon/medical/morgue) +"xJg" = ( +/obj/structure/table/stone/marble, +/obj/machinery/requests_console/south{ + department = "Kitchen"; + departmentType = 1; + name = "Kitchen Requests Console" }, -/turf/simulated/floor, -/area/turret_protected/ai_upload_foyer) -"xJv" = ( -/obj/effect/floor_decal/industrial/warning{ +/obj/structure/closet/walllocker/medical/firstaid{ + pixel_y = -32 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/service/kitchen) +"xJm" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/horizon/operations/office) +"xJo" = ( +/obj/machinery/door/airlock/glass{ dir = 1 }, -/obj/structure/tank_wall/carbon_dioxide, -/turf/simulated/floor/airless, -/area/engineering/atmos) -"xJw" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled, +/area/horizon/rnd/hallway/secondary) +"xJr" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 10 }, +/turf/simulated/floor/tiled, +/area/horizon/maintenance/deck_2/wing/port/nacelle) +"xJs" = ( /obj/structure/cable/green{ icon_state = "2-8" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 10 }, -/turf/simulated/floor/tiled/dark, -/area/horizon/stairwell/bridge) +/obj/structure/disposalpipe/segment{ + icon_state = "pipe-c" + }, +/obj/effect/floor_decal/corner/brown{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/horizon/operations/break_room) "xJA" = ( /obj/effect/floor_decal/corner/paleblue{ dir = 4 @@ -165793,24 +166971,35 @@ }, /turf/unsimulated/floor, /area/antag/raider) -"xJE" = ( -/obj/machinery/camera/network/engineering{ - c_tag = "Engineering - Deck 1 - Hangar Substation"; +"xJD" = ( +/obj/machinery/camera/network/command{ + c_tag = "AI Core - Foyer"; dir = 4 }, -/obj/machinery/power/terminal{ +/obj/machinery/power/apc/critical/south, +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/obj/machinery/turretid/stun{ + check_synth = 1; + name = "\improper AI Chamber Turret Control Console"; + pixel_y = 1; + pixel_x = -31; dir = 4 }, -/obj/structure/cable, -/turf/simulated/floor/plating, -/area/maintenance/substation/hangar) -"xJG" = ( -/obj/effect/floor_decal/corner_wide/orange/full{ +/turf/simulated/floor/tiled/dark/full, +/area/horizon/ai/upload) +"xJF" = ( +/obj/structure/railing/mapped, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/light/small/emergency{ dir = 1 }, -/obj/machinery/firealarm/east, -/turf/simulated/floor/tiled/white, -/area/medical/pharmacy) +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/aft) "xJH" = ( /obj/structure/bed/stool/chair/shuttle, /obj/structure/window/reinforced{ @@ -165818,107 +167007,70 @@ }, /turf/simulated/floor/shuttle/black, /area/centcom/specops) -"xJL" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +"xJI" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume, +/obj/machinery/embedded_controller/radio/airlock/airlock_controller{ + pixel_y = 28 }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor, -/area/maintenance/security_port) -"xJN" = ( -/obj/structure/window/shuttle/scc_space_ship, -/obj/structure/grille, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "bridge blast"; - name = "Bridge Blast Doors"; - opacity = 0 - }, -/obj/machinery/door/firedoor, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/cable/green{ - icon_state = "0-4" - }, -/obj/machinery/door/blast/shutters/open{ - dir = 2; - id = "shutters_deck3_bridgesafety"; - name = "Safety Shutter" +/obj/effect/map_effect/marker/airlock{ + frequency = 1003; + master_tag = "airlock_horizon_deck_1_aft_port_1"; + name = "airlock_horizon_deck_1_aft_port_1" }, /turf/simulated/floor/plating, -/area/bridge/controlroom) -"xJR" = ( -/obj/machinery/bodyscanner{ - dir = 8 - }, -/obj/effect/floor_decal/corner/beige{ - dir = 5 - }, -/obj/structure/sign/nosmoking_2{ - pixel_x = 28 - }, -/turf/simulated/floor/tiled/dark, -/area/medical/gen_treatment) +/area/horizon/maintenance/deck_1/auxatmos) +"xJO" = ( +/turf/simulated/wall, +/area/horizon/security/checkpoint2) "xJU" = ( /obj/machinery/computer/shuttle_control/multi/legion{ dir = 8 }, /turf/simulated/floor/tiled/dark, /area/shuttle/legion) -"xJV" = ( -/obj/structure/bookcase, -/obj/item/book/manual/wiki/ntsl2, -/obj/item/book/manual/wiki/station_procedure, -/obj/item/book/manual/research_and_development, -/obj/item/book/manual/ka_custom, -/obj/item/book/manual/excavation, -/obj/item/book/manual/anomaly_testing, -/obj/item/book/manual/anomaly_spectroscopy, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/rnd/hallway/secondary) -"xKb" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/big/scc_full, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/central) -"xKh" = ( -/turf/simulated/floor/tiled, -/area/engineering/storage_eva) -"xKk" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 9 - }, +"xJZ" = ( /obj/structure/cable/green{ icon_state = "1-8" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4 }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/port/docks) -"xKl" = ( -/obj/machinery/media/jukebox/audioconsole/wall{ - pixel_y = -32 +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 }, -/obj/machinery/camera/network/service{ - c_tag = "Service - Deck 2 - Bar Starboard"; +/obj/effect/floor_decal/corner/dark_green{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/horizon/hangar/intrepid) +"xKi" = ( +/obj/structure/railing/mapped{ dir = 1 }, +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/reactor/supermatter/mainchamber) +"xKm" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/corner/yellow/full{ + dir = 8 + }, +/obj/machinery/button/remote/blast_door{ + desc = "A remote control-switch for the engine control room blast doors."; + dir = 8; + id = "EngineEmitterPortWest"; + name = "Supermatter Reactor Room Blast Doors"; + pixel_x = -24; + req_one_access = list(11,24) + }, /turf/simulated/floor/tiled/dark, -/area/horizon/bar) +/area/horizon/engineering/reactor/supermatter/waste) "xKn" = ( /obj/structure/shuttle_part/ert{ icon_state = "10,3"; @@ -165935,6 +167087,16 @@ }, /turf/unsimulated/floor, /area/centcom/bar) +"xKA" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner/dark_green/full{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/horizon/hangar/intrepid) "xKB" = ( /obj/structure/railing/mapped{ name = "adjusted railing" @@ -165960,24 +167122,15 @@ }, /turf/simulated/floor/reinforced/airless, /area/horizon/exterior) -"xKE" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, +"xKF" = ( +/obj/machinery/light/small, +/obj/vehicle/train/cargo/engine, /obj/effect/floor_decal/corner/brown{ - dir = 1 + dir = 10 }, +/obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled, -/area/operations/loading) +/area/horizon/operations/warehouse) "xKG" = ( /obj/effect/map_effect/map_helper/ruler_tiles_3, /turf/template_noop, @@ -165990,10 +167143,36 @@ /obj/effect/floor_decal/industrial/hatch/grey, /turf/simulated/floor/tiled, /area/horizon/security/brig) -"xKI" = ( -/obj/structure/closet/crate, -/turf/simulated/floor/plating, -/area/maintenance/research_port) +"xKM" = ( +/obj/machinery/door/airlock/security{ + dir = 1; + name = "Security Checkpoint"; + req_access = list(63) + }, +/obj/machinery/door/firedoor, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/full, +/area/horizon/security/checkpoint) +"xKQ" = ( +/obj/effect/landmark/latejoinlift, +/obj/structure/disposalpipe/junction{ + dir = 8; + icon_state = "pipe-j2" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner/dark_green{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/horizon/crew/resdeck/living_quarters_lift) "xKS" = ( /obj/structure/table/reinforced/steel, /obj/machinery/recharger, @@ -166001,13 +167180,44 @@ icon_state = "dark_preview" }, /area/centcom/control) -"xKW" = ( -/obj/machinery/portable_atmospherics/canister/air/airlock, -/obj/machinery/atmospherics/portables_connector{ +"xLc" = ( +/obj/structure/sign/fire{ + name = "\improper DANGER: COMBUSTION CHAMBER sign"; + pixel_x = -32 + }, +/obj/effect/floor_decal/corner_wide/black{ + dir = 9 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/atmos/propulsion) +"xLf" = ( +/obj/effect/floor_decal/spline/plain, +/obj/effect/floor_decal/spline/plain{ dir = 1 }, -/turf/simulated/floor, -/area/horizon/hallway/deck_three/primary/starboard/docks) +/obj/machinery/power/apc/super/critical/north, +/obj/structure/cable/green{ + icon_state = "0-8" + }, +/turf/simulated/floor/carpet/rubber, +/area/horizon/tcommsat/chamber) +"xLh" = ( +/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/hallway/primary/deck_3/central) +"xLj" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/main/port) "xLl" = ( /obj/effect/floor_decal/corner/red/full, /obj/structure/window/reinforced/holowindow/disappearing{ @@ -166015,27 +167225,6 @@ }, /turf/simulated/floor/holofloor/tiled, /area/horizon/holodeck/source_thunderdomecourt) -"xLq" = ( -/obj/structure/table/rack{ - dir = 8 - }, -/obj/effect/floor_decal/corner_wide/blue/full{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/item/circuitboard/ship/targeting{ - pixel_y = 8 - }, -/obj/item/circuitboard/ship/helm{ - pixel_y = 4 - }, -/obj/item/circuitboard/ship/engines, -/obj/item/circuitboard/ship/sensors{ - pixel_y = -4 - }, -/obj/machinery/alarm/north, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/storage/tech) "xLs" = ( /obj/structure/table/wood, /obj/structure/window/reinforced/holowindow{ @@ -166043,6 +167232,16 @@ }, /turf/simulated/floor/holofloor/lino, /area/horizon/holodeck/source_meetinghall) +"xLt" = ( +/obj/machinery/photocopier, +/turf/simulated/floor/carpet, +/area/horizon/repoffice/consular_two) +"xLy" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_3/central) "xLz" = ( /obj/structure/table/reinforced, /obj/machinery/door/firedoor, @@ -166064,154 +167263,143 @@ "xLA" = ( /turf/simulated/floor/carpet/cyan, /area/shuttle/merchant) -"xLF" = ( -/obj/effect/map_effect/window_spawner/full/reinforced/grille/firedoor, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "bridge blast"; - name = "Bridge Blast Doors"; - opacity = 0 - }, -/obj/structure/cable/green{ - icon_state = "0-8" - }, -/turf/simulated/floor, -/area/bridge/supply) "xLG" = ( /obj/effect/floor_decal/industrial/warning{ dir = 9 }, /turf/unsimulated/floor, /area/antag/ninja) -"xLH" = ( -/obj/structure/table/standard, -/obj/structure/closet/crate/plastic{ - pixel_y = -4; - tablestatus = -1 +"xLK" = ( +/obj/machinery/atmospherics/pipe/simple/visible/supply{ + dir = 5 }, -/obj/item/storage/box/fancy/crayons, -/obj/item/storage/box/fancy/crayons, -/obj/item/toy/figure/assistant, -/obj/item/device/radio/intercom/east, -/obj/effect/floor_decal/corner/beige{ - dir = 6 +/turf/simulated/floor/plating, +/area/horizon/engineering/atmos/air) +"xLR" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/simulated/floor/tiled, -/area/security/vacantoffice) -"xLI" = ( -/obj/effect/floor_decal/corner_wide/yellow/full{ +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/corner_wide/green{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/medical/hallway/upper) +"xLS" = ( +/obj/machinery/door/blast/shutters/open{ + dir = 2; + id = "shutters_deck3_cafewindows"; + name = "Cafe Window Shutter" + }, +/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/service/cafeteria) +"xLT" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/light/small/emergency{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/security_port) +"xLU" = ( +/obj/effect/floor_decal/industrial/warning{ dir = 8 }, +/obj/random/dirt_75, /turf/simulated/floor/tiled, -/area/engineering/bluespace_drive) -"xLN" = ( -/turf/simulated/wall/shuttle/scc_space_ship/cardinal, -/area/horizon/longbow) -"xLO" = ( -/obj/effect/floor_decal/corner/dark_green{ +/area/horizon/maintenance/deck_2/wing/starboard/nacelle) +"xLV" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/camera/network/service{ + c_tag = "Service - Hydroponics Lower 2" + }, +/obj/structure/closet/secure_closet/hydroponics, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/service/hydroponics/lower) +"xLX" = ( +/obj/structure/bed/stool/chair/office/dark{ + dir = 8 + }, +/obj/effect/floor_decal/spline/plain{ + dir = 8 + }, +/turf/simulated/floor/carpet/rubber, +/area/horizon/engineering/bluespace_drive/monitoring) +"xLZ" = ( +/obj/structure/grille, +/turf/simulated/floor/reinforced/airless, +/area/horizon/exterior) +"xMd" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/random/junk, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/hangar/starboard) +"xMk" = ( +/obj/machinery/power/apc/low/north, +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/horizon/crew/lounge) +"xMl" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/corner/dark_blue{ dir = 5 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled, -/area/security/checkpoint2) -"xLZ" = ( -/obj/structure/grille, -/turf/simulated/floor/reinforced/airless, -/area/horizon/exterior) -"xMa" = ( -/obj/machinery/cryopod/living_quarters{ - pixel_y = 8 - }, -/obj/effect/floor_decal/corner/dark_green/full{ - dir = 8 - }, -/obj/structure/sign/directions/civ{ - desc = "A sign pointing out that a lift leads to the ship's residential deck."; - dir = 1; - name = "\improper Lift to Residential Deck sign"; - pixel_y = -10 - }, -/obj/machinery/light{ - dir = 8 +/obj/structure/disposalpipe/trunk, +/obj/machinery/disposal/small/south{ + pixel_y = 16 }, /turf/simulated/floor/tiled, -/area/horizon/crew_quarters/cryo/living_quarters_lift) -"xMb" = ( -/obj/machinery/atmospherics/pipe/manifold4w/visible/black, -/obj/machinery/meter, -/turf/simulated/floor/tiled/dark, -/area/engineering/atmos/propulsion) -"xMc" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 8 - }, -/obj/machinery/light/spot, -/obj/effect/floor_decal/industrial/outline/firefighting_closet, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"xMm" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/sign/emergency/evacuation{ - pixel_x = -32 - }, -/obj/effect/floor_decal/corner/dark_green/full, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hangar/intrepid) -"xMv" = ( -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/door/airlock/external{ - dir = 4; - id_tag = "riso3"; - name = "Isolation C"; - req_access = list(65) - }, -/obj/machinery/door/blast/regular/open{ - id = "iso_c"; - name = "Safety Blast Door" +/area/horizon/command/bridge/upperdeck) +"xMo" = ( +/obj/structure/bed/padded, +/obj/item/bedsheet/medical, +/obj/effect/floor_decal/corner_wide/green{ + dir = 5 }, /turf/simulated/floor/tiled/white, -/area/rnd/isolation_a) -"xMA" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 +/area/horizon/medical/ward) +"xMt" = ( +/turf/simulated/wall, +/area/horizon/medical/washroom) +"xMD" = ( +/obj/structure/cable/green{ + icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/central) -"xMI" = ( -/obj/machinery/atmospherics/pipe/simple/visible/green{ +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/structure/window/shuttle/scc_space_ship, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 +/obj/structure/disposalpipe/segment{ + dir = 4 }, +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor, +/area/horizon/hallway/primary/deck_3/central) +"xMH" = ( +/obj/machinery/atmospherics/binary/pump/on{ + dir = 8; + name = "Air to Distribution" + }, +/obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/plating, -/area/engineering/engine_room) +/area/horizon/engineering/atmos/air) "xMK" = ( /turf/simulated/wall/r_wall, /area/horizon/security/investigators_office) @@ -166221,117 +167409,6 @@ }, /turf/simulated/floor/holofloor/wood, /area/horizon/holodeck/source_chapel) -"xMM" = ( -/obj/effect/map_effect/door_helper/unres{ - dir = 4 - }, -/obj/machinery/door/airlock/glass_research{ - dir = 4; - id_tag = "xeno_entrance_int_a"; - name = "Xenobiology"; - req_access = list(55); - locked = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/firedoor{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology) -"xMN" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 8 - }, -/obj/machinery/camera/network/service{ - c_tag = "Service - Deck 2 - Bar Port"; - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/horizon/bar) -"xMQ" = ( -/obj/structure/lattice, -/obj/structure/platform/ledge{ - dir = 1 - }, -/obj/structure/railing/mapped, -/turf/simulated/open, -/area/operations/office) -"xMS" = ( -/obj/structure/bed/stool/chair/office/bridge/generic{ - dir = 4 - }, -/obj/effect/landmark/start{ - name = "Consular Officer" - }, -/obj/machinery/button/remote/airlock{ - dir = 8; - id = "consular_office_a"; - name = "consular door bolts"; - specialfunctions = 4; - pixel_y = -2; - pixel_x = -52 - }, -/obj/machinery/light_switch{ - dir = 8; - pixel_x = -52; - pixel_y = 8 - }, -/obj/machinery/button/switch/windowtint{ - dir = 8; - id = "consularA"; - pixel_y = 14; - pixel_x = -59 - }, -/obj/machinery/button/remote/airlock{ - dir = 8; - id = "consular_office_a"; - name = "consular door control"; - pixel_y = 3; - pixel_x = -59 - }, -/obj/item/storage/secure/safe{ - pixel_y = 42; - pixel_x = -59 - }, -/turf/simulated/floor/carpet, -/area/lawoffice/consular) -"xMW" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/starboard/docks) -"xNb" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/medical/morgue/lower) -"xNc" = ( -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/item/modular_computer/console/preset/medical{ - dir = 8 - }, -/obj/effect/floor_decal/corner/dark_blue/full{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge/aibunker) "xNe" = ( /obj/machinery/door/airlock/centcom{ name = "Laundry"; @@ -166339,13 +167416,38 @@ }, /turf/unsimulated/floor, /area/centcom/legion) -"xNi" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/effect/floor_decal/spline/plain{ +"xNh" = ( +/obj/effect/floor_decal/industrial/outline/service, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/lapvend, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/service/library) +"xNj" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/light/small{ dir = 1 }, -/turf/simulated/floor/tiled/white, -/area/horizon/kitchen) +/obj/effect/floor_decal/corner/lime{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled{ + name = "cooled floor"; + temperature = 278 + }, +/area/horizon/medical/morgue) +"xNk" = ( +/turf/simulated/floor, +/area/horizon/ai/upload_foyer) "xNm" = ( /obj/structure/table/wood, /obj/effect/floor_decal/spline/fancy/wood{ @@ -166354,110 +167456,68 @@ /obj/item/device/versebook/biesel, /turf/simulated/floor/tiled/dark, /area/horizon/holodeck/source_biesel) -"xNt" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 10 +"xNy" = ( +/obj/item/modular_computer/console/preset/command{ + dir = 8 }, +/obj/machinery/button/remote/blast_door{ + dir = 10; + id = "bridge blast"; + name = "Bridge Lockdown"; + pixel_x = -5; + pixel_y = -23; + req_access = list(19) + }, +/obj/machinery/button/remote/blast_door{ + dir = 6; + id = "shutters_deck3_bridgesafety"; + name = "Bridge Safety Shutters"; + pixel_x = 6; + pixel_y = -23 + }, +/obj/machinery/button/remote/blast_door{ + dir = 10; + id = "hangarlockdown"; + name = "Hangar Lockdoor"; + pixel_y = -33; + pixel_x = 1 + }, +/obj/effect/floor_decal/corner/dark_blue/full{ + dir = 1 + }, +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/platform, +/obj/structure/platform_deco{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/command/bridge/controlroom) +"xNF" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/yellow{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/atmos) +"xNI" = ( /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/horizon/hallway/deck_three/primary/port) -"xNw" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 9 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard/deck1) -"xNz" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/suspension_gen{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark/full, -/area/storage/eva) -"xNA" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/structure/table/rack, -/obj/item/storage/toolbox/emergency, -/obj/item/ladder_mobile, -/obj/item/device/radio{ - pixel_x = -4 - }, -/obj/item/device/radio{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/device/radio{ - pixel_x = 4 - }, -/obj/item/device/radio{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/machinery/alarm/north, -/turf/simulated/floor, -/area/bridge/aibunker) -"xNH" = ( -/obj/item/device/taperecorder{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/briefcase, -/obj/item/device/flash, -/obj/item/storage/secure/briefcase, -/obj/item/device/eftpos{ - eftpos_name = "Internal Affairs EFTPOS scanner" - }, -/obj/item/clothing/under/suit_jacket/really_black, -/obj/item/clothing/shoes/laceup, -/obj/item/clothing/shoes/laceup, -/obj/item/clipboard, -/obj/item/pen/multi, -/obj/item/device/camera, -/obj/item/paper_scanner, -/obj/item/folder/red, -/obj/item/folder/yellow, -/obj/structure/closet/lawcloset, -/obj/item/device/destTagger, -/obj/item/stack/packageWrap, -/turf/simulated/floor/carpet, -/area/lawoffice/consular) -"xNK" = ( -/obj/structure/table/wood, -/obj/machinery/photocopier/faxmachine{ - department = "Operations Manager's Office" - }, -/obj/machinery/firealarm/south, -/turf/simulated/floor/carpet, -/area/operations/qm) -"xNR" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/firealarm/east, -/obj/effect/floor_decal/corner/dark_green{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ +/obj/effect/floor_decal/corner/dark_green/full{ dir = 4 }, /turf/simulated/floor/tiled, -/area/hangar/intrepid) +/area/horizon/operations/lobby) +"xNU" = ( +/obj/random/dirt_75, +/obj/random/dirt_75, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark, +/area/horizon/maintenance/deck_2/wing/starboard/far) "xNW" = ( /obj/structure/lattice/catwalk, /obj/structure/railing/mapped{ @@ -166474,86 +167534,23 @@ icon_state = "dark_preview" }, /area/centcom/ferry) -"xOb" = ( -/obj/machinery/camera/network/first_deck{ - c_tag = "First Deck - Hangar 4"; - dir = 8 +"xOj" = ( +/obj/machinery/turretid/lethal{ + ailock = 1; + check_synth = 1; + desc = "A firewall prevents AIs from interacting with this device."; + name = "Scuttling Device Chamber turrets control"; + pixel_x = 28; + pixel_y = -2; + req_access = list(20) }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/corner/dark_green{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/hangar/intrepid) -"xOk" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 10 - }, -/obj/effect/floor_decal/corner/yellow/full{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/engineering/aft_airlock) -"xOl" = ( -/obj/structure/plasticflaps/airtight, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/medical{ - dir = 1; - name = "Cold Storage"; - req_access = list(66) - }, -/turf/simulated/floor/tiled/full, -/area/medical/surgery) -"xOm" = ( +/obj/effect/floor_decal/industrial/hatch/red, /obj/effect/floor_decal/industrial/warning{ dir = 4 }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/item/hullbeacon/red, -/obj/machinery/camera/network/supply{ - c_tag = "Operations - Hangar Fore"; - dir = 1 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/hangar/operations) -"xOo" = ( -/obj/effect/floor_decal/corner/brown{ - dir = 6 - }, -/obj/machinery/mineral/processing_unit_console{ - id = "horizon_processing_1"; - pixel_x = 32 - }, -/obj/effect/floor_decal/industrial/hatch_tiny/yellow, -/obj/machinery/conveyor_switch/oneway{ - pixel_y = 7; - id = "mining_1" - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/refinery) -"xOp" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/corner/dark_green{ - dir = 6 - }, -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/starboard) +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/command/bridge/aibunker) "xOr" = ( /obj/structure/bed, /obj/item/bedsheet/syndie, @@ -166563,37 +167560,51 @@ /obj/effect/decal/cleanable/dirt, /turf/unsimulated/floor/wood, /area/antag/burglar) -"xOv" = ( -/obj/effect/floor_decal/industrial/outline/grey, -/obj/effect/decal/cleanable/flour, -/turf/simulated/floor/tiled/dark, -/area/horizon/maintenance/deck_three/aft/starboard) -"xOy" = ( -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/obj/machinery/power/terminal{ +"xOt" = ( +/obj/effect/floor_decal/spline/plain/corner{ dir = 1 }, -/obj/machinery/light, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/effect/floor_decal/industrial/warning{ +/obj/effect/floor_decal/spline/fancy{ + dir = 10 + }, +/obj/effect/floor_decal/corner_wide/white{ dir = 4 }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/hallway/primary/deck_2/central) +"xOw" = ( +/obj/structure/window/shuttle/scc_space_ship, +/obj/structure/grille, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id = "bridge blast"; + name = "Bridge Blast Doors"; + opacity = 0 + }, +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/obj/machinery/door/blast/shutters/open{ + dir = 2; + id = "shutters_deck3_bridgesafety"; + name = "Safety Shutter" + }, +/obj/effect/landmark/entry_point/fore{ + name = "fore, bridge" + }, /turf/simulated/floor/plating, -/area/engineering/smes) +/area/horizon/command/bridge/controlroom) "xOC" = ( /obj/structure/table/reinforced/steel, /obj/machinery/firealarm/south, /turf/simulated/floor/tiled/dark, -/area/outpost/research/anomaly_storage) -"xOD" = ( -/obj/structure/bed/stool/chair/padded/brown, -/obj/effect/landmark/start{ - name = "Passenger" - }, -/turf/simulated/floor/carpet/art, -/area/crew_quarters/lounge/secondary) +/area/horizon/rnd/xenoarch/anomaly_storage) "xOG" = ( /obj/item/modular_computer/console/preset/security{ dir = 1 @@ -166601,9 +167612,6 @@ /obj/effect/floor_decal/corner/dark_blue/full, /turf/simulated/floor/tiled, /area/horizon/security/office) -"xOJ" = ( -/turf/simulated/wall, -/area/medical/surgery) "xOL" = ( /obj/structure/bed/stool/chair/shuttle{ dir = 4 @@ -166613,58 +167621,35 @@ }, /turf/simulated/floor/carpet, /area/shuttle/hapt) -"xOM" = ( -/obj/structure/railing/mapped, -/obj/structure/platform/ledge{ - dir = 4 - }, -/obj/structure/platform/ledge{ - dir = 8 - }, -/obj/structure/platform/ledge{ - dir = 1 - }, -/obj/structure/platform_deco/ledge{ - dir = 6 - }, -/obj/structure/platform_deco/ledge{ +"xON" = ( +/obj/effect/floor_decal/corner/yellow{ dir = 10 }, -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/structure/railing/mapped{ - dir = 8 - }, -/turf/simulated/open, -/area/operations/office) -"xOO" = ( -/obj/machinery/firealarm/north, -/obj/random/dirt_75, -/turf/simulated/floor/plating, -/area/maintenance/wing/port/far) -"xOV" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, -/area/hangar/intrepid) +/area/horizon/engineering/reactor/indra/office) +"xOP" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 9 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/atmos/propulsion) +"xOU" = ( +/obj/machinery/door/airlock/multi_tile/glass{ + name = "Server Hall"; + req_access = list(47) + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled, +/area/horizon/rnd/hallway/secondary) "xOX" = ( /obj/structure/table/rack, /obj/random/tech_supply, /obj/random/glowstick, /turf/unsimulated/floor/plating, /area/centcom/holding) -"xPc" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/machinery/alarm/north, -/obj/structure/closet/crate/bin, -/obj/random/loot, -/turf/simulated/floor/plating, -/area/maintenance/engineering) "xPe" = ( /obj/structure/sign/flag/nanotrasen/large/north, /obj/effect/floor_decal/corner/paleblue/full{ @@ -166673,6 +167658,15 @@ /obj/structure/bed/stool/chair, /turf/unsimulated/floor, /area/centcom/ferry) +"xPf" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/emergency{ + dir = 8 + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/hangar/starboard) "xPg" = ( /obj/structure/table/standard, /obj/item/paper_bin{ @@ -166695,56 +167689,23 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/wood, /area/shuttle/skipjack) -"xPm" = ( -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 5 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/lattice/catwalk/indoor, -/turf/simulated/floor/plating, -/area/engineering/atmos/air) -"xPp" = ( -/obj/structure/table/standard, -/obj/item/reagent_containers/glass/beaker/large, -/obj/effect/floor_decal/corner_wide/orange/full, -/obj/structure/sign/poster/medical/bay_39{ - pixel_x = -29 - }, -/turf/simulated/floor/tiled/white, -/area/medical/pharmacy) -"xPs" = ( -/obj/random/junk, -/obj/machinery/light/small/emergency, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/research_port) "xPt" = ( /obj/effect/decal/cleanable/dirt, /turf/unsimulated/floor, /area/centcom/legion) -"xPv" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/hangar/starboard) "xPw" = ( /obj/effect/landmark{ name = "Animal Baby Spawn Random" }, /turf/simulated/floor/carpet/magenta, /area/horizon/holodeck/source_cafe) -"xPA" = ( -/obj/machinery/light{ - dir = 4 +"xPC" = ( +/turf/simulated/floor/reinforced{ + blocks_air = 1; + density = 1; + name = "thruster mount" }, -/obj/machinery/alarm/north, -/turf/simulated/floor/tiled/freezer, -/area/medical/washroom) +/area/horizon/engineering/atmos/propulsion/starboard) "xPD" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/button/remote/blast_door{ @@ -166757,60 +167718,48 @@ /obj/effect/floor_decal/corner_wide/dark_green/diagonal, /turf/simulated/floor/tiled/dark, /area/shuttle/skipjack) -"xPE" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/maintenance{ - dir = 4; - req_one_access = list(5,12) - }, -/turf/simulated/floor, -/area/horizon/maintenance/deck_three/aft/starboard) "xPH" = ( /turf/simulated/floor/holofloor/beach/sand{ dir = 6; icon_state = "beach" }, /area/horizon/holodeck/source_beach) -"xPN" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 10 +"xPI" = ( +/obj/machinery/button/ignition{ + id = "starboard_prop_igni"; + pixel_y = 26; + name = "Combustion Chamber Ignition" }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ +/obj/machinery/atmospherics/pipe/simple/visible/purple{ + dir = 4 + }, +/obj/effect/floor_decal/corner_wide/black/full{ dir = 1 }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"xPR" = ( -/obj/machinery/alarm/north{ - req_one_access = list(24,11,55) +/obj/effect/floor_decal/industrial/warning{ + dir = 5 }, -/obj/structure/table/stone/marble, -/obj/random/pottedplant_small{ - pixel_x = 6; - pixel_y = -2 +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/atmos/propulsion) +"xPM" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 }, -/obj/item/reagent_containers/food/condiment/sugar{ - pixel_y = 13; - pixel_x = -7 - }, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/bar) +/turf/simulated/floor/plating, +/area/horizon/hangar/auxiliary) "xPT" = ( /obj/effect/floor_decal/corner/dark_blue{ dir = 5 }, /turf/simulated/floor/tiled/dark, /area/shuttle/merchant) -"xQb" = ( -/obj/machinery/atmospherics/pipe/simple/visible/cyan, -/obj/structure/railing/mapped{ +"xPX" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ dir = 4 }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/engineering/engine_room) +/turf/simulated/floor/tiled/full, +/area/horizon/hallway/primary/deck_3/port) "xQc" = ( /obj/effect/decal/fake_object{ dir = 4; @@ -166839,76 +167788,64 @@ name = "shallow water" }, /area/horizon/holodeck/source_konyang) -"xQh" = ( -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 6 - }, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/engine_room/turbine) -"xQj" = ( +"xQl" = ( /obj/structure/cable/green{ icon_state = "4-8" }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ +/obj/effect/floor_decal/corner/brown/full{ dir = 4 }, /turf/simulated/floor/tiled, -/area/rnd/hallway) -"xQk" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/effect/floor_decal/corner_wide/yellow{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/engineering/bluespace_drive) +/area/horizon/operations/office) "xQt" = ( /obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction{ dir = 8 }, /turf/simulated/floor/reinforced/airless, /area/horizon/exterior) -"xQv" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/turretid/stun{ - check_synth = 1; - name = "\improper AI Chamber Turret Control Console"; - pixel_x = -34; - pixel_y = 31 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +"xQw" = ( +/obj/effect/floor_decal/industrial/outline/grey, +/obj/effect/decal/cleanable/flour, /turf/simulated/floor/tiled/dark, -/area/turret_protected/ai_upload_foyer) -"xQy" = ( -/obj/effect/floor_decal/corner/dark_blue/diagonal, -/obj/random/pottedplant, -/obj/structure/railing/mapped{ +/area/horizon/maintenance/deck_3/aft/port/far) +"xQE" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume/aux{ dir = 4 }, -/obj/structure/railing/mapped{ +/obj/effect/floor_decal/industrial/outline_door/red{ dir = 8 }, -/obj/structure/platform{ +/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/machinery/alarm/north{ - pixel_y = -7; - pixel_x = -1; - dir = 2 +/obj/effect/floor_decal/industrial/outline_straight/red, +/obj/machinery/airlock_sensor{ + pixel_y = 28; + pixel_x = 6 }, -/turf/simulated/floor/tiled, -/area/bridge) +/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/horizon/shuttle/quark/cockpit) "xQI" = ( /turf/simulated/wall/shuttle/space_ship, /area/shuttle/distress) @@ -166917,36 +167854,22 @@ /obj/structure/cable/green, /turf/simulated/floor/tiled/dark/full, /area/horizon/security/brig) -"xQU" = ( -/obj/structure/shuttle/engine/heater{ - dir = 1 - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/structure/railing/mapped, -/turf/simulated/floor/plating, -/area/engineering/atmos/propulsion/starboard) -"xQV" = ( -/obj/machinery/disposal/small/north, -/obj/structure/disposalpipe/trunk{ +"xQO" = ( +/obj/effect/floor_decal/corner/white/diagonal, +/obj/effect/floor_decal/industrial/warning/corner{ dir = 8 }, -/obj/effect/floor_decal/corner/brown{ - dir = 10 - }, -/obj/structure/closet/walllocker/medical/firstaid{ - pixel_y = -32 +/obj/effect/floor_decal/industrial/warning{ + dir = 1 }, /turf/simulated/floor/tiled, -/area/operations/office) -"xQW" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 +/area/horizon/medical/paramedic) +"xQS" = ( +/obj/structure/shuttle_part/scc/scout{ + icon_state = "7,6" }, -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/turf/simulated/floor/tiled, -/area/security/vacantoffice) +/turf/simulated/floor/plating, +/area/horizon/shuttle/canary) "xQY" = ( /obj/structure/shuttle_part/ert{ icon_state = "10,1"; @@ -166954,56 +167877,12 @@ }, /turf/unsimulated/floor/plating, /area/shuttle/specops) -"xRa" = ( -/obj/machinery/light{ +"xRi" = ( +/obj/effect/floor_decal/corner/black{ dir = 8 }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/closet/hazmat/general, -/obj/item/tank/oxygen, -/obj/item/tank/oxygen, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/hydroponics/lower) -"xRe" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 10 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/machinery/light, -/turf/simulated/floor/tiled, -/area/rnd/eva) -"xRl" = ( -/obj/effect/floor_decal/spline/fancy/wood, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/bridge/cciaroom) -"xRo" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/engine_room/rust) -"xRp" = ( -/obj/effect/floor_decal/corner/dark_green/diagonal, -/obj/structure/bed/stool/chair, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/starboard) -"xRt" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 9 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) +/turf/simulated/floor/tiled/dark, +/area/horizon/hangar/auxiliary) "xRw" = ( /obj/machinery/mech_recharger, /obj/effect/floor_decal/industrial/warning/corner{ @@ -167012,18 +167891,6 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled/dark/full, /area/shuttle/mercenary) -"xRB" = ( -/obj/effect/floor_decal/industrial/warning/full, -/obj/machinery/power/smes/buildable{ - charge = 5000000; - input_attempt = 1; - input_level = 200000; - output_attempt = 1; - output_level = 200000 - }, -/obj/structure/cable/green, -/turf/simulated/floor, -/area/bridge/aibunker) "xRC" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 10 @@ -167031,29 +167898,59 @@ /obj/structure/bookcase/libraryspawn/nonfiction, /turf/simulated/floor/wood/yew, /area/centcom/shared_dream) -"xRI" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/floor_decal/industrial/warning, -/obj/machinery/light/small/emergency{ +"xRM" = ( +/obj/item/crowbar, +/obj/structure/table/rack, +/obj/machinery/light/small{ dir = 8 }, -/obj/structure/table/rack, -/obj/random/loot, -/obj/random/loot, -/turf/simulated/floor/plating, -/area/horizon/maintenance/deck_two/fore/starboard) -"xRJ" = ( -/obj/structure/bed/stool/chair/office/dark, -/turf/simulated/floor/tiled/white, -/area/rnd/telesci) -"xRN" = ( -/obj/machinery/door/blast/regular{ - id = "iso_b_purge"; - name = "Exterior Blast Door" +/turf/unsimulated/floor/marble, +/area/antag/wizard) +"xRR" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" }, -/turf/simulated/floor/reinforced, -/area/rnd/isolation_b) -"xRO" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/full, +/area/horizon/hallway/primary/deck_2/starboard) +"xRT" = ( +/turf/simulated/wall, +/area/horizon/engineering/shields) +"xRV" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/conference) +"xSe" = ( +/obj/effect/floor_decal/carpet{ + dir = 4 + }, +/turf/simulated/floor/holofloor/carpet, +/area/horizon/holodeck/source_courtroom) +"xSg" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/full, +/area/horizon/hallway/primary/deck_2/central) +"xSh" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -167063,128 +167960,79 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/full, +/area/horizon/service/hydroponics/garden) +"xSt" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/structure/railing/mapped, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/operations/starboard/far) +"xSz" = ( /obj/effect/floor_decal/spline/fancy/wood{ + dir = 6 + }, +/obj/structure/bed/stool/chair/sofa/left/red{ dir = 8 }, /turf/simulated/floor/wood, -/area/hallway/engineering) -"xRP" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock{ - dir = 4; - name = "Recharging Station" - }, -/turf/simulated/floor/tiled/full, -/area/assembly/chargebay) -"xRY" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 6 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_two) -"xSe" = ( -/obj/effect/floor_decal/carpet{ - dir = 4 - }, -/turf/simulated/floor/holofloor/carpet, -/area/horizon/holodeck/source_courtroom) -"xSf" = ( -/obj/machinery/light, -/obj/structure/cable/orange{ - icon_state = "4-8" - }, -/obj/effect/floor_decal/corner_wide/yellow{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/engineering/bluespace_drive) -"xSn" = ( -/turf/simulated/floor/tiled/dark, -/area/maintenance/wing/starboard) -"xSp" = ( -/obj/structure/bed/stool/chair/office/dark, -/turf/simulated/floor/tiled, -/area/engineering/lobby) -"xSw" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/structure/disposalpipe/junction{ - dir = 8; - icon_state = "pipe-j2" - }, -/turf/simulated/floor/tiled, -/area/rnd/hallway) -"xSA" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 10 - }, -/obj/structure/railing/mapped, -/turf/simulated/floor/tiled/dark, -/area/horizon/grauwolf) +/area/horizon/rnd/hallway) "xSC" = ( /obj/structure/bed/stool/padded/red, /obj/effect/floor_decal/corner/brown/diagonal, /obj/structure/engineer_maintenance/pipe/wall, /turf/simulated/floor/tiled/dark, /area/horizon/holodeck_control) -"xSJ" = ( -/turf/simulated/wall/shuttle/scc_space_ship/cardinal, -/area/engineering/engine_room/turbine) -"xSP" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, +"xSE" = ( /obj/structure/cable/green{ icon_state = "4-8" }, -/turf/simulated/floor/tiled, -/area/operations/lobby) -"xSQ" = ( -/obj/structure/cable/green{ - icon_state = "1-2" +/obj/effect/floor_decal/corner/lime{ + dir = 5 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/obj/machinery/light_switch{ - pixel_x = -26; - pixel_y = -19 +/obj/machinery/button/remote/blast_door{ + id = "shutters_deck1_morgue"; + name = "Viewing Shutters"; + pixel_y = 25 }, -/turf/simulated/floor/tiled/white, -/area/medical/equipment) -"xSR" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 1 }, -/obj/machinery/light/small/emergency, -/obj/effect/map_effect/marker/airlock{ - frequency = 1004; - master_tag = "airlock_horizon_deck_1_fore_1"; - name = "airlock_horizon_deck_1_fore_1" +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/maintenance/hangar/starboard) -"xSS" = ( -/turf/simulated/wall/shuttle/scc_space_ship/cardinal, -/area/chapel/office) +/turf/simulated/floor/tiled, +/area/horizon/medical/morgue) +"xSM" = ( +/obj/effect/floor_decal/corner_wide/purple/diagonal, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/test_range) +"xSN" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/atmos/propulsion) +"xSO" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor, +/area/horizon/maintenance/deck_3/aft/port/far) +"xST" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/machinery/firealarm/west, +/obj/effect/floor_decal/industrial/outline/blue, +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/reactor/supermatter/waste) "xSV" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/closet/crate/loot{ @@ -167205,39 +168053,23 @@ icon_state = "dark_preview" }, /area/centcom/control) -"xTa" = ( -/obj/structure/railing/mapped, -/obj/structure/table/rack, -/obj/item/ship_ammunition/longbow, -/obj/item/ship_ammunition/longbow, -/obj/item/ship_ammunition/longbow, -/obj/item/ship_ammunition/longbow, -/obj/item/ship_ammunition/longbow, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 10 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/dark, -/area/horizon/longbow) -"xTd" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 9 - }, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/engine_room/rust) -"xTi" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 6 - }, -/obj/machinery/camera/network/second_deck{ - c_tag = "Second Deck - Hallway 1"; - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) +"xTg" = ( +/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, +/turf/simulated/floor/bluegrid/server, +/area/horizon/rnd/server) "xTj" = ( /turf/simulated/wall/r_wall, /area/horizon/security/interrogation) +"xTk" = ( +/obj/machinery/atmospherics/pipe/simple/visible/universal{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor/plating, +/area/horizon/security/checkpoint2) "xTm" = ( /obj/machinery/light/small{ dir = 1; @@ -167262,80 +168094,74 @@ }, /turf/unsimulated/floor/linoleum, /area/antag/actor) -"xTz" = ( +"xTo" = ( /obj/structure/cable/green{ - icon_state = "4-8" + icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/structure/disposalpipe/junction{ +/obj/effect/floor_decal/corner/dark_green{ + dir = 9 + }, +/obj/structure/railing/mapped{ dir = 8 }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/obj/structure/disposalpipe/sortjunction/flipped{ + dir = 1; + icon_state = "pipe-j1s"; + name = "Auxiliary Custodial Closet"; + sortType = "Auxiliary Custodial Closet" + }, +/turf/simulated/floor/tiled, +/area/horizon/stairwell/starboard/deck_2) +"xTt" = ( +/obj/effect/floor_decal/corner/grey/diagonal, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/white, -/area/hallway/medical) -"xTG" = ( -/obj/structure/disposalpipe/segment{ +/area/horizon/shuttle/intrepid/buffet) +"xTx" = ( +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_3/central) +"xTB" = ( +/obj/structure/railing/mapped, +/obj/structure/lattice, +/obj/structure/platform/ledge{ + dir = 1 + }, +/obj/structure/platform/ledge{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 +/obj/structure/platform_deco/ledge{ + dir = 10 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/ramp/bottom{ - dir = 4 - }, -/area/maintenance/engineering) +/turf/simulated/open, +/area/horizon/hallway/primary/deck_2/central) "xTI" = ( /obj/effect/floor_decal/corner/red{ dir = 10 }, /turf/simulated/floor/tiled/dark, /area/horizon/security/interrogation) -"xTL" = ( -/obj/effect/floor_decal/corner/brown{ - dir = 5 - }, -/obj/machinery/autolathe, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/operations/office) -"xTM" = ( -/obj/structure/window/shuttle/scc_space_ship, -/obj/structure/grille, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "bridge blast"; - name = "Bridge Blast Doors"; - opacity = 0 - }, -/obj/machinery/door/firedoor, +"xTV" = ( /obj/structure/cable/green{ - icon_state = "2-4" + icon_state = "1-8" }, -/obj/structure/cable/green{ - icon_state = "0-4" - }, -/obj/machinery/door/blast/shutters/open{ - dir = 4; - id = "shutters_deck3_bridgesafety"; - name = "Safety Shutter" - }, -/obj/machinery/door/blast/shutters/open{ - dir = 4; - id = "conferencesafetyshutters"; - name = "Safety Shutter" - }, -/turf/simulated/floor/plating, -/area/bridge/meeting_room) +/turf/simulated/floor, +/area/horizon/maintenance/substation/civ_d3) +"xTW" = ( +/turf/simulated/wall/shuttle/scc_space_ship/cardinal, +/area/horizon/engineering/storage_hard) "xUa" = ( /obj/effect/floor_decal/corner/blue{ dir = 9 @@ -167344,31 +168170,43 @@ /obj/effect/floor_decal/industrial/outline/security, /turf/simulated/floor/tiled/white, /area/horizon/security/autopsy_laboratory) -"xUb" = ( -/obj/effect/floor_decal/spline/fancy/wood{ +"xUc" = ( +/obj/structure/table/stone/marble, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/obj/machinery/hologram/holopad/long_range, -/turf/simulated/floor/wood, -/area/crew_quarters/heads/hop/xo) -"xUs" = ( -/obj/machinery/atmospherics/pipe/simple/visible/black{ +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, +/obj/item/reagent_containers/food/condiment/sugar{ + pixel_x = 7; + pixel_y = 8 + }, +/obj/item/reagent_containers/cooking_container/board/bowl, +/obj/item/reagent_containers/glass/beaker{ + pixel_x = -6; + pixel_y = 8 + }, /turf/simulated/floor/tiled/dark/full, -/area/engineering/engine_room/turbine) -"xUv" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 9 +/area/horizon/service/kitchen) +"xUj" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 5 }, -/obj/machinery/light/floor{ - dir = 8 +/obj/effect/floor_decal/corner/white{ + dir = 10 }, -/obj/structure/platform_deco{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/bridge) +/turf/simulated/floor/tiled/dark, +/area/horizon/rnd/xenobiology/xenoflora) +"xUo" = ( +/obj/machinery/shieldgen, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/light, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/storage_hard) +"xUt" = ( +/turf/simulated/wall/shuttle/scc_space_ship/cardinal, +/area/horizon/service/kitchen/freezer) "xUx" = ( /obj/effect/floor_decal/corner_wide/paleblue{ dir = 9 @@ -167377,29 +168215,35 @@ /obj/effect/floor_decal/industrial/outline/security, /turf/simulated/floor/tiled/dark/full, /area/horizon/security/armoury) -"xUB" = ( -/obj/machinery/power/fusion_core{ - anchored = 1; - initial_id_tag = "horizon_fusion" +"xUA" = ( +/obj/machinery/atmospherics/binary/pump{ + dir = 4 }, -/obj/effect/floor_decal/industrial/hatch/red, -/obj/structure/cable/yellow{ - icon_state = "0-8" +/obj/effect/floor_decal/corner/yellow, +/obj/effect/floor_decal/corner/dark_blue{ + dir = 8 }, -/obj/structure/cable/yellow{ - icon_state = "0-4" +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/atmos) +"xUH" = ( +/obj/structure/bed/stool/chair/padded/brown, +/obj/effect/landmark/start{ + name = "Passenger" }, -/turf/simulated/floor/reinforced/airless, -/area/engineering/engine_room/rust) -"xUM" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 +/turf/simulated/floor/carpet/art, +/area/horizon/crew/lounge) +"xUI" = ( +/obj/machinery/recharge_station, +/obj/effect/floor_decal/corner/brown/full, +/turf/simulated/floor/tiled, +/area/horizon/operations/warehouse) +"xUK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/purple{ + dir = 8 }, -/obj/structure/tank_wall/nitrogen{ - icon_state = "n3" - }, -/turf/simulated/floor/plating, -/area/engineering/atmos/air) +/turf/simulated/wall/shuttle/scc_space_ship/cardinal, +/area/horizon/engineering/atmos) "xUR" = ( /obj/structure/closet/secure_closet/guncabinet{ req_access = list(2) @@ -167408,329 +168252,243 @@ icon_state = "dark_preview" }, /area/centcom/holding) -"xUZ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +"xUV" = ( +/obj/machinery/camera/network/engineering{ + c_tag = "Engineering - Equipment Storage"; + dir = 8 }, -/obj/effect/floor_decal/corner/black{ - dir = 9 +/obj/effect/floor_decal/corner/yellow/full{ + dir = 4 }, /turf/simulated/floor/tiled, -/area/operations/lower/machinist) -"xVb" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 +/area/horizon/engineering/storage_eva) +"xUY" = ( +/obj/machinery/computer/ship/helm/cockpit{ + pixel_y = -18 }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor, -/area/horizon/maintenance/deck_three/aft/starboard) -"xVd" = ( -/obj/machinery/door/firedoor, -/obj/structure/table/stone/marble, -/obj/machinery/chemical_dispenser/coffeemaster/full{ - pixel_y = 16 +/obj/machinery/light/spot, +/obj/structure/bed/stool/chair/cockpit, +/obj/machinery/computer/ship/engines/cockpit{ + pixel_x = 26 }, -/obj/item/reagent_containers/glass/bottle/syrup/caramel{ - pixel_x = -15; - pixel_y = 4 +/obj/machinery/computer/shuttle_control/explore/canary/left{ + pixel_x = -25; + req_one_access = list(73,74); + req_access = null }, -/obj/item/reagent_containers/glass/bottle/syrup/chocolate{ - pixel_x = -7; - pixel_y = 4 - }, -/obj/item/reagent_containers/glass/bottle/syrup/pumpkin{ - pixel_x = 1; - pixel_y = 4 - }, -/obj/item/reagent_containers/glass/bottle/syrup/vanilla{ - pixel_x = 9; - pixel_y = 4 - }, -/obj/machinery/door/blast/shutters{ - id = "bar_shutter"; - name = "Bar Shutter" - }, -/turf/simulated/floor/tiled/dark, -/area/horizon/bar) -"xVg" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ +/turf/simulated/floor/carpet/rubber, +/area/horizon/shuttle/canary) +"xVh" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ dir = 4 }, +/turf/simulated/floor, +/area/horizon/maintenance/deck_2/wing/starboard/far) +"xVj" = ( +/obj/machinery/camera/network/research{ + c_tag = "Research - Eva Preparation"; + dir = 1 + }, +/obj/effect/floor_decal/corner/mauve/full{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/storage/eva/expedition) +"xVm" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/aux{ - dir = 8 - }, -/obj/structure/stairs_lower{ - dir = 1; - pixel_y = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/green{ - dir = 8 - }, -/obj/structure/lattice/catwalk/indoor/grate, -/turf/simulated/floor/plating, -/area/hallway/engineering) -"xVk" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/maintenance{ - dir = 1; - name = "Custodial Closet Maintenance"; - req_access = list(26) - }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/full, -/area/horizon/custodial) -"xVn" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/reinforced, -/area/rnd/isolation_b) +/turf/simulated/floor/tiled, +/area/horizon/engineering/storage_eva) "xVr" = ( /obj/effect/floor_decal/industrial/warning/cee, /turf/simulated/floor/tiled/dark/airless, /area/horizon/exterior) -"xVs" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 6 +"xVv" = ( +/obj/machinery/atmospherics/portables_connector, +/obj/structure/stairs_lower{ + pixel_y = 9 }, -/obj/structure/table/standard, -/obj/random/tech_supply, -/obj/random/tech_supply, -/obj/random/tech_supply, -/obj/random/tech_supply, -/obj/machinery/power/apc/east, -/obj/structure/cable/green{ - icon_state = "0-8" +/obj/machinery/portable_atmospherics/powered/scrubber, +/obj/effect/floor_decal/industrial/outline/red, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/hallway/aft) +"xVy" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 4 }, -/turf/simulated/floor/tiled, -/area/storage/primary) -"xVt" = ( -/obj/structure/shuttle_part/scc/scout{ - icon_state = "1,3" +/obj/machinery/atmospherics/pipe/simple/visible/green, +/turf/simulated/floor/plating, +/area/horizon/engineering/reactor/supermatter/mainchamber) +"xVV" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/dark, +/area/horizon/weapons/longbow) +"xWf" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/item/material/shard{ + icon_state = "small" }, /turf/simulated/floor/plating, -/area/shuttle/canary) -"xVO" = ( -/obj/machinery/computer/ship/sensors/cockpit{ - pixel_x = -27 +/area/horizon/maintenance/deck_2/cargo_compartment) +"xWm" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 6 }, -/obj/structure/bed/stool/chair/shuttle, -/obj/machinery/computer/ship/helm/cockpit{ - pixel_y = -24; - req_one_access = list(48,74) +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 }, -/obj/machinery/computer/shuttle_control/explore/mining_shuttle{ - dir = 8; - pixel_x = 27; - req_access = null; - req_one_access = list(48,74) +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 }, -/obj/effect/floor_decal/industrial/outline/grey, -/obj/item/device/radio/intercom/expedition/west{ - pixel_y = -24; - pixel_x = -10 +/obj/structure/disposalpipe/segment{ + icon_state = "pipe-c" }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/mining) -"xVR" = ( -/obj/effect/floor_decal/corner_wide/yellow, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/horizon/rnd/hallway/secondary) +"xWs" = ( +/obj/effect/floor_decal/corner/dark_green/full, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_2/fore) +"xWv" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/turf/simulated/floor/plating, +/area/horizon/engineering/storage/lower) +"xWy" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/turf/simulated/floor/plating, +/area/horizon/hangar/intrepid) +"xXa" = ( +/obj/effect/decal/fake_object{ + name = "cockpit ladder"; + pixel_x = 9; + pixel_y = -4 + }, +/obj/machinery/door/window/northright{ + req_one_access = list(73,74) + }, +/obj/item/clothing/head/helmet/pilot/scc{ + pixel_x = -9; + pixel_y = 2 + }, +/obj/item/clothing/head/helmet/pilot/scc{ + pixel_x = -9; + pixel_y = -5 + }, +/turf/simulated/floor/carpet/rubber, +/area/horizon/shuttle/canary) +"xXb" = ( +/obj/machinery/holosign/surgery{ + id = 1 + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/door/airlock/medical{ + dir = 1; + name = "Operating Theatre 1"; + req_access = list(45) + }, +/obj/effect/map_effect/door_helper/unres{ + dir = 1 + }, +/turf/simulated/floor/tiled/full, +/area/horizon/medical/surgery) +"xXe" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/wing/starboard/far) +"xXh" = ( /obj/structure/cable/green{ icon_state = "4-8" }, -/turf/simulated/floor/tiled, -/area/hallway/engineering/rust) -"xVU" = ( -/obj/structure/railing/mapped{ - dir = 4 +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" }, -/obj/effect/floor_decal/corner/black{ - dir = 6 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/hangar/intrepid) -"xVW" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/obj/effect/floor_decal/corner/brown, -/turf/simulated/floor/tiled/dark, -/area/shuttle/intrepid/port_compartment) -"xWb" = ( -/obj/effect/floor_decal/corner/red/diagonal, -/obj/effect/floor_decal/spline/plain{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/horizon/maintenance/deck_three/aft/starboard) -"xWe" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 10 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 4 - }, -/turf/simulated/floor/reinforced, -/area/engineering/gravity_gen) -"xWh" = ( -/obj/structure/cable{ - icon_state = "0-2" - }, -/obj/machinery/power/terminal{ - dir = 8 - }, -/obj/machinery/light/small/emergency{ - dir = 4 - }, -/obj/machinery/camera/network/engineering{ - c_tag = "Engineering - Deck 1 - Atmospherics Substation"; - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/substation/engineering/lower) -"xWn" = ( /obj/structure/cable/green{ icon_state = "1-4" }, -/obj/effect/floor_decal/corner/yellow{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/engineering/lobby) -"xWp" = ( -/obj/effect/floor_decal/corner_wide/paleblue/full, -/obj/structure/closet/secure_closet/CMO, -/obj/item/device/radio/intercom/west, -/obj/machinery/keycard_auth{ - dir = 4; - pixel_x = -27; - pixel_y = 7 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/heads/cmo) -"xWq" = ( -/obj/effect/floor_decal/spline/fancy/wood, -/obj/structure/bed/stool/chair/padded/beige{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/hallway/primary/central_two) -"xWA" = ( -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_two/fore) -"xWD" = ( -/obj/structure/window/reinforced{ +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/effect/floor_decal/corner_wide/green{ dir = 8 }, -/obj/effect/landmark/start{ - name = "Librarian" - }, -/obj/structure/bed/stool/chair/office/light, -/turf/simulated/floor/lino/diamond, -/area/horizon/library) -"xWF" = ( -/obj/effect/floor_decal/corner_wide/lime/diagonal, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, /turf/simulated/floor/tiled/white, -/area/medical/reception) -"xWJ" = ( -/obj/machinery/computer/drone_control{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/engineering/drone_fabrication) -"xWK" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 1 - }, -/obj/effect/floor_decal/spline/plain/corner, -/obj/effect/floor_decal/spline/plain/corner{ - dir = 8 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/cable/green{ - icon_state = "2-4" - }, -/turf/simulated/floor/carpet/rubber, -/area/tcommsat/chamber) -"xWM" = ( -/obj/machinery/embedded_controller/radio/airlock/airlock_controller{ - dir = 8; - pixel_x = 20 - }, -/obj/effect/map_effect/marker/airlock{ - frequency = 1003; - master_tag = "airlock_horizon_deck_1_aft_propulsion_1"; - name = "airlock_horizon_deck_1_aft_propulsion_1" - }, -/turf/simulated/floor/plating, -/area/engineering/atmos/propulsion/starboard) -"xWT" = ( -/obj/machinery/door/airlock/external, -/obj/effect/map_effect/marker/airlock{ - frequency = 1004; - master_tag = "airlock_horizon_deck_1_fore_1"; - name = "airlock_horizon_deck_1_fore_1" - }, -/obj/effect/map_effect/marker_helper/airlock/interior, -/turf/simulated/floor/plating, -/area/maintenance/hangar/starboard) -"xWY" = ( -/obj/machinery/hologram/holopad, -/turf/simulated/floor/wood, -/area/crew_quarters/lounge) -"xXj" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/visible/yellow, -/turf/simulated/floor/tiled/white, -/area/rnd/isolation_a) +/area/horizon/medical/hallway) +"xXl" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/table/steel, +/turf/simulated/floor/tiled/dark, +/area/horizon/maintenance/deck_2/wing/starboard) "xXn" = ( /obj/effect/floor_decal/spline/plain/cee, /obj/structure/flora/ausbushes/lavendergrass, /turf/simulated/floor/exoplanet/grass/grove, /area/centcom/shared_dream) +"xXr" = ( +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/effect/floor_decal/corner/black{ + dir = 9 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/hangar/intrepid) "xXA" = ( /obj/effect/map_effect/window_spawner/full/reinforced/grille/firedoor, /turf/simulated/floor/tiled/dark/full, /area/shuttle/hapt) -"xXD" = ( -/obj/machinery/door/airlock{ - dir = 1; - id_tag = "cryo_toilet_1"; - name = "Toilet 1" +"xXE" = ( +/obj/machinery/papershredder, +/obj/effect/floor_decal/corner/dark_green{ + dir = 5 }, -/obj/machinery/door/firedoor{ +/obj/effect/floor_decal/industrial/warning{ dir = 4 }, +/obj/machinery/light{ + dir = 1 + }, /turf/simulated/floor/tiled, -/area/horizon/crew_quarters/cryo/washroom) +/area/horizon/crew/chargebay) +"xXG" = ( +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/horizon/service/chapel/office) "xXI" = ( /obj/structure/table/rack, /obj/item/tank/emergency_oxygen/double{ @@ -167768,28 +168526,6 @@ /obj/item/clothing/mask/gas/alt, /turf/unsimulated/floor, /area/centcom/distress_prep) -"xXK" = ( -/obj/random/junk, -/obj/effect/decal/cleanable/dirt, -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard) -"xXM" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/corner_wide/yellow{ - dir = 10 - }, -/obj/machinery/light, -/turf/simulated/floor/tiled, -/area/engineering/lobby) "xXN" = ( /obj/machinery/door/airlock/highsecurity{ dir = 4; @@ -167798,59 +168534,15 @@ }, /turf/simulated/floor/shuttle/dark_red, /area/shuttle/hapt) -"xXO" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 1 +"xXY" = ( +/obj/machinery/firealarm/east, +/obj/effect/floor_decal/corner/dark_green{ + dir = 6 }, -/obj/machinery/light/small/emergency{ - dir = 4 - }, -/obj/effect/map_effect/marker/airlock{ - frequency = 1003; - master_tag = "airlock_horizon_deck_1_starboard_1"; - name = "airlock_horizon_deck_1_starboard_1" - }, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard/deck1) -"xXP" = ( -/obj/machinery/door/firedoor, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/full, -/area/maintenance/wing/starboard) -"xXR" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/simulated/floor/reinforced, -/area/rnd/xenobiology/hazardous) -"xXU" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/structure/railing/mapped{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard/deck1) -"xXW" = ( -/obj/machinery/atmospherics/pipe/manifold/visible{ - dir = 1 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/dark, -/area/engineering/atmos) -"xXZ" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 10 - }, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/engine_room/rust) +/obj/machinery/portable_atmospherics/powered/pump/filled, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled, +/area/horizon/hangar/intrepid) "xYe" = ( /obj/machinery/light{ dir = 8 @@ -167870,29 +168562,27 @@ icon_state = "dark_preview" }, /area/centcom/holding) -"xYn" = ( -/obj/machinery/recharge_station, -/turf/simulated/floor/tiled, -/area/rnd/xenoarch_atrium) -"xYo" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/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{ +"xYg" = ( +/obj/effect/floor_decal/industrial/warning{ dir = 4 }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/quark/cargo_hold) +/obj/random/dirt_75, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/starboard/nacelle) +"xYh" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_2/central) +"xYr" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/horizon/operations/machinist/surgicalbay) "xYv" = ( /obj/effect/floor_decal/corner/dark_blue{ dir = 9 @@ -167908,6 +168598,17 @@ }, /turf/simulated/floor/tiled, /area/horizon/security/investigations_hallway) +"xYx" = ( +/obj/effect/floor_decal/corner/dark_blue/diagonal, +/obj/structure/bed/handrail, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/machinery/alarm/north{ + req_one_access = list(11, 73) + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/shuttle/intrepid/flight_deck) "xYC" = ( /obj/structure/lattice/catwalk, /obj/structure/railing/mapped, @@ -167916,21 +168617,19 @@ }, /turf/simulated/open/airless, /area/horizon/exterior) -"xYD" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_engineering{ - dir = 4; - name = "Engineering Hallway"; - req_one_access = list(10) - }, -/obj/effect/map_effect/door_helper/unres{ +"xYF" = ( +/obj/structure/lattice, +/obj/machinery/light{ dir = 8 }, -/turf/simulated/floor/tiled/full, -/area/hallway/engineering) +/obj/structure/platform/ledge{ + dir = 4 + }, +/obj/structure/platform/ledge{ + dir = 8 + }, +/turf/simulated/open, +/area/horizon/operations/office) "xYG" = ( /obj/machinery/firealarm/north, /obj/effect/floor_decal/corner/dark_blue/full{ @@ -167947,10 +168646,29 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/security/interrogation/monitoring) -"xYM" = ( -/obj/structure/table/rack, -/turf/simulated/floor, -/area/maintenance/wing/port/far) +"xYH" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/turf/simulated/floor/tiled, +/area/horizon/crew/vacantoffice) +"xYJ" = ( +/obj/structure/ladder/up{ + pixel_y = 10 + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/hangar/starboard) +"xYO" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/hangar/intrepid) "xYP" = ( /obj/effect/floor_decal/spline/plain, /obj/effect/floor_decal/spline/plain/corner{ @@ -167966,70 +168684,48 @@ dir = 8 }, /area/centcom/distress_prep) -"xYS" = ( -/obj/effect/floor_decal/spline/plain, -/obj/effect/floor_decal/spline/plain{ - dir = 1 +"xYY" = ( +/obj/structure/shuttle_part/scc/mining{ + icon_state = "0,4"; + outside_part = 0; + pixel_x = -32 }, -/obj/machinery/atmospherics/pipe/simple/hidden/black{ - dir = 4 - }, -/turf/simulated/floor/carpet/rubber, -/area/tcommsat/chamber) -"xYU" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/horizon/cafeteria) -"xYV" = ( -/obj/effect/floor_decal/corner/mauve/full{ - dir = 4 +/turf/simulated/wall/shuttle/unique/scc/mining{ + icon_state = "1,4" }, +/area/horizon/shuttle/mining) +"xZa" = ( +/turf/simulated/wall, +/area/horizon/maintenance/deck_3/aft/port) +"xZg" = ( +/turf/simulated/wall, +/area/horizon/maintenance/deck_1/wing/port/far) +"xZi" = ( +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, /obj/structure/cable/green{ icon_state = "1-2" }, -/obj/machinery/light/floor{ - dir = 4 - }, -/obj/machinery/alarm/east, -/turf/simulated/floor/tiled, -/area/rnd/hallway/secondary) -"xYW" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/full, +/area/horizon/hallway/primary/deck_2/fore) +"xZm" = ( +/obj/effect/map_effect/window_spawner/full/reinforced/grille/firedoor, +/turf/simulated/floor/plating, +/area/horizon/engineering/bluespace_drive) +"xZn" = ( /turf/simulated/wall/r_wall, -/area/engineering/gravity_gen) -"xZj" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 10 +/area/horizon/maintenance/deck_1/main/port) +"xZp" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/machinery/alarm/north{ + req_one_access = list(24,11,55) }, -/obj/structure/table/standard, -/obj/machinery/recharger, -/obj/item/device/camera_film, -/obj/item/device/camera_film, -/obj/item/device/camera, -/obj/machinery/camera/network/second_deck{ - c_tag = "Second Deck - Tool storage"; - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/storage/primary) -"xZq" = ( -/obj/machinery/computer/message_monitor{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/carpet/rubber, -/area/bridge/controlroom) +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/service/hydroponics/garden) "xZr" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/effect/floor_decal/industrial/warning, @@ -168056,46 +168752,22 @@ }, /turf/simulated/floor/carpet, /area/shuttle/skipjack) +"xZt" = ( +/obj/machinery/atmospherics/binary/pump/high_power{ + dir = 4; + name = "Propellant Bleed Pump" + }, +/obj/effect/floor_decal/industrial/hatch/red, +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/atmos/propulsion/starboard) "xZu" = ( /turf/simulated/wall/shuttle/unique/mercenary/small{ icon_state = "7,5" }, /area/shuttle/syndicate_elite) -"xZv" = ( -/obj/machinery/alarm/north, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/lattice/catwalk/indoor/grate/old, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"xZC" = ( -/obj/structure/bed/stool/chair/shuttle{ - dir = 8 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/shuttle/dark_blue, -/area/shuttle/escape_pod/pod4) -"xZI" = ( -/obj/machinery/door/airlock/command{ - dir = 4; - id_tag = "hopdoor"; - name = "Executive Officer's Office"; - req_access = list(57) - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/heads/hop/xo) +"xZE" = ( +/turf/simulated/wall, +/area/horizon/service/library) "xZJ" = ( /obj/effect/floor_decal/corner/dark_blue{ dir = 6 @@ -168112,71 +168784,54 @@ }, /turf/simulated/floor/tiled, /area/horizon/security/investigations_hallway) -"xZK" = ( -/obj/effect/floor_decal/corner_wide/green{ - dir = 9 - }, -/obj/machinery/disposal/small/east, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/machinery/button/switch/windowtint{ - dir = 8; - id = "Recovery1"; - pixel_y = -2; - pixel_x = -22 - }, -/obj/machinery/light_switch{ - dir = 8; - pixel_x = -22; - pixel_y = 10 - }, -/turf/simulated/floor/tiled/white, -/area/medical/ward) -"xZL" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard) -"xZR" = ( -/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/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/full, -/area/hallway/primary/central_one) -"xZS" = ( -/turf/simulated/floor/tiled/dark, -/area/bridge/aibunker) -"xZV" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/journalistoffice) -"xZW" = ( -/obj/structure/table/reinforced/steel, -/obj/item/folder/yellow{ - pixel_x = -7; - pixel_y = 8 - }, +"xZO" = ( +/obj/structure/table/standard, +/obj/item/device/integrated_electronics/wirer, +/obj/item/device/integrated_electronics/debugger, +/obj/item/storage/bag/circuits/basic, /obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/carpet/rubber, +/area/horizon/rnd/lab) +"xZQ" = ( +/turf/simulated/wall/r_wall, +/area/horizon/engineering/reactor/supermatter/airlock) +"xZR" = ( +/obj/structure/closet, +/obj/random/loot, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/starboard) +"xZT" = ( +/obj/structure/bed/stool/chair/office/dark{ dir = 1 }, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/engine_monitoring/rust) +/obj/effect/floor_decal/spline/plain{ + dir = 1 + }, +/turf/simulated/floor/carpet/rubber, +/area/horizon/engineering/reactor/indra/monitoring) +"xZX" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/wood, +/area/horizon/maintenance/deck_2/wing/port) +"yaa" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/machinery/alarm/east, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/structure/disposalpipe/trunk, +/obj/machinery/disposal/small/west, +/turf/simulated/floor/lino/diamond, +/area/horizon/service/library) +"yad" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_3/port) "yae" = ( /obj/structure/flora/ausbushes/sparsegrass, /obj/structure/flora/ausbushes/pointybush, @@ -168186,60 +168841,55 @@ /obj/effect/floor_decal/spline/fancy/wood, /turf/simulated/floor/holofloor/grass, /area/horizon/holodeck/source_picnicarea) -"yaf" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ +"yak" = ( +/obj/structure/ladder{ + pixel_y = 16 + }, +/turf/simulated/open, +/area/horizon/maintenance/deck_2/aft) +"yaq" = ( +/obj/effect/floor_decal/industrial/hatch_door/red{ dir = 1 }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology) -"yag" = ( -/obj/machinery/firealarm/west, -/obj/structure/closet/walllocker/emerglocker/north, -/obj/effect/floor_decal/corner/dark_green/full{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/outline/emergency_closet, -/turf/simulated/floor/tiled, -/area/hangar/auxiliary) -"yah" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/airlock/hatch{ - dir = 1; - name = "Supermatter Reactor SMES"; - req_one_access = list(11,24) +/obj/machinery/door/airlock/external, +/obj/machinery/atmospherics/pipe/manifold4w/hidden, +/obj/effect/map_effect/marker/airlock/shuttle{ + cycle_to_external_air = 1; + master_tag = "airlock_shuttle_intrepid"; + name = "airlock_shuttle_intrepid"; + req_one_access = null; + shuttle_tag = "Intrepid" }, +/obj/effect/map_effect/marker_helper/airlock/exterior, /turf/simulated/floor/tiled/dark/full, -/area/engineering/smes) -"yaj" = ( -/obj/item/modular_computer/console/preset/security{ - dir = 1 +/area/horizon/shuttle/intrepid/main_compartment) +"yav" = ( +/obj/machinery/door/blast/shutters/open{ + dir = 8; + id = "shutters_deck3_cafewindows"; + name = "Cafe Window Shutter" }, -/obj/effect/floor_decal/corner/dark_blue/full{ +/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/service/cafeteria) +"yaw" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/simulated/floor/tiled/dark, -/area/security/checkpoint2) -"yar" = ( -/obj/machinery/light, -/obj/structure/bed/stool/chair/padded/brown{ - dir = 1 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 10 +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 }, -/turf/simulated/floor/wood, -/area/lawoffice/consular_two) -"yau" = ( -/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, -/obj/machinery/door/blast/shutters{ - dir = 4; - id = "shutters_deck1_morgue2"; - name = "Viewing Shutter" +/obj/effect/floor_decal/corner/dark_green/full{ + dir = 4 }, -/turf/simulated/floor/tiled/full, -/area/medical/morgue/lower) +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_3/central) "yay" = ( /obj/item/stack/medical/ointment, /obj/item/stack/medical/ointment, @@ -168250,14 +168900,21 @@ icon_state = "white" }, /area/tdome/tdomeadmin) -"yaB" = ( -/obj/machinery/door/window/eastright, -/obj/structure/platform_stairs/full/east_west_cap, -/obj/structure/platform/cutout{ +"yaz" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/effect/floor_decal/spline/plain{ dir = 4 }, -/turf/simulated/floor/plating, -/area/maintenance/wing/starboard/far) +/turf/simulated/floor/carpet/rubber, +/area/horizon/engineering/bluespace_drive/monitoring) "yaE" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 1 @@ -168267,49 +168924,11 @@ }, /turf/simulated/floor/wood, /area/horizon/security/meeting_room) -"yaF" = ( -/obj/structure/engineer_maintenance/electric, -/obj/structure/engineer_maintenance/pipe{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/bluespace_drive) -"yaH" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/platform_stairs/full/east_west_cap/half{ - dir = 8 - }, -/obj/structure/platform, -/turf/simulated/floor/tiled/full, -/area/hallway/engineering) "yaI" = ( /obj/structure/flora/ausbushes/lavendergrass, /obj/effect/floor_decal/spline/plain, /turf/simulated/floor/exoplanet/grass/grove, /area/centcom/shared_dream) -"yaP" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/obj/machinery/light/small/emergency{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/operations/loading) "yaQ" = ( /obj/structure/railing/mapped{ name = "adjusted railing" @@ -168332,85 +168951,41 @@ }, /turf/simulated/floor/tiled/dark/full, /area/turbolift/scc_ship/morgue_lift) -"yaT" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/structure/railing/mapped, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/bluespace_drive) -"yaV" = ( -/obj/machinery/disposal/deliveryChute, -/obj/machinery/door/window/eastleft{ - dir = 2; - req_access = list(55) - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/blast/regular/open{ - fail_secure = 1; - id = "xenobio_f"; - name = "Cell Containment Blast Door"; - dir = 8 - }, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark/full, -/area/rnd/xenobiology) "yaX" = ( /obj/item/ore, /turf/unsimulated/floor/plating, /area/antag/raider) -"ybh" = ( -/obj/effect/floor_decal/industrial/warning/full, -/obj/machinery/porta_turret, -/obj/machinery/power/apc/critical/west, -/obj/structure/cable/green{ - icon_state = "0-4" - }, -/turf/simulated/floor/tiled/dark/full, -/area/storage/secure) -"ybl" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/red{ - dir = 6 - }, -/turf/simulated/floor/tiled/dark, -/area/horizon/custodial/disposals) -"ybm" = ( -/obj/effect/floor_decal/industrial/outline_door/medical/dark_green, -/obj/effect/floor_decal/industrial/outline_segment/medical/dark_green{ +"yaZ" = ( +/obj/effect/floor_decal/spline/plain{ dir = 4 }, -/obj/effect/floor_decal/spline/plain/blue{ - dir = 1 +/obj/machinery/atmospherics/pipe/simple/hidden/black, +/obj/effect/floor_decal/spline/plain{ + dir = 8 }, +/turf/simulated/floor/carpet/rubber, +/area/horizon/tcommsat/chamber) +"ybg" = ( /obj/effect/floor_decal/corner/dark_green{ - dir = 10 + dir = 9 }, -/obj/machinery/atmospherics/valve/open{ - dir = 8; - name = "Tray Cutoff Valve" +/obj/effect/floor_decal/spline/plain{ + dir = 8 + }, +/obj/structure/bed/stool/chair/office/light{ + dir = 8 + }, +/obj/machinery/ringer/west{ + pixel_y = 32; + department = "Hydroponics"; + id = "ringer_hydroponics"; + req_access = list(35) + }, +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/effect/floor_decal/industrial/hatch_tiny/service, /turf/simulated/floor/tiled, -/area/horizon/hydroponics/lower) -"ybp" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/effect/floor_decal/corner_wide/green{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/medical/gen_treatment) +/area/horizon/service/hydroponics) "ybs" = ( /obj/structure/table/rack, /obj/item/storage/box/flashbangs{ @@ -168441,11 +169016,40 @@ }, /turf/simulated/floor/carpet, /area/merchant_station) -"ybD" = ( -/obj/effect/floor_decal/industrial/outline/grey, -/obj/structure/reagent_dispensers/extinguisher, -/turf/simulated/floor/plating, -/area/hangar/intrepid) +"ybE" = ( +/obj/effect/floor_decal/corner/grey/diagonal, +/obj/effect/floor_decal/spline/plain, +/turf/simulated/floor/tiled/white, +/area/horizon/service/kitchen) +"ybI" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/corner/dark_blue/full{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/horizon/command/bridge/upperdeck) +"ybO" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/turf/simulated/floor/tiled, +/area/horizon/operations/lobby) +"ybP" = ( +/obj/machinery/door/window/eastright, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/rnd/telesci) "ybR" = ( /obj/structure/bed/stool/padded/brown{ dir = 4 @@ -168459,34 +169063,23 @@ icon_state = "wood" }, /area/centcom/legion/hangar5) -"ybU" = ( -/obj/effect/map_effect/window_spawner/full/borosilicate/reinforced/firedoor, +"ybT" = ( +/obj/machinery/shieldwallgen, +/obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled/dark/full, -/area/rnd/telesci) +/area/horizon/engineering/storage_hard) "ycd" = ( /obj/structure/table/wood, /obj/item/flame/candle, /turf/simulated/floor/holofloor/wood, /area/horizon/holodeck/source_sauna) -"ycg" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/intrepid/main_compartment) -"ych" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/floor_decal/corner/brown{ +"ycf" = ( +/obj/machinery/alarm/east, +/obj/effect/floor_decal/industrial/warning{ dir = 9 }, -/turf/simulated/floor/tiled/dark, -/area/outpost/mining_main/eva) -"ycn" = ( -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/reinforced/airless, -/area/template_noop) +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/auxatmos) "yct" = ( /obj/machinery/door/airlock/security{ dir = 4; @@ -168505,50 +169098,31 @@ }, /turf/simulated/floor/tiled/full, /area/horizon/security/evidence_storage) -"ycu" = ( -/obj/machinery/firealarm/west, -/obj/effect/floor_decal/corner/dark_green{ - dir = 9 - }, -/obj/machinery/portable_atmospherics/powered/pump/filled, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled, -/area/hangar/intrepid) -"ycv" = ( -/turf/simulated/wall/shuttle/scc_space_ship/cardinal, -/area/horizon/hallway/deck_three/primary/port/docks) "ycy" = ( /turf/simulated/wall/shuttle/unique/mercenary/small{ icon_state = "2,10" }, /area/shuttle/syndicate_elite) -"ycA" = ( -/obj/effect/floor_decal/corner/dark_blue/full{ +"ycC" = ( +/obj/effect/floor_decal/spline/fancy/wood{ dir = 8 }, -/obj/machinery/light{ +/obj/structure/bed/stool/bar/padded/blue{ dir = 8 }, -/turf/simulated/floor/tiled, -/area/bridge/bridge_crew) -"ycG" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 5 +/turf/simulated/floor/wood, +/area/horizon/command/bridge/minibar) +"ycF" = ( +/obj/structure/table/standard, +/obj/item/storage/toolbox/mechanical{ + pixel_y = 13 }, -/turf/simulated/floor, -/area/maintenance/bridge) -"ycH" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 +/obj/structure/sign/poster{ + pixel_y = 32 }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/lino, -/area/horizon/bar) +/obj/item/storage/box/fancy/donut, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/operations/machinist/surgicalbay) "ycJ" = ( /obj/effect/floor_decal/corner/blue{ dir = 10 @@ -168558,19 +169132,26 @@ }, /turf/simulated/floor/holofloor/tiled, /area/horizon/holodeck/source_lasertag) -"ycP" = ( -/obj/structure/bed/stool/chair/office/bridge, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 5 +"ycO" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/bed/handrail{ + dir = 4 }, -/obj/effect/landmark/start{ - name = "Executive Officer" +/obj/machinery/light/small{ + dir = 1 }, -/turf/simulated/floor/tiled/dark, -/area/bridge/meeting_room) -"ycX" = ( -/turf/simulated/open, -/area/hallway/primary/central_one) +/turf/simulated/floor/plating, +/area/horizon/shuttle/intrepid/starboard_compartment) +"ycV" = ( +/obj/machinery/light, +/obj/structure/cable/orange{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner_wide/yellow{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/horizon/engineering/bluespace_drive) "ycY" = ( /obj/machinery/door/airlock/glass_security{ dir = 4; @@ -168592,43 +169173,44 @@ /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 +"yda" = ( +/obj/structure/table/standard, +/obj/item/reagent_containers/spray/cleaner{ + pixel_x = -17; + pixel_y = 2 }, -/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" - }, -/turf/simulated/wall/shuttle/scc_space_ship/cardinal, -/area/rnd/test_range) -"ydm" = ( -/obj/structure/shuttle/engine/propulsion/burst/left{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/shuttle/escape_pod/pod4) -"ydo" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/effect/floor_decal/corner_wide/green{ dir = 10 }, +/obj/structure/roller_rack/three, /turf/simulated/floor/tiled/white, -/area/medical/ward) +/area/horizon/medical/gen_treatment) +"ydb" = ( +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/research) +"ydd" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/computer/guestpass{ + pixel_x = 32 + }, +/turf/simulated/floor/lino, +/area/horizon/service/dining_hall) +"ydf" = ( +/obj/structure/cable/orange{ + icon_state = "2-8" + }, +/obj/structure/cable/orange{ + icon_state = "2-4" + }, +/obj/structure/lattice/catwalk/indoor, +/turf/simulated/floor/plating, +/area/horizon/engineering/bluespace_drive) "ydr" = ( /obj/effect/floor_decal/corner/dark_blue{ dir = 10 @@ -168639,65 +169221,63 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/security/evidence_storage) -"ydt" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/machinery/door/airlock/external, -/obj/effect/map_effect/marker/airlock{ - frequency = 2005; - master_tag = "airlock_horizon_deck_2_aft_sm"; - name = "airlock_horizon_deck_2_aft_sm" +"yds" = ( +/obj/effect/map_effect/window_spawner/full/reinforced/polarized/grille/firedoor{ + id = "consularA" }, -/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/structure/cable/green{ + icon_state = "0-4" }, -/obj/effect/floor_decal/industrial/outline_door/red, -/obj/effect/floor_decal/industrial/outline_straight/red{ - dir = 8 - }, -/obj/structure/bed/handrail{ +/obj/machinery/door/blast/regular{ + density = 0; dir = 4; - pixel_x = -2 + icon_state = "pdoor0"; + id = "bridge blast"; + name = "Bridge Blast Doors"; + opacity = 0 }, -/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, +/turf/simulated/floor, +/area/horizon/repoffice/consular_one) +"ydu" = ( +/obj/effect/decal/cleanable/dirt, /obj/effect/floor_decal/industrial/warning{ dir = 8 }, -/obj/structure/cable/yellow{ - icon_state = "4-8" +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/wing/port/far) +"ydv" = ( +/obj/machinery/portable_atmospherics/hydroponics, +/obj/machinery/atmospherics/portables_connector, +/obj/machinery/light{ + dir = 1 }, -/obj/effect/floor_decal/industrial/loading/yellow{ - dir = 8 +/turf/simulated/floor/tiled/dark, +/area/horizon/rnd/xenobiology/xenoflora) +"ydy" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled, +/area/horizon/hangar/auxiliary) +"ydF" = ( +/obj/structure/cable/green{ + icon_state = "1-4" }, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/engine_room/rust) -"ydI" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 9 - }, -/obj/structure/cable{ +/obj/structure/cable/green{ icon_state = "2-4" }, -/obj/structure/disposalpipe/segment, -/obj/machinery/alarm/west, +/obj/effect/floor_decal/corner/dark_green{ + dir = 10 + }, +/obj/structure/disposalpipe/junction{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, /turf/simulated/floor/tiled, -/area/hangar/intrepid) +/area/horizon/hallway/primary/deck_3/central) "ydJ" = ( /obj/effect/floor_decal/corner/red/diagonal, /obj/effect/floor_decal/spline/fancy{ @@ -168705,53 +169285,56 @@ }, /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{ +"ydK" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/structure/railing/mapped, +/obj/machinery/atmospherics/portables_connector{ dir = 1 }, -/obj/structure/table/rack{ +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/reactor/indra/mainchamber) +"ydL" = ( +/obj/effect/map_effect/window_spawner/full/shuttle/scc{ + spawn_firedoor = 1; + spawn_grille = 1 + }, +/obj/machinery/door/blast/shutters/open{ + dir = 8; + id = "intrepid_bay_windows"; + name = "Intrepid Shutter" + }, +/turf/simulated/floor/plating, +/area/horizon/shuttle/intrepid/medical) +"ydN" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor, +/area/horizon/hallway/primary/deck_3/port) +"ydR" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 }, -/obj/item/device/flash{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/device/flash{ - pixel_y = 4 - }, -/obj/item/device/flash{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/device/flash{ - pixel_x = 8; - pixel_y = 4 - }, -/obj/item/device/flash{ - pixel_x = -4 - }, -/obj/item/device/flash, -/obj/item/device/flash{ - pixel_x = 4 - }, -/obj/item/device/flash{ - pixel_x = 8 - }, -/obj/effect/floor_decal/corner/yellow{ +/turf/simulated/floor/tiled/full, +/area/horizon/engineering/storage_hard) +"ydW" = ( +/obj/effect/floor_decal/corner/dark_blue{ dir = 5 }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/dark, -/area/engineering/storage/tech) +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_3/port/docks) "ydY" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/button/remote/blast_door{ @@ -168765,52 +169348,82 @@ }, /turf/unsimulated/floor, /area/antag/raider) -"yea" = ( +"yeb" = ( +/obj/structure/bed/stool/chair/office/bridge{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue/diagonal, +/turf/simulated/floor/tiled/white, +/area/horizon/command/heads/cmo) +"yec" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor/plating, +/area/horizon/engineering/hallway/fore) +"yed" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 }, -/turf/simulated/floor/wood, -/area/crew_quarters/lounge/secondary) -"yee" = ( -/obj/effect/floor_decal/spline/plain/black{ - dir = 9 +/turf/simulated/floor/tiled/dark/full, +/area/horizon/shuttle/intrepid/main_compartment) +"yef" = ( +/obj/structure/cable{ + icon_state = "0-2" }, -/obj/effect/floor_decal/corner/dark_green, -/obj/structure/cable/green{ - icon_state = "2-4" +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/power/apc/north, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/wing/port/far) +"yeg" = ( +/obj/structure/table/reinforced/steel, +/obj/machinery/door/window/desk/southright{ + desc = "Research Desk"; + req_access = list(7) }, -/obj/random/dirt_75, -/turf/simulated/floor/tiled, -/area/horizon/crew_quarters/fitness/gym) -"yeh" = ( -/obj/machinery/camera/network/second_deck{ - c_tag = "Second Deck - Engineering Entrance" +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/shutters{ + density = 0; + id = "science_chem_desk"; + name = "Exploratory Chemistry"; + opacity = 0 }, -/obj/effect/floor_decal/corner/dark_green/full{ - dir = 8 - }, -/obj/machinery/alarm/north, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) +/turf/simulated/floor/tiled/dark/full, +/area/horizon/rnd/chemistry) "yej" = ( /obj/machinery/light{ dir = 8 }, /turf/unsimulated/floor/plating, /area/centcom/spawning) -"yem" = ( -/obj/structure/cable{ - icon_state = "1-2" +"yek" = ( +/obj/structure/table/reinforced/glass, +/obj/effect/floor_decal/spline/fancy/wood, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/turf/simulated/floor/wood, +/area/horizon/rnd/conference) +"yen" = ( +/obj/machinery/camera/network/reactor{ + c_tag = "Engineering - Supermatter Reactor Crystal" }, /obj/effect/floor_decal/industrial/warning{ - dir = 1 + dir = 9 }, -/obj/random/dirt_75, -/turf/simulated/floor/plating, -/area/maintenance/wing/port/far) +/turf/simulated/floor/reinforced/reactor, +/area/horizon/engineering/reactor/supermatter/mainchamber) "yeo" = ( /obj/effect/floor_decal/industrial/warning{ dir = 9 @@ -168824,103 +169437,247 @@ }, /turf/simulated/floor/holofloor/tiled, /area/horizon/holodeck/source_lasertag) -"yeB" = ( -/obj/item/modular_computer/console/preset/civilian{ - dir = 4 +"yer" = ( +/obj/structure/cable/green{ + icon_state = "1-2" }, -/obj/machinery/embedded_controller/radio/simple_docking_controller/escape_pod{ - frequency = 1380; - id_tag = "escape_pod_3"; - pixel_y = 25; - tag_door = "escape_pod_3_hatch" +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/horizon/hallway/primary/deck_3/starboard) +"yet" = ( +/obj/machinery/power/smes/buildable/substation{ + RCon_tag = "Substation - Deck 3 Command" }, -/turf/simulated/floor/shuttle/dark_blue, -/area/shuttle/escape_pod/pod3) +/obj/structure/cable, +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/turf/simulated/floor, +/area/horizon/maintenance/substation/command) +"yeu" = ( +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/full, +/area/horizon/engineering/reactor/indra/office) +"yev" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/structure/sign/radiation{ + pixel_y = 32 + }, +/obj/machinery/light/spot{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/reactor/indra/mainchamber) +"yew" = ( +/obj/machinery/sleeper, +/obj/machinery/camera/network/medbay{ + c_tag = "Medical - General Treatment 1" + }, +/obj/effect/floor_decal/corner/beige{ + dir = 6 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/medical/gen_treatment) +"yex" = ( +/obj/structure/shuttle_part/scc_space_ship{ + icon_state = "d2-2" + }, +/turf/simulated/wall, +/area/horizon/operations/lobby) +"yey" = ( +/obj/structure/tank_wall/hydrogen{ + icon_state = "h2" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/airless, +/area/horizon/engineering/atmos) +"yez" = ( +/obj/machinery/mech_recharger, +/obj/effect/floor_decal/corner/dark_blue/full{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/light_switch{ + dir = 1; + pixel_x = 7; + pixel_y = 28 + }, +/mob/living/heavy_vehicle/premade/ripley/loader, +/turf/simulated/floor/tiled/dark, +/area/horizon/weapons/longbow) +"yeC" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4; + maxhealth = 140 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 6 + }, +/obj/structure/table/standard, +/obj/item/storage/box/cups{ + pixel_y = 15; + pixel_x = 8 + }, +/obj/item/storage/box/cups{ + pixel_y = 4; + pixel_x = 8 + }, +/turf/simulated/floor/wood, +/area/horizon/command/bridge/upperdeck) "yeE" = ( /obj/structure/window/reinforced/holowindow{ dir = 1 }, /turf/simulated/floor/holofloor/tiled, /area/horizon/holodeck/source_boxingcourt) +"yeG" = ( +/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/machinery/door/blast/regular/open{ + id = "hangarlockdown"; + name = "Hangar Lockdown" + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/full, +/area/horizon/stairwell/starboard/deck_1) "yeI" = ( /obj/effect/floor_decal/spline/fancy/wood/corner{ dir = 8 }, /turf/unsimulated/floor/wood, /area/antag/raider) -"yeM" = ( -/obj/effect/landmark/entry_point/fore{ - name = "fore, starboard ballast" +"yeP" = ( +/obj/structure/table/reinforced/wood, +/obj/item/folder/blue, +/obj/item/pen, +/turf/simulated/floor/tiled/dark, +/area/horizon/command/bridge/meeting_room) +"yeQ" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 }, -/obj/effect/shuttle_landmark/horizon/exterior/sneaky/starboard_nacelle_2{ - dir = 1 +/obj/structure/tank_wall/nitrous_oxide{ + icon_state = "h10" }, -/turf/simulated/wall/shuttle/scc_space_ship/cardinal, -/area/maintenance/wing/starboard/far) -"yeR" = ( -/obj/machinery/door/airlock/glass{ +/turf/simulated/floor/plating, +/area/horizon/engineering/atmos/air) +"yeU" = ( +/obj/random/loot, +/turf/simulated/floor/tiled/dark, +/area/horizon/maintenance/deck_2/wing/starboard) +"yeV" = ( +/obj/effect/floor_decal/spline/fancy/wood/cee{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/firealarm/north, +/obj/structure/table/reinforced/wood, +/obj/machinery/chemical_dispenser/coffee/full{ + pixel_y = 8; + pixel_x = 3 + }, +/obj/item/reagent_containers/food/drinks/drinkingglass/newglass/coffeecup{ + pixel_x = -10; + pixel_y = 6 + }, +/obj/item/reagent_containers/food/drinks/drinkingglass/newglass/coffeecup/one{ + pixel_y = 1; + pixel_x = -10 + }, +/turf/simulated/floor/wood, +/area/horizon/command/heads/hos) +"yeW" = ( +/obj/effect/floor_decal/corner_wide/yellow{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/horizon/engineering/reactor/indra/mainchamber) +"yeY" = ( +/obj/machinery/door/airlock/glass_engineering{ dir = 1; - name = "Horizon Dining Hall" + name = "INDRA Reactor Office"; + req_access = list(10) + }, +/obj/structure/cable/green{ + icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/full, -/area/horizon/crew_quarters/lounge/bar) -"yeX" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 5 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/horizon/hydroponics/garden) +/turf/simulated/floor/tiled/dark/full, +/area/horizon/engineering/reactor/indra/office) "yfc" = ( /obj/effect/floor_decal/corner/grey/diagonal{ dir = 4 }, /turf/unsimulated/floor, /area/centcom/holding) -"yfe" = ( -/obj/effect/floor_decal/industrial/outline/medical, -/obj/structure/closet/secure_closet/personal, +"yfd" = ( +/obj/effect/floor_decal/corner/teal/diagonal, +/obj/item/storage/box/condiment{ + pixel_y = 13 + }, +/obj/effect/decal/fake_object{ + desc = "A chalkboard with the menu of the cafe written on it."; + dir = 8; + icon = 'icons/obj/coffeemenu.dmi'; + icon_state = "left"; + name = "coffee menu chalkboard"; + pixel_x = 32 + }, +/obj/item/reagent_containers/food/condiment/shaker/pumpkinspice{ + pixel_y = 6 + }, +/obj/item/reagent_containers/food/condiment/shaker/peppermill{ + pixel_x = 2 + }, +/obj/item/reagent_containers/food/condiment/shaker/salt{ + pixel_x = 7 + }, +/obj/item/reagent_containers/food/condiment/shaker/sprinkles{ + pixel_x = -5; + pixel_y = 2 + }, /obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/item/storage/box/fancy/donut{ + pixel_x = 1; + pixel_y = -9 + }, +/obj/structure/table/stone/marble, +/obj/effect/floor_decal/spline/plain{ dir = 4 }, -/turf/simulated/floor/tiled/full, -/area/medical/washroom) -"yff" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/hangar/port) -"yfi" = ( -/obj/effect/floor_decal/corner_wide/yellow{ - dir = 5 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/hallway/engineering) +/turf/simulated/floor/lino, +/area/horizon/service/cafeteria) +"yfk" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/carpet/rubber, +/area/horizon/rnd/lab) "yfm" = ( /obj/structure/window/reinforced/holowindow{ dir = 8 @@ -168930,54 +169687,13 @@ }, /turf/simulated/floor/holofloor/tiled, /area/template_noop) -"yfp" = ( -/obj/machinery/light, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ +"yfn" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/bridge/controlroom) -"yfq" = ( -/obj/machinery/bodyscanner{ - dir = 4 - }, -/obj/effect/floor_decal/corner/beige{ - dir = 5 - }, -/turf/simulated/floor/tiled/dark, -/area/medical/icu) -"yfs" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 4; - icon_state = "shutter0"; - id = "LCKDshutters"; - name = "MedBay Lockdown Shutters"; - opacity = 0 - }, -/obj/machinery/door/airlock/glass_medical{ - dir = 4; - name = "Paramedic Quarters"; - req_access = list(67) - }, -/turf/simulated/floor/tiled/full, -/area/medical/paramedic) -"yfv" = ( -/obj/structure/closet/secure_closet/engineering_personal, -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/alarm/north, -/obj/effect/floor_decal/corner/yellow/full{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/outline/operations, -/turf/simulated/floor/tiled, -/area/engineering/locker_room) +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/service/starboard) "yfw" = ( /obj/structure/table/rack, /obj/item/mecha_equipment/mounted_system/combat/grenadetear, @@ -169010,6 +169726,16 @@ /obj/effect/decal/cleanable/dirt, /turf/unsimulated/floor, /area/antag/jockey) +"yfB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 9 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/item/wrench, +/turf/simulated/floor/plating, +/area/horizon/medical/cryo) "yfC" = ( /obj/structure/bed/stool/chair, /obj/effect/landmark/thunderdomeobserve, @@ -169018,27 +169744,6 @@ icon_state = "white" }, /area/tdome/tdomeobserve) -"yfD" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark/full, -/area/engineering/engine_room) -"yfE" = ( -/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, -/obj/machinery/door/airlock/maintenance_hatch{ - dir = 1; - req_access = list(12) - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/maintenance/aft) "yfG" = ( /obj/structure/bed/stool/chair/office/dark{ dir = 8 @@ -169060,33 +169765,35 @@ }, /turf/space/dynamic, /area/horizon/exterior) -"yfJ" = ( -/obj/structure/cable/green{ - icon_state = "1-2" +"yfK" = ( +/turf/simulated/wall/r_wall, +/area/horizon/rnd/xenobiology/hazardous) +"yfO" = ( +/obj/structure/lattice/catwalk/indoor, +/obj/machinery/power/breakerbox/activated{ + RCon_tag = "INDRA Grid Bypass" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/corner/dark_green{ - dir = 10 +/turf/simulated/floor/plating, +/area/horizon/engineering/reactor/indra/smes) +"yfR" = ( +/obj/machinery/alarm/east, +/obj/effect/floor_decal/corner/teal/diagonal, +/obj/machinery/reagentgrinder{ + pixel_x = 1; + pixel_y = 8 }, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/starboard) -"yfP" = ( -/obj/structure/cable{ - icon_state = "1-2" +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/corner/dark_green{ +/obj/structure/table/stone/marble, +/obj/item/reagent_containers/glass/beaker{ + pixel_x = 9 + }, +/obj/effect/floor_decal/spline/plain{ dir = 6 }, -/obj/structure/extinguisher_cabinet/east, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/central) +/turf/simulated/floor/lino, +/area/horizon/service/cafeteria) "yfV" = ( /obj/effect/floor_decal/industrial/warning{ dir = 1 @@ -169108,38 +169815,13 @@ }, /turf/unsimulated/floor/plating, /area/centcom/legion/hangar5) -"yga" = ( -/obj/structure/table/wood, -/obj/item/flame/candle, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 8 - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 4 - }, -/obj/machinery/alarm/east, -/turf/simulated/floor/wood, -/area/chapel/main) -"yge" = ( -/obj/structure/disposalpipe/junction/yjunction{ +"ygd" = ( +/obj/structure/bed/stool/chair/padded/brown{ dir = 1 }, -/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 - }, -/turf/simulated/floor/tiled/full, -/area/horizon/hallway/deck_three/primary/starboard) -"ygf" = ( -/obj/machinery/alarm/north, -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/tiled/dark, -/area/maintenance/wing/starboard) +/obj/effect/floor_decal/spline/fancy/wood/cee, +/turf/simulated/floor/wood, +/area/horizon/hallway/primary/deck_3/starboard) "ygh" = ( /obj/effect/floor_decal/spline/plain{ dir = 9 @@ -169155,63 +169837,63 @@ }, /turf/unsimulated/floor/plating, /area/shuttle/specops) -"ygk" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled, -/area/operations/storage) -"ygm" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, +"ygn" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ + d1 = 1; + d2 = 2; icon_state = "1-2" }, -/obj/structure/disposalpipe/segment, -/obj/structure/disposalpipe/junction, -/obj/structure/lattice/catwalk/indoor/grate, -/turf/simulated/floor/plating, -/area/horizon/hallway/deck_two/fore) +/obj/structure/disposalpipe/junction{ + dir = 1; + icon_state = "pipe-j2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/firedoor, +/obj/structure/table/stone/marble, +/obj/item/reagent_containers/food/drinks/shaker{ + pixel_x = 7 + }, +/obj/item/reagent_containers/glass/rag, +/obj/machinery/door/blast/shutters{ + id = "bar_shutter"; + name = "Bar Shutter" + }, +/obj/machinery/power/outlet, +/turf/simulated/floor/tiled/dark, +/area/horizon/service/bar) +"ygq" = ( +/obj/structure/sign/securearea{ + pixel_x = -32 + }, +/obj/effect/floor_decal/corner/yellow{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/engineering/storage/tech) +"ygr" = ( +/obj/structure/closet/crate, +/obj/item/circuitboard/autolathe, +/obj/item/circuitboard/rtg, +/obj/item/circuitboard/recharge_station, +/obj/item/circuitboard/mech_recharger, +/obj/item/circuitboard/optable, +/obj/item/circuitboard/security/engineering, +/obj/item/circuitboard/grill, +/turf/simulated/floor/carpet/rubber, +/area/horizon/maintenance/deck_1/workshop) "ygu" = ( /obj/structure/bed/stool/chair/padded/black, /turf/unsimulated/floor{ icon_state = "dark_preview" }, /area/centcom/control) -"ygv" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 5 - }, -/obj/structure/extinguisher_cabinet/east, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/turf/simulated/floor/tiled, -/area/horizon/crew_quarters/fitness/changing) -"ygx" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/aft) -"ygy" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/light/small/emergency, -/turf/simulated/floor, -/area/horizon/maintenance/deck_three/aft/starboard) "ygz" = ( /obj/item/flame/lighter/zippo/gold{ pixel_x = -3; @@ -169221,15 +169903,39 @@ /obj/structure/table/wood, /turf/unsimulated/floor, /area/centcom/specops) -"ygC" = ( -/obj/structure/railing/mapped{ +"ygA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 1 + }, +/turf/simulated/wall/shuttle/unique/scc/mining{ + icon_state = "1,9" + }, +/area/horizon/shuttle/mining) +"ygB" = ( +/obj/machinery/door/window/holowindoor{ + dir = 1; + req_access = list(55) + }, +/obj/machinery/door/window/holowindoor{ + req_access = list(55) + }, +/obj/machinery/door/blast/regular/open{ + fail_secure = 1; + id = "xenobio_f"; + name = "Cell Containment Blast Door"; dir = 8 }, -/obj/effect/floor_decal/corner/black{ - dir = 9 +/turf/simulated/floor/tiled/dark/full, +/area/horizon/rnd/xenobiology) +"ygD" = ( +/obj/structure/grille/broken, +/obj/machinery/door/firedoor, +/obj/item/material/shard{ + icon_state = "small" }, -/turf/simulated/floor/tiled/dark, -/area/hangar/auxiliary) +/obj/structure/window_frame/empty, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/port/far) "ygG" = ( /obj/effect/floor_decal/industrial/loading/yellow, /turf/unsimulated/floor/plating, @@ -169248,6 +169954,9 @@ }, /turf/unsimulated/floor, /area/antag/mercenary) +"ygJ" = ( +/turf/simulated/wall, +/area/horizon/medical/surgery/storage) "ygK" = ( /turf/unsimulated/floor/plating, /area/centcom/legion) @@ -169258,14 +169967,15 @@ /obj/random/pottedplant, /turf/unsimulated/floor, /area/centcom/spawning) -"ygN" = ( -/obj/machinery/atmospherics/valve{ +"ygO" = ( +/obj/machinery/atmospherics/binary/pump{ dir = 4; - name = "Equalization Valve" + name = "Reactor to Mix" }, -/obj/effect/floor_decal/industrial/hatch/red, +/obj/effect/floor_decal/corner/yellow/diagonal, +/obj/effect/floor_decal/industrial/warning/full, /turf/simulated/floor/tiled/dark, -/area/engineering/atmos/propulsion/starboard) +/area/horizon/engineering/reactor/supermatter/waste) "ygP" = ( /obj/machinery/door/airlock/glass_centcom{ dir = 1; @@ -169280,6 +169990,22 @@ }, /turf/unsimulated/floor/plating, /area/antag/burglar) +"ygV" = ( +/obj/structure/table/standard, +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/port/far) +"yha" = ( +/obj/machinery/mineral/processing_unit{ + id = "horizon_processing_1"; + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning/full, +/turf/simulated/floor/plating, +/area/horizon/operations/mining_main/refinery) "yhc" = ( /obj/machinery/camera/network/security{ c_tag = "Security - Corridor Camera 1"; @@ -169296,43 +170022,6 @@ }, /turf/simulated/floor/tiled, /area/horizon/security/hallway) -"yhf" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/operations/loading) -"yhj" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/effect/floor_decal/corner_wide/yellow{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/engineering/lobby) -"yhm" = ( -/obj/effect/floor_decal/corner/lime/diagonal, -/obj/machinery/alarm/south{ - req_one_access = list(11, 24, 47, 65) - }, -/obj/structure/bed/roller, -/turf/simulated/floor/tiled/white, -/area/shuttle/intrepid/medical) -"yhn" = ( -/obj/structure/grille/diagonal{ - dir = 1 - }, -/obj/structure/window/shuttle/scc_space_ship, -/obj/effect/floor_decal/spline/plain{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/horizon/bar) "yho" = ( /obj/machinery/chemical_dispenser/bar_alc/full{ pixel_y = 13 @@ -169340,42 +170029,12 @@ /obj/structure/table/stone/marble, /turf/unsimulated/floor/blue_circuit, /area/antag/wizard) -"yhp" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, +"yhu" = ( /obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/warning, -/obj/machinery/door/airlock/multi_tile/glass{ - name = "Deck 2 Port Stairwell Auxiliary Hangar Elevator" - }, -/obj/machinery/door/firedoor/multi_tile{ - dir = 8 - }, -/obj/structure/sign/crush{ - pixel_x = -32; - pixel_y = -32 - }, -/turf/simulated/floor/tiled/full, -/area/hallway/primary/central_one) -"yhs" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/corner/mauve{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 + dir = 10 }, /turf/simulated/floor/tiled, -/area/rnd/hallway) +/area/horizon/maintenance/deck_2/wing/starboard/nacelle) "yhw" = ( /obj/structure/lattice/catwalk, /obj/structure/sign/drop{ @@ -169386,20 +170045,10 @@ /obj/item/hullbeacon/red, /turf/simulated/open/airless, /area/template_noop) -"yhC" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/structure/lattice/catwalk/indoor/grate, +"yhD" = ( +/obj/machinery/alarm/north, /turf/simulated/floor/plating, -/area/hallway/primary/central_two) +/area/horizon/maintenance/deck_2/wing/port) "yhE" = ( /obj/effect/landmark{ name = "Syndicate-Spawn" @@ -169409,22 +170058,38 @@ }, /turf/unsimulated/floor/carpet, /area/antag/mercenary) -"yhR" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 +"yhF" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 9 }, -/obj/effect/floor_decal/corner/dark_green{ - dir = 10 - }, -/obj/structure/sign/vacuum{ - pixel_y = -32 - }, -/obj/machinery/camera/network/second_deck{ - c_tag = "Second Deck - Starboard Dock Starboard"; +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 1 }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, /turf/simulated/floor/tiled, -/area/security/checkpoint2) +/area/horizon/command/bridge/supply) +"yhO" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/structure/tank_wall/phoron{ + icon_state = "ph15" + }, +/obj/machinery/atmospherics/pipe/simple/visible/purple, +/turf/simulated/floor/airless, +/area/horizon/engineering/atmos) +"yhV" = ( +/obj/item/material/shard{ + icon_state = "small" + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/main/starboard) "yhZ" = ( /obj/structure/table/reinforced/wood, /obj/effect/floor_decal/spline/fancy/wood{ @@ -169434,35 +170099,21 @@ icon_state = "wood" }, /area/centcom/control) -"yib" = ( -/obj/structure/bed/handrail{ - dir = 8 +"yia" = ( +/obj/machinery/recharger/wallcharger{ + pixel_x = 4; + pixel_y = 20 }, -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 1 +/obj/machinery/recharger/wallcharger{ + pixel_x = 4; + pixel_y = 30 }, -/obj/effect/map_effect/marker/airlock/shuttle{ - cycle_to_external_air = 1; - master_tag = "airlock_shuttle_intrepid"; - name = "airlock_shuttle_intrepid"; - req_one_access = null; - shuttle_tag = "Intrepid" +/obj/effect/floor_decal/corner_wide/purple{ + dir = 5 }, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/effect/map_effect/marker_helper/airlock/out, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/shuttle/intrepid/main_compartment) -"yie" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/effect/floor_decal/spline/fancy/wood, -/obj/structure/bed/stool/bar/padded/red, -/turf/simulated/floor/wood, -/area/horizon/bar) +/obj/effect/floor_decal/corner_wide/purple/diagonal, +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/test_range) "yig" = ( /obj/structure/window/reinforced{ dir = 4 @@ -169481,15 +170132,16 @@ }, /turf/simulated/floor/tiled/dark, /area/shuttle/merchant) -"yil" = ( -/obj/effect/floor_decal/corner/yellow{ - dir = 9 +"yih" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 6 }, -/obj/machinery/light{ - dir = 8 +/obj/structure/engineer_maintenance/pipe{ + dir = 4 }, -/turf/simulated/floor/tiled, -/area/engineering/rust_office) +/obj/structure/engineer_maintenance/electric, +/turf/simulated/floor/wood, +/area/horizon/command/bridge/minibar) "yin" = ( /obj/structure/table/reinforced/steel, /obj/effect/floor_decal/industrial/warning, @@ -169514,54 +170166,46 @@ icon_state = "wood" }, /area/centcom/legion) -"yio" = ( -/obj/machinery/light{ - dir = 1 +"yip" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 10 }, -/obj/effect/floor_decal/corner/dark_green{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_two) -"yit" = ( -/obj/effect/floor_decal/corner/dark_blue/full{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/keycard_auth{ - dir = 4; - pixel_x = -20 - }, -/obj/structure/platform_stairs/full{ - dir = 6 +/obj/item/device/radio/intercom/west, +/obj/structure/flora/pottedplant{ + icon_state = "plant-33" }, +/turf/simulated/floor/wood, +/area/horizon/service/chapel/office) +"yiq" = ( /turf/simulated/floor/tiled/dark, -/area/bridge/controlroom) -"yiw" = ( -/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, -/obj/machinery/door/blast/regular/open{ +/area/horizon/service/bar) +"yix" = ( +/obj/structure/platform/ledge{ + dir = 4 + }, +/turf/simulated/open, +/area/horizon/hallway/primary/deck_2/central) +"yiz" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/window/westleft{ + req_access = list(35); + name = "Hydroponics Desk" + }, +/obj/machinery/door/blast/shutters{ dir = 4; - id = "hangarlockdown"; - name = "Hangar Lockdown" + id = "shutters_deck2_hydroponicsdesk"; + name = "Hydroponics Desk Shutter" }, /turf/simulated/floor/tiled/dark/full, -/area/hangar/intrepid) -"yiJ" = ( -/obj/machinery/blackbox_recorder, -/turf/simulated/floor/bluegrid, -/area/tcommsat/chamber) -"yiN" = ( -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled/dark, -/area/horizon/bar) -"yiO" = ( -/obj/machinery/light/small/red{ - dir = 8 +/area/horizon/service/hydroponics) +"yiE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/green{ + icon_state = "1-2" }, -/turf/simulated/floor/tiled/dark, -/area/maintenance/wing/starboard/far) +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_1/main/starboard) "yiR" = ( /obj/effect/ghostspawpoint{ identifier = "OdinPrepatory"; @@ -169571,117 +170215,116 @@ icon_state = "dark_preview" }, /area/centcom/spawning) -"yiU" = ( -/obj/effect/floor_decal/industrial/warning/corner, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 4 +"yiZ" = ( +/obj/structure/table/reinforced/wood, +/obj/machinery/photocopier/faxmachine{ + department = "Captain's Office"; + pixel_y = 6 }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 5 }, -/obj/structure/cable/green, -/obj/structure/grille, -/turf/simulated/floor/tiled/dark/full/airless, -/area/bridge/controlroom) -"yiW" = ( -/obj/machinery/door/airlock/external{ - dir = 4 - }, -/obj/effect/map_effect/marker/airlock/docking{ - landmark_tag = "nav_horizon_dock_deck_3_port_5"; - master_tag = "airlock_horizon_dock_deck_3_port_5"; - name = "airlock_horizon_dock_deck_3_port_5" - }, -/obj/effect/map_effect/marker_helper/airlock/interior, -/obj/machinery/access_button{ - pixel_x = -22; - pixel_y = 32 - }, -/turf/simulated/floor/plating, -/area/horizon/hallway/deck_three/primary/port/docks) -"yiX" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/corner/dark_green{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/central) -"yiY" = ( -/obj/structure/table/standard, -/obj/effect/floor_decal/corner/mauve/full, -/obj/item/device/firing_pin/test_range{ - pixel_y = 4 - }, -/obj/item/device/firing_pin/test_range, -/obj/item/device/firing_pin/test_range{ - pixel_y = 8 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/lab) -"yjg" = ( +/turf/simulated/floor/wood, +/area/horizon/command/heads/captain) +"yja" = ( /obj/structure/cable/green{ icon_state = "4-8" }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/starboard) +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/engineer_maintenance/electric, +/obj/structure/engineer_maintenance/pipe{ + dir = 8 + }, +/obj/effect/floor_decal/corner/green/diagonal, +/obj/machinery/alarm/north, +/turf/simulated/floor/tiled/white, +/area/horizon/crew/washroom/deck_2) +"yjf" = ( +/obj/structure/table/reinforced, +/obj/item/rfd_ammo, +/obj/item/rfd_ammo, +/obj/item/rfd_ammo, +/obj/item/rfd_ammo, +/obj/item/rfd_ammo, +/obj/item/rfd_ammo, +/obj/machinery/door/window/brigdoor/southright{ + req_access = list(56) + }, +/obj/item/rfd/construction, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/camera/network/engineering{ + c_tag = "Engineering - Chief Engineer's Office" + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/command/heads/chief) +"yjh" = ( +/obj/machinery/chem_master, +/obj/machinery/light, +/obj/effect/floor_decal/corner/mauve/full, +/turf/simulated/floor/tiled/white, +/area/horizon/rnd/xenobiology) "yjj" = ( /obj/effect/floor_decal/spline/plain{ dir = 4 }, /turf/simulated/floor/exoplanet/snow, /area/centcom/shared_dream) -"yjo" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 5 +"yjm" = ( +/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/stairwell/starboard/deck_2) +"yjp" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/structure/cable/green{ - icon_state = "1-2" +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 }, -/turf/simulated/floor/tiled, -/area/bridge/controlroom) -"yjr" = ( -/obj/random/junk, -/obj/structure/disposalpipe/segment, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/horizon/maintenance/deck_two/fore/port) +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/spline/fancy/wood, +/turf/simulated/floor/wood, +/area/horizon/service/bar) "yjt" = ( /obj/machinery/portable_atmospherics/canister/oxygen, /obj/effect/floor_decal/industrial/outline/medical, /turf/unsimulated/floor/marble, /area/antag/wizard) -"yjw" = ( -/obj/machinery/alarm/east{ - req_one_access = list(24,11,55) +"yjA" = ( +/obj/structure/table/standard, +/obj/machinery/vending/wallmed1{ + req_access = null; + pixel_y = 32 }, -/obj/structure/lattice/catwalk/indoor, -/turf/simulated/floor/plating, -/area/engineering/smes/rust) +/obj/machinery/alarm/east{ + req_one_access = list(24,11,65,74) + }, +/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, +/obj/item/storage/firstaid/regular, +/turf/simulated/floor/tiled/dark, +/area/horizon/shuttle/quark/cockpit) "yjB" = ( /obj/effect/floor_decal/corner/white/diagonal, /obj/effect/floor_decal/spline/plain{ @@ -169698,87 +170341,40 @@ icon_state = "beach" }, /area/centcom/shared_dream) -"yjH" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass{ - dir = 4; - name = "Cafe" - }, -/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" - }, -/turf/simulated/floor/tiled/full, -/area/horizon/cafeteria) -"yjQ" = ( -/turf/simulated/floor/reinforced/airless, -/area/template_noop) "yjR" = ( /obj/effect/floor_decal/industrial/warning{ dir = 4 }, /turf/unsimulated/floor/rubber_carpet, /area/antag/jockey) -"yjV" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 10 +"yjX" = ( +/obj/structure/bed/handrail{ + dir = 4 }, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/structure/cable/green{ - icon_state = "1-8" +/obj/structure/bed/stool/bar/padded/red{ + dir = 8 }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" +/obj/machinery/light/small{ + dir = 1 }, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_three/primary/starboard) -"yjZ" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 5 +/turf/simulated/floor/tiled/dark/full, +/area/horizon/shuttle/intrepid/junction_compartment) +"ykc" = ( +/obj/structure/window/shuttle/scc_space_ship, +/obj/structure/grille/diagonal{ + dir = 8 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - icon_state = "1-2" +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 2; + icon_state = "shutter0"; + id = "LCKDshutters"; + name = "MedBay Lockdown Shutters"; + opacity = 0 }, -/turf/simulated/floor/tiled/dark, -/area/horizon/longbow) -"ykd" = ( -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/door/firedoor, /turf/simulated/floor/plating, -/area/maintenance/wing/starboard) -"yke" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, -/obj/structure/disposalpipe/junction, -/obj/effect/floor_decal/corner/brown{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/operations/office) +/area/horizon/medical/equipment) "ykf" = ( /obj/structure/table/wood, /obj/item/material/ashtray/bronze, @@ -169791,43 +170387,78 @@ /obj/item/device/camera_film, /turf/simulated/floor/carpet, /area/horizon/security/investigators_office) -"ykn" = ( -/obj/structure/table/reinforced/steel, -/obj/item/paper_bin{ - pixel_x = 6; - pixel_y = 18 +"ykl" = ( +/obj/effect/floor_decal/corner/red/full, +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 6 }, -/obj/item/device/binoculars/high_power{ - pixel_x = 7; - pixel_y = 3 +/obj/machinery/shower{ + dir = 1 }, -/obj/item/device/flashlight/lamp{ - pixel_y = 1; - pixel_x = -7 - }, -/turf/simulated/floor/tiled/dark/full, -/area/shuttle/intrepid/flight_deck) +/turf/simulated/floor/tiled/dark, +/area/horizon/medical/ward/isolation) "ykp" = ( /obj/machinery/light, /turf/unsimulated/floor{ icon_state = "wood" }, /area/centcom/evac) -"ykq" = ( -/obj/structure/bed/stool/chair/office/dark{ +"yks" = ( +/obj/effect/floor_decal/corner/white/diagonal, +/obj/structure/table/standard, +/obj/structure/roller_rack/two, +/turf/simulated/floor/tiled, +/area/horizon/medical/paramedic) +"ykx" = ( +/obj/structure/platform{ dir = 4 }, -/obj/effect/landmark/start{ - name = "Engineer" +/obj/effect/floor_decal/corner/dark_blue{ + dir = 9 }, -/obj/effect/floor_decal/spline/plain{ +/obj/machinery/light/floor{ dir = 8 }, -/turf/simulated/floor/tiled/dark, -/area/engineering/break_room) -"ykM" = ( -/turf/simulated/wall/r_wall, -/area/engineering/atmos/storage) +/turf/simulated/floor/tiled, +/area/horizon/command/bridge/upperdeck) +"ykB" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/outlet_injector{ + dir = 1; + use_power = 1; + name = "emergency outlet injector"; + volume_rate = 700 + }, +/obj/structure/sign/securearea{ + name = "\improper DANGER: HOT GAS sign"; + pixel_y = 29; + desc = "A warning sign which reads \"DANGER: HOT GAS\"." + }, +/turf/simulated/floor/reinforced/airless, +/area/horizon/engineering/atmos/propulsion/starboard) +"ykC" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/wing/starboard/near) "ykN" = ( /obj/item/modular_computer/console/preset/security{ dir = 8 @@ -169836,6 +170467,12 @@ icon_state = "dark_preview" }, /area/centcom/spawning) +"ykO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/aux{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/horizon/engineering/atmos/air) "ykQ" = ( /obj/structure/closet/crate/secure/legion{ locked = 0; @@ -169855,31 +170492,15 @@ /obj/item/deployable_kit/legion_barrier, /turf/unsimulated/floor, /area/centcom/legion/hangar5) -"ykR" = ( -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/machinery/atmospherics/pipe/simple/visible/universal, -/turf/simulated/floor/plating, -/area/maintenance/hangar/starboard) -"ykU" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/horizon/crew_quarters/fitness/changing) -"ykV" = ( -/obj/effect/floor_decal/corner/dark_blue/full{ +"ykS" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 }, -/obj/machinery/recharger/wallcharger{ - pixel_x = 5; - pixel_y = 28 +/obj/machinery/camera/network/service{ + c_tag = "Dinner - Kitchen Stairwell" }, -/turf/simulated/floor/tiled, -/area/bridge/bridge_crew) +/turf/simulated/floor/tiled/dark, +/area/horizon/stairwell/bridge/deck_2) "ykX" = ( /obj/structure/lattice/catwalk, /obj/structure/railing/mapped, @@ -169888,39 +170509,6 @@ }, /turf/simulated/open/airless, /area/horizon/exterior) -"yla" = ( -/obj/effect/floor_decal/corner/grey/full{ - dir = 4 - }, -/obj/structure/engineer_maintenance/electric, -/obj/structure/engineer_maintenance/pipe{ - dir = 4 - }, -/obj/structure/closet/walllocker/medical/firstaid{ - pixel_y = -32 - }, -/turf/simulated/floor/lino, -/area/horizon/bar) -"ylb" = ( -/obj/structure/table/reinforced, -/obj/item/rfd_ammo, -/obj/item/rfd_ammo, -/obj/item/rfd_ammo, -/obj/item/rfd_ammo, -/obj/item/rfd_ammo, -/obj/item/rfd_ammo, -/obj/machinery/door/window/brigdoor/southright{ - req_access = list(56) - }, -/obj/item/rfd/construction, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/camera/network/engineering{ - c_tag = "Engineering - Chief Engineer's Office" - }, -/turf/simulated/floor/tiled/dark/full, -/area/crew_quarters/heads/chief) "ylh" = ( /obj/machinery/igniter, /obj/structure/sign/flag/nanotrasen, @@ -169943,20 +170531,22 @@ }, /turf/simulated/floor/bluegrid, /area/horizon/holodeck/source_trinary) -"ylk" = ( -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/machinery/light/small/emergency{ +"ylj" = ( +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/structure/railing/mapped, +/obj/structure/platform/ledge{ dir = 1 }, -/turf/simulated/floor/plating, -/area/maintenance/security_port) -"ylm" = ( -/obj/effect/floor_decal/spline/fancy{ - dir = 1 +/obj/structure/platform/ledge{ + dir = 4 }, -/obj/structure/platform, -/turf/simulated/floor/carpet/rubber, -/area/bridge/controlroom) +/obj/structure/platform_deco/ledge{ + dir = 10 + }, +/turf/simulated/open, +/area/horizon/hallway/primary/deck_3/central) "ylo" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 8 @@ -169969,75 +170559,6 @@ /obj/structure/shuttle/engine/propulsion/burst/left, /turf/simulated/wall/shuttle/space_ship/mercenary, /area/shuttle/burglar) -"ylx" = ( -/obj/machinery/door/firedoor{ - req_one_access = list(24,11,67,73) - }, -/obj/structure/table/stone/marble, -/obj/item/device/radio{ - pixel_x = -8; - pixel_y = 5 - }, -/obj/item/device/radio{ - pixel_x = -8; - pixel_y = 5 - }, -/obj/item/device/radio{ - pixel_x = -8; - pixel_y = 5 - }, -/obj/item/device/radio{ - pixel_x = -8; - pixel_y = 5 - }, -/obj/item/device/radio{ - pixel_x = -8; - pixel_y = 5 - }, -/obj/item/device/radio{ - pixel_x = -8; - pixel_y = 5 - }, -/obj/machinery/door/blast/shutters{ - id = "intrepid_buffet"; - name = "Buffet Desk Shutter" - }, -/turf/simulated/floor/tiled/dark/full, -/area/shuttle/intrepid/buffet) -"yly" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/highsecurity{ - dir = 4; - id_tag = "sat2"; - locked = 1; - name = "Scuttling Device Chamber"; - req_access = list(20) - }, -/obj/machinery/door/blast/regular{ - id = "sat_blast"; - name = "Scuttling Device Chamber Blast Door" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/aux{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark/full, -/area/bridge/selfdestruct) -"ylH" = ( -/obj/effect/floor_decal/corner/yellow{ - dir = 10 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/machinery/firealarm/south, -/turf/simulated/floor/tiled, -/area/engineering/rust_office) "ylJ" = ( /obj/structure/morgue{ dir = 2; @@ -170046,40 +170567,68 @@ /obj/effect/floor_decal/industrial/outline/grey, /turf/simulated/floor/tiled/dark, /area/horizon/security/evidence_storage) -"ylO" = ( -/obj/effect/floor_decal/corner/dark_green, -/turf/simulated/floor/tiled, -/area/engineering/lobby) -"ylS" = ( -/obj/effect/floor_decal/corner/mauve{ - dir = 6 +"ylN" = ( +/obj/structure/cable/green{ + icon_state = "4-8" }, -/obj/structure/platform{ - dir = 8 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/turf/simulated/floor/tiled, -/area/rnd/hallway/secondary) -"ymi" = ( -/obj/machinery/door/firedoor, -/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/airlock/maintenance{ + dir = 4; + req_one_access = list(12,26,29,31,48,67) + }, +/turf/simulated/floor/tiled/full, +/area/horizon/maintenance/deck_2/wing/port/far) +"ylQ" = ( +/obj/structure/lattice, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/open, +/area/horizon/operations/office) +"ylT" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/corner/red/diagonal, +/obj/effect/floor_decal/spline/plain{ + dir = 8 + }, +/obj/structure/railing/mapped{ + dir = 8 + }, +/turf/simulated/floor/lino, +/area/horizon/service/cafeteria) +"ylV" = ( +/obj/structure/table/rack, +/obj/random/loot, +/obj/random/loot, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_2/aft) +"ylY" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /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 = "Expedition EVA Storage"; - req_one_access = list(18,47) +/obj/effect/floor_decal/corner/dark_blue{ + dir = 9 }, -/turf/simulated/floor/tiled/full, -/area/storage/eva) +/turf/simulated/floor/tiled, +/area/horizon/command/bridge/upperdeck) +"ymc" = ( +/obj/machinery/power/smes/buildable/substation{ + RCon_tag = "Substation - Engineering Main" + }, +/obj/structure/cable, +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/substation/engineering) (1,1,1) = {" eSV @@ -186906,11 +187455,11 @@ eSV eSV eSV eSV -hTk -hTk -ifn -hTk -hTk +rfC +rfC +rFp +rfC +rfC mOM mOM mOM @@ -186922,10 +187471,10 @@ sRg mOM mOM mOM -hTk -hTk -vIS -hTk +tss +tss +hla +tss eSV eSV eSV @@ -187163,11 +187712,11 @@ eSV eSV eSV eSV -gdp -pGC -nhf -qIx -hTk +qZd +eod +kct +sms +rfC wEY pYB mOM @@ -187179,10 +187728,10 @@ mOM mOM pYB wEY -hTk -pjr -aXC -hTk +tss +sij +fPH +tss eSV eSV eSV @@ -187420,11 +187969,11 @@ eSV eSV eSV eSV -esK -roG -nLc -gtE -noz +wwr +vCl +jlx +cXF +tua wEY pYB wEY @@ -187436,11 +187985,11 @@ mOM wEY pYB wEY -hTk -afe -wsA -hTk -hTk +tss +gXU +feM +tss +tss eSV eSV eSV @@ -187677,11 +188226,11 @@ eSV eSV eSV eSV -hTk -xDI -mNV -iBL -noz +rfC +vbp +qyA +oIF +tua wEY pYB wEY @@ -187693,11 +188242,11 @@ mOM wEY pYB wEY -noz -bFd -xmV -noz -hoV +ooy +wTz +nOK +ooy +pYB eSV eSV eSV @@ -187934,11 +188483,11 @@ eSV eSV eSV eSV -hTk -ktZ -jLm -gdR -hTk +rfC +uwA +lMN +mlV +rfC pYB pYB pYB @@ -187950,11 +188499,11 @@ mOM pYB pYB pYB -noz -bFd -xmV -noz -hoV +ooy +wTz +nOK +ooy +pYB eSV eSV eSV @@ -188191,11 +188740,11 @@ eSV eSV eSV eSV -hTk -mNG -mfn -gdR -hTk +rfC +vxT +vSM +mlV +rfC wEY pYB wEY @@ -188207,11 +188756,11 @@ mOM wEY pYB wEY -noz -rjr -xmV -hTk -hTk +ooy +jDc +nOK +tss +tss eSV eSV eSV @@ -188448,12 +188997,12 @@ eSV eSV eSV eSV -hTk -mPZ -kbI -hTk -hTk -hTk +rfC +pDl +xes +rfC +rfC +rfC pYB wEY mOM @@ -188464,10 +189013,10 @@ mOM wEY pYB wEY -hTk -bFd -xmV -noz +tss +wTz +nOK +ooy eSV eSV eSV @@ -188705,12 +189254,12 @@ eSV eSV eSV eSV -noz -paL -omL -jun -dPt -rqc +tua +gsg +xzD +vNK +gtl +kXP mOM mOM mOM @@ -188721,10 +189270,10 @@ mOM pYB pYB pYB -hTk -oqO -xmV -noz +tss +dCG +nOK +ooy eSV eSV eSV @@ -188962,27 +189511,27 @@ eSV eSV eSV eSV -noz -paL -sTw -lnQ -xXO -hTk -noz -noz -hTk -hTk -hfv -hTk -hTk -noz -noz -hTk -hTk -fWU -vpX -hTk -hTk +tua +gsg +kVr +xxB +mug +tss +ooy +ooy +tss +tss +oWt +tss +tss +ooy +ooy +tss +tss +jwy +haR +tss +tss eSV eSV eSV @@ -189215,31 +189764,31 @@ eSV eSV eSV eSV -hTk -noz -noz -hTk -hTk -gNs -rtC -hTk -hTk -hTk -acn -kho -kho -kho -diR -olX -kMR -xGF -kTJ -exX -sqs -bFd -xmV -noz -hoV +rfC +tua +tua +rfC +rfC +kar +rWJ +rfC +rfC +tss +jFW +tqS +tqS +tqS +vjD +xSt +aDC +uhs +gSx +kzZ +aiO +wTz +nOK +ooy +pYB eSV eSV eSV @@ -189472,31 +190021,31 @@ eSV eSV eSV eSV -ots -iwn -eKi -wpT -wVV -lEq -gBl -gBl -gBl -nua -gBl -gBl -gBl -gBl -gBl -fFj -xXU -gBl -gBl -cZG -lVT -cAG -xmV -noz -hoV +qdz +sXj +vQY +wqY +taW +wZM +lOU +lOU +lOU +hLY +pHV +pHV +pHV +pHV +pHV +rBT +rej +fuw +pHV +adi +nKz +kgP +nOK +ooy +pYB eSV eSV eSV @@ -189729,31 +190278,31 @@ eSV eSV eSV eSV -noz -iIm -gtE -cqd -aTR -qBU -eCh -vxw -fif -qdE -qdE -qdE -qdE -qdE -qdE -qdE -qdE -qdE -qdE -qdE -czp -nDL -xmV -hTk -hTk +tua +njj +cXF +jaK +jYZ +dzV +gJW +hzS +xXe +wlr +wlr +wlr +wlr +wlr +wlr +wlr +wlr +wlr +wlr +wlr +gsy +ngx +nOK +tss +tss eSV eSV eSV @@ -189981,36 +190530,36 @@ eSV eSV eSV eSV -hTk -hTk -noz -noz -hTk -hTk -wtB -cqd -phO -wVV -aiG -hdK -bmx -fif -qdE -tiV -qtt -uTy -giX -owJ -qdE -tiV -qQa -gqW -qdE -rnz -qSv -xmV -dsR -noz +rfC +rfC +tua +tua +rfC +rfC +qUv +jaK +oKl +taW +dRb +kLq +dKI +xXe +wlr +qfc +rXQ +xfg +aOp +hmH +wlr +qfc +uDF +kJm +wlr +lzO +sHt +nOK +xnQ +ooy eSV eSV eSV @@ -190238,36 +190787,36 @@ eSV eSV eSV eSV -hTk -qIl -cqd -cqd -wCf -wVV -wVV -hOZ -wVV -wVV -dLh -lVt -vtn -fif -qdE -fTV -ygk -iZa -aEj -crL -qdE -aQN -nCV -tFO -qdE -oct -qdE -xmV -dsR -noz +rfC +npf +jaK +jaK +mPb +taW +taW +cLH +taW +taW +iEv +tKq +wsN +xXe +wlr +ist +gZu +dZy +vyA +ies +wlr +onR +kZb +vOg +wlr +mjD +wlr +nOK +xnQ +ooy eSV eSV eSV @@ -190495,46 +191044,46 @@ eSV eSV eSV eSV -hTk -iMb -cqd -sTw -cqd -nPq -dPJ -fif -hRO -wVV -qBU -fif -uCB -fif -qdE -iQI -ldd -sWr -giX -iQI -qdE -iQI -giX -sDJ -qdE -vgU -qdE -dqy -vJT -noz +rfC +oxm +jaK +kVr +jaK +qtb +gcB +egt +gNa +coA +xbo +egt +xtA +egt +wlr +pdb +lzT +nbw +aOp +pdb +wlr +pdb +aOp +xuk +wlr +bJt +wlr +jLf +vBQ +ooy eSV -oYQ -ifU -oYQ +glF +nzq +glF eSV eSV eSV -xDY -pos -xDY +oIY +bpT +oIY eSV eSV eSV @@ -190752,48 +191301,48 @@ eSV eSV eSV eSV -hTk -gWp -qZl -elV -pgb -wVV -wmS -sTw -fif -wVV -qBU -qdE -qdE -vdZ -qdE -qdE -qdE -tIU -qdE -qdE -qdE -qdE -qdE -dhX -qdE -nYB -qdE -cen -mOK -mOK -oYQ -oYQ -aGw -oYQ -oYQ -cKY -xDY -xDY -yeB -xDY -xDY -nCG +rfC +fjY +oTk +nxb +oPE +taW +xFb +uvv +egt +coA +xbo +wlr +wlr +vqb +wlr +wlr +wlr +lgy +wlr +wlr +wlr +wlr +wlr +nhF +wlr +cRz +wlr +moi +uvG +uvG +glF +glF +aOr +glF +glF +aGY +oIY +oIY +vcK +oIY +oIY +hCu eSV eSV eSV @@ -191000,57 +191549,57 @@ eSV eSV eSV eSV -gEd -gEd -gEd -gEd -gEd -gEd -gEd -dZV -gEd -gEd -nVz -nVz -nVz -nVz -wVV -rbd -dVz -fif -koz -qBU -qdE -iNW -nCV -nCV -iNW -qdE -tPG -oAU -hGu -map -hGu -oAU -pGs -qEK -jDU -wsD -nUn -uLM -qdE -oYQ -oYQ -msd -oYQ -oYQ -jEx -xDY -xDY -qgn -xDY -xDY -jEx +oAJ +oAJ +oAJ +oAJ +oAJ +oAJ +oAJ +aEA +oAJ +oAJ +hFg +hFg +hFg +hFg +coA +bwh +gxD +egt +orh +xbo +wlr +kVz +kZb +kZb +kVz +wlr +nSQ +bIs +iBi +cSY +iBi +bIs +ogz +bsP +vit +dqN +uvc +xUI +wlr +glF +glF +sZe +glF +glF +hCu +oIY +oIY +pAU +oIY +oIY +hCu eSV eSV eSV @@ -191257,57 +191806,57 @@ eSV eSV eSV eSV -gEd -xLI -xur -rDy -rDy -rDy -lKr -rDy -rDy -rDy -xur -rDy -hRw -nVz -qIl -sTw -awx -fif -wVV -qBU -qdE -bKC -tHg -nCV -ohl -qdE -tBF -fvn -fvn -nCV -fvn -fvn -sWr -nCV -tAP -nCV -bqI -brT -qdE -oYQ -obL -pbJ -qHk -oYQ -jEx -xDY -qaf -tUv -ceG -xDY -jEx +oAJ +dxK +mTb +sQE +sQE +sQE +guj +sQE +sQE +sQE +mTb +sQE +ida +hFg +tkN +uvv +bYY +egt +coA +xbo +wlr +krq +kmo +kZb +nZS +wlr +pdP +rWo +rWo +kZb +rWo +rWo +nbw +kZb +vfH +kZb +ffW +quz +wlr +glF +xEY +fqQ +aDS +glF +hCu +oIY +kRo +dEd +tvd +oIY +hCu eSV eSV eSV @@ -191514,58 +192063,58 @@ eSV eSV eSV eSV -gEd -wDW -rBw -dnk -yaT -kVi -gzh -gzh -bem -eRd -hru -lMH -net -nVz -iUo -sTw -awx -fif -scW -ezh -qdE -nkK -tFO -nCV -nCV -ikV -vZL -nCV -nCV -tHg -nCV -nCV -sWr -nCV -nCV -nCV -bqI -pfb -qdE -oYQ -xZC -iDk -lLE -oYQ -jEx -xDY -stR -xdV -aOD -xDY -jEx -jEx +oAJ +cUw +jFI +hkq +sky +sJm +jlC +jlC +mJN +nvx +pOU +evv +lnz +hFg +fZZ +uvv +bYY +egt +eBV +pDS +wlr +nQF +vOg +kZb +kZb +fHj +uJM +kZb +kZb +kmo +kZb +kZb +nbw +kZb +kZb +kZb +ffW +woX +wlr +glF +hlD +gAY +hxD +glF +hCu +oIY +lZm +bii +niY +oIY +hCu +hCu eSV eSV eSV @@ -191771,58 +192320,58 @@ eSV eSV sPo sPo -gEd -xQk -kjB -gLt -ujP -bcR -hyB -xBM -jRY -ujP -pJX -aav -net -nVz -mkh -hfV -dTe -fif -scW -qBU -qdE -odO -tFO -nCV -iAX -qdE -ubg -kLu -uoI -qsC -qAY -jln -qFf -njB -nCV -nCV -duN -jDs -qdE -oYQ -obL -pbJ -obL -oYQ -jEx -xDY -qaf -tUv -qaf -xDY -jEx -jEx +oAJ +gWx +iYh +qVq +mHc +scN +eMB +qyY +pJs +mHc +eDj +aoJ +lnz +hFg +vGF +xzO +cXx +egt +eBV +xbo +wlr +biL +vOg +kZb +cOw +wlr +bxr +dte +bjN +lya +ikR +rzE +uPP +hUY +kZb +kZb +mde +ajX +wlr +glF +xEY +fqQ +xEY +glF +hCu +oIY +kRo +dEd +kRo +oIY +hCu +hCu eSV eSV eSV @@ -192028,59 +192577,59 @@ eSV eSV sPo tFM -gEd -aFg -cVj -bcR -dCr -bbB -hOS -bbB -bbB -dCr -bcR -aav -lMI -nVz -gtE -sTw -gtE -fif -riF -evd -qdE -nkK -niB -jKF -jKF -vFL -uWS -jKF -jKF -pSJ -jKF -iXq -cOy -gGg -vjx -fiO -qYc -pfb -qdE -oYQ -obL -pbJ -obL -oYQ -jEx -xDY -qaf -tUv -qaf -xDY -jEx -jEx -jEx +oAJ +nfg +igY +scN +gPT +bcB +krK +bcB +bcB +gPT +scN +aoJ +hLA +hFg +rHt +uvv +rHt +egt +dZF +dPY +wlr +nQF +jWh +nyE +nyE +swx +dno +nyE +nyE +iwl +nyE +mEA +oiE +dCU +elB +bsF +dRj +woX +wlr +glF +xEY +fqQ +xEY +glF +hCu +oIY +kRo +dEd +kRo +oIY +hCu +hCu +hCu eSV eSV eSV @@ -192285,59 +192834,59 @@ eSV eSV eSV mOM -gEd -kqk -rNR -ujP -swg -mnN -mih -teb -mnN -eAN -ujP -hNC -ePk -nVz -qCu -fif -fif -fif -wVV -ezh -qdE -bKC -thO -nCV -ohl -qdE -mhb -fvn -fvn -thO -fvn -jJp -qdE -qfs -tMa -wYX -nCV -hLw -qdE -oYQ -oYQ -tYm -oYQ -oYQ -jEx -xDY -xDY -fhZ -xDY -xDY -jEx -jEx -jEx +oAJ +fch +aHl +mHc +jdK +qas +gQQ +qSj +qas +som +mHc +iZD +mUl +hFg +fCI +egt +egt +egt +coA +pDS +wlr +krq +qjq +kZb +nZS +wlr +bKg +rWo +rWo +qjq +rWo +qHF +wlr +qKo +xlU +okE +kZb +xKF +wlr +glF +glF +oKV +glF +glF +hCu +oIY +oIY +eXd +oIY +oIY +hCu +hCu +hCu eSV eSV eSV @@ -192542,60 +193091,60 @@ eSV eSV eSV mOM -woD -kqk -qcj -fwA -xhz -gWj -bMT -gWj -jqL -kkT -nuo -aav -net -rxz -fif -wVV -wVV -wVV -wVV -rot -qdE -iNW -kzD -aFa -iNW -qdE -gkr -nWf -lNG -kOJ -lNG -uGI -qdE -qfs -clf -klR -qWW -abQ -qdE -kcL -ydm -ohC -kcL -ydm -jEx -cRg -sLg -ohC -cRg -sLg -jEx -jEx -jEx -jEx +byv +fch +aYN +njV +dfe +bOB +cBN +bOB +kBO +ewk +rCL +aoJ +lnz +xZm +egt +coA +coA +coA +coA +peg +wlr +kVz +mvs +srt +kVz +wlr +eDg +nLY +pcT +dgl +pcT +xtQ +wlr +qKo +jIN +jIK +fhV +vgK +wlr +cVx +dDA +rUp +cVx +dDA +hCu +rFo +nOG +rUp +rFo +nOG +hCu +hCu +hCu +hCu eSV eSV eSV @@ -192799,61 +193348,61 @@ eSV eSV eSV mOM -gEd -kii -tpM -dqW -gVm -idz -eGC -teb -eAN -yaF -vGp -asB -gRf -iWD -cmp -wVV -bqi -sOH -qiZ -jtf -qdE -qdE -qdE -qdE -qdE -qdE -qdE -qdE -qdE -qdE -qdE -qdE -qdE -qdE -qdE -rVt -qdE -qdE -qdE -ukS -ukS -lVQ -ukS -ukS -ukS -ukS -ukS -aFV -ukS -ukS -ukS -ukS -jEx -jEx -jEx +oAJ +gXx +pvD +mUt +sjH +srE +vwm +qSj +som +vXn +ydf +fkx +qmT +uCE +vlo +coA +iDt +rsg +pjf +fJL +wlr +wlr +wlr +wlr +wlr +wlr +wlr +wlr +wlr +wlr +wlr +wlr +wlr +wlr +wlr +nlJ +wlr +wlr +wlr +sWR +sWR +wDj +sWR +sWR +sWR +sWR +sWR +hhM +sWR +sWR +sWR +sWR +hCu +hCu +hCu eSV eSV eSV @@ -193056,63 +193605,63 @@ eSV eSV eSV mOM -gEd -kqk -qcj -bcR -vBt -gWj -vNb -gWj -ktx -cif -lhS -tdl -fLo -rxz -rst -wVV -fjS -pGc -qDj -sZp -mov -fPG -fPG -fPG -fPG -fPG -iwV -sLl -iJt -owP -gtM -yaP -drY -nYx -cCv -arw -mpI -bLO -gvZ -jfc -tXS -rcA -kBV -oRA -unZ -oRA -cya -rcA -tXS -aOC -deV -slv -eep -jEx -jEx -jEx -kVe +oAJ +fch +aYN +scN +dma +bOB +sSl +bOB +lPr +afB +fSm +wWg +oBr +xZm +tlM +coA +snZ +tnT +qsW +oMb +ngl +dLK +dLK +dLK +dLK +dLK +nYe +xno +kbH +olz +jnU +vRj +fxx +bVO +npA +vaL +enX +anx +jgx +epx +jHg +aal +qmO +dqn +tMF +dqn +uft +aal +jHg +cGr +jGb +nYn +ufB +hCu +hCu +hCu +mOM eSV eSV eSV @@ -193313,63 +193862,63 @@ eSV eSV eSV mOM -gEd -kqk -uZk -ujP -swg -mnN -teb -teb -mnN -eAN -ujP -puN -tTU -nVz -pZv -wVV -kTC -rlH -qzl -rnw -nlH -nlH -nlH -nlH -nlH -qkh -eKJ -qkh -qkh -qkh -feY -gvZ -gvZ -gvZ -gvZ -sgp -buS -rHr -gvZ -pes -myA -nsg -san -san -san -san -san -san -san -san -san -san -kWB -jEx -jEx -jEx -pRz +oAJ +fch +kMa +mHc +jdK +qas +qSj +qSj +qas +som +mHc +qXH +bFW +hFg +jnQ +coA +nfv +xDw +uXq +jEq +bZw +bZw +bZw +bZw +bZw +oPs +iTv +oPs +oPs +oPs +kOZ +jgx +jgx +jgx +jgx +rww +bPs +eyM +jgx +ojN +sLt +nmG +rKs +rKs +rKs +rKs +rKs +rKs +rKs +rKs +rKs +rKs +xvM +hCu +hCu +hCu +hac eSV eSV eSV @@ -193570,62 +194119,62 @@ eSV eSV eSV mOM -gEd -aFg -cVj -bcR -dCr -rYe -rYe -rYe -rYe -dCr -bcR -tdl -xSf -nVz -eqH -wVV -wVV -dod -nAS -wic -nlH -mRu -cwK -rzQ -djv -qkh -oxP -lRO -tRQ -xGe -dAZ -gvZ +oAJ +nfg +igY +scN +gPT +ngz +ngz +ngz +ngz +gPT +scN +wWg +ycV +hFg +xer +coA +coA +xqy +nfd +brn +bZw +rAh +iAM +qBL +gvv +oPs +uwq +vmu +rAl +wFf +aoP +jgx yeo bDQ -cpC -uzB -qDJ -wlh -gvZ -iHE -jWJ -paB -mwO -mwO -mwO -mwO -mwO -mwO -mwO -mwO -mwO -mwO -mwO -mwO -suw -tNp +tNt +htg +rKg +lro +jgx +hiV +dCt +asq +gsx +gsx +gsx +gsx +gsx +gsx +gsx +gsx +gsx +gsx +gsx +gsx +jNL +jcl eSV eSV eSV @@ -193827,62 +194376,62 @@ eSV eSV eSV mOM -gEd -qyX -niX -aSb -ujP -bcR -ujP -ujP -bcR -ujP -aSb -tdl -fLo -rxz -qcu -jGf -vKy -xNw -kdE -pfV -lfw -rWM -jwL -gex -oLG -qkh -bGl -iJR -pqh -qkh -fCT -gvZ +oAJ +hYM +jUv +bKf +mHc +scN +mHc +mHc +scN +mHc +bKf +wWg +oBr +xZm +klD +rXC +hRJ +bYO +dhL +lgA +aHx +dHM +dmT +fOB +lkp +oPs +iIH +aeu +fVC +oPs +pHl +jgx crZ xqn -ulE -ehD -qDJ -eFe -gvZ -kjv -jWJ -paB -mwO -mwO -mwO -mwO -mwO -mwO -mwO -mwO -mwO -mwO -mwO -mwO -mwO -tNp +pAb +lcr +rKg +qqd +jgx +tkO +dCt +asq +gsx +gsx +gsx +gsx +gsx +gsx +gsx +gsx +gsx +gsx +gsx +gsx +gsx +jcl eSV eSV eSV @@ -194084,62 +194633,62 @@ eSV eSV eSV mOM -gEd -kqk -pIe -fdD -xxW -wwo -dSf -nmb -lUp -uWG -oAs -eUw -eqO -rxz -ech -sMm -lIg -lIg -lIg -lIg -lIg -lIg -lIg -xCD -aYY -qkh -qkh -qkh -qkh -qkh -baV -gvZ -yhf -hRn -gvZ -fbc -lNj -eFe -gvZ -ksR -jmi -paB -mwO -mwO -mwO -mwO -mwO -mwO -mwO -mwO -mwO -mwO -mwO -mwO -mwO -tNp +oAJ +fch +nQZ +jrm +rzl +ctF +aIn +nxE +xdw +afC +xGT +awa +pCH +xZm +lhZ +ojv +tJW +tJW +tJW +tJW +tJW +tJW +tJW +rnv +cqT +oPs +oPs +oPs +oPs +oPs +xgJ +jgx +cmb +mIi +jgx +oXX +aOU +qqd +jgx +bjB +tys +asq +gsx +gsx +gsx +gsx +gsx +gsx +gsx +gsx +gsx +gsx +gsx +gsx +gsx +jcl eSV eSV eSV @@ -194341,62 +194890,62 @@ mOM mOM mOM mOM -gEd -pGA -sOG -eHZ -iMG -nmV -nmV -nmV -nmV -iMG -kHT -qQv -iKN -cBH -mmK -vjl -lIg -had -had -wmD -ege -pPU -lIg -gRa -qBC -fDD -fDD -lIg -ueg -vqU -vqU -gvZ -rpj -nag -nag -xKE -hlx -qUK -srC -aFf -fqE -thU -mwO -mwO -mwO -mwO -mwO -mwO -mwO -mwO -mwO -mwO -mwO -mwO -mwO -tNp +oAJ +vKo +vzA +uTW +eVL +odm +odm +odm +odm +eVL +iGa +ntv +dxo +dsq +oUq +sxq +tJW +lDX +lDX +xJb +msS +ioM +tJW +sfe +tEd +uOT +uOT +tJW +odv +hWT +hWT +jgx +bzL +rmK +rmK +vPf +fxe +sDe +rDD +lfP +wKu +aNH +gsx +gsx +gsx +gsx +gsx +gsx +gsx +gsx +gsx +gsx +gsx +gsx +gsx +jcl eSV eSV eSV @@ -194588,72 +195137,72 @@ eSV eSV eSV mOM -awJ -awJ -auF -awJ -awJ +iHh +iHh +hWQ +iHh +iHh eSV eSV eSV eSV eSV -gEd -dOd -nsb -qyi -asy -qJI -qJI -wwG -qJI -asy -cTk -rIq -bNR -nVz -lkx -gtE -lIg -ncC -rPO -hQO -lrf -rQp -qZW -jZV -evA -gMp -fDD -lIg -rPA -vqU -vqU -gvZ -qqH -oJc -eLb -bEm -ngD -goO -qMM -iHE -rcA -pHy -mwO -mwO -mwO -mwO -mwO -mwO -mwO -mwO -mwO -mwO -mwO -mwO -mwO -oLi +oAJ +vLn +iJl +bzq +gol +kWk +kWk +bqe +kWk +gol +rNM +nNk +dmm +hFg +plB +rHt +tJW +dIe +sxl +odh +muW +jNO +hLm +xNj +gKv +dLR +uOT +tJW +hZR +hWT +hWT +jgx +dQp +cBJ +cve +kaU +oSt +uSb +bzE +hiV +aal +gaX +gsx +gsx +gsx +gsx +gsx +gsx +gsx +gsx +gsx +gsx +gsx +gsx +gsx +sAD eSV eSV eSV @@ -194845,72 +195394,72 @@ eSV eSV eSV mOM -dGu -xWM -sOI -hqH -kdD -vwz -gsr -gsr -awJ -nsN -gEd -nVz -nVz -ros -asy -nZc -kGA -pvG -wXV -asy -ljr -asy -ros -nVz -wZi -wVV -lIg -fYz -rPO -hQO -prF -mst -qZW -qVO -qBC -fDD -fDD -lIg -vqU -fCT -niw -gvZ -bRU -qZZ -qZZ -mby -qZZ -qZZ -hHk -rOz -rJZ -iao -mwO -mwO -mwO -mwO -mwO -mwO -mwO -mwO -mwO -mwO -mwO -mwO -mwO -tNp +gnj +qEy +eYf +riW +snf +uHf +sSj +sSj +iHh +tuZ +oAJ +hFg +hFg +nad +gol +eEI +coE +aUJ +cxQ +gol +fQr +gol +nad +hFg +ksV +coA +tJW +sPN +sxl +odh +bgI +nox +hLm +pWC +tEd +uOT +uOT +tJW +hWT +gou +hMc +jgx +iXz +jEc +jEc +hpH +jEc +jEc +dYP +cPM +ahT +mls +gsx +gsx +gsx +gsx +gsx +gsx +gsx +gsx +gsx +gsx +gsx +gsx +gsx +jcl eSV eSV eSV @@ -195100,74 +195649,74 @@ eSV eSV eSV eSV -mNU -fQE -fQE -awJ -awJ -jiL -fyz -vyG -vyG -vyG -awJ -hxZ -tuP -cDk -qhZ -ros -fcc -xzz -beF -eUb -beF -xnv -lZZ -uAD -ros -kQI -xTG -mMR -lIg -svg -svg -dUP -sRe -qEk -lIg -rFO -cuA -qks -xej -lIg -vqU -dNk -dNk -dNk -dNk -pSA -dBb -aSL -enh -whg -gvZ -eyI -qxw -paB -mwO -mwO -mwO -mwO -mwO -mwO -mwO -mwO -mwO -mwO -mwO -mwO -mwO -tNp +aKi +sfJ +sfJ +iHh +iHh +vrC +wRy +nBj +nBj +nBj +iHh +lrZ +boU +vaC +oCC +nad +jRf +bJr +xLX +bmi +xLX +pjj +lvZ +vvd +nad +fVK +tLN +vts +tJW +tDl +tDl +tgu +bxA +lCH +tJW +xSE +eKq +ucO +dQn +tJW +hWT +krH +krH +krH +krH +rdD +mLM +gJO +xgB +nuN +jgx +uik +gkB +asq +gsx +gsx +gsx +gsx +gsx +gsx +gsx +gsx +gsx +gsx +gsx +gsx +gsx +jcl eSV eSV eSV @@ -195357,74 +195906,74 @@ eSV eSV eSV eSV -mNU -szM -szM -xQU -jQh -xGQ -fyz -uZU -iCX -dCC -awJ -hxZ -kDU -xWh -wXB -ros -fMx -uBg -iln -iln -iln -iln -vsY -cem -ros -xPc -nNE -mMR -lIg -rSe -wYE -wYE -wYE -xll -iDM -xgE -kWx -xNb -aMh -iFL -vqU -dNk -hjq -kNt -lTf -wQx -cpf -oDA -blP -lNi -cMu -dLp -glb -paB -mwO -mwO -mwO -mwO -mwO -mwO -mwO -mwO -mwO -mwO -mwO -mwO -mwO -tNp +aKi +gMl +gMl +wPG +weJ +laO +wRy +rKi +lge +kwy +iHh +lrZ +ntk +wxu +qzd +nad +fsH +raQ +toA +toA +toA +toA +oje +pHE +nad +nid +uCN +vts +tJW +hQh +avE +avE +avE +pWY +ryS +gqT +epe +nDi +tcE +lTS +hWT +krH +gtq +knV +nJO +uqC +kKO +ibl +fMA +adt +ibM +eze +hBX +asq +gsx +gsx +gsx +gsx +gsx +gsx +gsx +gsx +gsx +gsx +gsx +gsx +gsx +jcl eSV eSV eSV @@ -195614,74 +196163,74 @@ eSV eSV eSV eSV -rrD -szM -bxJ -fBs -iQR -kka -nCi -tJK -eDE -gPf -awJ -hxZ -fWp -bcG -nRQ -ros -eZk -azJ -wEQ -xfL -eXn -uga -vOG -uaL -ros -qzb -nNE -mMR -lIg -mST -mST -qXZ -rpa -haN -lIg -mon -pnZ -kLR -mZr -lIg -rPA -wkD -xuF -ugN -ugN -uaM -uaM -fbu -fpy -eDa -gvZ -oGp -jWJ -paB -mwO -mwO -mwO -mwO -mwO -mwO -mwO -mwO -mwO -mwO -mwO -mwO -xOm -tNp +gHf +gMl +cpn +hSE +uAJ +eBC +lpY +wes +iVJ +ayy +iHh +lrZ +fOd +eaM +wKN +nad +hIL +uzX +xHg +yaz +gvX +pWh +pbc +slm +nad +oDI +uCN +vts +tJW +uaA +uaA +hia +vcd +nRS +tJW +rPe +jsi +hXo +rLZ +tJW +hZR +nZx +mob +llp +llp +sYg +sYg +vYp +jbh +dlj +jgx +grP +dCt +asq +gsx +gsx +gsx +gsx +gsx +gsx +gsx +gsx +gsx +gsx +gsx +gsx +akb +jcl eSV eSV eSV @@ -195871,76 +196420,76 @@ eSV eSV eSV eSV -mNU -szM -szM -xQU -qMl -lFD -awJ -ctc -ctc -uPX -awJ -awJ -qRC -ver -xIS -ros -ros -ros -ros -tIP -ros -ros -ros -ros -ros -saH -nNE -mTZ -lIg -flN -rPO -hQO -skq -caN -lIg -lIg -jTl -yau -lIg -lIg -vqU -wkD -lIb -fEu -xuC -dNk -dNk -aSR -dNk -dNk -dNk -dKS -uTz -tgY -tgY -tgY -tgY -tgY -tgY -tzo -tgY -tgY -tgY -tgY -gub -jEx -jEx -jEx -kVe -kVe +aKi +gMl +gMl +wPG +tGa +nNJ +iHh +djS +djS +oZS +iHh +iHh +jvg +llK +oyO +nad +nad +nad +nad +pBo +nad +nad +nad +nad +nad +fOU +uCN +ukq +tJW +qdy +sxl +odh +pLQ +vZb +tJW +tJW +bmC +oqk +tJW +tJW +hWT +nZx +jFs +khl +nyh +krH +krH +fWv +krH +krH +krH +jov +rPV +sqh +sqh +sqh +sqh +sqh +sqh +lDy +sqh +sqh +sqh +sqh +qLo +hCu +hCu +hCu +mOM +mOM eSV eSV eSV @@ -196128,76 +196677,76 @@ eSV eSV eSV eSV -mNU -tsn -tsn -awJ -beu -awJ -awJ -fyz -uob -oIk -awJ -awJ -gIc -uwB -txK -gmM -pkK -rbp -gvd -nIw -cSt -wWY -pMq -cSt -jqp -hVL -aQr -mMR -lIg -ncC -rPO -hQO -sfj -uHw -lIg -joW -doK -wsT -vif -lIg -vqU -wkD -ehp -vTA -tIS -wkD -gKG -thI -kSe -qQF -dNk -jOo -bQh -xof -ukS -ukS -wSS -wSS -ukS -wSS -wSS -ukS -wSS -wSS -ukS -jEx -jEx -jEx -kVe -xiV +aKi +jzr +jzr +iHh +oWW +iHh +iHh +wRy +lLz +ghc +iHh +iHh +vEc +vYR +epp +jse +wDd +oBc +ijt +vvY +ajn +oJC +hZN +ajn +rtL +rXL +opl +vts +tJW +dIe +sxl +odh +mmU +kcB +tJW +vMv +hlZ +wGm +scG +tJW +hWT +nZx +gJJ +jee +luR +nZx +rEN +lbp +aRo +vdU +krH +wAl +qIU +wHh +sWR +sWR +wjB +wjB +sWR +wjB +wjB +sWR +wjB +wjB +sWR +hCu +hCu +hCu +mOM +kXh eSV eSV eSV @@ -196384,77 +196933,77 @@ eSV eSV eSV eSV -mNU -fQE -fQE -awJ -awJ -dBG -awJ -dOD -bwJ -cWX -gAK -daE -awJ -jZo -tGC -gbY -lbX -pfQ -fFR -tbX -lye -lye -orq -lye -nWA -ldW -cSZ -nNE -qDu -lIg -jdm -jdm -grm -wOP -rUU -lIg -fmL -awf -lEQ -eHp -lIg -tkX -dNk -mFS -qVG -kQC -wkD -fwr -eFo -eRZ -qQg -wkD -cua -rcA -oXD -wSS -ixU -pgW -gyo -gyo -gyo -gyo -pgW -gyo -gyo -gyo -gyo -eiF -jEx -kiw -kVe +aKi +sfJ +sfJ +iHh +iHh +skI +iHh +wEx +jQd +qrE +xLc +ajc +iHh +dqD +diL +xWv +wty +wPg +slU +npy +bjs +bjs +cMB +bjs +oBJ +mMB +nKy +uCN +bSV +tJW +ezf +ezf +rhR +lJH +kWJ +tJW +wHe +izH +pBA +vma +tJW +lrB +krH +csS +gac +yha +nZx +qdT +urj +pOj +gCq +nZx +kSm +aal +cUv +wjB +mTr +tzu +rKR +rKR +rKR +rKR +tzu +rKR +rKR +rKR +rKR +avC +hCu +tQs +mOM eSV eSV eSV @@ -196641,75 +197190,75 @@ eSV eSV eSV eSV -mNU -szM -szM -xQU -nFs -iTW -awJ -urC -paY -jop -qwe -qDC -awJ -ldW -nAT -ldW -wBz -xaX -gBw -pah -gXz -mER -bAk -hUh -oAi -ldW -bwp -nNE -mMR -lIg -lIg -lIg -lIg -lIg -lIg -lIg -lIg -lIg -lIg -lIg -lIg -vqU -wkD -ehp -vTA -tIS -wkD -gKG -eOm -qEZ -egp -wkD -lSc -uTz -xiX -ukS -fSl -aME -cPt -utm -jCg -oJu -wxs -oDr -vHW -fja -kZP -fFb -tNp +aKi +gMl +gMl +wPG +vYk +syo +iHh +qnE +aHD +jDM +vtM +hmh +iHh +mMB +dHN +mMB +juh +qBu +juw +nzx +nIK +hnE +bfJ +cVW +eic +mMB +pXz +uCN +vts +tJW +tJW +tJW +tJW +tJW +tJW +tJW +tJW +tJW +tJW +tJW +tJW +hWT +nZx +gJJ +jee +luR +nZx +rEN +uAF +rTP +tUo +nZx +ePY +rPV +osN +sWR +osL +ygA +cQh +rjw +ccy +fUw +xYY +cYI +dhJ +quT +pmL +mAK +jcl eSV eSV eSV @@ -196898,75 +197447,75 @@ eSV eSV eSV eSV -unS -szM -bxJ -fBs -tJq -hXq -mDx -uCr -ntJ -sfF -ekt -npa -awJ -jLn -crh -xYW -xYW -xYW -xYW -xYW -xYW -xYW -xYW -xYW -xYW -xYW -bwp -nNE -mMR -icm -uMW -kDf -dYd -vJF -mMC -icm -twX -wqj -tJg -fCT -nnw -vqU -wkD -gru -gru -gru -wkD -wkD -eOm -qEZ -gri -dNk -jyX -rcA -oXD -rBI -nIP -vFD -kVu -fbJ -lTI -qqS -vwD -vkB -tuL -tVI -xwo -fFb -tNp +xni +gMl +cpn +hSE +xSN +szX +uKA +uMK +cuK +kAj +uvw +tZG +iHh +dfN +dDd +qgT +qgT +qgT +qgT +qgT +qgT +qgT +qgT +qgT +qgT +qgT +pXz +uCN +vts +hoK +lCo +dOy +myf +vRP +lqd +hoK +lta +jbx +vBR +gou +gRK +hWT +nZx +fej +fej +fej +nZx +nZx +uAF +rTP +tky +krH +iSe +aal +cUv +rYm +mho +cRW +exI +wxp +fIb +nXI +brU +bcW +awI +cwl +gEl +mAK +jcl eSV eSV eSV @@ -197155,75 +197704,75 @@ eSV eSV eSV eSV -mNU -szM -szM -xQU -vUo -lsd -awJ -akw -ygN -sfF -ekt -rPj -awJ -jLn -crh -xYW -xtn -ieW -pav -xGW -mzE -mTU -ezW -juU -xWe -xYW -bwp -nNE -mMR -icm -xdG -gIw -nre -uHN -pnH -icm -vjI -sko -wjr -rTF -nnw -rPA -wkD -hue -fwh -fwh -ahV -ahV -lwT -qEZ -eTB -dNk -gZP -dJT -qQE -euj -eTV -pDE -sXU -rMm -bZC -jpU -lFa -xVO -tqs -sxP -sDN -fFb -tNp +aKi +gMl +gMl +wPG +hWR +eIK +iHh +vzc +xsC +kAj +uvw +mSK +iHh +dfN +dDd +qgT +rOt +iwN +oUW +sQP +iVH +lWr +hqB +uIU +dYR +qgT +pXz +uCN +vts +hoK +vdY +tAh +uvi +hWi +wWw +hoK +iDV +auB +rvf +ecj +gRK +hZR +nZx +bix +xnr +xnr +guR +guR +mAW +rTP +xne +krH +ucW +okK +eUo +lmZ +hLX +iez +fuY +dDB +nDw +qLb +skM +oqY +lsO +pnb +hLe +mAK +jcl eSV eSV eSV @@ -197412,75 +197961,75 @@ eSV eSV eSV eSV -mNU -tsn -tsn -awJ -awJ -jsq -awJ -lrd -vPo -sfF -ekt -oMc -awJ -hcD -hpA -xff -qbZ -cda -drX -pnX -kTL -hzC -qlv -qlv -oNv -xYW -sBd -gtS -mMR -icm -tHk -kZm -bgR -wgd -jmO -rad -ijn -ijn -dWL -bDl -sRd -vqU -dNk -gjH -iij -xOo -bCV -omS -bhx -hYm -wCx -tEc -vTJ -mFO -qNK -ukS -rXG -dgD -rcY -aNO -uNw -rAa -cde -osc -tuy -vhg -pfs -fFb -qSF +aKi +jzr +jzr +iHh +iHh +jTn +iHh +cQe +hgL +kAj +uvw +hbQ +iHh +moo +uEv +tQU +nkB +tLb +rkn +lEZ +mSr +cHc +lMG +lMG +ejJ +qgT +uBt +gSA +vts +hoK +xgn +lzi +ljA +pAY +iNY +ood +ftF +ftF +rrA +sgF +oAp +hWT +krH +qWP +vYh +awM +rGj +vJI +jMf +ieE +chK +fOk +tqK +fuR +mbP +sWR +ndh +dJi +eBQ +ohQ +oHO +tEv +aVa +jAM +exx +mEz +nYR +mAK +jPH eSV eSV eSV @@ -197670,74 +198219,74 @@ eSV eSV eSV eSV -mNU -fQE -fQE -awJ -beu -awJ -awJ -koH -sfF -vgT -npa -awJ -pBJ -bmn -hxh -bHP -cTs -pSx -pTT -kTL -hzC -qlv -kfb -chW -xYW -nBK -edm -mMR -icm -dkR -mzR -rNH -voQ -fMB -icm -uqE -wqj -xBY -wqj -oOk -oOk -oOk -oOk -oOk -oOk -vxs -qEZ -eBt -qEZ -dWD -tEc -juI -rcA -rcA -kKc -kNN -nBA -rZh -ilQ -lhE -bDg -wOH -oPG -cWa -tCA -fFb -fFb -tNp +aKi +sfJ +sfJ +iHh +oWW +iHh +iHh +akz +kAj +blw +tZG +iHh +brJ +qfe +oyn +pQu +rbM +cSi +hSm +mSr +cHc +lMG +nCg +scC +qgT +idJ +hrS +vts +hoK +fJr +mbQ +rLY +tAq +sZy +hoK +dTn +jbx +eTe +jbx +wZA +wZA +wZA +wZA +wZA +wZA +bTZ +rTP +brp +rTP +kaG +fOk +ieq +aal +aal +vyQ +ajQ +oes +mGq +iaO +wgt +piU +nKq +pEa +sEm +uSm +mAK +mAK +jcl eSV eSV eSV @@ -197927,74 +198476,74 @@ eSV eSV eSV eSV -mNU -szM -szM -xQU -lYV -dzA -awJ -iQM -lOi -iRh -fZY -awJ -lTv -cAq -xff -jJb -ouE -bHs -pTT -kTL -hzC -qlv -qlv -oNv -xYW -usF -nNE -mMR -icm -blj -dpL -mVU -aHr -qtO -icm -cqu -kqO -jaN -fCT -oOk -hPn -ych -xAG -qUu -oOk -mKc -qEZ -rRq -qEZ -gld -dNk -wos -rcA -fTj -kKc -vZO -snD -uUP -xij -fjW -tfN -ePy -xpX -rZh -qhG -fFb -fFb -tNp +aKi +gMl +gMl +wPG +kDj +nOW +iHh +uQo +jZn +dwM +kgD +iHh +jED +dhk +tQU +sHz +rGT +dmr +hSm +mSr +cHc +lMG +lMG +ejJ +qgT +mUv +uCN +vts +hoK +mEV +qwL +oXM +jup +ygr +hoK +kll +vyT +jvL +gou +wZA +beE +uaE +rlr +tXV +wZA +dpZ +rTP +qdD +rTP +ugs +krH +pex +aal +orI +vyQ +hnL +dde +blc +bIB +rAI +bzG +mBQ +bgZ +mGq +xmF +mAK +mAK +jcl eSV eSV eSV @@ -198184,74 +198733,74 @@ eSV eSV eSV eSV -qOO -szM -bxJ -fBs -mqI -mxq -awJ -dwr -wuW -gFD -rlP -awJ -ibi -cAq -xYW -kYv -nSt -hAY -pTT -qyK -kLG -qWf -lAU -aJA -xYW -ars -oFx -vqW -icm -icm -icm -khO -icm -icm -icm -nnw -nnw -quA -nnw -oOk -jrr -lyU -pIC -rcN -nuj -xlb -tHv -hjO -qpe -jwN -ctM -eqk -rcA -iMc -ukS -blr -kCj -fZv -tjs -wxE -iuk -bZR -iZi -oSA -hMj -fFb -fFb -tNp +upo +gMl +cpn +hSE +xOP +omw +iHh +xPI +wSV +rEe +qMg +iHh +eNX +dhk +qgT +oqL +vOU +emX +hSm +wGj +wgl +xuW +vVR +dkl +qgT +xLj +mNM +kPH +hoK +hoK +hoK +rEb +hoK +hoK +hoK +gRK +gRK +scu +gRK +wZA +vhH +tKy +dGI +rlb +nIr +rEM +vYz +hVD +lAW +nFL +kPQ +cxm +aal +bUM +sWR +jyc +nFO +pkj +fNO +rAH +sbq +aMS +kGr +tZk +lQc +mAK +mAK +jcl eSV eSV eSV @@ -198441,83 +198990,83 @@ eSV eSV eSV eSV -mNU -szM -szM -xQU -eTi -sfF -awJ -jaP -uIN -obs -aAN -awJ -wYp -dei -xYW -xYW -xYW -xYW -xYW -xYW -xYW -xYW -xYW -xYW -xYW -fBg -nNE -rQC -ltM -dgT -dgT -iBj -dgT -dgT -dgT -dgT -dgT -fep -oLD -oOk -lIu -kkS -lUT -umB -oOk -sdT -sdT -wrX -nNS -wPo -dNk -kKb -gyx -ovb -ukS -rKM -dim -hPB -hPB -hPB -hPB -dim -hPB -hPB -hPB -hPB -nhi -jEx -kVe -kVe -kVe -kVe -kVe -kVe -kVe -kVe -kVe +aKi +gMl +gMl +wPG +wya +kAj +iHh +cVw +jYg +eKu +bga +iHh +vND +lcO +qgT +qgT +qgT +qgT +qgT +qgT +qgT +qgT +qgT +qgT +qgT +uku +uCN +rpV +sae +hmM +hmM +pQh +hmM +hmM +hmM +hmM +hmM +mFX +jmX +wZA +uqd +jhe +xCU +eHu +wZA +adJ +adJ +bUQ +aIq +ngM +krH +muO +dmF +brG +sWR +qDa +eya +dyb +dyb +dyb +dyb +eya +dyb +dyb +dyb +dyb +sAc +hCu +mOM +mOM +mOM +mOM +mOM +mOM +mOM +mOM +mOM eSV eSV eSV @@ -198698,83 +199247,83 @@ eSV eSV eSV eSV -mNU -mNU -tsn -awJ -awJ -awJ -awJ -wlT -azl -ojl -luy -boB -rNz -tET -aWr -cZi -pWm -kCA -pHI -hbn -pHI -pHI -tDi -pHI -tpR -pHI -nTm -rtJ -tTT -xhE -xhE -cXl -xhE -ddJ -xhE -xhE -xhE -eYb -mMR -oOk -rqf -kkS -wkO -qUu -oOk -dNk -dNk -dNk -dNk -dNk -dNk -doE -qju -ukS -ukS -ukS -ukS -ukS -ukS -ukS -ukS -ukS -ukS -ukS -ukS -ukS -jEx -jEx -jEx -msv -msv -msv -msv -msv -msv -msv -kVe +aKi +aKi +jzr +iHh +iHh +iHh +iHh +mAt +icV +spl +skR +igR +cxJ +nRX +fQR +tkz +jyF +lEX +idh +mUM +idh +idh +hjL +idh +ugR +idh +awZ +csb +nFI +lJn +lJn +rWz +lJn +epk +lJn +lJn +lJn +wZO +vts +wZA +dFP +jhe +gNi +tXV +wZA +krH +krH +krH +krH +krH +krH +wne +vDX +sWR +sWR +sWR +sWR +sWR +sWR +sWR +sWR +sWR +sWR +sWR +sWR +sWR +hCu +hCu +dAf +dAf +dAf +dAf +dAf +dAf +dAf +dAf +mOM eSV eSV eSV @@ -198957,81 +199506,81 @@ eSV eSV eSV eSV -awJ -awJ -eyU -eyU -awJ -iei -cwa -lFS -mbI -awJ -vOf -ubq -xHs -bfX -jsV -mYY -gWv -bSr -ulQ -ulQ -ulQ -ulQ -ulQ -ulQ -ebK -tqT -lji -ulQ -obM -ulQ -sWa -bVc -lji -ulQ -sWa -vjT -mMR -oOk -hPn -qVb -tmu -qUu -oOk -hMr -nqp -rJw -aBw -hII -lZu -jks -gxJ -htx -ggp -bCU -hle -eOk -kLC -xoY -jGM -arn -dER -xoY -qZx -wJh -uwT -nhc -lUf -nWF -wfM -iab -vPu -oOI -nmP -msv -kVe +iHh +iHh +reN +reN +iHh +qho +xrM +pWj +vPi +iHh +lJs +uFS +wTY +eXO +xzF +qUT +vOw +ikG +tKs +tKs +tKs +tKs +tKs +tKs +mHL +cLx +cVc +tKs +ehr +tKs +seB +dhv +cVc +tKs +seB +djq +vts +wZA +beE +soQ +uVt +tXV +wZA +nxD +pIz +aVx +wbv +cRa +bOq +ntp +uTF +svW +eeJ +owF +kcI +atg +eCz +iwb +drd +lyA +qrK +iwb +xYJ +nOi +xMd +lum +xGA +vGA +jgO +xPf +rLV +wKl +cqr +dAf +mOM eSV eSV eSV @@ -199215,80 +199764,80 @@ eSV eSV eSV eSV -awJ -awJ -awJ -nEm -nEm -qrh -aix -sXg -nEm -aJB -jsV -rYQ -jsV -jsV -fsV -jsV -jsV -jsV -arr -arr -arr -arr -arr -arr -sTu -pzg -pzg -pzg -jsV -jsV -hvO -jsV -jsV -bwp -kVn -rQC -oOk -oOk -mky -oOk -oOk -oOk -qvl -aAe -mxW -aAe -aAe -aAe -fKD -tYN -qju -qju -qju -qju -qju -uuZ -urv -odK -uUl -lDd -eJG -iCZ -hIl -ibH -ykR -uJE -bTu -wJg -wJh -xWT -dIM -xSR -bij -kVe +iHh +iHh +iHh +kEc +kEc +iic +aHU +run +kEc +xZn +xzF +lYp +xzF +xzF +paN +xzF +xzF +xzF +lKo +lKo +lKo +lKo +lKo +lKo +aZI +lQd +lQd +lQd +lsX +lsX +qWv +lsX +lsX +pXz +jPO +rpV +wZA +wZA +gWK +wZA +wZA +wZA +tXt +frY +jwF +frY +frY +frY +wte +loP +vDX +vDX +vDX +vDX +vDX +jBg +upU +dSD +gbJ +bNF +krt +xkb +oxJ +fsT +kIv +gmw +tfy +qlj +nOi +mKh +eKI +vZm +btS +mOM eSV eSV eSV @@ -199472,80 +200021,80 @@ eSV eSV eSV eSV -nEm -nEm -rOV -stN -qSM -hnN -mik -cSw -pep -aJB -evf -sPQ -ciC -nqM -tLK -dgT -ryA -dgT -arr -adj -ohB -leB -qzy -arr -tGE -xJE -lxQ -pzg -kXw -rza -svH -kbJ -jsV -pRb -rsk -xhE -vat -pIm -jMT -fUb -bFv -okA -xAf -aAe -ptI -cSo -buf -gSy -lOn -okw -bup -eIp -fhF -ckb -qju -psB -xoY -xoY -xoY -xoY -xoY -qwr -mjG -ugW -nPL -dsI -nWF -iAL -epn -msv -vse -rsS -wHJ -kVe +kEc +kEc +etP +uYm +uAM +czt +spd +ufH +lqZ +ahB +tOl +vqI +pUT +oZK +wdd +cBy +hQp +cBy +lKo +ibv +iBP +dYV +kYZ +lKo +eRl +xgu +emx +lQd +apg +rPS +tRZ +dCI +lsX +ulQ +uiC +lJn +qht +jjJ +utj +fns +tFD +vdH +jnR +frY +gIK +kym +qcv +xao +nni +taQ +vDJ +lbl +glU +iIi +vDX +txH +iwb +iwb +iwb +iwb +iwb +doo +qtq +wrI +ukQ +uXo +vGA +fNU +gjx +dAf +cZR +vYs +jnu +mOM eSV eSV eSV @@ -199729,80 +200278,80 @@ eSV eSV eSV cnE -uza -hEZ -aZP -fIC -fCv -thS -vrg -rSU -oYp -hTW -mdZ -gdW -avI -nMA -avI -avI -avI -reR -xVk -dbS -non -dOa -bMg -arr -sIC -cyS -wrE -jFa -wdT -wdT -jWE -toL -jsV -pwd -ulQ -ijU -nnw -aDv -nXE -txk -ney -rIS -uNH -aAe -pTw -sIN -ifX -gSy -rau -aOh -ivF -emH -fhF -sRs -qju -fXF -fkN -rXW -fkN -vqC -fkN -uQL -uaU -ugW -xPv -axv -cir -iAL -xEu -msv -bpI -mvN -msv -kVe +wZw +tHL +soa +jvZ +gYl +naq +dfl +uZS +uLC +iuD +bHd +gZV +oWH +gve +oWH +oWH +oWH +tbT +qcs +aGK +sNl +acs +nMF +lKo +mFb +mAV +spg +lgR +agz +agz +nTH +akD +lsX +lNz +tKs +dbW +aRa +jaE +qwR +qAB +qND +bdk +sYI +frY +amH +gky +hLO +xao +sMz +moz +kme +vHc +glU +iBy +vDX +meD +pDv +avq +pDv +nfW +pDv +iyC +dIE +wrI +mod +rbW +aIu +fNU +iBo +dAf +wzO +ldC +dAf +mOM eSV eSV eSV @@ -199986,80 +200535,80 @@ eSV eSV eSV eSV -nEm -cYs -rOV -fzU -oYG -lRh -gLs -ezt -mmh -aJB -fTJ -wFw -bfX -gWv -gWv -ulQ -gWv -cRp -eIS -bHx -fVm -sLn -rpK -eIS -sti -sti -sti -sti -ewI -blO -jak -dmS -dmS -dmS -dmS -dmS -dmS -uOy -wuD -wuD -atZ -wuD -wuD -aAe -kGf -xmc -kGf -aAe -wKW -mBx -qju -qju -qju -qju -qju -nWF -dQH -nWF -nWF -nWF -nWF -nWF -nWF -pVp -nWF -nWF -nWF -epB -nZb -msv -gNo -skE -ctz -kVe +kEc +ssy +etP +mGa +wJM +rmr +jDN +sEe +eOC +ahB +xmd +hcm +mTh +lTV +lTV +moN +lTV +xIB +ajh +lAB +eVF +fpG +mFT +ajh +sac +sac +sac +sac +uYg +dPM +gzR +ovv +ovv +ovv +ovv +ovv +ovv +erP +vtz +vtz +wnm +vtz +vtz +frY +kAc +rwc +kAc +frY +yeG +iPE +vDX +vDX +vDX +vDX +vDX +vGA +uRF +vGA +vGA +vGA +vGA +vGA +vGA +jLN +vGA +vGA +vGA +lKD +gTc +dAf +gWz +oQF +vgu +mOM eSV eSV eSV @@ -200243,80 +200792,80 @@ eSV eSV eSV eSV -lSV -ggE -prb -lVH -oxT -rOV -pNf -kvq -mmG -aJB -iXY -mlw -oDB -aXe -jHu -hPC -oDB -qYx -eIS -aMG -cEl -lNE -cxG -eIS -xLq -nPN -dsT -sti -vSS -bwp -jak -dmS -uAS -lMS -iiM -kto -iMj -dmS -udC -ydI -ref -xMm -feW -fga -lrF -xdT -wMB -wVd -ikF -xFo -kan -mVJ -xFo -xFo -xFo -ddL -dGo -dGo -dGo -tXo -dGo -vQs -ocu -kqT -ycu -uZN -nWF -msv -msv -msv -gNo -eZM -kVe -kVe +tDt +nPJ +lIN +cSH +wsw +etP +gvs +wCU +nvW +ahB +byN +sFE +iLR +jNf +qqT +dyi +iLR +oRq +ajh +qBe +kNp +gnw +fNr +ajh +jWC +pEA +enR +thE +gjE +odg +gzR +ovv +pHa +bzY +nkb +dos +lVP +ovv +wtr +lfE +huI +pjR +elG +kQf +udt +mUq +hrA +shc +xJZ +kVo +tCR +lYv +kVo +kVo +kVo +rcM +pOX +pOX +pOX +jFt +pOX +ouw +jvy +mmk +cfk +cvc +vGA +dAf +dAf +dAf +gWz +jnw +mOM +mOM eSV eSV eSV @@ -200500,85 +201049,85 @@ eSV eSV eSV eSV -nYA -pQv -ybl -cqE -tGU -gVx -trc -oWg -fZr -iSc -hqC -xVg -nTh -eab -xmg -rnt -mQd -vjW -eIS -wbg -jiS -ias -aDm -eIS -mhN -ten -sOo -sti -iDw -bwp -tGK -hqb -tZK -lQI -bVV -pTP -gDC -ifK -thd -oPL -mey -mKo -iZk -her -xVU -xVU -pEO -fEy -mNH -mNH -lMA -aXq -xVU -xVU -xVU -fpp -xVU -xVU -xVU -xVU -fEy -mNH -mNH -lMA -xVU -eIC -ioq -mZD -nDI -nDI -nDI -nDI -nDI -nDI -nDI -nDI -nDI -nDI -nDI +jSo +goe +tfG +qOp +kGY +iGG +cGo +lQZ +hvg +odS +eSc +diI +tCy +psO +fDG +sKl +kXx +sUZ +ajh +uxs +mQB +mwx +chZ +ajh +mRj +prv +vMc +thE +xmr +odg +gCQ +rkH +aqw +sIF +vuR +vvs +vQh +bbh +iKs +qud +iTe +kpY +meR +ppQ +fOj +fOj +xzo +lCj +xYO +xYO +wnC +eFW +fOj +fOj +fOj +ove +fOj +fOj +fOj +fOj +lCj +xYO +xYO +wnC +fOj +our +mDm +xcX +mDz +mDz +mDz +mDz +mDz +mDz +mDz +mDz +mDz +mDz +mDz eSV eSV eSV @@ -200757,85 +201306,85 @@ eSV eSV eSV eSV -nYA -rmY -aqc -ozx -qdm -gVx -sMx -fUm -pLc -aJB -hVn -dvN -fdA -lSy -uNg -dnJ -iGC -wqr -eIS -arr -arr -tes -arr -eIS -sti -nfO -sti -sti -sti -sti -jak -dmS -vpa -uVX -gFI -jhg -vrQ -dmS -wCH -oPL -usP -lCX -wuD -ybD -laK -iRC -aIE -cCt -toF -hYy -oWu -iRC -iRC -iRC -iRC -iRC -foG -taP -taP -taP -pBP -lBC -nyu -pBP -iRC -nWZ -kEJ -kEJ -kEJ -kEJ -jHG -kEJ -kEJ -kEJ -jHG -kEJ -kEJ -aRG -nDI +jSo +dJk +rGz +rMA +iON +iGG +xlC +oxR +nOg +ahB +lRz +ilE +pUl +bnW +msD +qDt +iRv +aHS +ajh +lKo +lKo +fCW +lKo +ajh +thE +uXV +thE +thE +thE +thE +gzR +ovv +cto +gbh +nLx +gZf +lVR +ovv +aUZ +qud +kLk +mIk +vtz +rnW +dQd +faV +qqZ +vBc +mJv +dvM +sCT +faV +faV +faV +faV +faV +gfR +rEo +rEo +rEo +iEH +wXQ +oXi +iEH +faV +eoY +syV +syV +syV +syV +pMw +syV +syV +syV +pMw +syV +syV +mBq +mDz eSV eSV eSV @@ -201014,85 +201563,85 @@ eSV eSV eSV dOc -nEm -nEm -gJK -oma -fJR -qnc -iTT -nEm -nEm -nEm -bQj -hcC -dAU -qop -xmg -mnQ -dee -vjW -eIS -kzv -nmQ -rfR -qIT -eIS -xbJ -wjH -eDn -sYZ -jEf -sti -jak -dmS -dmS -dmS -dmS -dmS -dmS -dmS -wqf -oPL -eEm -ifD -wuD -xCT -mrb -iRC -ckZ -evm -toF -cFF -bVo -iRC -foG -foG -pbX -foG -foG -fOa -lNO -sWq -pBP -vCV -ppS -pBP -kis -wQn -wQn -gjh -gjh -aFh -wQn -iRC -iRC -iRC -iRC -iRC -iRC -iRC -cLV +kEc +kEc +sao +ePS +izD +hdG +aAT +kEc +kEc +kEc +sbT +kRt +pGm +wSp +fDG +enu +xqt +sUZ +ajh +fnd +hvy +nGG +qWp +ajh +azI +uNL +ygq +lSt +cjp +thE +gzR +ovv +ovv +ovv +ovv +ovv +ovv +ovv +qZt +qud +iMp +rZC +vtz +meg +kGI +faV +sAm +rQz +mJv +vMz +vtf +faV +gfR +gfR +syK +gfR +gfR +ycO +ofc +mMl +iEH +dKE +rys +iEH +pUv +jtk +jtk +oTf +oTf +kCt +jtk +faV +faV +faV +faV +faV +faV +faV +evh eSV eSV eSV @@ -201280,76 +201829,76 @@ oap uVD xfS hic -fxC -jue -cvZ -oDB -oDd -fLz -fRu -xaE -vjW -eIS -vJM -cEl -mnr -tKE -eIS -eYX -tJb -qPw -tJb -tsv -sti -tGK -hLu -cSq -ajK -dDv -hts -vsW -kFh -lmf -oPL -gpw -fUS -yiw -iRC -iRC -wkQ -xeJ -xeJ -ueH -oWu -iRC -xtM -ksN -wCW -nME -gKh -iyc -rUZ -hBb -dRx -pBP -vab -iYp -pBP -taP -wQn -qOb -cpV -koV -czS -wQn -wQn -iRC -iRC -iRC -iRC -iRC -iRC -cLV +xzi +hJH +qIm +iLR +ltZ +bQA +his +ipx +sUZ +ajh +lOw +kNp +hie +jvh +ajh +oJQ +pzX +egq +pzX +syg +thE +gCQ +gSV +nCp +pen +aGz +uPC +ayL +qwi +kQM +qud +agP +pfP +ogR +faV +faV +unJ +vFT +vFT +dML +sCT +faV +xeM +lpq +otq +cDE +xFS +bDI +tHC +wgj +tSi +iEH +ave +ctg +iEH +rEo +jtk +eIR +mnz +aTs +rIt +jtk +jtk +faV +faV +faV +faV +faV +faV +evh eSV eSV eSV @@ -201529,84 +202078,84 @@ eSV sPo pYB kSb -oDB -bID -fOC -ftL -oDB +iLR +dje +eim +eON +iLR qsK rDP boH -cJz -gsd -qih -kqF -fUf -eqa -cYS -bcj -gxR -eIS -qzt -pJm -tvn -xqe -eIS -tMp -hDI -uXR -kYE -aUC -sti -jak -kFh -exV -gry -bMO -jDq -ous -vFu -fWx -oPL -rLm -mKo -yiw -eQP -eQP -toF -edp -evm -gom -xAe -iRC -uUx -rfT -sbv -ilY -lWy -foG -mIX -eWo -kJH -pFR -iQL -iWG -pFR -jew -uFN -jVL -hxL -wan -xvk -kTh -wQn -iRC -iRC -iRC -iRC -iRC -iRC -cLV +cQo +qoh +ayX +rKO +qFU +boo +qah +lmX +gtb +ajh +sRx +ikP +rzj +mHI +ajh +fKf +phR +uTH +gOs +fNL +thE +gzR +qwi +xXE +nJj +dNV +dtX +kxM +ieR +sPC +qud +wxA +kpY +ogR +oKr +oKr +mJv +xax +rQz +tqz +ctv +faV +hTc +kJf +rJW +oDm +jHT +gfR +uxq +rjS +dSL +opZ +xro +ecR +opZ +kTr +cJF +uRH +taC +cUf +rdW +iSq +jtk +faV +faV +faV +faV +faV +faV +evh eSV eSV eSV @@ -201786,84 +202335,84 @@ eSV sPo wEY mYb -jvE -lPP -dBA -vBr -dDM +gAQ +ldO +qXE +rmL +uBN pYB yfH oNp -hWb -jCK -jCK -jCK -sNH -dOx -hpU -dMa -qew -eIS -suA -esS -iMA -uhE -eIS -ydT -tJb -chY -tJb -wLA -sti -xHi -kFh -sxx -afl -vrm -qOx -gye -vFu -voa -oPL -rLm -mKo -yiw -nWg -nWg -toF -edp -evm -ofA -xAe -iRC -xtM -rfT -sDd -gmT -gar -kOR -pme -kcW -tlx -uVl -uJi -gFC -lbo -tuR -ylx -mCJ -rAg -vvq -con -uab -wQn -dLs -iRC -iRC -iRC -iRC -iRC -cLV +mLD +rmi +rmi +rmi +azG +snH +gjo +qwF +rAY +ajh +iKH +phA +tcH +oiO +ajh +srm +pzX +uxH +pzX +uPa +thE +dTk +qwi +mmw +qjJ +oKd +cUq +uwS +ieR +gsa +qud +wxA +kpY +ogR +lQO +lQO +mJv +xax +rQz +pWG +ctv +faV +xeM +kJf +smS +uaB +vXA +vLk +tsa +qeT +imM +cUY +eWM +sHR +mgk +wqE +cZT +vqg +wtF +xTt +qYn +fHC +jtk +fAX +faV +faV +faV +faV +faV +evh eSV eSV eSV @@ -202043,84 +202592,84 @@ eSV iSu wEY gnP -twq -dBA -pMX -dBA -ipg +yey +qXE +dml +qXE +aQC pYB yfH aZd -hWb -flw -cpt -iUi -bDt -vlY -jVj -iFd -mGp -eIS -qDK -gcZ -hZS -ghw -eIS -pPO -sJJ -vjM -qEh -bdY -sti -jak -kFh -hAf -kzx -oys -pXv -eKo -kFh -gkE -gSt -rLm -mKo -yiw -dJm -eQJ -toF -edp -evm -xkS -cgf -haD -sql -jkq -bWz -uRe -lyN -foG -tVf -aNS -aNS -idU -pBP -pBP -luZ -aNS -kol -hwA -uLN -sRH -cJx -wQn -wQn -lZI -lZI -lZI -xFW -iRC -iRC -cLV +mLD +duL +bmZ +ejz +sDv +gmU +dPk +rHS +dRt +ajh +jsx +aYz +pcn +gja +ajh +lDS +hVU +oQs +wMz +izM +thE +gzR +qwi +eZj +szw +lTH +iKb +cqt +qwi +brY +rQw +wxA +kpY +ogR +xzh +aws +mJv +xax +rQz +qKM +srB +iYZ +qwA +qYp +xzG +dFY +pFt +gfR +fTd +wiS +wiS +rju +qwA +qwA +uFw +wiS +xpf +uGg +kvb +qWn +vIp +jtk +jtk +vWD +vWD +vWD +asT +faV +faV +evh eSV eSV eSV @@ -202300,84 +202849,84 @@ eSV sPo wEY mYb -foN -htn -nnh -siF -kSH +geH +wZe +dRX +tng +isw etT iGH nto -dzi -sta -iPW -sQT -eKb -hVE -bDc -jTJ -rNe -eIS -eZm -arr -pxY -fyb -eIS -sti -sti -uWW -sti -sti -sti -qfF -kFh -kFh -vFu -xRP -vFu -kFh -kFh -mhd -mxX -nAn -uzZ -wuD -wuD -vVx -toF -edp -aHY -wuD -qgo -sql -sql -foG -foG -foG -foG -foG -uRV -lqO -wIU -gPk -nGo -qIS -bKa -mbZ -sql -dQW -tXp -tXp -aYc -txg -xFW -fgJ -ykn -uSU -xFW -xFW -iRC -cLV +fzK +uRc +nRc +qkI +lmI +hnJ +fbf +qoJ +lQW +ajh +iaK +lKo +eZo +gIM +ajh +thE +thE +eXz +thE +thE +thE +lOM +qwi +qwi +ieR +ruB +ieR +qwi +qwi +hnH +pQy +qBf +aHh +vtz +vtz +ePO +mJv +xax +bah +vtz +qDS +qwA +qwA +gfR +gfR +gfR +gfR +gfR +amD +daj +msi +qBE +dQy +dHT +pZe +gsA +qwA +yjX +xDp +xDp +faU +cAL +asT +vps +nLd +aMw +asT +asT +faV +evh eSV eSV eSV @@ -202557,84 +203106,84 @@ eSV sPo rdd pTQ -oDB -nAX -vWL -mnL -oDB +iLR +tgP +nyQ +skT +iLR clT yfH aZd -gaC -lqh -rNy -dVG -hqV -fkH -xol -oxi -ehH -oDB -wXF -bBD -ygx -bEk -hnS -wka -uUZ -rCq -gOP -qnt -pYa -wIJ -fXS -lnt -uoF -xFB -uSG -uqn -pYa -rkQ -oqE -rLm -pjy -hUk -aaa -dpf -ueH -hYy -pvn -aob -pvn -nvn -jXW -kki -qyk -xjL -cqU -iHi -qJU -eSa -onT -fGD -dlv -udv -tKf -onT -jry -sGo -ppi -ppi -krx -bPT -xFW -ois -dJY -xnF -oKJ -kqv -iRC -cLV +gRE +wwP +nvE +oNa +mFD +gGo +qwJ +iwC +ttG +iLR +eFP +cHg +sJO +pdw +tVN +vQk +gBL +ozp +aCy +gRV +tqZ +mUj +xDe +jlP +qQe +aPM +mRL +rOF +tqZ +ais +guu +wxA +ugS +qlq +llo +mMg +dML +dvM +dUU +nNh +dUU +sgm +hml +oqW +nsi +rqQ +kIk +yed +qHv +uoT +hmW +itZ +xhB +lwD +aiL +hmW +sgr +lJP +gcq +gcq +eHa +cAb +asT +mBl +kFt +uqx +djX +lFJ +faV +evh eSV eSV eSV @@ -202822,76 +203371,76 @@ etT kid cnx nto -dzi -sta -xlr -xmJ -tTl -hfR -lEw -lJi -vTT -fPF -nUR -kzs -bOs -fOV -ekb -nEc -phs -nMJ -waN -bDv -fMM -nPK -ftn -erk -ftn -ftn -ftn -fmV -qwK -jpK -jnS -mey -hYy -apf -aaa -ckV -mjC -hYy -pvn -pvn -guq -mwD -gDj -dir -pTp -wnV -nQH -spQ -aKh -hOT -brI -rRE -xrp -dnR -fjA -iJq -nBT -rhY -rhY -dXh -jns -mFo -ocp -mAY -hcq -xnF -hMk -fNt -iRC -xsx +fzK +uRc +wXN +qMT +kjc +mUK +jne +thl +gjG +nJu +ffA +gND +jWo +tkF +rGC +xfv +mFB +xoR +tEH +gKm +jGs +mkd +uuJ +tho +uuJ +uuJ +uuJ +jOb +fMs +njo +whD +iTe +dvM +qfm +llo +cQp +jUZ +dvM +dUU +dUU +cum +aPe +yaq +hJW +tYe +kyM +sLo +wHP +icd +lra +dbH +cBu +tpv +urR +wGg +ugh +vbU +uYC +uYC +tQV +wcD +eFw +ohf +fyT +rci +uqx +feT +rez +faV +fCO eSV eSV eSV @@ -203071,84 +203620,84 @@ eSV sPo vwr kSb -oDB -kna -uAi -wVU -oDB +iLR +uQz +hZq +kpJ +iLR wEY yfH aZd -hWb -aph -sXy -mzL -pZd -wIO -lRH -eNU -bOr -oDB -sWB -slH -dqe -btw -eJW -efj -rco -ctX -rwY -bLX -gyg -otX -diJ -kIf -vZK -jBh -kmS -jxj -bYz -cSQ -xOV -kEt -ftB -cyh -aaa -ojG -trY -hYy -pvn -nkZ -pvn -mwD -rKh -yib -tvu -nxj -qJb -iHi -eqw -jIj -eqw -fZQ -neC -wYT -blW -eqw -jry -jHp -jjk -hPR -gPe -tfA -xFW -vBb -gSU -xnF -nwy -kqv -iRC -cLV +mLD +lNt +vFS +vYL +ldE +axX +bFz +oVK +pKR +iLR +naI +aKW +aya +fxp +anW +qmo +aII +iAU +mHT +ogx +ski +sLm +flf +gwp +wTf +wBB +paI +lGY +arT +pKj +nvC +vKp +bOK +eiL +llo +mkp +oTe +dvM +dUU +psx +dUU +aPe +ghP +hdc +bPS +uVW +nxM +yed +dwn +oEP +dwn +prJ +dlJ +mXN +cCm +dwn +sgr +dfi +xeO +cWK +dRP +luK +asT +xYx +vib +uqx +cKs +lFJ +faV +evh eSV eSV eSV @@ -203328,84 +203877,84 @@ eSV sPo cGb jyw -xJv -ebN -sEE -wSr -rmC +agg +bOA +wHU +cpu +gJX eFn fWf cHK -iog -qjF -nrq -hOk -pZd -eRF -aBy -los -hgn -oDB -tny -tny -tny -tny -sza -tny -jvl -wLL -vhY -lVN -pYa -xtH -fuL -ifd -vul -vDj -cNp -wqd -dVM -jcZ -bzv -txa -qqB -wuD -wuD -vBN -toF -edp -aHY -wuD -jXx -sql -sql -aJI -aJI -aJI -aJI -aJI -piD -ycg -wIU -eEc -pcQ -jcd -bKa -oDE -bSh -bSh -bSh -bSh -vJG -hqg -xFW -fry -wFb -rLd -xFW -xFW -iRC -cLV +pdr +wIB +sdx +tKk +ldE +kew +isc +oRz +ldz +iLR +umN +umN +umN +umN +vjG +umN +qrz +dws +cio +kFq +tqZ +rmP +tyf +sDZ +jvo +dQK +aqM +eBK +aAX +kbl +hJd +iQp +ckS +vtz +vtz +fOO +mJv +xax +bah +vtz +mht +qwA +qwA +wdq +wdq +wdq +wdq +wdq +pAA +uPK +msi +jAr +nOq +djy +pZe +sye +qaa +qaa +qaa +qaa +xfQ +fUq +qaa +bWq +lGh +jlT +asT +asT +faV +evh eSV eSV eSV @@ -203585,84 +204134,84 @@ eSV qNr wEY bRf -tBT -dKY -nRZ -pOp -fFm +mqu +eUt +rdX +hdQ +cuh uym lQF aZd -gaC -keQ -mzL -dVG -oTA -mPy -giJ -xXW -upm -oDB +gRE +umh +vYL +oNa +gTm +cxd +ier +fXd +csV +iLR rHK rHK rHK rHK jBx -tny -fgF -nOM -iyV -fUG -wRE -wRE -gCe -rrX -wRE -hdi -oBL -hdi -hdi -iJM -hdi -crb -qkk -hdi -bSx -aUk -toF -edp -fPt -hMm -xqY -gHm -sql -aJI -inf -dyG -otE -aJI -gDe -pYD -pYD -gPN -fKp -fKp -cJm -pYD -bSh -cCb -thu -jcV -fFx -cJB -bSh -lZI -lZI -lZI -xFW -iRC -iRC -cLV +umN +gyJ +jKU +feh +feb +hTy +hTy +aqF +rqS +hTy +nrH +utB +nrH +nrH +jhw +nrH +lBB +rbt +nrH +ijh +pcS +mJv +xax +olA +pKq +pAJ +opa +qwA +wdq +omU +qYN +nlP +wdq +tLD +wiS +wiS +rju +qwA +qwA +uFw +wiS +qaa +smn +fRy +qXt +kMF +fTR +qaa +vWD +vWD +vWD +asT +faV +faV +evh eSV eSV eSV @@ -203842,84 +204391,84 @@ eSV sPo wEY bVf -wnz -bGf -enn -eKU -ulJ +qAr +hOU +ewZ +uxv +dcT kid seU cHK -iog -mpV -eKb -rlM -mJk -huC -lzb -wQr -wbO -oDB +pdr +uvt +lmI +eOQ +bAp +vEE +eef +sCo +rcf +iLR rHK rHK -fui +gQh rHK rHK -kuh -bec -wLL -gux -pIy -wRE -jqz -vHR -gBB -mSd -hdi -bEJ -gmL -lgf -bKx -aEl -jgk -qPF -rPN -psc -aUk -toF -edp -lRY -tfc -xAe -iRC -gkk -jbR -fYr -drK -gZL -nar -jcD -eNa -pLV -cFV -mVf -daD -fXy -vaA -xhT -reg -hBV -mwR -jxU -yhm -bSh -twR -iRC -iRC -iRC -iRC -iRC -cLV +aia +qDG +dws +ujE +bbs +hTy +ktb +mkQ +pcg +weF +nrH +dZs +tos +nsp +nBV +eBv +kVY +dIi +anQ +tGM +pcS +mJv +xax +hjF +pjx +ctv +faV +ipk +aOT +tHO +hzq +nmH +fzv +nBQ +jPC +cJq +plN +wXD +lVy +cIe +glZ +sdr +ret +pQc +dyk +pYW +bEf +qaa +vmY +faV +faV +faV +faV +faV +evh eSV eSV eSV @@ -204099,84 +204648,84 @@ eSV sPo pYB kIt -oDB -eMK -lzc -iMg -oDB +iLR +vVt +eQv +jfp +iLR tFM nie aZd -hWb -uYi -sXy -mzL -pZd -hgU -bOR -wQr -irA -oDB +mLD +mjc +vFS +vYL +ldE +bXW +gHc +sCo +kzu +iLR rHK rHK rHK rHK rHK -kuh -bec -wLL -ovg -qio -ogN -oYC -cZw -gzQ -qDq -ahw -lXZ -wKh -xiQ -wxC -wSd -kLb -qeD -rPN -gXb -aUk -toF -edp -adH -kdo -xAe -iRC -iSl -bbg -rqa -gMb -oea -aJI -mPY -lgN -nJs -xBs -nGF -xVW -mEL -tDa -bSh -ezr -hlh -hlh -brZ -cEf -bSh -iRC -iRC -iRC -iRC -iRC -iRC -cLV +aia +qDG +dws +bCv +utJ +mSb +nEo +gXv +wct +kDi +xKM +npR +jUu +wWh +dyy +uqa +uIr +rOL +anQ +jwU +pcS +mJv +xax +ofB +hpf +ctv +faV +gwK +iPU +kWv +eEf +iRa +wdq +vFJ +dNA +mKI +dNh +pdq +wax +wXd +bok +qaa +oci +fZO +fZO +fuP +hbU +qaa +faV +faV +faV +faV +faV +faV +evh eSV eSV eSV @@ -204364,76 +204913,76 @@ eRb eRb hBd dpF -pFK -jID -ivW -liB -pZd -hgU -bOR -nsx -pfx -oDB +cOe +lfG +tPl +kTY +ldE +bXW +gHc +spj +rxT +iLR rHK rHK qMY rHK rHK -kuh -bec -wLL -riM -cMq -wRE -gJt -ded -tNx -lpE -tyw -ufp -loW -hgH -ocy -aEl -kLb -qeD -rPN -iRC -iRC -rCn -hJG -hJG -trY -oWu -iRC -gkk -pGP -gBD -qwt -aHB -aJI -imG -lgN -rnB -fKp -rTW -wOT -fKp -jUm -bSh -nCH -tbm -lIM -bYa -bSh -bSh -iRC -iRC -iRC -iRC -iRC -iRC -cLV +aia +qDG +dws +mUG +bUn +hTy +ePr +siD +kBT +nFD +rJO +xhk +tWI +pdE +swe +eBv +uIr +rOL +anQ +faV +faV +fGB +kGh +kGh +oTe +sCT +faV +ipk +xDt +sbD +mcs +xah +wdq +imW +dNA +fTN +wRx +tfs +rTB +wRx +riT +qaa +aMJ +qqJ +rKY +chG +qaa +qaa +faV +faV +faV +faV +faV +faV +evh eSV eSV eSV @@ -204613,84 +205162,84 @@ eSV sPo xHW kIt -oDB -vbv -dEU -bFw -dgC +iLR +gCz +tiH +hCe +avp qZc wUo aZd -gaC -bBR -uPe -dVG -pZd -hgU -bOR -uCL -jUT -oDB +gRE +fPs +wrP +oNa +ldE +bXW +gHc +lPt +xUA +iLR rHK rHK rHK rHK rHK -tny -knl -oZj -jjZ -oQa -wRE -poO -pEl -fdB -poO -hdi -jdC -pSH -qTf -bpL -aEl -mMQ -gTx -rPN -sol -mRs -iRC -fXM -fXM -toF -uhY -gkU -iRC -aJI -aJI -mSD -aJI -aJI -rvR -ppH -uOP -fKp -eaS -eLg -fKp -vMm -bSh -bSh -mpo -mpo -fzG -bSh -iRC -iRC -iRC -iRC -iRC -iRC -iRC -cLV +umN +joI +usb +mCx +vbl +hTy +sJK +wba +bBo +sJK +nrH +gdE +ehh +vrW +poW +eBv +wpm +oZk +anQ +cUh +hnw +faV +tel +tel +mJv +xWy +iUZ +faV +wdq +wdq +uTA +wdq +wdq +azN +wAV +nIn +wRx +afm +rdM +wRx +sOQ +qaa +qaa +ydL +ydL +vmH +qaa +faV +faV +faV +faV +faV +faV +faV +evh eSV eSV eSV @@ -204870,84 +205419,84 @@ eSV sPo sCe bVf -uKu -vuB -jpI -tYp -vVL +uQh +dMI +qlO +jjG +fve xHW clT oNp -gya -jID -uYW -msn -hhS -mRc -mRc -odV -vdh -oDB -riL -riL -riL -riL -riL -geN -kbo -dZB -kbo -geN -wRE -poO -nwp -pUa -qDN -hdi -hdi -tSX -hdi -vEd -hdi -aKo -wif -hdi -rlc -rov -iRC -rGK -rGK -toF -hYy -oWu -iRC -iRC -iRC -iRC -iRC -aJI -jUm -mLu -uWc -fKp -imc -cKK -fKp -iRC -iRC -iRC -iRC -iRC -iRC -iRC -iRC -iRC -iRC -iRC -iRC -iRC -iRC -cLV +uja +lfG +nja +arG +xNF +nlq +nlq +heu +jHv +iLR +ahU +ahU +ahU +ahU +ahU +ahU +atC +aVG +atC +dQY +hTy +sJK +hqL +cFK +nRt +nrH +nrH +oVx +nrH +okm +nrH +jUN +vHo +nrH +wlz +tfg +faV +wIb +wIb +mJv +dvM +sCT +faV +faV +faV +faV +faV +wdq +riT +bRW +wEX +wRx +doi +mIC +wRx +faV +faV +faV +faV +faV +faV +faV +faV +faV +faV +faV +faV +faV +faV +evh eSV eSV eSV @@ -205127,84 +205676,84 @@ eSV xbB dau hsk -lJK -lJl -pTj -aoR -xki +cWq +dHn +bDM +jio +yhO srw pTF aZd -pvO -jzL -err -sll -kDF -byd -dIp -xHX -vgD -nVb -rNv -uez -rNv -rNv -nCC -geN -xMa -usu -bap -geN -pcw -kWp -tcV -qFp -nhw -tbR -veU -hJx -xdE -xdE -buI -mXG -rbx -wuD -wuD -ctI -kga -edO -dFQ -gTl -gTl -oFN -cnb -cnb -cnb -cnb -cnb -ujK -ohm -ppm -dhi -uAj -owS -owS -gFb -nVZ -hQr -syk -wvY -uRt -uRt -uRt -xAU -uRt -uRt -uRt -uRt -uRt -eVk -nDI +xUK +ewy +eUa +baL +wKR +eTj +hqQ +tEQ +fpi +kCY +uGV +mrS +uGV +uGV +vRL +ahU +ceE +xKQ +tEe +dQY +vZg +gLK +pTr +bJc +nlf +hyh +pEc +ogX +gzr +gzr +gms +iBb +fat +vtz +vtz +uBD +xXr +gwq +kpd +tyU +tyU +kJz +cwy +cwy +cwy +cwy +cwy +xzS +vUR +qMA +jtO +pKB +mYr +mYr +rOR +ocD +ssl +sgH +bBH +pYr +pYr +pYr +iwJ +pYr +pYr +pYr +pYr +pYr +fBT +mDz eSV eSV eSV @@ -205384,85 +205933,85 @@ eSV sPo wEY bVf -fQZ -wdX -ckB -tSa -gJa +tik +iPF +bHX +iJW +nMm kid qsn dpF -mil -riL -aEs -ppu -dDq -riL -aAQ -cPE -xPm -riL -nqq -efM -rIz -riL -jOJ -geN -tfh -iBe -grH -geN -lyc -oYC -cZw -rVm -fbL -mwo -fbL -fVD -gEv -pth -buI -mXD -lWu -kSq -gOa -ueH -jqE -kru -hYy -hYy -hYy -hYy -hYy -hYy -hYy -hYy -hYy -wPD -jqE -hYy -hYy -hYy -hYy -hYy -hYy -hYy -nRy -nRy -nRy -nRy -nRy -nRy -nRy -nRy -nRy -gas -gas -gas -gas -mdL -mdL +egc +ahU +gBk +vzt +oXt +ahU +fXY +aXW +otG +ahU +xHl +cJv +liL +ahU +owQ +ahU +gwa +wrF +eWG +dQY +vtP +nEo +gXv +vfF +sMw +heB +sMw +pqR +ijk +sGj +gms +fLR +gKr +uCx +rZw +dML +oVq +xiw +dvM +dvM +dvM +dvM +dvM +dvM +dvM +dvM +dvM +pHQ +oVq +dvM +dvM +dvM +dvM +dvM +dvM +dvM +pNi +pNi +pNi +pNi +pNi +pNi +pNi +pNi +pNi +vvR +vvR +vvR +vvR +jbd +jbd eSV eSV eSV @@ -205641,85 +206190,85 @@ eSV sPo pYB kIt -oDB -ukl -eeb -iES -dgC +iLR +oQz +bJM +dhW +avp uzj wUo aZd -gCN -aYt -pAp -lcz -qaK -jvF -kXr -nig -wsS -tIz -eIE -tri -mxs -rBf -uoV -geN -amz -vpl -msF -geN -lvq -eFl -dns -lWd -mYX -qjB -fwF -eVw -xNz -xNz -buI -sLL -acY -uAy -pOO -gix -xNR -lQQ -qCA -fQJ -lKY -kEW -kEW -kEW -xOb -xiq -kEW -iOs -gdL -aBY -wHX -aBY -bUN -bjf -pMA -hHv -nRy -hPi -fII -eiP -nAx -ult -qvZ -xRa -vbN -gas -rtk -uAV -rRi -mdL -xiV +ucq +xse +gUA +usC +hCT +xuH +uhr +lIm +ijq +xEW +dgB +kts +cGn +rHV +pcW +ahU +uaS +bVN +gyl +dQY +ngO +wON +qPX +sSc +tzE +cuP +pRv +wri +jwV +jwV +gms +sFW +nuQ +pGB +kCD +vio +vEw +tOS +czz +mlp +cxu +oqy +oqy +oqy +wvj +xEL +oqy +oiN +qme +mwt +oAg +mwt +bHD +xrb +azz +xXY +pNi +eJB +fOR +geI +npt +nSe +jih +xtx +obH +vvR +lwG +fsB +lIk +jbd +kXh eSV eSV eSV @@ -205906,77 +206455,77 @@ kMK xwT tYD rzT -gCN -kzi -heH -pZm -vZr -sKK -cUJ -nig -vpu -ixm -uOH -qri -qpO -xhL -rdy -geN -hIw -vET -mSk -geN -wRE -wRE -dWt -wUz -wRE -wRE -wRE -aPY -wRE -wRE -wRE -wRE -vCG -fQC -fQC -fQC -fQC -qGG -kuQ -aWP -aWP -vht -vht -vht -aWP -aWP -bCi -bCi -bCi -bCi -bCi -ocT -bCi -nRy -nRy -nRy -nRy -aFQ -vFc -tFb -vgI -fMQ -wyK -pTY -vsO -eHT -eut -phG -fUh -mdL -kVe +ucq +kEZ +xsX +lgc +akE +asw +fjq +lIm +sxs +dVS +pnm +qpU +sVH +jJh +iNI +ahU +eur +adY +oza +dQY +hTy +hTy +jVU +fLX +hTy +hTy +hTy +tiI +hTy +hTy +hTy +hTy +feR +eFB +eFB +eFB +eFB +uNv +oFF +rCd +rCd +hFz +hFz +hFz +rCd +rCd +bBv +bBv +bBv +bBv +bBv +iHs +bBv +pNi +pNi +pNi +pNi +kSX +gFG +jSM +uEZ +kvv +fzs +uYn +bvm +mgz +ttl +eaz +nFj +jbd +mOM eSV eSV eSV @@ -206154,86 +206703,86 @@ eSV eSV eSV wxd -uVL -uVL -kMC -uVL -uVL -aLK -nSi -nib -uVL -gCN -ieu -tRp -bYq -unm -xjT -dAI -nig -oCl -xUM -hyD -rCl -qKj -brk -jOJ -geN -hIw -vET -bBA -geN -gEb -gyj -nhw -lUu -gJN -wRE -ocJ -wtl -jLA -hzK -eQH -wRE -eQI -hsK -fQC -erd -fQC -vMB -fox -aWP -acp -oCU -wjp -wjp -nmF -aWP -byS -kuH -yff -yff -ucG -wcz -kcE -nRy -nRy -fRH -oMZ -oqB -jZc -enm -qUN -qUN -qUN -ybm -nRy -gas -gas -gas -gas -mdL -kVe +tJJ +tJJ +teg +tJJ +tJJ +qab +fRI +cGc +tJJ +ucq +unU +tcr +hio +nLZ +gYD +rGx +lIm +oZx +eEn +xBz +fuk +wGP +cvx +owQ +ahU +eur +adY +jhb +dQY +jmY +kbY +nlf +qwc +qQI +hTy +kqr +aiU +piE +hka +sUy +hTy +gBT +oiu +eFB +irD +eFB +dnm +egD +rCd +jPI +aTL +mKp +mKp +mHi +rCd +iaE +sDT +hPp +hPp +aSz +oWM +ugX +pNi +pNi +oGR +wSs +vTt +sqy +unX +wCA +wCA +wCA +kGw +pNi +vvR +vvR +vvR +vvR +jbd +mOM eSV eSV eSV @@ -206410,87 +206959,87 @@ eSV eSV eSV eSV -uVL -uVL -uoG -mhL -xBf -swD -onN -xnS -tBh -uVL -gCN -riL -sUS -qZj -qQk -riL -urr -nig -oWT -riL -krm -kHo -nwI -riL -qep -geN -aNc -sxT -lDs -geN -dYF -cZw -cZw -gzQ -qDq -bvv -oYC -gzQ -cZw -cZw -qDq -wRE -rTG -ife -fQC -erd -fQC -xgP -cBF -aWP -vai -tKi -tKi -tKi -vJe -bHV -wcz -hOC -ekT -goQ -goQ -mqy -eYl -nRy -kGn -bdC -bMz -rtZ -qQm -wlf -efs -upE -cjE -jUd -nRy -faK -bEr -vNz -fKB -eDc -kVe +tJJ +tJJ +tcn +aPN +djc +lBk +qln +lka +ewW +tJJ +ucq +ahU +nqh +vZE +dOn +ahU +uxX +lIm +gul +ahU +nwC +sXR +dil +ahU +hxC +ahU +qGj +ezT +knd +dQY +xGS +gXv +gXv +wct +kDi +eLY +nEo +wct +gXv +gXv +kDi +hTy +wMM +kmw +eFB +irD +eFB +nez +uqj +rCd +jAs +vxI +vxI +vxI +uCh +lQp +oWM +qbc +nNW +kul +kul +bLa +fJC +pNi +gyh +gJF +gcu +sKy +iAe +eXC +jWt +sqj +pea +lcw +pNi +gvR +jFT +tIR +pdN +jow +mOM eSV eSV eSV @@ -206665,89 +207214,89 @@ eSV eSV eSV eSV -wjY -aqY -aqY -uVL -uVL -pwQ -uVL -pSk -wWe -kQR -gAb -uVL -oVe -njH -boY -jIp -uFv -vVI -lUr -gqR -qJg -lup -rZu -vGQ -ijj -tns -hDd -geN -gMP -jRx -fzA -geN -hmn -roX -xCn -iph -qDq -bvv -oYC -nLL -dsG -doM -xkw -ymi -vCJ -iCb -fQC -erd -fQC -kNx -qgi -qOX -pYu -eev -eev -eev -fZX -aWP -htq -htq -pNv -htq -cnV -bZn -pWy -nRy -xgi -uaK -irN -dHe -gDx -dSc -ttx -ttx -ttx -fNa -aIN -sMG -xgL -nyp -clG -sWx -kVe +rgA +iWT +iWT +tJJ +tJJ +ghz +tJJ +ryW +fdo +bcZ +kun +tJJ +krE +oBx +kpW +rFC +gPn +bQs +rYc +fAh +mWD +jRu +cuB +xLK +rgz +wDX +liY +ahU +wiA +gOQ +hqF +dQY +nGs +irh +jWO +dKU +kDi +eLY +nEo +oJd +ajD +vkt +agD +tgz +gZM +nbk +eFB +irD +eFB +wHB +fdz +qci +hiE +uqz +uqz +uqz +knX +rCd +dKa +dKa +bNp +dKa +nnc +oWQ +gci +pNi +xLV +vGz +gga +pLW +aWU +cXe +gfv +gfv +gfv +sGD +xGj +eso +pct +qcl +rAZ +nJw +mOM eSV eSV eSV @@ -206922,89 +207471,89 @@ eSV eSV eSV eSV -wjY -fWs -fWs -qxV -xpS -mGO -uVL -iNX -bZU -dga -tkK -fnL -lBp -bxw -bxw -psv -coo -bxw -bxw -ebu -bxw -bxw -bxo -lIE -any -bxw -mRk -geN -geN -ttK -geN -geN -als -roX -cZw -gzQ -hwy -wRE -cfg -ppA -dIS -rfJ -oat -wRE -qaz -hqa -fQC -erd -fQC -xgP -weO -aWP -rEl -ooT -tKi -tKi -vcp -aWP -vyD -pkG -oFA -htq -wng -lPF -awr -mMD -uJA -obK -jfr -jfr -fGi -cmo -kiV -lEd -lEd -wQA -bpl -wUq -anV -tgv -tfB -sWx -kVe +rgA +xPC +xPC +tvC +mFs +tmY +tJJ +hwd +pzB +gAR +gEO +ftX +cDJ +brE +brE +mKK +hGP +brE +brE +cdF +brE +brE +nkd +gZz +mxb +brE +hWk +ahU +dQY +pxs +dQY +dQY +sJH +irh +gXv +wct +kVS +hTy +qqb +jqx +hHV +uEo +klu +hTy +peO +pXc +eFB +irD +eFB +nez +dmQ +rCd +pkr +slK +vxI +vxI +vXk +rCd +hza +eiv +aTK +dKa +oeI +guW +wsU +dBK +pbk +iAW +vmF +vmF +lAV +nhH +sFT +lPO +lPO +hPk +agm +unx +ekH +fTA +qBN +nJw +mOM eSV eSV eSV @@ -207179,89 +207728,89 @@ eSV eSV eSV eSV -aAV -fWs -iFH -jFb -dZQ -cuY -uVL -nrY -bLu -qWQ -nkL -uVL -naX -gBo -aom -dAX -bZp -nfE -axK -rQR -axK -ppR -uEJ -bvb -llk -suZ -wkH -riL -xkJ -aJS -pya -wRE -iDB -fHn -xIh -nTZ -dlM -wRE -hTa -hTa -jOi -hTa -hTa -hTa -hzY -xRe -fQC -erd -fQC -jcT -kBF -aWP -nup -gua -tKi -fvx -bGM -aWP -feD -lXa -iAs -pAD -sMe -msT -gwQ -nRy -eno -svK -vLJ -acw -nRy -ufd -vpq -cnH -srL -geB -nRy -gTU -gTU -bmG -dtb -sWx -kVe +pTL +xPC +rkZ +jrC +kWU +kkG +tJJ +lUg +udJ +wSj +mlF +tJJ +vUU +hqo +iuV +fQO +cUG +lsn +bSu +fAw +bSu +hyS +csL +njR +xMH +ipe +uFQ +ahU +emD +sLJ +pox +hTy +cYm +cLj +kcr +cSc +gXM +oVi +oHH +oHH +hcK +oHH +oHH +oHH +luE +aWt +eFB +irD +eFB +xKA +wrd +rCd +szF +uif +vxI +srj +sXa +rCd +aeQ +nwZ +maS +kSL +jcn +oAW +iUl +pNi +isW +bpp +hzW +qls +pNi +wSK +lJm +ocl +hgO +jgG +pNi +wYj +wYj +bvC +aDD +nJw +mOM eSV eSV eSV @@ -207436,89 +207985,89 @@ eSV eSV eSV eSV -wjY -fWs -fWs -qxV -fvq -cwP -uVL -jSF -eKg -msM -kdZ -uVL -jfQ -riL -xbb -bwN -bao -riL -iEz -rXn -xpP -riL -lnG -juK -buc -riL -uFo -iMY -rzf -nsE -aNR -wRE -ryj -lNJ -nhw -fDU -hjt -wRE -sJR -svZ -sVd -gYN -gYN -hTa -iFU -jvM -fQC -fQC -fQC -qGG -kuQ -aWP -aWP -aWP -lsQ -aWP -aWP -aWP -wNS -htq -htq -htq -bCi -iqf -bCi -nRy -nRy -mdL -mdL -mdL -mdL -drU -mdL -drU -drU -drU -mdL -drU -drU -drU -drU -mdL -kVe +rgA +xPC +xPC +tvC +chs +eux +tJJ +pix +hqO +axp +juo +tJJ +rPB +ahU +rTS +uxJ +yeQ +ahU +rMp +ecI +uhW +ahU +rrk +wTP +oup +ahU +vRd +fpH +cZf +aRR +akV +hTy +oeT +sxb +nlf +uHC +boJ +oVi +cDX +bUy +rbn +iHy +iHy +oHH +bea +rop +eFB +eFB +eFB +uNv +oFF +rCd +rCd +rCd +ksA +rCd +rCd +rCd +syS +dKa +dKa +dKa +bBv +nCj +bBv +pNi +pNi +jbd +jbd +jbd +jbd +uJu +jbd +uJu +uJu +uJu +jbd +uJu +uJu +uJu +uJu +jbd +mOM eSV eSV eSV @@ -207693,89 +208242,89 @@ eSV eSV eSV eSV -wjY -dip -dip -uVL -hAU -uVL -uVL -oWe -hRF -abU -eaH -uVL -ryB -rSW -tQM -mPU -bWE -vZl -hwk -rXn -akS -bvL -rbK -kKz -ceP -hRo -jOJ -riL -nKK -lvP -aNR -wRE -ryj -oYC -cZw -sJZ -hjt -wRE -xqB -kRx -kvl -svZ -lZN -hTa -cIj -mmA -fQC -yag -xjQ -ngs -mOd -bGq -iNG -roF -rcT -rcT -rcT -wml -osQ -tPC -ydc -llM -llM -aQF -akP -uRN -dYq -nCG -nCG -nCG -vGV -kVe -kVe -kVe -kVe -kVe -xiV -kVe -kVe -kVe -kVe -kVe -xiV +rgA +jOq +jOq +tJJ +eCv +tJJ +tJJ +qWJ +lYY +clj +uxY +tJJ +lry +dAk +buJ +bIz +lAR +xIZ +pCQ +ecI +tOZ +qvS +qgL +uRl +nGp +uSx +owQ +ahU +wdt +rjW +akV +hTy +oeT +nEo +gXv +nIq +boJ +oVi +cRh +xmM +iOH +bUy +gNX +oHH +fYb +jeX +eFB +drh +iXH +mkD +kZF +sbY +jmA +hwj +vvn +vvn +vvn +soN +kWA +fUr +aEN +dWS +dWS +lMt +kkt +hmg +nho +dCN +dCN +dCN +aev +mOM +mOM +mOM +mOM +mOM +kXh +mOM +mOM +mOM +mOM +mOM +kXh eSV eSV eSV @@ -207949,78 +208498,78 @@ eSV eSV eSV eSV -wjY -aqY -aqY -uVL -uVL -fvq -uVL -xoH -fnB -hRF -fCd -xaB -uVL -bvb -gYQ -soD -ity -gyL -cch -eeV -rXn -fpW -gxl -uxR -kop -fDO -dka -rdy -riL -exw -lvP -aNR -wRE -ryj -oYC -cZw -sJZ -hjt -wRE -ckL -kRx -qQn -wWU -raw -wRE -tiM -xwA -fQC -ugY -kMV -lnF -eVl -itX -pdW -uRx -uRx -pdW -pdW -pdW -pdW -mVB -gVQ -pdW -uRx -pdW -uRx -uRx -qOu -nCG -nCG -nCG -liP +rgA +iWT +iWT +tJJ +tJJ +chs +tJJ +qSE +dSN +lYY +rBt +bCR +tJJ +njR +lzI +rMS +mgt +mcA +oSL +pZY +ecI +sSZ +mdo +ltC +oGk +uZK +koL +iNI +ahU +wYB +rjW +akV +hTy +oeT +nEo +gXv +nIq +boJ +oVi +lUe +xmM +nPC +pGX +xVj +oVi +clu +iEo +eFB +rYg +fxq +ejB +hHZ +kHv +gNE +jFo +jFo +gNE +gNE +gNE +gNE +ntU +wrY +gNE +jFo +gNE +jFo +jFo +epi +dCN +dCN +dCN +hav eSV eSV eSV @@ -208206,77 +208755,77 @@ eSV eSV eSV eSV -wjY -fWs -fWs -qxV -rsP -apQ -uVL -eET -nal -hRF -fCd -jVE -uVL -bnI -pMo -ntf -kEX -gds -bfA -lpV -rXn -mVN -tei -vYV -oQZ -jxt -vWR -jOJ -riL -exw -lvP -aNR -wRE -ryj -wnc -nOa -iTq -hjt -wRE -aCu -qpA -bNW -gYN -gYN -wRE -nww -nww -fUC -pYy -gaE -lWk -hOL -nHL -qsq -moI -moI -oDL -oDL -oDL -ovE -oDL -osx -nSJ -mgm -nSJ -moI -moI -moI -moI -moI -nyL +rgA +xPC +xPC +tvC +pBj +ngf +tJJ +tEh +vBf +lYY +rBt +aiV +tJJ +ykO +slz +tWK +mJR +gsX +uWx +iTB +ecI +pJL +ndK +mCd +tib +vAq +cKS +owQ +ahU +wYB +rjW +akV +hTy +oeT +uIj +awi +aUY +boJ +oVi +esD +pnh +twA +iHy +iHy +oVi +nKs +nKs +bAC +edc +cZe +jjz +wrr +fqO +pKQ +lJo +lJo +orc +orc +orc +wSt +orc +agf +dgt +ahW +dgt +lJo +lJo +lJo +lJo +lJo +hAo eSV eSV eSV @@ -208463,77 +209012,77 @@ eSV eSV eSV eSV -jVI -fWs -iFH -jFb -wkj -xMb -cIU -rDE -mHe -hRF -fCd -eaH -uVL -qVr -riL -eIJ -nzj -xkx -riL -gji -hsn -pcB -riL -jYy -baS -dae -riL -jOJ -riL -ldI -lvP -aNR -wRE -wRE -wRE -aaZ -wRE -wRE -wRE -wRE -wRE -rBR -wRE -wRE -wRE -uwf -nww -num -pYy -gaE -qmE -cBb -nHL -adX -bJa -haE -nSv -hHq -nrC -sdo -oDL -wlH -nSJ -scJ -nSJ -ubi -nSJ -eIl -rWO -bJa -nyL +cyf +xPC +rkZ +jrC +ljE +krT +bsQ +icX +wRq +lYY +rBt +uxY +tJJ +jOa +ahU +uSa +dVL +lwj +ahU +kDh +qhS +odX +ahU +bNv +ond +uJN +ahU +owQ +ahU +vuj +rjW +akV +hTy +hTy +hTy +hcU +hTy +hTy +oVi +oVi +oVi +gwl +oVi +oVi +oVi +sFm +nKs +gGb +edc +cZe +bXx +muN +fqO +xPM +suN +fGY +wUD +cIy +hYE +oel +orc +eAR +dgt +xQE +dgt +vGP +dgt +nTN +wVY +suN +hAo eSV eSV eSV @@ -208720,77 +209269,77 @@ eSV eSV eSV eSV -wjY -fWs -fWs -qxV -fQk -qhz -uVL -lBd -nqC -iNP -hlk -frd -bRu -cCL -riL -eqs -eLB -png -hTd -viX -bvN -rNv -qBk -tPs -eLB -rNv -rNv -uDG -riL -exw -lvP -idq -baq -baq -fIg -lKV -jCf -sFd -bOv -sEw -wvI -xqE -spr -sFd -lPW -cJJ -cJJ -lPW -tJR -aCn -tiR -fWc -nHL -adX -oDL -gbV -oDL -oDL -rid -aQw -bBq -xnf -nSJ -amU -nSJ -pjM -nSJ -qRp -qRp -bJa -nyL +rgA +xPC +xPC +tvC +vkJ +jnx +tJJ +lyI +eIY +hpt +mgX +lRR +gnk +snS +ahU +bbK +rpg +rgW +ckG +spC +wUv +uGV +pRF +niS +rpg +uGV +uGV +lZy +ahU +wYB +rjW +aCt +ssf +ssf +pkJ +esc +wPC +whk +seT +jdi +lFk +rdI +syQ +whk +wIE +nVe +nVe +wIE +vrV +ydy +tfw +qIB +fqO +xPM +orc +vZH +orc +orc +rxw +pXh +iAV +hvt +dgt +jUx +dgt +kxx +dgt +uXe +uXe +suN +hAo eSV eSV eSV @@ -208977,77 +209526,77 @@ eSV eSV eSV eSV -wjY -dip -dip -uVL -uVL -gGE -uVL -gyS -xtY -tkS -mKb -qHf -uVL -bqY -riL -riL -riL -riL -riL -riL -cfa -riL -riL -riL -riL -riL -riL -riL -riL -aWB -rhk -fTy -fTy -fTy -fTy -mVd -fTy -nvV -bwA -ovh -aXv -idc -tva -bVW -khF -hBn -hBn -mpQ -bGQ -aXh -jKO -kVq -gno -adX -oDL -nqj -ydz -hwM -xzQ -wAb -cBs -tja -nSJ -hjm -dEa -nnD -rml -ssh -qRp -bJa -qVY +rgA +jOq +jOq +tJJ +tJJ +mGU +tJJ +xwc +lcE +cbu +gBG +dwW +tJJ +bVG +ahU +ahU +ahU +ahU +ahU +ahU +gEK +ahU +ahU +ahU +ahU +ahU +ahU +ahU +ahU +tkg +kRN +ikn +ikn +ikn +ikn +usv +ikn +aho +kAI +fMl +vIt +sPG +lxR +hQu +mVA +luU +luU +hmk +ovY +eoO +mwC +ncd +qXL +xPM +orc +ipY +wOy +cWM +eoz +ooL +bjw +gMk +dgt +fTx +aqB +nyt +xxj +jey +uXe +suN +fdm eSV eSV eSV @@ -209235,76 +209784,76 @@ eSV eSV eSV eSV -wjY -aqY -aqY -uVL -hAU -uVL -uVL -uPx -aoh -nOo -uVL -uVL -suL -vQM -cTm -pom -qeO -idq -uDi -mhf -idq -pom -eZY -eSx -uCq -atA -uWy -gUl -rSw -iYS -jNq -pCs -pCs -pCs -pCs -pCs -sFd -mDT -bWT -eVN -tgZ -cOi -vgb -dYf -dYf -dYf -guF -gPv -dYf -biK -rVP -edS -qFR -fBd -clS -doJ -cIk -nmI -tvy -uHt -eQE -uBB -kdB -eLC -hGU -bhO -vxu -cAY -bJa -nyL +rgA +iWT +iWT +tJJ +eCv +tJJ +tJJ +tsq +uIY +jbi +tJJ +tJJ +wbr +lZc +kMu +aus +aKD +bjj +dxZ +mSI +bjj +kJr +bCK +foX +qel +dRS +xvu +dLY +spp +oaX +wmE +nKp +nKp +nKp +nKp +nKp +whk +roq +lin +pfn +oDN +oVY +sZV +eTt +eTt +eTt +jqn +kHd +eTt +lny +pUN +tiF +omQ +htJ +ipC +vyY +tmX +nAN +pxS +qKx +fxu +hOs +vPO +orS +tUe +uSS +mir +ugG +suN +hAo eSV eSV eSV @@ -209492,76 +210041,76 @@ eSV eSV eSV eSV -wjY -fWs -fWs -qxV -fvq -hRF -uVL -wsF -wsF -qnr -uVL -uVL -gyD -pVF -idq -pom -bFV -uXu -kzG -cij -uXu -nPk -skN -mDt -haj -hXX -wRa -mDt -rPJ -jAg -kJG -aWZ -aWZ -aWZ -aWZ -aWZ -aWZ -aWZ -aWZ -aWZ -rKN -sRr -xtK -raU -qbw -lpp -xtK -hlz -tzM -hot -ttC -gno -bLb -xDk -rsh -dst -oDL -llY -azX -jrB -xYq -qRp -tDz -mzh -kBz -wPV -shD -qRp -bJa -nyL +rgA +xPC +xPC +tvC +chs +lYY +tJJ +pEK +pEK +rcb +tJJ +tJJ +hgK +qGq +bjj +aus +umn +jwD +edC +wAK +jwD +uXQ +eTp +oDt +ovL +myJ +nAR +oDt +nts +vXR +vxz +eFV +eFV +eFV +eFV +eFV +eFV +eFV +eFV +eFV +lVr +fJs +ktX +rmX +tZL +aJX +pnF +vnG +qcc +wpi +nws +qXL +nQX +svr +tRj +jqU +orc +hmT +hyL +bGE +jgK +uXe +gtd +vzJ +ogJ +qGK +nTT +uXe +suN +hAo eSV eSV eSV @@ -209749,76 +210298,76 @@ eSV eSV eSV eSV -jRT -fWs -iFH -jFb -gwg -gdP -uVL -vcD -lBi -irW -uVL -uVL -tnb -rfj -eTW -asr -wyv -mhf -xgm -cza -eGG -pom -mMi -mDt -mDt -mDt -mDt -mDt -pom -ggH -pom -aWZ -pMO -jof -mOf -qzj -tPx -dgW -txT -aWZ -xko -eVY -xtK -xtK -xtK -xtK -xtK -wYr -uQu -hot -ttC -nHL -adX -oDL -gbV -oDL -oDL -qZs -aLw -dcy -qgM -nSJ -thg -xcP -cCQ -bFY -qNn -qRp -bJa -nyL +lEv +xPC +rkZ +jrC +sec +nDn +tJJ +mtO +cNe +mUg +tJJ +tJJ +tEt +ogE +blK +imC +rFB +xxb +ycf +iDA +cfY +kJr +cyO +oDt +oDt +oDt +oDt +oDt +kJr +wbH +kJr +eFV +pAO +gBX +nfB +vDg +dQx +gCC +tsO +eFV +pFj +hcb +dok +dok +dok +dok +dok +lSF +wAp +wpi +nws +fqO +xPM +orc +vZH +orc +orc +ctW +dzd +kCP +xcW +dgt +csW +waB +kVF +xrI +gaM +uXe +suN +hAo eSV eSV eSV @@ -210006,77 +210555,77 @@ eSV eSV eSV eSV -wjY -fWs -fWs -qxV -bQb -gBv -uVL -emU -moj -cne -uVL -uVL -rsL -qpJ -rsL -pom -pom -rqT -pom -pom -pom -pom -jQx -sGP -uJQ -igP -nzC -dHo -bek -hWY -cLE -aWZ -dcs -iJV -dcs -adE -kkY -bkV -qmb -oek -esr -xsS -xtK -xmb -qxn -nDy -xtK -oCk -fLi -hot -ttC -nHL -adX -bJa -wVW -nSv -kFX -hdb -wDA -oDL -wlH -nSJ -jlp -nSJ -oBM -nSJ -htr -mUE -bJa -nyL -kVe +rgA +xPC +xPC +tvC +jOz +xZt +tJJ +qhi +wgR +fDx +tJJ +tJJ +nHV +ogv +nHV +aus +aus +txw +aus +aus +aus +kJr +uBf +hSA +gxS +snr +nLO +hsR +kfr +lLH +viG +eFV +vox +vZP +vox +eBs +vIY +dFR +fkQ +wCu +kxe +wcX +dok +hsV +nLK +gzJ +dok +uzu +iQj +wpi +nws +fqO +xPM +suN +xyx +wUD +tTt +qpN +wyL +orc +eAR +dgt +yjA +dgt +nPT +dgt +kXL +gkO +suN +hAo +mOM eSV eSV eSV @@ -210263,77 +210812,77 @@ eSV eSV eSV eSV -wjY -dip -dip -uVL -uVL -wVE -uVL -dLn -dLn -dLn -uVL -uVL -eBb -lRC -qco -pom -xKI -wqs -vik -qiG -fVh -pom -whH -rhH -iGO -hnY -okl -tdL -ccZ -eXb -jqc -rlW -wGp -kjH -nsS -rCE -kHg -wGp -sId -aWZ -cLJ -kWQ -ipZ -mfw -kDw -oub -xtK -mPQ -fLi -hot -ttC -nHL -gWZ -tGr -tGr -oDL -oDL -oDL -jyG -oDL -jJN -nSJ -nSJ -nSJ -tGr -tGr -tGr -tGr -tGr -nyL -kVe +rgA +jOq +jOq +tJJ +tJJ +nHO +tJJ +dXE +dXE +dXE +tJJ +tJJ +xJI +pvV +ccR +aus +uQa +cOB +bti +kYw +eMv +kJr +bMS +jRo +mUy +vwu +ksU +eTk +yhV +mjM +yiE +saF +mDG +stV +qBh +kbd +tOV +mDG +xaq +eFV +vtr +nsP +tFk +gHU +pKe +tLn +dok +nyr +iQj +wpi +nws +fqO +pKU +ldL +ldL +orc +orc +orc +mGV +orc +nvr +dgt +dgt +dgt +ldL +ldL +ldL +ldL +ldL +hAo +mOM eSV eSV eSV @@ -210522,75 +211071,75 @@ eSV eSV eSV eSV -uVL -uVL -uVL -kXv -kKT -pgz -iPb -iPb -uVL -uVL -oTX -nvZ -nQN -pom -npz -wqs -cTj -vjA -sxc -xSJ -xSJ -kXg -xSJ -xSJ -cdi -pFp -cNo -hEx -wQv -aWZ -dcs -lEN -pEF -eog -eWA -dcs -wjW -aWZ -jEG -cLh -nKB -wwN -wwN -wwN -xtK -hjH -oyr -hot -lmv -blQ -agI -eDV -eDV -agI -agI -agI -agI -sXX -vor -ygC -ygC -ygC -eDV -eDV -rNq -nCG -nCG -nCG -liP +tJJ +tJJ +tJJ +fsK +pRe +ykB +irq +irq +tJJ +tJJ +lMe +bEz +fWn +aus +crB +cOB +eVV +jBA +tWF +brl +brl +mLS +brl +brl +dqQ +nBr +aKc +sIw +khM +eFV +vox +wFp +nQm +lsZ +aJt +vox +hSh +eFV +tDE +lBS +peK +vrM +vrM +vrM +dok +tGN +xcu +wpi +pgc +xRi +ggJ +tzF +tzF +ggJ +ggJ +ggJ +ggJ +rNG +qCn +bdZ +bdZ +bdZ +tzF +tzF +uwF +dCN +dCN +dCN +hav eSV eSV eSV @@ -210787,66 +211336,66 @@ eSV eSV eSV eSV -uVL -uVL -feI -dro -rsL -pom -eNY -gsG -qPV -wqs -vLR -xSJ -kaN -nSz -lYh -xSJ -hya +tJJ +tJJ +mWl +qeh +nHV +aus +xzq +geP +qED +cOB +fLQ +brl +wRX +dpi +ikq +brl +xvX sfh sfh sfh sfh -aWZ -hqE -hqE -hqE -aWZ -aWZ -kyq -aWZ -aWZ -jRE -syE -xtK -xtK -xtK -xtK -xtK -mvm -wJQ -hTe -ldo -huy -huy -huy -huy -huy -huy -huy -huy -lDO -wab -gaE -gaE -gaE -gaE -gaE -qEj -nCG -nCG -nCG +eFV +eGq +eGq +eGq +eFV +eFV +kGg +eFV +eFV +xBG +xxM +dok +dok +dok +dok +dok +aXU +cXo +bJS +eWc +wkq +wkq +wkq +wkq +wkq +wkq +wkq +wkq +dUH +hKu +cZe +cZe +cZe +cZe +cZe +gCs +dCN +dCN +dCN eSV eSV eSV @@ -211048,62 +211597,62 @@ eSV eSV mOM mOM -rsL -pom -jyg -xvh -rJn -wqs -cTj -kXX -wvB -qcM -cYf -ouY -dIk +nHV +aus +iEL +eQL +iRo +cOB +eVV +vFo +rtU +oAt +ibU +kPf +neS sfh aFN ezF tWy kcb -uss -wUM -pVU -uIM -aNT -eds -cyU -jyH -tVe -bSo -pca -ruN -eKl -vKN -xtK -xtK -xtK -hYw -lmv -vFp -vFp -itX -iNg -uRx -uRx -pdW -pdW -pdW -pdW -pdW -pdW -pdW -uRx -uRx -mmm -nCG -nCG -nCG +qzL +eyP +fHm +esY +mkk +kOO +pYQ +iPl +wLy +lgZ +biJ +tuF +qCc +iwa +ktX +ktX +ktX +cRl +pgc +cWf +cWf +kHv +bbj +jFo +jFo +gNE +gNE +gNE +gNE +gNE +gNE +gNE +jFo +jFo +cgc +dCN +dCN +dCN eSV eSV eSV @@ -211305,62 +211854,62 @@ eSV eSV eSV mOM -wie -pom -lPL -ieH -xre -gNz -tTN -xSJ -jlQ -upG -mBh -xSJ -oKp +iMr +aus +aKj +iTV +vjk +qWw +bXH +brl +egI +qcw +wQX +brl +hzo sfh plc vgS qbK aDj -fqA -cWo -tlU -tlU -cOm -pau -hIx -tlU -piS -tLq -sbr -aLu -qWa -pbY -xvP -jeq -xtK -cWE -lmv -vFp -jab -gJo -qsq -moI -moI -moI -moI -moI -moI -moI -moI -moI -moI -moI -moI -bJa -bJa -nyL +vzn +qMB +atO +atO +vKj +uTm +gIL +atO +iQA +tlf +shv +ocs +oiZ +tBa +jZC +ghZ +ktX +ryQ +pgc +cWf +fYi +nok +pKQ +lJo +lJo +lJo +lJo +lJo +lJo +lJo +lJo +lJo +lJo +lJo +lJo +suN +suN +hAo eSV eSV eSV @@ -211562,62 +212111,62 @@ eSV eSV eSV mOM -rsL -pom -pom -pom -pom -pom -pom -xSJ -aht -xdk -tTF -xSJ -nVO +nHV +aus +aus +aus +aus +aus +aus +brl +uZx +aNz +rog +brl +jYh sfh fsy qeG fsy -xtK -dwY -gWC -qbk -lBH -qYo -wAk -kEk -eUW -uPk -nwQ -kLo -uCw -iBf -cIW -vys -fIp -xtK -hot -lmv -vFp -ujw -aQS -adX -aBK -hPZ -qLe -sQZ -dLE -rrB -vSI -mcC -jAy -xVt -cxe -bJa -bJa -bJa -nyL +sfh +iCf +cUW +uco +eYN +okq +gvq +iWs +fHW +ell +sQc +iUJ +coF +vMe +rtE +eMr +eTq +ktX +wpi +pgc +cWf +aGa +nvu +xPM +sGI +iYw +tjj +itv +jmx +eyq +ims +oZc +aCp +hGr +tqa +suN +suN +suN +hAo eSV eSV eSV @@ -211819,62 +212368,62 @@ eSV eSV eSV mOM -xSJ -xSJ -xSJ -xSJ -xSJ -xSJ -xSJ -xSJ -txJ -mzS -fdl -xSJ -ben +brl +brl +brl +brl +brl +brl +brl +brl +cqS +nBg +rqG +brl +jDb sfh gTq lGH gTq -xtK -vyK -gWC -uyc -kFL -jrJ -kJp -sFA -jrJ -jrJ -mwu -kLo -gba -nZp -aoD -kAG -shb -xtK -lsi -ofu -vFp -gKn -hun -adX -ndI -vDu -cxc -sQO -jHU -bNx -vuJ -bsH -cLY -tGj -krG -bzc -bJa -bJa -nyL +sfh +wTt +cUW +oRK +tSC +tXa +wsi +bmV +tXa +tXa +wDp +iUJ +aPx +aHX +hzs +peM +oBk +ktX +bZt +jEI +cWf +pzf +mjJ +xPM +isM +jNQ +fmo +nXp +xfF +jRn +ixs +voe +tmF +rzx +fLJ +cRj +suN +suN +hAo eSV eSV eSV @@ -212076,62 +212625,62 @@ eSV eSV eSV cYc -xSJ -xSJ -xSJ -xSJ -oYl -uuB -atv -hRV -nzn -hvN -eAM -xSJ -moP +brl +brl +brl +brl +bMD +qRA +ksh +rIv +ukz +llG +iSI +brl +xek sfh wIM gQj wIM -xtK -nkE -wyN -ulc -gwG -jrJ -kVv -qbu -icl -hSX -hLq -kLo -uCw -oLd -aTv -xtK -xtK -xtK -fZF -wTG -vFp -vFp -gno -adX -bJa -pLq -bOY -mzd -xmK -ogU -dLt -laX -cxZ -sIp -lRr -bJa -bJa -bJa -nyL +sfh +cEW +srz +vkA +gKN +tXa +jOR +ujy +pUH +sUY +chP +iUJ +coF +gss +dGT +ktX +ktX +ktX +bGy +pgD +cWf +cWf +qXL +xPM +suN +nGC +qsN +ldx +rzJ +piI +brW +pUn +ePe +pBt +qhn +suN +suN +suN +hAo eSV eSV eSV @@ -212333,62 +212882,62 @@ eSV eSV eSV mOM -bRz -rld -ioH -aTP -hsM -xQh -aDl -uPN -wxP -jxv -paC -xSJ -vnJ +iRB +ctx +bPt +iMT +vKH +ofd +dCk +iMa +iWI +uZy +vNw +brl +lFg sfh sfh sfh sfh -xtK -nQn -tzi -pUK -cHx -jrJ -kVv -qbu -ljs -jrJ -aBl -kLo -jvA -spY -hUC -qwT -fZu -lPW -lBZ -asY -aIs -aIs -edS -eAU -elR -keh -vVd -phV -mLw -vUN -skS -ecF -aEd -wWo -uBW -mew -dJH -bJa -mNS +sfh +pwv +nmL +rMg +eaW +tXa +jOR +ujy +wMP +tXa +iVc +iUJ +jCv +rje +kVx +lRy +huE +wIE +wvD +xqW +siN +siN +tiF +nQj +xlo +gqx +dZw +npj +tlI +lru +sAJ +xXa +onk +xUY +ala +kGj +xeS +suN +lrS eSV eSV eSV @@ -212590,63 +213139,63 @@ eSV eSV eSV mOM -bRz -gUn -mIP -bid -mEX -erK -lUR -wRG -ozO -qTL -reW -xSJ -hrb +iRB +mSx +kdq +fWO +bSv +vrR +osi +jZx +gxv +peT +udY +brl +dmw erL erL erL pNN -xtK -qfH -gWC -hGT -jrJ -jrJ -opY -pyh -jrJ -jrJ -hfA -kLo -lTY -mXZ -nCa -xtK -aVg -lPW -hot -wTG -vFp -vFp -gno -adX -bJa -sck -wht -fFf -nax -aSn -mcc -tWm -aOx -utP -ieb -bJa -bJa -bJa -nyL -kVe +ktX +bsA +cUW +egS +tXa +tXa +xGL +bcQ +tXa +tXa +jDO +iUJ +mYd +euB +kiE +ktX +wNT +wIE +wpi +pgD +cWf +cWf +qXL +xPM +suN +xcV +hCp +byt +ehl +gcW +jwq +gxQ +qVQ +nHo +eoh +suN +suN +suN +hAo +mOM eSV eSV eSV @@ -212847,63 +213396,63 @@ eSV eSV eSV mOM -bRz -knW -pXP -lWF -qiW -gkt -aop -lxb -kAo -xUs -pmI -xSJ -qbC +iRB +ecJ +wRA +niO +btE +tOz +fhJ +iYs +qMK +egL +rDI +brl +dnn erL erL clb erL -jrJ -vbD -gWC -lrC -hVe -ufi -wtV -vSF -jGW -nkm -sad -kLo -vfc -xiN -xYn -xtK -ocQ -lPW -qmE -ofu -vFp -lIZ -sCE -adX -qSi -mJD -ulp -uSc -oPw -czo -day -eeK -xAk -oSv -maq -oiW -bJa -bJa -nyL -kVe +tXa +pZz +cUW +emf +saC +csk +jsH +sGi +tjf +dBV +uTY +iUJ +deH +pVZ +sOE +ktX +kgm +wIE +bXx +jEI +cWf +sGZ +cZt +xPM +kaS +ffy +juk +qKi +lAi +mgN +wAh +vIZ +ujZ +rrK +mPw +aex +suN +suN +hAo +mOM eSV eSV eSV @@ -213104,62 +213653,62 @@ eSV eSV eSV cYc -xSJ -xSJ -xSJ -xSJ -pri -lFG -lDq -lDq -xvw -iBW -etS -xSJ -hrb +brl +brl +brl +brl +gPd +vgt +qzK +qzK +csn +sNR +crk +brl +dmw erL erL erL erL -jrJ -vbD -sgI -wNn -wNn -wNn -sCB -msG -wNn -wNn -pdY -igj -cWk -oZJ -iRq -xtK -iKo -lPW -nrK -lmv -vFp -hMA -uSe -adX -oji -hmD -kOp -olx -suu -pEH -fsS -ioh -kDx -uaD -lBl -bJa -bJa -bJa -nyL +tXa +pZz +oqN +oKf +oKf +oKf +ueI +nDW +oKf +oKf +fwQ +wtO +kEB +swA +alv +ktX +igB +wIE +fDv +pgc +cWf +vXt +kNz +xPM +rQh +gPB +hpJ +tvp +drS +fmX +xQS +xpl +lcx +xqp +kwP +suN +suN +suN +hAo eSV eSV eSV @@ -213364,59 +213913,59 @@ kXh mOM mOM mOM -xSJ -lXb -xSJ -jEz -xit -rwX -uEU -xSJ -xSJ -iXj +brl +dzx +brl +bLZ +cWS +aXJ +pwq +brl +brl +iaz erL erL erL erL -xtK -tIG -oYP -iPO -sdP -gTi -cLn -gDV -gig -dEG -iKD -lKs -jLo -pwA -pyQ -xtK -iNi -lPW -hot -ttC -vFp -ovD -trd -gWZ -tGr -tGr -tGr -tGr -tGr -tGr -tGr -tGr -tGr -tGr -tGr -tGr -bJa -bJa -nyL +ktX +kpB +bSc +vlj +dRR +flA +aFS +pUU +tFf +ahe +jOV +ptF +qLi +fQw +oxx +ktX +tQz +wIE +wpi +nws +cWf +uPd +kyj +pKU +ldL +ldL +ldL +ldL +ldL +ldL +ldL +ldL +ldL +ldL +ldL +ldL +suN +suN +hAo eSV eSV eSV @@ -213636,44 +214185,44 @@ oJe oJe oJe oJe -eDe -lbr -xtK -iXt -bxK -xMv -xtK -guN -ggQ -eHq -xtK -veJ -uWn -qcr -xtK -aOv -lPW -xfH -hrg -dHW -dHW -bKI -hca -iHL -iHL -hca -waF -ygC -ygC -ygC -ygC -ygC -eDV -eDV -gHG -nCG -nCG -nCG +bFS +fXT +fVa +hSD +hEv +hYU +fVa +dVK +tPK +qxX +ceg +kqK +bFN +abf +rAV +ydu +wIE +bcu +ojU +jKz +jKz +caC +lnO +bhl +bhl +lnO +rWr +bdZ +bdZ +bdZ +bdZ +bdZ +tzF +tzF +tZO +dCN +dCN +dCN eSV eSV eSV @@ -213893,44 +214442,44 @@ uEV fwe iLH oJe -qWB -scq -xtK -vKP -pGy -xXj -tXB -oZG -xVn -fHA -jPp -rBp -wSl -pJx -jPp -vUe -lPW -fBi -omO -hOP -emz -ubr -btL -ubr -bmU -rHG -qAd -dYf -dXn -dYf -laP -wTA -dYf -dYf -iIF -nCG -nCG -nCG +pJS +aXX +fVa +sJg +tYQ +eas +fVa +nsl +swc +lFR +ceg +mDD +okU +cOM +rAV +qvV +wIE +ron +nfn +fIc +lLR +iBn +xie +iBn +hrU +qLF +swm +eTt +xth +eTt +lCU +rSq +eTt +eTt +fpY +dCN +dCN +dCN eSV eSV eSV @@ -214150,42 +214699,42 @@ hCV mjd pEb gsc -dbq -voZ -xtK -sdV -wvx -pKI -tXB -mfu -pid -qoD -jPp -iTD -iTD -koi -jPp -xlS -lPW -leL -lPW -lPW -lPW -hkW -lPW -lPW -lPW -lPW -lPW -weY -lPW -lPW -lPW -lPW -lPW -nCG -nCG -nCG +gFl +maH +fVa +aQP +nwn +eBc +fVa +vIj +slL +hyd +ceg +rGL +rGL +llf +rAV +dFi +wIE +tUG +wIE +wIE +wIE +pMY +wIE +wIE +wIE +wIE +wIE +dSU +wIE +wIE +wIE +wIE +wIE +dCN +dCN +dCN eSV eSV eSV @@ -214407,40 +214956,40 @@ wbX iPz xOC oJe -aKn -jlo -xtK -vJy -vwT -eWN -tXB -fgW -qeq -qmn -jPp -rBj -qRi -kTW -jPp -suT -pLU -mDd -lPW -rAb -rmB -kYO -rAb -rmB -nCG -oCT -anK -kYO -oCT -anK -nCG -nCG -nCG -nCG +xor +dyK +fVa +oBP +iYG +xsh +fVa +lbv +pjD +cHA +ceg +kPz +kuc +tfj +rAV +jUl +wzc +rEB +xZg +pAL +mWU +kqW +pAL +mWU +dCN +jNR +vWb +kqW +jNR +vWb +dCN +dCN +dCN +dCN eSV eSV eSV @@ -214664,39 +215213,39 @@ oJe oJe oJe oJe -xGs -fQB -oVl -ifE -ifE -ifE -tXB -xRN -hxg -xRN -jPp -uwm -uwm -uwm -jPp -suT -iUg -oGK -lPW -mUk -mUk -ipW -mUk -mUk -nCG -jzw -jzw -qNq -jzw -jzw -nCG -nCG -nCG +sIi +cwV +fVa +chr +chr +chr +fVa +pXW +wtI +pXW +ceg +qxy +qxy +qxy +rAV +jUl +scr +njf +xZg +sRJ +sRJ +czl +sRJ +sRJ +dCN +dYh +dYh +qte +dYh +dYh +dCN +dCN +dCN eSV eSV eSV @@ -214913,17 +215462,17 @@ ehb ehb ehb luL -ozE -ozE -ozE -uIL -hHY -iTx -rvq -lqr -isq -ncG -ozE +gLM +gLM +gLM +fXK +miX +mOO +jHX +cZZ +hIZ +uOz +gLM mOM mOM mOM @@ -214935,25 +215484,25 @@ qhy mOM mOM mOM -jKT -jKT -oDV -jKT -lPW -mUk -mbp -tou -mbp -mUk -nCG -jzw -htf -lTz -htf -jzw -nCG -nCG -nCG +xDX +xDX +rsA +xDX +xZg +sRJ +knu +tkk +knu +sRJ +dCN +dYh +kGi +lpo +kGi +dYh +dCN +dCN +dCN eSV eSV eSV @@ -215172,15 +215721,15 @@ ehb nnV mOM wEY -ozE -qxT -oRg -squ -cEy -wcU -krS -hgX -ozE +gLM +awd +fDF +osb +eyf +bes +xSM +eFu +gLM wEY wEY wEY @@ -215192,24 +215741,24 @@ pYB wEY wEY wEY -jKT -tGA -iUg -rwh -lPW -mUk -mbp -tou -mbp -mUk -nCG -jzw -htf -lTz -htf -jzw -nCG -nCG +xDX +nxG +scr +rKF +xZg +sRJ +knu +tkk +knu +sRJ +dCN +dYh +kGi +lpo +kGi +dYh +dCN +dCN eSV eSV eSV @@ -215429,15 +215978,15 @@ ehb luL mOM wEY -gxy -qPc -cwc -cwc -cwc -cwc -vef -goR -ozE +bjI +yia +wGS +wGS +wGS +wGS +wDz +myO +gLM wEY wEY wEY @@ -215449,24 +215998,24 @@ pYB wEY wEY wEY -qKA -suT -gIr -iEX -lPW -mUk -lJy -wmL -sSm -mUk -nCG -jzw -gRk -vlJ -oKI -jzw -nCG -nCG +vsr +jUl +wch +uEr +xZg +sRJ +hEK +czX +nji +sRJ +dCN +dYh +lFr +xwy +ila +dYh +dCN +dCN eSV eSV eSV @@ -215686,15 +216235,15 @@ ehb nnV sRg pYB -ozE -elM -tLU -eKs -mhx -vUT -tLU -rcV -ozE +gLM +khH +gOL +vtY +ryR +xFs +gOL +sCq +gLM wEY wEY wEY @@ -215706,23 +216255,23 @@ pYB wEY wEY wEY -qKA -eVE -gIr -iEX -lPW -mUk -mbp -tou -pyy -mUk -nCG -jzw -htf -lTz -dFm -jzw -nCG +vsr +xHG +wch +uEr +xZg +sRJ +knu +tkk +jcf +sRJ +dCN +dYh +kGi +lpo +pdJ +dYh +dCN eSV eSV eSV @@ -215943,15 +216492,15 @@ ehb luL mOM wEY -ozE -rAd -alq -oIO -aDn -pHU -alq -enT -ozE +gLM +kpv +fHQ +cTW +kRb +ofQ +fHQ +vqc +gLM wEY wEY wEY @@ -215963,23 +216512,23 @@ pYB wEY wEY wEY -qKA -dob -dFg -iEX -nCG -mUk -mUk -eNT -mUk -mUk -nCG -jzw -jzw -cLQ -jzw -jzw -nCG +vsr +qIe +bON +uEr +xDX +sRJ +sRJ +hZe +sRJ +sRJ +dCN +dYh +dYh +uCa +dYh +dYh +dCN eSV eSV eSV @@ -216200,15 +216749,15 @@ ehb nnV mOM wEY -ozE -oAS -sys -coB -wrD -ccs -sys -oFI -ozE +gLM +qSa +lRj +qAu +vfX +qLP +lRj +fMW +gLM wEY wEY wEY @@ -216220,23 +216769,23 @@ pYB wEY wEY wEY -qKA -ckY -iUg -vDP -nCG -mUk -mUk -noZ -mUk -mUk -qMH -jzw -jzw -plp -jzw -jzw -nCG +vsr +dwv +scr +chI +xDX +sRJ +sRJ +gWX +sRJ +sRJ +lCP +dYh +dYh +xgA +dYh +dYh +dCN eSV eSV eSV @@ -216457,15 +217006,15 @@ ehb luL sRg pYB -ozE -oAS -sys -oFI -wmx -oAS -sys -oFI -ozE +gLM +qSa +lRj +fMW +uQW +qSa +lRj +fMW +gLM wEY wEY wEY @@ -216477,21 +217026,21 @@ pYB wEY wEY wEY -jKT -sBx -iUg -jKT -xst +xDX +trh +scr +xDX +xgW eSV -mUk -uKW -mUk +sRJ +nHH +sRJ eSV eSV eSV -jzw -aWx -jzw +dYh +jmy +dYh eSV eSV eSV @@ -216714,15 +217263,15 @@ ehb nnV mOM wEY -ozE -sVZ -sys -lLP -oVl -sVZ -sys -lLP -ozE +gLM +sdd +lRj +vgw +nPH +sdd +lRj +vgw +gLM mOM mOM mOM @@ -216734,11 +217283,11 @@ sRg mOM mOM mOM -jKT -wHY -fiL -qKA -hoV +xDX +yef +qdi +vsr +pYB eSV eSV eSV @@ -216971,15 +217520,15 @@ kds luL mOM wEY -ozE -oAS -sys -oFI -oVl -oAS -sys -oFI -ozE +gLM +qSa +lRj +fMW +nPH +qSa +lRj +fMW +gLM eSV eSV eSV @@ -216991,11 +217540,11 @@ eSV eSV eSV eSV -jKT -fDL -iUg -qKA -hoV +xDX +odE +scr +vsr +pYB eSV eSV eSV @@ -217228,15 +217777,15 @@ mOM kXh sRg pYB -ozE -oAS -bsX -oFI -oVl -oAS -bsX -oFI -ozE +gLM +qSa +hSa +fMW +nPH +qSa +hSa +fMW +gLM eSV eSV eSV @@ -217248,11 +217797,11 @@ eSV eSV eSV eSV -jKT -eVE -iUg -jKT -jKT +xDX +xHG +scr +xDX +xDX eSV eSV eSV @@ -217485,15 +218034,15 @@ drP drP drP wEY -ozE -oVl -oVl -oVl -oVl -oVl -oVl -oVl -ozE +gLM +nPH +nPH +nPH +nPH +nPH +nPH +nPH +gLM eSV eSV eSV @@ -217505,10 +218054,10 @@ eSV eSV eSV eSV -qKA -eVE -iUg -qKA +vsr +xHG +scr +vsr eSV eSV eSV @@ -217742,15 +218291,15 @@ eSV eSV eSV eSV -ozE -ozE -ozE -ozE -ydg -ozE -ozE -ozE -ozE +gLM +gLM +gLM +gLM +cbK +gLM +gLM +gLM +gLM eSV eSV eSV @@ -217762,10 +218311,10 @@ eSV eSV eSV eSV -qKA -suT -fmi -qKA +vsr +jUl +hYd +vsr eSV eSV eSV @@ -218019,11 +218568,11 @@ eSV eSV eSV eSV -jKT -gMM -qaU -jKT -jKT +xDX +fMf +roS +xDX +xDX eSV eSV eSV @@ -218276,11 +218825,11 @@ eSV eSV eSV eSV -qKA -cFo -iUg -qKA -hoV +vsr +nLF +scr +vsr +pYB eSV eSV eSV @@ -218533,11 +219082,11 @@ eSV eSV eSV eSV -qKA -hWn -iUg -qKA -hoV +vsr +iHe +scr +vsr +pYB eSV eSV eSV @@ -218790,11 +219339,11 @@ eSV eSV eSV eSV -jKT -kpm -iUg -jKT -jKT +xDX +rlL +scr +xDX +xDX eSV eSV eSV @@ -219047,10 +219596,10 @@ eSV eSV eSV eSV -jKT -ofh -qvT -qKA +xDX +jNs +eVn +vsr eSV eSV eSV @@ -219304,10 +219853,10 @@ eSV eSV eSV eSV -jKT -cye -pAB -qKA +xDX +fdx +mJE +vsr eSV eSV eSV @@ -219561,10 +220110,10 @@ eSV eSV eSV eSV -jKT -jKT -joF -jKT +xDX +xDX +uEM +xDX eSV eSV eSV @@ -248327,41 +248876,41 @@ eSV eSV eSV eSV -aVK -aVK -aVK -aVK -aVK -aVK -aVK -aVK -aVK -nnb -aVK -aVK -aVK -aVK -aVK -ajU -aVK -aVK -aVK -aVK -aVK -aVK -aVK -djk -aVK -aVK -dNd -aVK -aVK -aVK -aVK -aVK -aVK -aVK -aVK +poK +poK +poK +poK +poK +poK +poK +poK +poK +bWg +poK +poK +poK +poK +poK +dah +poK +poK +poK +poK +poK +poK +poK +kWN +poK +poK +icw +poK +poK +poK +poK +poK +poK +poK +poK eSV eSV eSV @@ -248583,43 +249132,43 @@ eSV eSV eSV eSV -aVK -aVK -mNn -mZL -xhu -mRg -yiO -mZL -jRl -roI -mZL -yiO -mZL -mZL -mZL -mZL -mZL -yiO -mZL -wDq -wDq -wDq -uII -yiO -mZL -mZL -mZL -mZL -yiO -mZL -mZL -mZL -xhu -mZL -nlR -aVK -aVK +poK +poK +ubV +bBm +kOu +bWH +aFL +bBm +gpz +pGe +bBm +aFL +bBm +bBm +bBm +bBm +bBm +aFL +bBm +wnf +wnf +wnf +eZR +aFL +bBm +bBm +bBm +bBm +aFL +bBm +bBm +bBm +kOu +bBm +cUH +poK +poK eSV eSV eSV @@ -248840,43 +249389,43 @@ eSV eSV eSV eSV -aVK -mLH -aPp -mZL -xhu -uII -uII -uII -uII -iso -uII -uII -uII -uVg -nWm -nWm -nWm -nWm -iqN -uII -uII -uII -uII -uII -uII -uII -uVg -nWm -nWm -nWm -nWm -iqN -xhu -mZL -mTR -qzw -aVK +poK +kcw +cWY +bBm +kOu +eZR +eZR +eZR +eZR +rXm +eZR +eZR +eZR +tZH +nxv +nxv +nxv +nxv +xJr +eZR +eZR +eZR +eZR +eZR +eZR +eZR +tZH +nxv +nxv +nxv +nxv +xJr +kOu +bBm +uaN +bzD +poK eSV eSV eSV @@ -249097,43 +249646,43 @@ eSV eSV eSV eSV -teu -mLH -gUO -wDq -rRs -uII -uII -uII -uII -iso -uII -uII -uII -pTs -fdX -pVn -pVn -pVn -lnJ -uII -uII -uII -uII -uII -uII -uII -pTs -pVn -pVn -pVn -pVn -lnJ -gkm -mZL -mTR -qzw -yeM +lOR +kcw +sZv +wnf +nKP +eZR +eZR +eZR +eZR +rXm +eZR +eZR +eZR +pfO +rRC +mxY +mxY +mxY +dCv +eZR +eZR +eZR +eZR +eZR +eZR +eZR +pfO +mxY +mxY +mxY +mxY +dCv +oaN +bBm +uaN +bzD +pOb eSV eSV eSV @@ -249354,43 +249903,43 @@ eSV eSV eSV eSV -aVK -mLH -aPp -mZL -xhu -uII -uII -uII -uII -iso -uII -uII -uII -gvz -cjF -cjF -cjF -cjF -kTd -uII -uII -uII -uII -uII -uII -uII -gvz -cjF -cjF -cjF -cjF -kTd -xhu -mZL -mTR -qzw -aVK +poK +kcw +cWY +bBm +kOu +eZR +eZR +eZR +eZR +aok +beO +beO +vcs +gEA +het +het +het +het +oxX +eZR +eZR +eZR +eZR +eZR +eZR +eZR +gEA +het +het +het +het +oxX +kOu +bBm +uaN +bzD +poK eSV eSV eSV @@ -249611,43 +250160,43 @@ eSV eSV eSV eSV -aVK -aVK -sMf -mZL -xhu -wlp -cjB -odQ -eDW -dDW -mZL -wjV -mZL -mZL -mZL -mZL -qsE -wjV -mZL -mZL -mZL -mZL -uII -wjV -mZL -mZL -mZL -mZL -wjV -mZL -mZL -mZL -xhu -mZL -naY -aVK -aVK +poK +poK +cCH +bBm +kOu +sdR +eaV +jLQ +bnL +koY +bBm +wxk +uXz +bBm +bBm +bBm +lzX +wxk +bBm +bBm +bBm +bBm +eZR +wxk +bBm +bBm +bBm +bBm +wxk +bBm +bBm +bBm +kOu +bBm +tmI +poK +poK eSV eSV eSV @@ -249869,41 +250418,41 @@ eSV eSV eSV eSV -aVK -aVK -aVK -aVK -xhu -xhu -tGT -xhu -xCz -xhu -xhu -xhu -wSH -wSH -wSH -xhu -xhu -xhu -xhu -xhu -xhu -izs -xhu -xhu -aVK -aVK -aVK -aVK -aVK -aVK -aVK -aVK -aVK -aVK -aVK +poK +poK +poK +poK +okw +okw +gFi +okw +gGW +kOu +kOu +kOu +oqx +oqx +oqx +kOu +kOu +kOu +kOu +kOu +kOu +qxB +kOu +kOu +poK +poK +poK +poK +poK +poK +poK +poK +poK +poK +poK eSV eSV eSV @@ -250129,28 +250678,28 @@ eSV eSV eSV eSV -aVK -xhu -koF -qJa -xhu -pxV -arB -esp -arB -arB -arB -arB -arB -esp -gDF -arB -pxy -eil -mmN -nVK -dab -tht +kcm +okw +bGR +pCJ +okw +laV +kAy +xgf +kAy +kAy +kAy +kAy +kAy +xgf +ggX +kAy +wuk +aef +nfw +xDi +aMX +lXv eSV eSV eSV @@ -250386,28 +250935,28 @@ eSV eSV eSV eSV -aVK -xhu -dIN -jtl -wEV -bAy -uII -xhu -nFP -alC -agZ -uus -rmu -xhu -cYi -uII -xhu -hpi -mmN -uGd -dab -tht +kcm +okw +vha +fmx +sGu +hii +bvp +aMX +ncE +jGV +cMx +qHU +jPS +aMX +eNn +bvp +aMX +kiI +nfw +mzX +aMX +lXv eSV eSV eSV @@ -250643,28 +251192,28 @@ eSV eSV eSV qFE -vFg -xhu -cIL -ayo -xhu -eRA -uII -xhu -hYj -oXH -aOQ -pAd -oug -xhu -nfC -thw -xhu -hpi -mmN -quk -dab -oMp +xnV +okw +peq +lFZ +okw +kWK +bvp +aMX +iPx +nNG +haz +cJN +gJh +aMX +jdJ +hCI +aMX +kiI +nfw +qjH +aMX +cQz jjj eSV eSV @@ -250900,28 +251449,28 @@ eSV eSV eSV bcg -sFi -xhu -fFd -qCl -xhu -wLe -snj -hVj -uII -uII -uII -uII -uII -hVj -cYi -uII -qXB -hpi -mmN -tTh -dab -eNH +mHE +okw +oxM +xrs +okw +xmI +mwi +rGA +bvp +bvp +bvp +bvp +bvp +rGA +eNn +bvp +ygD +kiI +nfw +oQr +aMX +ayb vUJ eSV eSV @@ -251157,29 +251706,29 @@ eSV eSV eSV lRA -tnI -xhu -qoc -xhu -xhu -xhu -iOj -xhu -xhu -iOj -xhu -xhu -xhu -xhu -sPK -oOv -xhu -bRY -mmN -dab -dab -oTl -oMp +kiT +okw +eOt +okw +okw +aMX +udd +aMX +aMX +udd +aMX +aMX +aMX +aMX +kql +rvs +aMX +ebh +nfw +aMX +aMX +sMV +cQz jjj eSV eSV @@ -251413,30 +251962,30 @@ eSV eSV eSV qFE -kwq -dab -nbZ -tiD -vgX -wSH -uII -uII -qzw -qzw -uII -uII -uII -uII -uII -cYi -bmM -xhu -wcK -fCt -dab -oTl -oTl -eNH +xnV +rzi +fWR +ass +ghY +kHs +bvp +bvp +qfM +qfM +bvp +bvp +bvp +bvp +bvp +eNn +klY +aMX +eNn +dGN +aMX +sMV +sMV +ayb vUJ eSV eSV @@ -251670,31 +252219,31 @@ eSV eSV eSV bcg -mIj -dab -gNg -tiD -dtT -xhu -uII -qDe -iWi -iSJ -hID -xhu -xhu -oiY -oiY -apn -oiY -oiY -hpi -tiD -dab -dab -dab -oTl -oMp +bnZ +rzi +kWb +ass +wEm +rzi +bvp +nRl +loS +rWx +ffJ +aMX +aMX +eNL +eNL +iFS +eNL +eNL +kiI +bvp +aMX +aMX +aMX +sMV +cQz jjj eSV eSV @@ -251927,31 +252476,31 @@ eSV eSV eSV lRA -gPm -dab -rdV -tiD -tiD -hVj -uII -okn -pVn -ahN -okn -kBo -gXZ -oiY -wTR -ijf -psi -oiY -hpi -tiD -rSk -oDM -dab -oTl -eNH +lkX +rzi +aYB +ass +ass +oRe +bvp +cNA +ihk +oSN +cNA +wBx +rFA +eNL +iCJ +kqI +gyi +eNL +kiI +bvp +dNM +aMB +aMX +sMV +ayb vUJ eSV eSV @@ -252183,33 +252732,33 @@ eSV eSV eSV qFE -kwq -tSA -dab -rJU -tiD -sdq -xhu -uII -snj -qzw -qzw -uII -eWE -cqn -oiY -lVd -cPL -cti -oiY -hpi -tiD -aCh -kAg -dab -oTl -oTl -tht +xnV +vjc +rzi +kCO +ass +ghe +rzi +bvp +mwi +qfM +qfM +bvp +jNt +vMH +eNL +ayS +bkj +qJz +eNL +kiI +bvp +efY +ucz +aMX +sMV +sMV +lXv eSV eSV eSV @@ -252440,41 +252989,41 @@ eSV eSV eSV bcg -fcS -dab -dab -tiD -tiD -xcq -xhu -xhu -iOj -xhu -xhu -uII -kBo -wKd -oiY -uXd -diE -oAY -oiY -bPX -egi -dab -dab -dab -oTl -oTl -tht -bNi -jqo -jqo -jqo -jqo -jqo -jqo -jqo +mHE +rzi +rzi +ass +ass +xsL +rzi +aMX +udd +aMX +aMX +bvp +wBx +ygV +eNL +tvx +rMb +uQq +eNL +uvV +eWg +aMX +aMX +aMX +sMV +sMV +lXv +cej +bLj +bLj +bLj +bLj +bLj +bLj +bLj eSV eSV eSV @@ -252697,41 +253246,41 @@ eSV eSV eSV lRA -gPm -dab -aGU -wEv -gXC -dtT -xhu -uII -uII -qzw -qzw -hID -oiY -oiY -oiY -dpw -hes -rSb -vmN -gSR -vRT -wyA -wyA -wyA -wyA -wyA -wyA -axV -nUE -vZC -jWp -gGu -oto -bdV -vPE +lkX +rzi +wYS +jxg +gON +wEm +rzi +bvp +bvp +qfM +qfM +ffJ +eNL +eNL +eNL +iYa +oyl +eMp +rTo +jvO +mQw +gip +gip +gip +gip +gip +gip +tJw +lZY +qSL +tnP +geD +ven +qbY +nkV fnj fnj eSV @@ -252953,42 +253502,42 @@ eSV eSV eSV qFE -kwq -oTl -dab -tTs -wEv -tiD -tiD -ric -qGp -uII -fRs -pnq -uII -oiY -qAz -tBz -qzc -beY -lyn -oiY -fiN -uUa -wyA -wyA -wyA -wyA -wyA -wyA -wIK -uEF -xSA -mMq -lMM -wky -bdV -vPE +xnV +nCk +rzi +yhD +jxg +ass +ass +min +waX +bvp +kZc +kgy +bvp +eNL +kyt +dMj +uIg +unR +ajp +eNL +hqr +mlq +gip +gip +gip +gip +gip +gip +xwC +vBU +uGL +fnZ +tVA +ooC +qbY +nkV fnj qkz eSV @@ -253210,42 +253759,42 @@ eSV eSV eSV bcg -fcS -dab -dab -uux -wEv -tiD -tiD -xhu -uII -uII -qzw -qzw -okn -oiY -hZX -fRz -cPL -wdu -qFX -oiY -pUM -haX -wyA -hZL -bLl -tRT -mql -wyA -mgZ -gRI -xSA -pSy -hRI -vIb -bdV -vPE +mHE +rzi +rzi +tjz +jxg +ass +ass +rzi +bvp +bvp +qfM +qfM +cNA +eNL +lfM +dZj +bkj +kfh +tjr +eNL +xxJ +bPv +gip +eyJ +pyY +cgo +oez +gip +dBZ +uMX +uGL +amS +pvw +sCc +qbY +nkV fnj fnj eSV @@ -253467,42 +254016,42 @@ eSV eSV eSV lRA -ugT -wLr -dAJ -oCY -wEv -tiD -tiD -xhu -hNc -gIj -xhu -xhu -yaB -oiY -hZX -vLS -aOE -aDH -rdp -oiY -cKo -bDT -wyA -dzp -pXj -wze -ofO -wyA -vLZ -gUb -qGs -sKf -lJX -kbW -hEQ -jIf +kiT +kaE +deU +iey +jxg +ass +ass +rzi +qLq +fRc +aMX +aMX +sBF +eNL +lfM +aJY +oSD +kkg +mFu +eNL +qZk +kwh +gip +nCR +nri +iXC +pSc +gip +bpq +kED +jzH +sKI +eDF +oPe +olv +eGf eSV eSV eSV @@ -253723,43 +254272,43 @@ eSV eSV eSV qFE -kwq -dab -wkP -dzs -oCY -wEv -plR -tiD -xhu -fZP -bql -khx -lWh -quS -oiY -hZX -fRz -cPL -cPL -pmX -oiY -qBv -hby -wyA -kUm -pND -tcb -fhf -wyA -imm -dlE -tby -xjj -xjj -ocW -vWM -nTL +xnV +rzi +lGL +qYa +iey +jxg +iDn +ass +rzi +gmn +jBR +xid +vcF +vzS +eNL +lfM +dZj +bkj +bkj +hxf +eNL +aZH +chb +gip +eoZ +sRG +nky +eLG +gip +pBE +ezj +ewq +ozt +ozt +vId +tgJ +ooR eSV eSV eSV @@ -253980,43 +254529,43 @@ eSV eSV eSV bcg -mIj -dab -mII -syY -oCY -wEv -plR -tiD -xhu -uII -wWA -nMX -wSH -nEn -oiY -qeY -ndT -cKd -utX -pwx -oiY -lWn -hby -wyA -wyA -jnp -wvc -wyA -wyA -iVV -hqP -nzi -gTM -vUl -guC -mrV -jjh +bnZ +rzi +qrB +esh +iey +jxg +iDn +ass +rzi +bvp +mYt +mFd +cay +goY +eNL +fLA +lSs +gqE +kqn +iGE +eNL +stZ +chb +gip +gip +kzU +ceR +gip +gip +wTD +ldu +jGJ +llW +uZd +kfl +dLi +vii eSV eSV eSV @@ -254237,43 +254786,43 @@ eSV eSV eSV lRA -dls -dab -uAb -syY -oCY -pFT -plR -xrn -xhu -iOj -xhu -xhu -xhu -xhu -oiY -oiY -oiY -oiY -oiY -oiY -oiY -dab -xlF -wyA -wyA -iHl -hnc -wyA -wyA -uau -bsC -uau -uau -gqZ -fpE -fRJ -nTL +blA +rzi +mPH +esh +iey +csp +iDn +oBa +rzi +udd +aMX +aMX +aMX +aMX +eNL +eNL +eNL +eNL +eNL +eNL +eNL +aMX +ylN +gip +gip +jRL +wdG +gip +gip +vvE +xgX +vvE +vvE +rkC +iLE +bKz +ooR eSV eSV eSV @@ -254493,44 +255042,44 @@ eSV eSV eSV qFE -mmi -dab -dab -tcj -dab -dxy -rJU -tiD -tiD -xXP -tiD -tiD -tiD -tiD -tiD -tiD -tMH -iUD -pOh -pOh -pOh -cMy -wtz -piF -bNt -duA -xSP -oyY -bvl -qZC -uvm -dcI -fYI -uau -oCB -oka -oka -oka +sJG +rzi +rzi +lmy +rzi +sRS +kCO +ass +ass +wwA +ass +ass +ass +ass +ass +ass +nZF +sZl +hEt +hEt +hEt +rPp +toc +mBF +ngp +kWu +mlZ +czL +gQF +ngp +bpd +qWI +pcK +rgV +iVZ +dAH +dAH +dAH eSV eSV eSV @@ -254750,41 +255299,41 @@ eSV eSV eSV bcg -fcS -iPr -dVt -rbD -dab -xyv -tiD -tiD -tMH -xXP -sFN -dDk -oDM -kSK -kGu -joC -hRD -bld -ksK -sdq -oDM -mNK -oJq -rjO -qNJ -rit -iBE -caF -tRA -lXV -hmQ -ccx -elj -qZC -bhq +mHE +kzH +myp +lXk +rzi +qkh +ass +ass +nZF +wwA +xGn +dMK +rNU +fGg +fvc +axb +krc +joE +dmA +oXc +rNU +jzB +vto +ser +dFw +mpT +mMd +uuM +xNI +upw +tku +ybO +fYG +ngp +uns jjj eSV eSV @@ -255007,41 +255556,41 @@ eSV eSV eSV lRA -ugT -tMv -kwa -kvT -dab -dab -pQn -wGG -cSb -oAm -oAm -oAm -oAm -nIL -nIL -nIL -nIL -nIL -nIL -nIL -nIL -nIL -cvv -qVi -bNt -bNt -bNt -bNt -bNt -bNt -dbj -kbX -fYY -rMM -jNk +kiT +btW +snF +nKU +rzi +rzi +lWR +nHy +ucQ +nwj +nwj +nwj +nwj +gAJ +qbo +qbo +qbo +qbo +qbo +qbo +qbo +qbo +cRO +uLv +dEI +dEI +dEI +dEI +dEI +dEI +euG +gxN +mSR +fAi +yex vUJ eSV eSV @@ -255263,43 +255812,43 @@ eSV eSV eSV qFE -mmi -dab -lmQ -xXK -wye -qNT -dab -bDh -aoV -oem -oAm -hqd -oAm -xfd -nIL -nIL -nIL -nIL -nIL -nIL -nIL -nIL -nIL -oyB -qVi -bNt -nsV -xxP -uHe -jhD -bNt -pVG -kbX -fYY -gUG -qZC -gSu +sJG +rzi +iPn +ekq +sxH +tOc +rzi +teU +gTI +xpH +nwj +vOo +nwj +mXI +gAJ +qbo +qbo +qbo +qbo +qbo +qbo +qbo +qbo +sbR +uLv +dEI +pwj +sFH +rCM +tAH +dEI +uwC +gxN +mSR +rOK +ngp +jfF jjj eSV eSV @@ -255517,46 +256066,46 @@ eSV eSV eSV eSV -hCj -tge +iJX +dbd lze -fcS -pEv -oCY -xyv -qLs -jOE -dab -bDh -iLz -dnZ -oAm -tSR -oAm -hZn -nIL -nIL -pPL -wWj -oBt -ybh -pCf -nIL -nIL -bNt -lja -bNt -sMq -xFi -pPc -dtr -ceF -noL -iYI -fYY -fxI -qZC -gpP +mHE +cgb +iey +qkh +kJa +nDg +rzi +teU +mKs +gyK +nwj +ddf +nwj +eMx +gAJ +qbo +wsd +tvE +vAT +sgi +vfo +qbo +qbo +rzi +jKf +dEI +fbg +fye +aQo +hRd +tsb +bDD +mQn +mSR +vpe +ngp +tmR vUJ eSV eSV @@ -255768,53 +256317,53 @@ eSV eSV eSV eSV -hCj -tge -tge -tge -tge -tge -xpj -woo +iJX +dbd +dbd +dbd +dbd +dbd +gFJ +dQL hnB -ugT -efV -kef -uLr -oqM -dab -dab -bDh -rQo -mnM -oAm -juy -sUd -cNn -nIL -nIL -mhF -cao -dsC -veu -biH -nIL -nIL -aVF -fgG -bNt -wbt -cAA -fqK -xZj -bNt -usX -sbX -mCW -gUM -gUM -gUM -rCe +kiT +elQ +xZX +txC +nSh +rzi +rzi +teU +wKF +uIo +nwj +nbs +sAl +bRc +gAJ +qbo +ems +bIa +rUJ +nuS +cMD +qbo +qbo +tcW +qxq +dEI +isP +urI +vSP +wZF +dEI +cJd +lDz +bBK +wiG +wiG +wiG +eIX jjj eSV eSV @@ -256025,53 +256574,53 @@ eSV eSV eSV eSV -get -woo -yjQ -yjQ -yjQ -yjQ -yjQ +rVj +dQL +cKu +cKu +cKu +cKu +cKu tHf -bgA -bkN -oCY -cgG -wal -oZM -dab -ddb -lMY -sdq -pwY -oAm -eJn -qKw -aGX -nIL -nIL -wry -rOa -uXf -iip -hwg -nIL -nIL -dRy -kII -bNt -rjK -gpE -xVs -vHn -bNt -obB -mNY -sDO -gUM -lkG -vCe -wdH +exF +xqu +iey +pFs +eGK +lHN +rzi +tRJ +pmr +ghe +cwN +nwj +mNP +gZw +ktl +gAJ +qbo +bsz +pJz +uOY +jxd +stl +qbo +qbo +peE +dvX +dEI +qdR +vMb +wOA +hmJ +dEI +jjU +wur +cRy +wiG +kxm +anY +nYS vUJ eSV eSV @@ -256282,54 +256831,54 @@ eSV eSV eSV eSV -get -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ +rVj +cKu +cKu +cKu +cKu +cKu +cKu wgc -lmY -aFM -mJd -mrO -lDR -toD -dab -rJU -tiD -oAm -oAm -oAm -oAm -hIU -oAm -nIL -nIL -nIL -nIL -ulq -nIL -nIL -nIL -nIL -cVM -toR -bNt -bNt -bNt -bNt -bNt -bNt -wBC -mNY -pfA -qwD -akj -akj -rlk -rCe +rzr +ohZ +hGa +eLi +ueC +cdf +rzi +kCO +ass +nwj +nwj +nwj +nwj +lcg +nwj +gAJ +qbo +qbo +qbo +orO +qbo +qbo +qbo +qbo +iwP +jzj +dEI +dEI +dEI +dEI +dEI +dEI +vqj +wur +kpS +lAc +reJ +reJ +oPK +eIX jjj eSV eSV @@ -256536,57 +257085,57 @@ eSV eSV eSV eSV -hCj -tge -tge -xpj -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ +iJX +dbd +dbd +gFJ +cKu +cKu +cKu +cKu +cKu +cKu hnB -wac -eOA -bFx -oCY -nTx -wQo -dab -xXP -xXP -oAm -vuW -vGj -clF -myH -oAm -qKd -rQQ -lGD -hqD -bOx -wuo -giM -tUh -mIA -jOr -rgm -gef -iwp -uUz -bDE -hyx -gef -eCN -jij -grI -gUM -vUr -akj -qzA -wdH +sxE +asJ +gLv +iey +cHI +vfQ +rzi +wwA +wwA +nwj +atG +hGV +lid +xjq +nwj +phi +gbk +ylQ +mFz +ioU +hPM +xYF +dQN +epa +hdj +jWv +dhN +avu +xFA +pDZ +kwH +dhN +irz +mDA +gWN +wiG +pJA +reJ +aeP +nYS vUJ eSV eSV @@ -256793,58 +257342,58 @@ eSV eSV eSV eSV -get -woo -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ +rVj +dQL +cKu +cKu +cKu +cKu +cKu +cKu +cKu tHf -bgA -tht -tht -tht -dab -dab -dab -dab -tiD -tiD -oAm -fQY -sHu -tus -sKw -qyL -sTc -wCi -wCi -xMQ -lxs -jAH -jAH -jAH -jAH -faH -mUT -jsj -jTK -bbr -hgb -vEz -gef -wrL -ixE -rbP -gUM -gUM -sjx -gUM -gUM -rCe +bKV +ppk +ppk +ppk +rPd +rPd +rPd +rPd +oJM +oJM +nwj +rNQ +uGE +hoO +tJN +cGa +ljV +dXZ +dXZ +dqV +dZO +oqG +oqG +oqG +oqG +xBE +sKn +fYF +xHt +uPz +kio +rZo +dhN +vDE +vXZ +iiR +wiG +wiG +cuU +wiG +wiG +eIX jjj eSV eSV @@ -257050,58 +257599,58 @@ eSV eSV eSV eSV -get -yjQ -yjQ -yjQ -yjQ +rVj +cKu +cKu +cKu +cKu eIb fMw kyV sRg sRg -tht -kfc -cSa -tht -elv -tiD -lON -gge -gJb -tiD -oAm -pkm -pRs -pRs -upT -qyL -vEf -rQQ -wCi -iPI -bMa -kMm -uUo -kMm -xOM -jOr -bCl -rvG -obJ -suE -eYd -xNK -gef -hHn -cNr -nZP -gUM -rSA -akj -slm -dbV -wdH +ppk +xnL +hGo +ppk +gHr +oJM +ctj +aLR +mMf +oJM +nwj +lhf +olw +olw +fjm +cGa +bxk +gbk +dXZ +hUm +mvi +dLQ +qGy +dLQ +aic +hdj +wer +gal +dJw +flm +iYD +oYv +dhN +fUl +ciL +iBa +wiG +gUV +reJ +jtE +ssa +nYS vUJ eSV eSV @@ -257309,57 +257858,57 @@ bPE bPE xLZ xLZ -yjQ -yjQ -yjQ +cKu +cKu +cKu xNW llD jTv jTv xVr -oud -diz -pYT -vRZ -aXV -tiD -tzI -eaL -ePA -tiD -sjZ -pkm -dMF -tty -rbQ -oAm -fYK -rQQ -wCi -jyQ -vwj -hxl -ftu -aZU -ftu -gAt -gLd -rvG -lgH -dfP -xzC -seq -uOG -jZU -hYV -vZG -gUM -oxo -akj -fWX -vCe -gUM -hDa +pCe +nXR +iPo +pYS +jqe +oJM +gFm +kdu +uWf +oJM +hNX +lhf +aOA +jVo +mME +nwj +flJ +gbk +dXZ +ldm +hlM +uUw +uBr +oGD +uBr +ite +fcd +gal +cHZ +qfK +xmG +tFC +rvh +mxg +kVp +dCx +wiG +wfz +reJ +upx +anY +wiG +jfF jjj eSV eSV @@ -257566,57 +258115,57 @@ bPE eWI rVj cKu -yjQ -yjQ -yjQ +cKu +cKu +cKu qve isn isn sRg sRg -tht -pDw -dpW -tht -sTj -aXV -tiD -uEs -dCP -tiD -oAm -hNY -ucS -ucS -fdn -qyL -vEf -rQQ -wCi -jzp -nyZ -pMF -kVA -ejf -ejf -khK -bCl -rvG -rKB -wYg -viU -tls -rvG -hHn -rCo -vsJ -gUM -xgF -akj -wNE -gUv -gUM -tSc +ppk +tLj +dUK +ppk +rsr +jqe +oJM +nbn +gDT +oJM +nwj +daF +sNg +sNg +txO +cGa +bxk +gbk +dXZ +uGR +dFn +aFJ +vCp +mBC +mBC +mGT +wer +gal +fxG +wYk +tep +tyT +gal +fUl +jHY +xkd +wiG +wbP +reJ +rTt +ddr +wiG +erq vUJ eSV eSV @@ -257823,58 +258372,58 @@ ayw gVP wke cKu -yjQ -yjQ -yjQ -yjQ +cKu +cKu +cKu +cKu pxH kJP wgc -fcS -tht -tht -tht -tht -fPS -fPS -cPU -nqX -aSl -nsy -oAm -mmL -tWi -xxA -aDc -qyL -sTc -wCi -wCi -xIo -vzl -pMF -hlQ -cxz -hBq -pMF -fky -gef -gef -gef -gef -gef -gef -kRU -fPX -nAh -gUM -tbH -psd -wNE -tDp -gUM -wYm -hDa +bOl +ppk +ppk +ppk +ppk +sdp +sdp +bVg +akk +oKb +kvY +nwj +qNa +sIy +dsO +nxx +cGa +ljV +dXZ +dXZ +syc +vru +aFJ +iiz +deB +oOF +aFJ +ePJ +dhN +dhN +dhN +dhN +dhN +dhN +kmi +uHG +aaw +wiG +cxN +cgr +rTt +lzB +wiG +uXc +jfF jjj eSV eSV @@ -258080,58 +258629,58 @@ eVT eVT rVj cKu -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ +cKu +cKu +cKu +cKu +cKu +cKu hnB -ugT -dab -dab -dab -dab -dab -dab -dab -dab -dab -uSJ -oAm -fju -vrc -pkm -jpb -oAm -wmo -nXh -uVT -eEi -aEP -pMF -hlQ -tRd -dZo -pMF -acR -sTH -uhF -dza -efD -dYz -sTH -oeR -ozd -pfA -gUM -sGI -jES -lSY -hqL -gUM -gUM -wdH +jMO +mVD +mVD +mVD +mVD +mVD +rPd +rPd +rPd +rPd +fiB +nwj +dPy +ijM +lhf +iJZ +nwj +rvW +vBI +wZV +lVA +nEB +aFJ +iiz +qaj +bTM +aFJ +lBF +tWP +luu +sin +sMa +urk +tWP +wHF +gcm +kpS +wiG +cDT +fhX +adV +eMA +wiG +wiG +nYS vUJ eSV eSV @@ -258337,61 +258886,61 @@ wpL aGl hIA nAw -yjQ -yjQ -yjQ -yjQ -yjQ +cKu +cKu +cKu +cKu +cKu tHf -wGs -eHJ -xWJ -rKC -wZb -mMN -jdP -wrt -uJU -wAu -dLG -ykd -oAm -hOV -caZ -jrP -uNU -vil -rjg -bLV -kfO -bLV -iCh -toI -pIu -fte -oPJ -cJr -yke -xvt -fsv -mKu -neJ -pDT -cfc -eac -cas -hLg -kAR -pZD -oaI -slm -mbm -gUM -tvh -wyO -gag -axe -gag +euH +tgw +tni +dKB +eRQ +twl +mVD +eGz +quy +eSM +hLD +hvf +nwj +bsU +osJ +qTK +xJs +iEp +vcm +fCw +jUG +fCw +wQa +nKj +tjn +dvm +aae +fTc +lLJ +aZm +oqt +uNX +ltg +ewT +hko +hmp +fpB +rXx +pRa +qmN +jfM +jtE +kwf +wiG +fKQ +sil +bSS +rGS +bSS eSV eSV eSV @@ -258594,61 +259143,61 @@ hsj wpL nIY tTb -yjQ -yjQ -yjQ -yjQ -yjQ +cKu +cKu +cKu +cKu +cKu wgc -sot -oiS -maI -dXd -bTx -nGn -jdP -gmx -fiN -wJw -rgI -sSv -oAm -nMY -tBo -xqG -pBg -oAm -vvV -bkx -bnR -rba -gcp -erv -kCZ -kCZ -sEH -cwb -kSw -mFQ -pMF -eRK -eaf -hWD -mFQ -lvG -rYl -mHK -gUM -jjV -jys -waG -rWW -gUM -rqy -iho -bYo -nJQ -dNH +mDN +ftW +iGU +uDT +taM +jTT +mVD +nJa +ltE +dUV +khW +xaL +nwj +vwY +maJ +qYk +vAF +nwj +vVi +sOd +hwN +gGt +iuO +glR +mXl +mXl +vJc +bSf +biG +oQQ +aFJ +bji +xBW +aqR +oQQ +cAF +uJl +ccQ +wiG +efv +xWf +iBt +kYD +wiG +azs +pLy +eSu +trS +eOR eSV eSV eSV @@ -258851,61 +259400,61 @@ aGl hsj hIf xQt -yjQ -yjQ -yjQ -yjQ -yjQ +cKu +cKu +cKu +cKu +cKu hnB -rOS -mEi -lwN -skO -byj -rlq -jdP -uit -pXd -aXM -htp -sSv -oAm -oAm -oAm -oAm -oAm -oAm -sTH -sTH -sTH -sTH -vnC -sTH -fMe -nVJ -uZr -pMF -bCl -sTH -xTL -eRK -aTA -xQV -sTH -hHn -hBW -fol -ePd -ePd -ePd -ePd -ePd -ePd -tnS -obd -gag -axe -gag +jMO +vlx +fkO +hFZ +odU +emq +mVD +xyz +vWh +sEW +kNI +xaL +nwj +nwj +nwj +nwj +nwj +nwj +tWP +tWP +tWP +tWP +xHO +tWP +pso +cdE +jdq +aFJ +wer +tWP +auN +bji +xJm +plL +tWP +fUl +sRy +rlS +wiG +wiG +wiG +wiG +wiG +wiG +bpG +lqA +bSS +rGS +bSS eSV eSV eSV @@ -259101,67 +259650,67 @@ eVT dqC dqC eVT -foO -foO -foO -foO -foO -tpq -xMI -jTO -jTO -jTO -lVh -jTO -jTO -jdP -eRB -iCO -ieI -vut -dWv -qmy -iRW -xyJ -hWV -iWF -nII -jvd -esd -esd -esd -esd -mNx -esd -esd -esd -esd -eLS -sTH -dsp -rQQ -pXg -pMF -tqd -sTH -sFj -eRK -onA -rvH -glh -hHn -ttk -mrK -ePd -xqL -fjK -jRd -kbZ -ijr -buy -yhR -gag -lIf +gmB +gmB +gmB +gmB +gmB +jSH +nvP +xTW +xTW +xTW +oTq +xTW +xTW +mVD +kOh +eyo +mLY +jBa +wCT +fWM +vCY +aql +bhv +dwk +sxh +fsC +gtY +gtY +gtY +gtY +jeb +gtY +gtY +gtY +gtY +gKH +rPd +vOb +gbk +pmg +aFJ +mKO +tWP +ubx +bji +udG +csg +tpj +fUl +gXu +dTf +xJO +ifJ +rHg +har +jhT +nFp +bCe +lwX +bSS +xGV eSV eSV eSV @@ -259358,67 +259907,67 @@ aGl hsj dqC eVT -kUV -pJF -iXV -ydt -wfn -pIr -lqk -hYn -hYn -hYn -hYn -hYn -hYn -hYn -hYn -hYn -hYn -jdP -blt -jdP -lOv -jzN -mrm -ixh -oNL -vbJ -oNL -oNL -tLO -sSS -tmk -tmk -rOY -lvN -gzL -ppv -sTH -rQQ -rQQ -gpb -sDQ -mIW -sTH -edQ -fyG -kGM -aUX -pDW -hHn -ndH -eou -xBX -fgx -tzx -eDX -iaZ -ijr -xLO -obd -axe -ycn +oxQ +pCL +rmT +kWg +qCX +dBg +uHv +fov +fov +fov +fov +fov +fov +jHK +jHK +jHK +jHK +mVD +bGW +mVD +scY +kSf +fBz +mPt +jLw +dKl +jLw +jLw +pEr +sSJ +wVL +wVL +hiK +sEv +caQ +eNf +rPd +gbk +gbk +wjn +pyx +xQl +tWP +fha +lJS +jni +meH +byQ +fUl +gUi +cun +lTL +tqr +lJu +pka +bVE +nFp +ecY +lqA +rGS +uYQ eSV eSV eSV @@ -259615,67 +260164,67 @@ aGl aGl hsj eVT -myM -cYe -sIT -fRn -pVx -pIr -wkY -hYn -sbl -sbl -sjf -iOb -gDv -jts -bOZ -oic -hYn -jwa -xcL -dab -dab -dab -leC -rjm -rjm -rjm -rjm -rjm -rjm -rjm -bCQ -bCQ -bCQ -duw -hrN -eiG -hrN -pwi -pwi -pwi -pwi -gSd -sTH -sTH -eDr -ssM -ssM -pDW -hHn -xHS -pfA -ePd -xhQ -uvy -hAx -yaj -ijr -vBT -gAU -axe -ycn +veK +uGF +diX +qMP +qBH +dBg +vjj +fov +poM +poM +keB +tTy +gZp +fKK +aej +hkv +fov +cjX +kZv +rPd +rPd +rPd +aCm +rmS +rmS +rmS +rmS +rmS +rmS +rmS +qap +qap +qap +kEo +ggv +cZl +ggv +qAo +qAo +qAo +qAo +rFz +tWP +tWP +aeF +xuK +xuK +byQ +fUl +cSl +kpS +xJO +uUY +cSD +rqd +kKu +nFp +ukL +eBi +rGS +uYQ eSV eSV eSV @@ -259866,73 +260415,73 @@ eVT dqC wpL hsj -foO -foO -foO -foO -foO -foO -foO -foO -foO -foO -nXy -pIr -nuA -hYn -sbl -sbl -tLE -glV -iMZ -ofP -eka -uVu -hYn -jwa -tMt -iLz -odo -qsi -jPa -rjm -plI -ahv -pfM -dVa -wEG -rjm +cdp +cdp +cdp +cdp +cdp +cdp +gmB +gmB +gmB +gmB +fdI +dBg +tzV +fov +poM +poM +lto +xFP +eAb +vFR +vUV +ybT +fov +cjX +vmz +pcE +rGG +iVj +psT +rmS +rbf +btn +hlP +mPz +laU +rmS tDj plv -iLc -pNw -hrN -tmt -qXz -pwi -aER -xwm -orn -pse -pwi -wGa -lCe -hYt -lCe -lCe -hHn -xHS -fbQ -ePd -oZP -oZP -xaA -oZP -ijr -rlh -gFQ -sCS -ycn +txU +xAa +ggv +sNk +eLJ +qAo +ipK +bId +nEj +rsu +qAo +tcL +xgl +wws +xgl +xgl +fUl +cSl +onQ +xJO +fzD +fzD +doZ +fzD +nFp +eQy +rGi +qsZ +uYQ eSV eSV eSV @@ -260122,74 +260671,74 @@ eVT wpL hsj dqC -foO -foO -tLT -tLT -tLT -tLT -tLT -tLT -tLT -tLT -tLT -tLT -pMI -cjG -hYn -vLh -vLh -sJF -vKh -dkb -hxo -qtZ -lNZ -hYn -ogq -tMt -bHj -bfc -nKy -jPa -rjm -ouj -wDQ -mqt -qZF -spJ -iKA +cdp +cdp +gjV +gjV +gjV +gjV +gjV +gjV +gjV +gjV +gjV +gjV +sSy +qEu +fov +gqz +gqz +tMh +lno +fSt +fCD +ipR +aNM +fov +xrP +vmz +xwv +haL +qEV +psT +rmS +ipa +wKs +rme +sji +lWm +kUH dOR sNE -ikz -kjJ -hrN -kXj -eOp -pwi -alU -dfB -voi -lzm -pwi -nmq -cjs -udV -euT -tJI -jcw -jss -jvQ -diG -kFk -cOR -kut -sKi -wdh -vWg -oBO -gag -ycn +ohh +rmn +ggv +uUi +kTZ +qAo +jNv +ntM +nKu +wIQ +qAo +nds +fDW +tAA +dLH +kvK +oUX +cZg +asR +lpr +nWp +nrw +lNK +jxx +lBt +rOU +xTk +bSS +uYQ eSV eSV eSV @@ -260379,74 +260928,74 @@ eVT dqC wpL hsj -foO -tLT -tLT -cHV -xfw -jHx -vsp -jHx -jHx -jHx -jHx -jnX -iJC -nuA -hYn -vLh -vLh -uDj -mBv -omR -mqj -miM -hgg -dFp -hKc -fGh -iwj -iwj -iwj -xZL -bJQ -fyD -wDQ -qQz -prE -qDY -rjm +cdp +gjV +gjV +bmX +csy +lTn +cXW +lTn +lTn +lTn +lTn +xHQ +iND +kYo +fov +gqz +gqz +cNU +pmW +wuJ +nLy +xan +cuw +kdT +cMj +xjy +ihA +ihA +ihA +obl +kUn +jTP +wKs +rGs +xrR +eWh +rmS yaR caI -vMI -qqw -oPy -iBH -tJy -pwi -rtn -fGK -nEU -bRq -nEs -gNA -gNA -pic -abj -vQD -wuu -abj -pfA -mxu -lvk -qlc -hLv -hLv -ucA -bTo -vnb -axe -ycn +gOt +lqp +fBn +laG +utF +qAo +rhx +nwL +vkR +kqm +rKS +awY +awY +wBS +ipt +roH +tHj +ipt +kpS +xiU +eAm +cxv +naU +naU +jep +jPX +hDY +rGS +uYQ eSV eSV eSV @@ -260635,75 +261184,75 @@ eVT wpL hsj dqC -foO -foO -tLT -kbS -gkZ -qKY -uZI -dnS -uZI -mSV -uZI -cat -eUl -uZI -vOV -hYn -jWj -jWj -uDj -wyq -vZx -rJf -kXE -kXE -hYn -pnn -tiD -hRD -lIw -xSn -mPO -rjm -exU -wDQ -qma -wDQ -xuu -rjm -xjf -vAA -aWO -dwc -hrN -hrN -hrN -pwi -alU -wxJ -nsL -qFH -pwi -img -hmw -aDF -qKy -lZR -wDK -hFq -vZD -ePd -ePd -ePd -oZP -oZP -oZP -sfE -obd -axe -ycn +cdp +cdp +gjV +gfi +lxx +dbC +eyz +xVy +eyz +gzG +eyz +wxF +lKK +eyz +baU +fov +vEl +vEl +cNU +dpV +ydR +dRW +rLc +rLc +fov +xoO +oJM +ogD +ddZ +lmh +evn +rmS +iSC +wKs +jgL +wKs +tfM +rmS +ukP +mme +rNo +pLs +ggv +ggv +ggv +qAo +jNv +uPv +rur +dJo +qAo +hrR +exT +ojQ +wiT +lhd +mIJ +lBO +gVa +xJO +xJO +xJO +fzD +fzD +fzD +eIu +lqA +rGS +uYQ eSV eSV eSV @@ -260892,75 +261441,75 @@ wpL hsj wpL hsj -foO -tLT -tLT -kbS -azT -qMS -cRt -qko -qKY -bRm -oYL -bbP -mRp -oYL -oYL -hYn -jWj -jWj -gDK -ptk -cta -jEF -ime -pBF -hYn -ygf -tiD -iLz -odo -qsi -jPa -rjm -jIH -dDX -nff -xwu -utL -wtD -ucp -aqG -oiQ -omv -bvg -cgt -bCQ -pwi -wlg -fKm -fZw -pwi -pwi -qZC -qZC -exQ -lzh -rBY -rBY -rBY -rBY -rBY -rBY -rBY -vhc -gLH -orQ -ums -qUh -gag -lIf +cdp +gjV +gjV +gfi +sVj +kZY +bbq +jhu +dbC +flU +cWx +uyn +irP +cWx +cWx +fov +vEl +vEl +cQy +moc +uIe +viJ +gXE +xUo +fov +viv +oJM +pcE +rGG +iVj +psT +rmS +lqW +eDt +rtG +bfn +exd +jJy +kkV +shP +rKP +xXh +caK +aIl +qap +qAo +mqW +lcU +hSP +qAo +qAo +ngp +ngp +nTf +wOF +pIF +pIF +pIF +pIF +pIF +pIF +xJO +fDo +hwr +bnq +qBr +nWP +bSS +xGV eSV eSV eSV @@ -261148,77 +261697,77 @@ wpL hsj wpL hsj -foO -foO -tLT -kbS -oYL -mTQ -vyS -tpJ -pbK -ocH -gRw -oYL -nhC -akR -auS -auS -hYn -hYn -hYn -iYn -bLS -fWi -hYn -hYn -hYn -hYn -bLE -tII -bLE -bLE -dab -kIU -rjm -rjm -rjm -rjm -rjm -rjm -rjm -bCQ -vbf -kBD -viL -tKH -kBD -bCQ -pwi -pwi -pwi -pwi -pwi -hzn -jMo -tpW -gJB -rXd -rBY -izG -snK -vvx -bbW -fDu -rBY -nTO -foh -foh -foh -obd -gag -axe -gag +cdp +cdp +gjV +gfi +cWx +icG +dnx +mbg +aCq +fcL +kCi +cWx +hMb +onG +xZQ +xZQ +xZQ +xZQ +xZQ +pKp +nGI +rrR +gcS +gcS +gcS +gcS +gcS +dbb +gcS +gcS +rPd +sYK +fXk +fXk +fXk +fXk +fXk +fXk +fXk +fXk +fyg +uvb +iLG +flC +uvb +qap +qAo +qAo +qAo +qAo +qAo +aaY +vKF +xIq +gRc +tte +pIF +wYC +sAC +ciS +bsG +iGw +xJO +mbc +tUs +tUs +tUs +lqA +bSS +rGS +bSS eSV eSV eSV @@ -261404,78 +261953,78 @@ eVT dqC wpL hsj -foO -foO -tLT -tLT -ivi -oYL -mTQ -teN -ddp -sdE -vyS -fFH -oYL -sCs -cOl -auS -dlC -qlo -dfG -auS -hgV -nDa -fnD -gXJ -lLB -iSj -rbg -rbg -qWj -qni -bLE -tqH -iIE -stq -mvd -kcQ -grr -ecH -jfW -bxB -tDe -ayr -eMi -uJp -txs -xmP -dun -mZx -rgy -qHs -fBE -dKg -lsl -uXD -uXD -wBE -ciK -rBY -iWL -mkf -hve -ozm -sfC -rBY -kQi -xvl -saM -jFw -boS -isU -hux -ojH +cdp +cdp +gjV +gjV +ubZ +cWx +icG +pOM +lFM +oLv +dnx +mLa +cWx +uIh +fSw +xZQ +xBR +mxA +gKL +xZQ +lCG +fnq +sen +oVr +gLL +tZB +bWB +bWB +xvi +dcY +gcS +prc +wZj +fXk +fTQ +hDH +bBn +kCu +wcr +kbL +oKj +jid +drD +tKu +dZq +fXI +dyC +sLK +qmX +mlP +uPi +rnY +aEz +cYV +cYV +bjD +vcr +pIF +uaw +aXu +hgz +jyn +nHl +xJO +ehj +tYd +sEF +oei +tad +lDl +uVj +fxS gKK eSV eSV @@ -261660,79 +262209,79 @@ ayw eVT dqC dqC -foO -foO -tLT -tLT -sZo -mSS -fnM -udw -wzN -kjx -fjv -xQb -xna -ewj -oYL -phj -pcL -hPK -vqV -rZA -aSq -uCz -phJ -fIq -vjf -mYn -ksQ -ilI -wrZ -jhp -rBe -bLE -vAm -uiY -mie -apA -ipp -jvv -cOx -vfp -uOq -tDe -hQX -cXq -ghd -wOV -cDf -eDv -qPB -cYE -cYE -iAt -dTt -cYE -cYE -cYE -uQI -wAn -rBY -aYC -uCf -asA -vJo -wAS -rBY -ePd -ePd -ePd -ePd -ePd -gag -axe -gag +cdp +cdp +gjV +gjV +rdb +jWk +jou +eSL +wqx +scz +gnr +rpu +eXI +ntZ +cWx +dRO +dYi +msP +pRN +pDA +snt +kaP +pyv +aGJ +sVA +dQf +fmd +oVs +tMC +qFe +ntw +gcS +gHn +gPE +qsx +tSd +cGe +cVn +wrz +lhx +oju +oKj +sCn +wAj +dho +dgF +tWH +gcV +ivo +mDU +mDU +vBZ +dCg +mDU +mDU +mDU +xRR +owN +pIF +ahs +txn +hTr +svI +vLt +xJO +xJO +xJO +xJO +xJO +xJO +bSS +rGS +bSS eSV eSV eSV @@ -261917,77 +262466,77 @@ ayw eVT dqC dqC -foO -tLT -tLT -fmw -yfD -yfD -yfD -qbr -yfD -yfD -yfD -efG -avS -ncS -pRl -xMc -auS -lBE -uda -hMR -auS -jAF -nIE -vYt -gXJ -fsi -eZr -jvx -jNn -jhp -jQW -bLE -wRj -tiD -xOJ -xOJ -xOJ -mHQ -asz -eIU -cTg -tDe -wKB -qVa -tKv -olq -evt -dun -jmf -nkG -xRY -rbq -dVC -iWH -iWH -fHz -sri -rrL -tMm -wxm -rzu -rzu -rzu -fuJ -ggi -bpD -mzW -czn -vNd -dgY -xSS +cdp +gjV +gjV +cLz +rFP +rFP +rFP +jWZ +rFP +rFP +rFP +wuA +gPb +arX +okS +otm +xZQ +aaQ +gBa +taq +xZQ +gMe +rgb +vok +oVr +gDM +sWM +fBM +wOC +qFe +hGW +gcS +tAD +oJM +ygJ +ygJ +ygJ +kuT +mVp +quJ +cWh +oKj +oIV +utD +une +fzq +jGD +dyC +rLA +lHX +wgZ +nvy +ing +lUD +lUD +ftj +reF +khw +rzD +bRl +fxm +fxm +fxm +xEx +rTD +tPw +iSR +uBG +dsP +yip +sQb uYQ eWI eSV @@ -262174,77 +262723,77 @@ ayw eVT dqC dqC -fdH -aHs -bJK -gOl -vty -rHD -elf -wKC -elf -rHD -pEQ -sbP -avS -ncS -ddY -bce -fiI -fiI -hrD -fiI -fiI -iPD -bYk -igd -gXJ -yfv -aWn -aWn -aWn -cgP -upt -bLE -jie -tiD -xOJ -sML -xku -bug -gkV -bvx -bvx -hcp -qqu -xYo -eGp -tYP -fpK -fpK -aqH -aqH -gJj -aqH -fpK -afa -gnv -oeX -fxA -rrL -tMm -nrc -lcG -ubb -lNB -alE -ggi -mVk -nav -eGO -aTx -moy -tEY +vFb +abV +hSZ +gMZ +rUa +qOA +thD +vPU +thD +qOA +xiv +hYi +gPb +arX +izc +ncT +xZQ +xZQ +nYB +xZQ +xZQ +utU +lyS +giQ +oVr +lzw +rlX +rlX +rlX +uyb +gmI +gcS +ccB +oJM +ygJ +cnm +rdc +krP +cBt +dKt +dKt +xXb +wsR +uIA +jBq +jNF +qap +qap +nfF +nfF +pjt +nfF +jHa +roK +olD +gEF +pig +khw +rzD +boA +dPT +izi +pmJ +ieK +rTD +miC +rLH +xXG +mCA +uWF +bYd uYQ eSV eSV @@ -262431,77 +262980,77 @@ ayw eVT dqC dqC -fdH -hGS -elf -oIj -wlu -tLT -wYL -ifk -wYL -tLT -jVW -eER -nTF -pej -uBl -sdS -vNG -hLt -kIn -gni -fiI -sQf -lMy -kQw -gXJ -gXJ -pmZ -pmZ -gXJ -wNk -gXJ -bLE -dAg -tiD -xOJ -rev -xOJ -nFE -nFE -nFE -miV -bCQ -nMG -ivl -tKv -kUx -czY -lyO -uun -eCc -rQY -ofn -aYL -qwg -xWq -oeX -fxA -rrL -tMm -kDW -rvz -skb -dTL -osk -iuG -gvk -nZI -aYX -aYX -lRE -tEY +vFb +ujW +thD +qQG +lwm +gjV +lDu +juQ +lDu +gjV +plE +sHl +xKi +fPP +oXs +wyD +eYi +hzh +vsH +lZv +pxb +ihp +tJf +ego +amL +amL +tWW +tWW +amL +oWx +amL +tcG +wWd +oJM +ygJ +feo +ygJ +beU +beU +beU +iPa +fXk +lqK +csw +une +tuU +ulh +rEU +dyo +sSb +xjd +aMI +sst +hBp +geu +gEF +pig +khw +rzD +aaB +lDr +asI +dIK +ryU +ueu +fRb +bFT +acb +acb +rXs +bYd uYQ eSV eSV @@ -262688,77 +263237,77 @@ ayw eVT dqC dqC -foO -tLT -hRT -tLT -hRT -tLT -qRM -fHP -sQR -hBL -rWG -uZH -gVE -ncS -oYL -phj -vNG -oiw -hSt -jvR -hrD -rAX -iED -ajr -xrE -tql -vnq -mWr -duV -gfp -kZS -xtv -dAg -dTw -xOJ -lik -xOl -ggK -pJB -rxV -rxV -lfk -bSZ -lMs -xTz -oHR -czY -xEa -qPW -rQY -rQY -gjU -wwM -qJR -wzQ -oeX -wRc -rrL -tMm -xxt -iQP -vDA -xxt -iQP -aGd -hLM -dLX -qoE -kia -gFW -eJw +cdp +gjV +faR +gjV +faR +gjV +yen +fuZ +brL +vEr +kDC +kjz +ceH +arX +cWx +dRO +eYi +pSs +gCX +wHK +qov +pTA +qEG +mHw +amL +bvi +eYr +oyQ +iEU +lkR +gPi +pbP +wWd +aAD +ygJ +aJR +wfO +ico +wtH +jTX +jTX +sWF +fsf +lrw +nMe +sSx +ulh +gbt +tqg +xjd +xjd +iec +sKL +hfi +hDr +gEF +stG +khw +rzD +wSX +mYy +sGn +wSX +mYy +vAn +xme +gyq +ckm +weV +ojr +vTP uYQ eSV eSV @@ -262946,76 +263495,76 @@ ieh dqC dqC ntC -cnj -qqt -qqt -qqt -tUl -chp -vHv -bgz -hBL -qIy -ksp -lsL -stO -oyx -kuM -vNG -rvY -wUI -njD -beT -rRS -lTb -sSY -pim -twU -pJW -uHH -vNN -ujN -qcy -abc -dAg -tiD -xOJ -xOJ -xOJ -lHz -rIT -eIU -tIc -fQU -ayr -kBD -kQg -xdX -caq -pMZ -iDj -osz -osz -jvq -fpK -lcj -nTl -oSe -tsE -rrL -tMm -vgB -qLZ -vDA -vgB -qLZ -aGd -uYK -pkP -vpz -qJD -apL -tEY +qgI +nZJ +nZJ +nZJ +vTz +tUq +crM +pew +vEr +rSI +nIi +iXA +txP +tLh +okj +eYi +npU +uct +giE +uem +noE +dsB +ojW +oZe +oJB +oLo +fbt +tjg +bhQ +gDn +xmq +wWd +oJM +ygJ +ygJ +ygJ +uzw +sYn +quJ +htR +boz +jid +uvb +jnq +tKd +iSU +kmu +nBc +rwn +rwn +gMm +jHa +ttn +oWS +rHW +lAv +khw +rzD +wSa +kss +sGn +wSa +kss +vAn +wmj +pPv +kRf +eSH +aAO +bYd uYQ eSV eSV @@ -263202,77 +263751,77 @@ ayw eVT dqC jUA -foO -tLT -hRT -tLT -hRT -tLT -pAT -pDs -dhb -hBL -gSF -uZH -gVE -iFV -dyl -phj -vNG -ciA -hSt -gSY -hrD -xtU -yaH -lYt -xrE -fit -bCk -gif -xKh -ujN -qcy -xtv -dAg -tiD -mie -nqH -wAT -xBr -nVk -lWK -hFl -fQU -ayr -kBD -ccg -qrV -czY -kLN -tpn -pww -tHy -uLj -aYL -syz -ktA -fxl -yhC -rrL -tMm -uGh -vTc -wiI -uGh -vTc -aGd -aGd -dfj -aGd -aGd -mol -xSS +cdp +gjV +faR +gjV +faR +gjV +msw +nrR +cHe +vEr +sRK +kjz +ceH +gBV +qSV +dRO +eYi +qVw +gCX +svv +qov +umw +aiN +xrD +amL +oLc +xVm +aYj +hXD +bhQ +gDn +pbP +wWd +oJM +qsx +jLk +fRY +nlm +lcf +dPW +hZf +boz +jid +uvb +lyV +uIW +ulh +hRL +pGO +lXN +dnG +hfm +sst +hMH +qJr +tvJ +hre +khw +rzD +lJD +vcx +pob +lJD +vcx +vAn +vAn +wrH +vAn +vAn +kFs +sQb uYQ eSV eSV @@ -263459,77 +264008,77 @@ ayw eVT dqC dqC -fdH -aHs -yfD -lLZ -efG -tLT -gCv -uhB -gCv -tLT -bzQ -eER -wGA -iFV -dyl -phj -vNG -wKO -kkz -vCj -fiI -win -lMy -vYt -iKv -lPE -bCk -pva -xKh -ujN -qcy -xtv -dAg -wss -stq -vpY -ceC -qwj -gPA -cPH -fdt -fQU -ayr -kBD -iyl -pOr -czY -ctA -qbO -bAs -iIx -inw -aYL -cku -clX -oeX -pFX -vrh -rBY -prY -ubb -vDA -ubb -ply -aGd -lZW -kdP -iaY -aGd -lsq -gLA +vFb +abV +rFP +sGH +wuA +gjV +xDK +ivY +xDK +gjV +ors +sHl +ghj +gBV +qSV +dRO +eYi +gOu +rDx +rxK +pxb +wJr +tJf +vok +tWW +jlm +xVm +dzT +hXD +bhQ +gDn +pbP +wWd +wrM +fXk +bWj +aDZ +vfr +qQC +vHf +trv +boz +jid +uvb +qCk +csf +ulh +obk +hlb +aCG +dYk +knC +sst +etV +uLX +gEF +uUv +nlX +pIF +cAX +izi +sGn +izi +sQY +vAn +nCI +vHV +sVN +vAn +nvY +aSf iGg yhw eSV @@ -263716,77 +264265,77 @@ ayw eVT dqC dqC -fdH -hGS -vSf -pEQ -nVB -sDG -yfD -fbz -yfD -sDG -xBJ -sbP -avS -iFV -dyl -pHJ -fiI -fiI -hrD -fiI -fiI -rbT -uVh -vYt -iKv -hOq -bCk -bsM -xKh -cRP -ikd -xtv -dAg -tiD -stq -stq -stq -stq -stq -stq -stq -stq -mEc -xbO -lcd -bCQ -tvF -tvF -tvF -tvF -tvF -tvF -tvF -tvF -tvF -eDR -pFX -rrL -nUU -fTo -rHF -wCk -eYE -qNZ -iOi -mwl -kdP -fCy -aGd -aGd -xSS +vFb +ujW +wvu +xiv +hIm +mYD +rFP +gQD +rFP +mYD +gxd +hYi +gPb +gBV +qSV +heV +gVA +gVA +alb +gVA +gVA +tVK +lcs +vok +tWW +tdt +xVm +opV +hXD +rQn +xUV +pbP +wWd +oJM +fXk +fXk +fXk +fXk +fXk +fXk +fXk +fXk +vTx +oqq +nUK +qap +rft +rft +rft +rft +rft +rft +rft +rft +rft +lYJ +uUv +khw +vYO +uXS +res +mPv +bEA +oYb +pwJ +rao +vHV +xdP +vAn +vAn +sQb uYQ eSV eSV @@ -263973,77 +264522,77 @@ ayw eVT dqC dqC -foO -tLT -tLT -bLI -elf -elf -elf -eJN -elf -elf -qOq -wlu -avS -iFV -vTa -tPL -wMV -eKL -uzT -xOy -wMV -gjs -nIE -vYt -iKv -wOd -ukA -nbv -tig -etb -dAg -wLx -wLx -uRB -hhW -aVC -yfq -ffv -acF -hhW -tHu -cRo -ybp -kJw -wdw -ohX -tvF -bWZ -ftC -pxx -dWl -mAq -vlR -xPp -sxJ -oeX -kUX -tSp -rBY -oFz -jeh -fiC -yga -fcZ -aGd -poG -hpg -kcJ -aGd -pzO -xSS +cdp +gjV +gjV +lIx +thD +thD +thD +jko +thD +thD +duu +lwm +gPb +gBV +rCx +uDo +gVA +tRf +dSR +pfi +gVA +eYw +rgb +vok +tWW +fOo +hBD +cFv +wPF +iii +tcG +wVZ +wVZ +nWO +xlm +aUI +dNs +tsA +kaV +xlm +xaQ +mKn +lnU +qIn +wii +prI +rft +gsz +kCM +vDa +fAR +pZK +kst +ftx +rrr +gEF +rcF +wvp +pIF +kFp +xCS +avV +iGX +vkM +vAn +wDr +ikH +xpu +vAn +lMg +sQb sDq dbd dbd @@ -264230,93 +264779,93 @@ ayw eVT dqC dqC -foO -foO -tLT -tLT -gYc -mSS -nqB -ujG -uWR -uWR -hmN -hrh -ngw -mWj -lUk -rql -tdq -fbx -ptx -wcN -yah -yfi -srO -vYt -xrE -gbG -mkt -doI -hIR -sbV -dAg -qHL -ups -wFL -hhW -iUc -wDH -jrG -tMB -tdQ -oVX -eBJ -eBJ -rGc -oSZ -vpr -pvR -eWS -lPH -aff -ufy -wdf -aff -urg -sxJ -oeX -lOj -wAn -rBY -rBY -rBY -rBY -rBY -rBY -aGd -aGd -pwk -aGd -aGd -aGd -xSS -uhl -krJ -mlG -lNl -lNl -mlG -mlG -lNl -lNl -lNl -anA -mlG -lNl -bwo -bwo -per +cdp +cdp +gjV +gjV +wjg +jWk +eHe +gJc +ovt +ovt +obf +oir +pmR +owk +bUG +sqi +nHe +cSN +oUp +uzR +uEp +jOZ +hqf +vok +amL +sFO +jxT +ede +gIA +xGY +tcG +wgu +oPY +ipB +xlm +otU +xai +lkL +dtR +pHv +wZs +tRI +tRI +uma +nIG +yda +hld +aCV +uVV +hye +fgs +bOT +hye +uVe +rrr +gEF +joj +owN +bhL +bhL +bhL +bhL +bhL +bhL +vAn +vAn +tXP +vAn +vAn +ezA +pyI +opq +eGT +kUK +pyI +pyI +kUK +kUK +pyI +pyI +pyI +fqe +kUK +pyI +pie +pie +rji tGt hoE eSV @@ -264488,93 +265037,93 @@ eVT dqC xel ckp -foO -foO -tLT -tLT -snL -ayv -vCH -gOY -gOY -dEy -gOY -gOY -fFH -gFc -ehN -wMV -wGd -lsY -lhC -wMV -xYD -mpS -bjU -xrE -xrE -iKv -xrE -kUq -ibm -dAg -eZf -aCW -oDq -fcm -uJx -szg -njN -vdP -xxT -rsV -rsV -oCP -umW -kdN -ggC -iYY -eCE -iAK -ojK -cqY -cqY -iCF -izK -tvF -oRb -wSR -oSa -qju -wXg -wMO -dNt -joG -qju -ppU -xRI -veE -nnB -bCj -iKf -alg -hmS -hmS -hmS -mPR -hTI -wiv -gRr -xMN -rQE -wfa -uFI -pol -iKf -tIg -bSA -wEM -ezX +cdp +cdp +gjV +gjV +foT +lfm +hhs +rdf +rdf +cvS +rdf +rdf +mLa +aPO +vjq +gVA +ePn +bor +cvn +gVA +aNi +jbH +oAo +xxu +hYI +sRH +hYI +cDL +kwv +pIx +gRd +aOw +mRJ +hjo +tIl +xsa +uDC +fQI +uyy +txD +txD +xoa +pxM +lTw +kKd +bCH +hLg +kTK +hZD +uDP +uDP +nQc +pRU +rft +bRO +vQv +rVs +bhL +diV +sWJ +uEX +lzp +bhL +nXt +qvH +vuL +mCq +tFQ +ezA +snp +ear +ear +ear +nJD +aGn +fqk +evI +ppV +xtC +eKR +tLe +doP +ezA +cqM +pLH +vzH +dWh tGt hoE eSV @@ -264746,93 +265295,93 @@ xel ckp xel ckp -cpJ -cpJ -jEP -jEP -jEP -nJo -cxl -cxl -ciY -cxl -cxl -ciY -jEP -jEP -jEP -wMV -uFK -wMV -wMV -pxC -sJD -vYt -kEw -vDM -ukr -iyM -pqw -fLF -wLx -wpl -aCW -jGx -hhW -mRF -rep -rep -jpq -tIp -ijJ -kBX -xxk -rnX -fWb -kvc -abn -eWS -wVt -jKE -ecw -bnT -mab -eqf -sxJ -oeX -kmW -cSO -qju -wXg -uKl -kxL -hGx -qju -gwM -bak -kpG -kLO -fHS -iKf -lgU -mKg -oRt -kHY -eUA -iKf -gEs -afG -afG -afG -jde -rhF -qdh -iKf -sag -qUn -vCk -yhn -ezX +cdp +cdp +bsx +bsx +bsx +eYZ +lCR +lCR +fFs +lCR +lCR +fFs +bsx +bsx +gVA +gVA +jPT +gVA +gVA +fzJ +kXm +vok +pSw +hYI +nUc +ebm +bxz +gqq +pIx +uqm +aOw +gYT +xlm +cks +cxV +cxV +mxo +asa +gUR +oJg +cAS +ane +qNA +neB +pHc +aCV +eEJ +xFJ +mnl +won +tuo +tar +rrr +gEF +pDU +hLN +bhL +diV +why +gMj +nyl +bhL +aJJ +pve +rmV +wGZ +kvj +ezA +eKS +dIZ +eqx +uup +stX +ezA +ehC +pUZ +pUZ +pUZ +gdx +oCz +hqv +ezA +sSr +tiw +gRO +npQ +dWh uYQ eSV eSV @@ -265004,92 +265553,92 @@ xel ckp xel ckp -cpJ -jEP -oxN -hmE -kzL -pKc -nQM -hKm -nQM -bbN -mgR -thK -oYs -jEP -phk -pRO -fxK -sBj -tet -srq -bRG -sGf -eQG -uwX -aCW -aCW -yhj -fNq -gKO -aCW -ltI -hhW -rjP -ekB -nOY -qtJ -cdh -nmz -aqW -jsB -nMd -jJm -aJg -cLR -xJG -rjx -lep -cFh -nuz -gyQ -twC -sxJ -oeX -dFF -rrL -vJE -agW -agW -gRD -czZ -qju -nOh -nTb -qpv -qpl -qtx -iKf -bQC -yie -sjn -vof -eZE -iKf -rST -qwx -sWA -edE -aSo -kNd -lVK -muX -bsK -qUn -fgd -vjr -doa +bVK +bsx +xST +xKm +hxq +cHj +wju +qYJ +wju +etQ +xqo +pJD +fty +aYK +deS +vaU +arU +wsZ +qeH +kHV +pLx +hPd +rCu +xpg +luz +luz +oJo +qrU +jNX +aOw +cIZ +xlm +uwk +jMI +auZ +nlu +vyq +exr +wQU +rPf +sXb +dsE +nKa +hCX +qLC +nKh +qAb +trB +ssp +gMh +nNT +rrr +gEF +sgA +khw +yjm +uDL +uDL +jAT +vcO +bhL +qNm +hys +gCD +vLq +kSN +ezA +aNt +iyD +grO +ixZ +lgw +ezA +fjc +hlC +tHo +tLl +khb +nQi +kqR +lQa +vxb +tiw +hUO +fji +kSI uYQ eSV eSV @@ -265261,92 +265810,92 @@ eVT xel ckp dqC -cpJ -jEP -qZD -mns -mjO -wIS -vuf -ruY -cSR -acT -lPv -uVM -wRn -abk -wui -lMh -jYB -mmy -aST -eyj -hYc -nls -qJZ -nDm -vfz -vfz -xXM -uYv -kFd -nSs -oNG -hhW -hhW -hhW -awl -hhW -hhW -emW -oCd -noQ -rnX -fWb -mIy -tvF -tvF -isr -isr -tvF -isr -voT -tvF -tvF -bfN -pFX -rrL -vJE -fwf -fwf -dhc -sFo -qju -gxb -gxb -fnh -uoj -uDf -iKf -jIa -bZK -eVe -vlw -iHu -wES -top -top -nkR -cqL -scs -oII -xKl -iKf -hkD -mEb -wZr -inp -ptJ +bVK +bsx +tRS +mZY +bTW +pJt +ffB +hIy +rxi +uIS +qxg +wfg +aeA +onm +dUw +fhx +mvK +vhA +pJi +vHi +blY +iiG +mjA +uZJ +mbF +mbF +rCR +eNM +tHr +bim +cie +xlm +xlm +xlm +dHX +xlm +xlm +yew +wzS +oYg +ane +qNA +fgq +rft +rft +mml +mml +rft +mml +sfm +rft +rft +hkV +uUv +khw +yjm +qII +qII +pmh +eGr +bhL +uRK +uRK +gGT +pcY +pns +ezA +rfq +klT +ygn +hAl +gFd +ppf +rDk +rDk +aGm +nik +vis +piX +hIq +ezA +oJR +vNU +vfh +xDv +pnR uYQ eSV eSV @@ -265518,92 +266067,92 @@ eVT eVT dqC dqC -cpJ -jEP -jEP -vaD -joU -hLE -joU -hCd -eBT -aJB -aJB -aJB -aJB -aJB -ftY -sxt -uXO -fDV -ydP -gRi -tkx -iwr -hoS -dMU -xzc -xzc -jzi -aud -xWn -eAT -vSx -stC -wkd -wCG -rRt -ltp -xvI -iSZ -qVF -kZh -eBJ -aTT -kvJ -wRN -fGX -rKl -ngN -fJe -lix -jkC -reV -lpP -oeX -fvr -ljL -brf -pME -keg -coC -tso -lnh -xyg -faM -aFE -umH -eZl -cjO -fFX -pAa -xVd -qWS -bkY -xbw -iuu -qUn -iAJ -jVA -nVU -kMs -lBI -iKf -bwl -hcr -biY -eet -doa +bVK +bsx +bsx +eBo +etu +xhS +etu +mtv +kUA +bsx +bsx +bsx +bsx +aYK +iea +dDu +gkq +nhe +qoR +oGc +bcV +sLw +iER +gJS +pKW +pKW +vuq +mCC +nfJ +lQY +nfZ +rrG +nOs +xuw +pRK +lLD +bbF +sod +mXO +nlj +tRI +fIo +fSY +xjz +pwX +eiX +dbG +fcC +jPL +bJG +obp +oMx +gEF +bfd +orE +pRx +inx +xTo +nDE +kkD +slV +wgp +mCs +qhk +udI +btb +lwr +mZv +koO +bNm +tGf +wwp +qBY +uQM +tiw +yjp +stz +fui +jrl +qPO +ezA +mMx +mZg +eZN +fAq +kSI uYQ eSV eSV @@ -265775,92 +266324,92 @@ ayw eVT dqC dqC -cpJ -cpJ -jEP -iFt -nBP -ohx -eXp -mdt -hNt -aJB -dSm -qhN -rgT -vBJ -hGM -gUE -iXY -wFU -fWm -fWm -xRO -qBW -vDM -chv -nPX -dZJ -vxp -wLx -fZE -lwh -gYC -stC -vnp -sRN -stC -fYH -hPf -jcq -pVa -flR -ghv -gjz -oeE -lSq -jTE -jTr -xWF -oUZ -fzc -fzc -fzc -lBK -lIa -dgZ -rrL -voo -oUU -ekp -dVJ -flr -qju -nuu -iLo -iLo -eJC -eJC -eJC -eJC -iKf -iKf -iKf -nIt -iKf -rJq -mHk -ozv -aSc -nVU -kMs -yiN -jrw -dGZ -hcr -biY -iFq -doa +bVK +bVK +bsx +cqO +oVP +xyh +kAV +qcP +bZJ +bsx +nTX +hLh +wmU +gnC +qVf +sRU +aYK +sFn +rHz +rHz +wYU +hPD +hYI +smN +iYj +uaH +arC +pIx +wKK +yec +fpA +rrG +nCO +cDG +rrG +lmo +nvK +wVR +hfb +tGl +eTJ +gbi +qkp +vaq +iBM +iZE +peI +hsQ +oIb +oIb +oIb +hMY +oYM +chl +khw +cwW +gwk +eTm +caH +nuK +bhL +nlT +uhZ +uhZ +omW +omW +omW +omW +ezA +ezA +ezA +sdK +ezA +ofw +ozK +iVG +moS +fui +jrl +tUB +tnA +jem +mZg +eZN +cji +kSI uYQ eSV eSV @@ -266033,91 +266582,91 @@ eVT dqC xel ckp -cpJ -jEP -jEP -tCG -jrS -vtp -ltW -sFU -aJB -oUs -xIr -vNZ -aJB -hAm -lqX -oJL -oJL -iSh -iSh -uQm -oJL -wLx -nyJ -aCW -eUO -fzM -wLx -joZ -eAT -kGm -stC -aOF -vOI -stC -upq -qCE -wsP -rZV -qJs -bLN -wdM -fPu -fkD -fvt -qfl -vtc -hUB -mML -mML -mML -gXI -oeX -pFX -oJJ -jlR -jlR -ljD -jlR -jlR -iLo -dQb -aOu -mPE -eJC -ani -psp -lHt -iKf -qXq -kuE -lof -iKf -tbr -fdY -rhp -rdo -nVU -kMs -fDC -jrw -lmp -hcr -rUN -oBv -iLh +bVK +bsx +bsx +dbr +fLn +qja +bcK +tqA +bsx +hrW +vix +ipi +aYK +irI +rfy +iGQ +iGQ +mHM +mHM +jaS +iGQ +pIx +bxp +luz +wik +xnR +pIx +wew +lQY +ePE +rrG +bnP +esg +rrG +lJZ +adI +vlW +hCf +qLW +hIg +fNF +eVB +iqC +tcB +naD +hDe +oyz +dIP +dIP +dIP +oVj +gEF +uUv +dgo +qch +qch +luV +qch +qch +uhZ +yja +irb +ktJ +omW +vGG +oig +fKP +ezA +khB +dhg +ejL +ezA +wUG +jWX +eGN +faY +fui +jrl +yiq +tnA +xAz +mZg +byG +bPb +ens uYQ eSV eSV @@ -266290,90 +266839,90 @@ eVT xel ckp dqC -cpJ -cpJ -jEP -jEP -jEP -jEP -uuO -jEP -aJB -evO -evO -tJj -aJB -kbC -dku -oJL -hNp -bSb -kQb -qaW -jzV -wLx -ukv -kbs -xSp -hnx -lYT -jTw -eAT -dog -stC -aOF -eSE -stC -fYH -oLz -fgH -mEn -xJR -gVq -blb -pCU -sBf -guH -kcz -nOZ -rwv -vMD -mML -dlB -cBW -oeX -oba -tPc -jlR -axR -akT -lEb -jlR -qLA -kGS -iLo -iLo -eJC -fYX -aAy -exL -fWQ -vrJ -amk -xbp -iKf -kUw -lRI -dBa -wBe -mdq -kMs -uia -iKf -oVW -euC -cBE -iLh +bVK +bVK +bsx +bsx +bsx +bsx +ygO +bsx +bsx +pjo +pjo +mQt +aYK +aJk +buY +iGQ +hAh +oqf +pbN +mHm +lvg +pIx +icB +sYY +gwm +ohE +tCa +jDJ +lQY +bZF +rrG +bnP +yfB +rrG +lmo +dps +hiD +cyq +mRV +mEG +rlf +vqO +fPE +hdo +cUo +eym +gyG +lir +dIP +aXc +rMa +gEF +tID +lZh +qch +ivk +vKO +nUS +qch +vjo +lbH +uhZ +uhZ +omW +ofY +tVF +umL +amP +dAx +hfj +oRG +ezA +pFb +gMT +lkJ +cnr +uDB +jrl +iZf +ezA +iDS +mLO +gCJ +ens pWB lEF eSV @@ -266548,88 +267097,88 @@ eVT dqC xel ckp -cpJ -cpJ -cpJ -cpJ -cpJ -drq -cpJ -nEm -nEm -nEm -aJB -aJB -plw -gdB -oJL -ylb -bSb -rGg -psk -tVy -kJF -aAB -aCW -aCW -hpZ -lYT -jTw -eAT -ttU -vDM -qbF -qbF -qbF -qbF -qbF -jmw -qUd -qUd -qUd -vBh -qUd -qUd -nvU -vdQ -rGu -gNQ -lpz -mML -lGk -cBW -fxl -vPg -rrL -cAD -mcp -skk -adL -jlR -wvz -jJq -sYh -htQ -eJC -ikk -qAi -lkO -iKf -pQl -ycH -oEA -iKf -ooh -ooh -ooh -ooh -feE -rnD -tuq -ooh -ooh -ooh -gRG +bVK +bVK +bVK +bVK +bVK +oIg +bVK +bVK +gfF +gfF +aOI +aOI +aYK +bBX +iGQ +yjf +oqf +fEE +mFi +rhU +ptv +dpd +luz +luz +ddc +tCa +jDJ +lQY +fJT +rrG +rrG +rrG +rrG +eVP +eVP +sVD +qHI +qHI +qHI +xpp +qHI +qHI +dcj +qtu +ilm +wHS +hCr +dIP +dfC +rMa +tvJ +hQx +khw +gIb +lqc +knh +sgx +qch +sVw +viY +iZq +hSb +omW +ioT +jSf +tfp +ezA +fAv +wlA +iwO +ezA +ezA +ezA +ezA +ezA +rdE +qxx +flt +ezA +ezA +ezA +pyI pWB lEF sCh @@ -266814,79 +267363,79 @@ dXk aXb mYw jdW -gpL -qJV -eqX -bOI -seO -iSh -jdH -bSb -mgJ -ncf -eln -wLx -epH -wOj -aCW -jLD -ihT -jmu -msN -tpD -gJz -qbF -pyW -iMS -vSh -nvG -oBf -qUd -vbg -jzI -giS -dRe -qUd -eMN -pre -bnp -iXK -lpz -mML -lGk -cBW -oeX -aGj -mIV -ekv -bys -skk -uqR -jlR -etx -bKX -iLo -iLo -eJC -qcW -twv -mee -iKf -xPR -xvA -nka -qEW -ooh -eYL -bnC -ruw -oLW -qJF -dbB -eeP -mis -gmg -cTY +gfF +cSv +bHl +jcO +ksO +mHM +gma +oqf +cVX +uvl +aYf +pIx +xjC +fZI +luz +ezN +vMA +wcq +mJH +mbC +sUI +eVP +tlJ +aFZ +xEl +aJe +fDJ +qHI +tiz +xkk +pla +bmD +qHI +ibu +adQ +glG +xxy +hCr +dIP +dfC +rMa +gEF +pWr +jmE +cYo +vzz +knh +qWO +qch +wKw +aTy +uhZ +uhZ +omW +mgf +iAp +pPK +ezA +wwj +wuf +aSv +dji +ezA +fba +lPC +sIb +dbx +obV +maF +aFi +jCL +fkV +aAI uYQ sCh sCh @@ -267071,79 +267620,79 @@ bLQ dbd hoE hMK -wUt -vDC -bdG -plw -krj -oJL -cyV -bSb -oim -kgh -kCJ -wLx -sMD -aCW -xSp -eoC -lYT -jTw -eAT -aCW -duH -qbF -cbR -ddo -qdv -qAf -mbb -qUd -jZf -ija -oAR -ija -dgS -cFO -jTd -bnp -jxn -lpz -mML -piR -tmN -klq -bIF -hVN -jlR -pJC -ahS -vfB -jlR -xhc -glN -wRK -jKl -eJC -cYr -rcw -mtr -iKf -mNQ -klQ -hsN -yla -ooh -hSO -nlI -tPq -nlI -nWn -nlI -gTP -xiP -wKo -cTY +wRi +hxW +ymc +aYK +pBU +iGQ +fAl +oqf +lnb +sVV +goj +pIx +kes +luz +gwm +tin +tCa +jDJ +lQY +aOw +iFK +eVP +dkp +vqm +egG +eKK +sIs +qHI +wee +mqS +wlP +mqS +iqS +bxt +wWM +glG +fQi +hCr +dIP +cFN +bGP +vIc +hvx +ibs +qch +wQS +qeU +udL +qch +ndN +hHO +bIY +cWr +omW +cCI +mwp +kFf +ezA +aQG +qAM +ezP +nnQ +ezA +gNj +cEg +aIv +cEg +ccq +cEg +nEO +vwE +tuN +aAI tGt dbd hoE @@ -267328,81 +267877,81 @@ bLQ cKu uYQ qIa -gpL -xJf -wIj -veV -qXo -oJL -cKQ -goA -ajE -uZt -sBD -wLx -wHp -lkP -sjc -naz -lYT -jTw -kcq -ylO -kKA -qbF -gPa -lsv -gTg -wJZ -njq -qUd -fHi -ija -uph -rFr -qUd -fRr -vhz -bnp -fBp -lpz -mML -lGk -cBW -oeX -aGj -ciK -jlR -jlR -kOA -jlR -jlR -iLo -vau -iLo -iLo -eJC -eJC -nlA -eJC -iKf -dsW -fgU -iKf -iKf -ooh -tqM -nlI -cbC -jBi -uHO -fTp -fdK -rCA -ooh -gRG -qIA -qeA +gfF +tYn +lKE +iYf +oxl +iGQ +uGs +fWk +ccz +wRR +uxj +pIx +idg +fIE +bMU +mzZ +tCa +jDJ +uef +huH +hom +eVP +voS +lFm +gVC +qjR +yks +qHI +liO +mqS +rrg +lpJ +qHI +jnn +ibX +glG +bJJ +hCr +dIP +dfC +rMa +dvo +uFB +orJ +qch +qch +pjV +qch +qch +uhZ +raj +uhZ +uhZ +omW +omW +kIo +omW +ezA +ktq +uiZ +ezA +ezA +ezA +wno +cEg +jfO +dOW +slE +hzw +ajM +evr +wpX +fdi +tMk +oYX uYQ eSV eSV @@ -267585,81 +268134,81 @@ bLQ cKu uYQ qIa -gpL -plw -plw -plw -ujx -oJL -oJL -qPt -iSh -oJL -oJL -wLx -gXH -tNd -tPZ -tPZ -wLx -tAG -tNk -oAv -wcQ -qbF -jzW -giz -sqI -kBL -wQe -qUd -psF -duX -udh -xen -qUd -lSK -dgc -vGK -ucL -lpz -mML -tNe -cBW -oSe -akX -rrL -kdm -bgd -cGp -mSA -wnM -eOF -wlx -wtG -uio -vhf -rhK -rSq -xGT -uOl -sZB -cRA -vbB -fkq -yeR -pCa -dBx -xvx -qLy -rfk -rfk -rfk -sgy -wEF -tvU -vUm -jDz +gfF +aOI +aOI +aYK +fnR +iGQ +iGQ +hzb +mHM +iGQ +iGQ +pIx +xGP +vsn +hPH +hPH +pIx +gHS +cPu +nCD +whQ +eVP +vPn +xQO +etg +fSk +ndE +qHI +gAg +jms +pKO +lYB +qHI +jKx +gtT +wwV +goh +hCr +dIP +nog +rMa +tTp +rsJ +gst +odk +ekj +hHj +nLS +xvj +leo +xWs +fvA +kSg +dfb +bgH +vki +lrR +jgz +cRC +uEl +uHo +sud +qMO +rYV +kfv +lYL +sgW +wrG +wrG +wrG +jyR +qDX +sVI +sbo +hBl uYQ eSV eSV @@ -267842,81 +268391,81 @@ bLQ cKu uYQ qIa -tbt -txE -cES -suy -sqD -ptL -fgZ -mDe -ptL -ouz -aNE -cOs -brV -noC -brV -brV -wZy -ejy -kcq -mch -dqO -qbF -qbF -yfs -qbF -dQE -qbF -qUd -qUd -iEP -iEP -qUd -qUd -tmN -otc -tmN -tmN -lvn -aoO -ewY -tmN -yio -wPB -rrL -gvi -igT -xWA -xWA -mJH -xWA -wxR -kYs -edA -edA -ets -bZV -dXg -dXg -dXg -bcW -ibE -qBj -ooh -fyZ -fGZ -lcc -jtu -rhf -cZI -rhf -ncB -srV -hME -hbE -cnS +kMQ +xkK +egn +jxA +sRp +wUd +xDT +bVJ +wUd +rBX +vZT +iNu +jQO +iMP +jQO +jQO +xcb +ika +uef +eJH +xpO +eVP +eVP +bSU +eVP +qgS +eVP +qHI +qHI +lIq +lIq +qHI +qHI +bGP +pUG +bGP +bGP +nsO +aWE +sqB +bGP +wYa +mNo +gst +jVS +gLY +sfZ +sfZ +rqL +sfZ +rqJ +vak +wqh +wqh +olR +umo +sHq +sHq +sHq +jhs +hqY +vZn +aXR +hwt +mnH +mfj +nWs +fEk +jei +fEk +uXt +frt +sRD +chh +eMU uYQ eSV eSV @@ -268099,81 +268648,81 @@ bLQ hCm lEF hMK -bZx -weE -oQT -lmM -rVC -rVC -rVC -rVC -rVC -lCT -kYM -bie -fyo -csG -vfz -tdZ -jIz -fyo -uoY -aCW -ttU -pPz -poj -qXd -put -jwM -eZw -jwM -vbc -dHz -ajW -qny -qwy -tOj -dTq -dTq -fVR -sww -mwa -mwa -mwa -lsl -trP -xAB -jeF -fTL -hbC -idI -ygm -idI -paT -wAf -qBD -iXQ -tSL -mvn -rae -rae -hgI -iHt -wJx -mXc -aUw -xkB -nKC -nlI -dgf -xEz -xEz -xEz -kqz -pem -rvF -xmp -jDz +kcs +rkv +lfK +xze +tUK +tUK +tUK +tUK +tUK +cNB +cmn +oMy +rMj +jTY +djD +lXl +pIO +rMj +baj +aOw +fJT +fwY +mlB +oYK +wvd +pWU +yix +pWU +wad +rmH +vBg +nfp +xTB +vfA +xoN +xoN +xak +buC +xoN +xoN +xoN +iKu +xSg +hQF +hLi +hqK +erg +aip +cNu +aip +qOG +xZi +jnL +aaD +fhu +pms +ewU +ewU +ttf +cgh +oyG +iGf +uyx +arc +fTn +cEg +ubH +hzZ +hzZ +hzZ +heU +bJm +eGV +gWS +hBl uYQ eSV eSV @@ -268356,81 +268905,81 @@ uwb qfo gVP qIa -tbt -bIV -kMd -xVR -wiR -qnx -qnx -rJs -pjG -jql -loY -acd -aCW -hMN -aCW -aCW -vGS -aCW -aCW -aCW -ttU -sLM -poj -rwj -wJO -sfW -ycX -sfW -dhu -xGE -auW -pMR -wWs -xGE -gqO -maw -eCd -alw -qvn -sCC -kti -bDy -jso -rrL -gvi -igT -hAr -xWA -miG -xWA -jAO -kYs -kON -pfU -uIG -lqB -lqB -lqB -lqB -jeY -jDV -xsK -ooh -lsg -hhq -qfE -hgQ -iIM -mhO -kwp -xrQ -ooh -ooh -ooh -gRG +kMQ +rXV +pYs +hdf +ahh +sXS +sXS +sGT +buV +ebe +hOt +tnv +aOw +vnn +aOw +aOw +nFK +aOw +aOw +aOw +fJT +gvf +mlB +fxO +jRz +eMD +vKv +eMD +hCo +dvo +njU +wKJ +aRO +dvo +uDp +sjp +gMD +lsf +dsj +xqD +wVd +hEw +bbi +gst +jVS +gLY +jCz +sfZ +gzZ +sfZ +nZT +vak +euF +dEC +oOp +jir +jir +jir +jir +gzp +blM +dDz +aXR +sNF +ozU +rzz +wCz +dYM +nQT +oYw +fPQ +wpX +wpX +wpX +fdi uYQ eSV eSV @@ -268613,81 +269162,81 @@ bLQ dbd hoE hMK -jdV -llT -lig -pkU -bQD -jzF -fuS -vhR -ipT -hFH -ykM -tur -nmA -lpU -nAb -hEo -rhX -fxV -vPA -vPA -jRQ -lcq -poj -biV -wJO -sfW -ycX -sfW -dhu -xGE -sss -pMR -wWs -ePj -xZR -jna -nSy -hwH -rbI -hEp -lFh -bqs -lFh -nhp -kdm -pqJ -qmk -usz -usz -kWh -gcr -wtG -ltT -nnz -gob -kRk -uue -kRk -jbs -fAZ -wJx -uZc -ooh -oGu -suX -osS -wum -vxl -fEe -lvB -toy -wEF -bny -bQQ -jDz +qms +pLB +htX +hOj +sir +fTi +xVv +vXl +kQA +rIL +wVZ +jcm +esP +ecq +scR +hFP +bLw +pjY +lrx +lrx +oBN +nXw +mlB +jkX +jRz +eMD +vKv +eMD +hCo +dvo +rBm +wKJ +aRO +seI +pVE +rZN +uZQ +nbV +nNH +hHL +snv +iWE +snv +sGz +odk +lHG +alN +aTY +aTY +bxX +lla +fvA +sXC +gnU +tOT +bkg +fAj +bkg +mpf +avF +oyG +fuu +aXR +iFh +vJj +utR +dfV +naQ +sMn +clz +bZE +qDX +tDN +hCt +hBl uYQ eSV eSV @@ -268870,81 +269419,81 @@ bLQ cKu uYQ qIa -tbt -vYT -kMd -aUv -wHk -vjK -dxw -mSG -jay -jlY -ykM -egs -wLx -wcQ -wLx -wcQ -wLx -wLx -aVe -xpF -wcQ -vDM -poj -rwj -pON -erN -hto -erN -edz -xGE -auW -tUc -lHh -xGE -tdo -cBm -fID -fID -kJh -fVb -kJh -fID -fID -dLA -dLA -bok -jUU -bok -dLA -dLA -bSl -bSl -lcv -kOC -bSl -cpI -cpI -cpI -cpI -rqK -wJx -mXc -xnd -enH -jFu -hmv -hTi -hTi -hmv -tyF -ggt -srV -hME -hbE -cnS +kMQ +qEp +pYs +cyY +tqD +qGE +wIl +hlu +vWw +fXf +wVZ +khD +wVZ +whQ +wVZ +whQ +wVZ +wVZ +fiu +mjW +whQ +stI +mlB +fxO +frH +acv +rkO +acv +nyy +dvo +njU +rro +jpz +dvo +jhi +pZM +qZz +qZz +vGI +rEP +vGI +qZz +qZz +xZE +xZE +adB +oWL +adB +xZE +xZE +xZE +jXA +xSh +wkr +jXA +nBM +nBM +nBM +nBM +ayp +oyG +iGf +coW +gtB +aPf +uPH +tzf +tzf +uPH +icu +lYu +frt +sRD +chh +eMU uYQ eSV eSV @@ -269127,81 +269676,81 @@ bLQ cKu uYQ qIa -tbt -dhw -kSx -ptG -wHk -wHk -wjJ -mSG -jay -xed -wXo -kQK +kMQ +azF +wEZ +hyR +tqD +tqD +uGW +hlu +vWw +aDa +whQ +xEU bLv bLv bLv bLv bLv -efb -yeh -xpv -put -nsu -poj -hIY -xRt -seQ -dTq -dTq -dTq -pMj -kli -dTq -dTq -pMj -tmE -oiJ -fID -hpk -rMC -dmy -qSZ -uOe -fID -ewB -tcE -bLe -kTq -wbi -wHv -igc -bSl -jYO -dGQ -xqC -eFY -cpI -cBX -pdp -nKI -oxH -keM -nTr -oLN -pLR -eBr -qNN -qNN -qNN -tXl -bUc -kAh -pem -igQ -lmg -jDz +ecg +gdq +tdw +wvd +ulw +mlB +wjj +buC +bgW +xoN +xoN +xoN +iKu +upa +xoN +xoN +iKu +ccb +koS +qZz +dOY +wIY +dCb +mok +nmc +qZz +iTN +tyQ +peH +cqV +fuN +bel +pTl +xZE +rUv +xdL +lLw +osD +nBM +ukT +eSe +jHq +tBi +dDN +glr +jZh +sxf +aLr +psQ +psQ +psQ +ydd +pxK +apr +bJm +ugq +nea +hBl uYQ eSV eSV @@ -269384,81 +269933,81 @@ bLQ cKu lkm qIa -tbt -fcq -ftk -aUv -ihW -wHk -dxw -mSG -jay -jlY -wXo -kiD +kMQ +seG +tBC +cyY +wEA +tqD +wIl +hlu +vWw +fXf +whQ +bAY bLv bLv bLv bLv bLv -efb -oaE -sss -pMR -jjy -nNZ -jbK -uuD -wJA -dIX -dIX -dIX -dIX -dIX -dIX -dIX -wJA -mas -xPN -kJh -tcn -rNQ -omt -cLZ -tcn -xEb -aZp -nCf -pty -oLh -jMk -jMk -rJE -uke -dcJ -myI -dyh -dcJ -nKI -lZa -sem -lxg -mCa -fee -xqh -fae -hEG -txd -cJn -pqE -nsT -wav -wav -gIJ -wav -rZa -bQB -wcZ +ecg +rkL +rBm +wKJ +aQv +kBx +ucf +git +rkb +tuQ +tuQ +tuQ +tuQ +tuQ +tuQ +tuQ +rkb +oSl +mQb +vGI +pfa +phu +iur +exs +pfa +oPk +hHf +mZW +dec +ukc +lPo +lPo +wRC +adB +ayt +tdJ +qBx +ayt +jHq +xxc +pDY +vpE +mzK +opW +vnx +wBI +okc +arx +qPe +rSm +oUb +wxI +wxI +sIU +wxI +pjB +mON +aUz uYQ eSV eSV @@ -269641,79 +270190,79 @@ bLQ bLQ bLQ wpb -bZx -eua -fTP -pkU -ihW -wHk -wHk -bSB -baR -ykM -ykM -kiD +kcs +mij +jrN +hOj +wEA +ujO +ujO +wiO +vhj +uVH +uVH +bAY bLv bLv bLv bLv bLv -efb -oaE -sGb -pON -oZi -poj -gnV -qcp -jna -nKf -nKf -nKf -nKf -nKf -nKf -nKf -jKr -nNq -gEi -kJh -tcn -rNQ -lRz -cLZ -lgv -xEb -wLJ -xoa -hFs -vuF -tzG -oal -gSp -uke -dcJ -yeX -sPj -dcJ -nKI -lZa -rIk -cpI -nTk -fot -cpI -cpI -eeA -jBV -eVd -vAQ -wpe -acK -raE -hbx -dJf -rZa +ecg +rkL +gYt +frH +gQf +mlB +uDY +abz +rZN +snv +snv +snv +snv +snv +snv +snv +gHE +vJd +gst +vGI +pfa +phu +clw +exs +ltG +oPk +kDb +sgD +cGM +cQj +bsD +dTh +nCe +adB +ayt +wNz +gzY +ayt +jHq +xxc +lQN +nBM +nil +yiz +nBM +nBM +mfS +bmW +qVN +rHA +fiE +nNN +wPv +idk +bof +pjB pWB hCm lEF @@ -269898,79 +270447,79 @@ jil vcj mYw crs -tbt -bIV -cmC -aUv -wHk -wHk -mhr -bpg -rwf -mBU -wXo -qyq +kMQ +rXV +hGq +cyY +ujO +ujO +qsP +wNP +mOJ +owG +kQe +xJF bLv bLv bLv bLv bLv -efb -oaE -llZ -tMA -eFm -hYz -gGV -fyt -gEi -aUb -lOp -hrx -prj -aUb -lOp -hrx -xGE -akU -gEi -fID -ktM -pFc -goC -bsJ -eeR -fID -xtj -dTn -nSh -apX -pVH -kRv -mwh -bSl -upJ -cwL -jVp -sMy -cpI -spa -mDF -qER -tlA -crr -grS -cpI -fDB -txd -woe -xBP -dXY -eld -oRY -sXV -dQv -rZa +ecg +rkL +jKY +xYh +rsN +pdR +oax +hjw +gst +ufZ +kBh +wVn +jGO +ufZ +kBh +wVn +dvo +ewE +gst +qZz +wwY +dIj +wRO +fNI +wyT +qZz +qpq +uSs +fBB +aaj +dit +qOh +jDE +xZE +qyH +pgH +sRt +rxh +nBM +tkE +fvJ +fCM +ybg +vOF +unO +nBM +pLk +arx +orZ +wfS +puI +iiw +meI +lVj +gVF +pjB uYQ sCh sCh @@ -270143,91 +270692,91 @@ eSV eSV eSV eSV -orw -orw -orw -orw -orw -orw -orw -vaW -tix -vaW -vaW -vaW -vaW -aVV -lig -pkU -wHk -bdc -lET -kpg -ufa -tim -wXo -kiD +dxi +dxi +dxi +dxi +dxi +dxi +dxi +dxi +tLu +tsJ +tsJ +tsJ +tsJ +pOK +htX +hOj +ujO +pvt +eey +wbY +xxH +mhX +kQe +bAY bLv bLv bLv bLv bLv -efb -upH -nKf -nKf -jPn -jIX -xGE -rEg -thB -gVG -wZK -etw -etw -etw -bas -eKC -vQP -sZQ -hpE -fID -hWU -xpr -pHm -mZX -fID -fID -sQy -xWD -cfo -lzs -sgt -kRv -lpF -bSl -mWS -cqS -fNl -rrJ -cpI -pSh -aWa -bEY -tOs -not -cRn -jta -vez -uFX -vDo -dTV -uqM -tWx -sYG -fsp -xNi -phE +ecg +bur +snv +snv +fkE +oUY +dvo +jdL +jrj +jhy +vpB +rZf +rZf +rZf +mvU +sau +fNg +hkQ +voU +qZz +tPm +stD +lFN +cwS +qZz +qZz +ieF +gmA +xoe +rZi +tUZ +qOh +lqu +xZE +xZp +jTV +vgC +lxN +nBM +tEa +sOg +mhq +mUm +raD +aXw +cSK +ohK +fWj +dfL +sYu +iXD +jis +ixL +cfl +gtv +woK tGt hoE sCh @@ -270399,93 +270948,93 @@ eSV eSV eSV eSV -orw -orw -sjO -uzh -qdA -mBb -yil -uFH -jxW -wUy -jxW -uFZ -sNf -jxW -fBf -lig -dVZ -wHk -oSy -sTM -oxU -qUr -tgF -ykM -vaJ -led -rBS -rBS -rBS -rBS -rBS -rBS -rBS -cuZ -cuZ -rBS -jYk -rEg -thB -koc -fSn -kJy -jCH -kJy -uLq -iYO -vQP -sZQ -gEi -kJh -etv -lbj -nKV -abl -lNC -fID -fZo -uZE -rdk -ujH -swA -jZD -rJB -bSl -gNR -pDC -bEb -mEy -nKI -lZa -iHp -bEY -tOs -muS -gjV -cpI -kuR -nHw -mma -kwi -abg -lWs -sYG -khs -xNi -phE -phE +dxi +dxi +xnx +dOz +bjx +hHs +iiS +wHC +gmq +tHh +deu +smG +eEr +deu +nHR +htX +gWo +ujO +cjP +tCx +bIr +kmh +ntY +uVH +aNh +tAI +nqF +nqF +nqF +nqF +nqF +nqF +nqF +dXW +dXW +nqF +fOI +jdL +jrj +fru +teh +jvr +taI +jvr +xOt +gmk +fNg +hkQ +gst +vGI +arS +geR +raV +tXC +dFf +qZz +gAW +efc +iKQ +esq +hHH +cga +oaM +xZE +sFD +naF +oya +iJH +jHq +xxc +lES +mhq +mUm +etX +qIZ +nBM +opC +qvh +lCn +qkF +uXU +cBn +ixL +cCe +gtv +woK +woK tGt hoE eSV @@ -270656,94 +271205,94 @@ eSV eSV eSV eSV -orw -dao -hBO -nAK -mhl -dLj -nuC -pMl -jxW -qgk -jxW -cJs -rNi -gJG -rpm -itk -uix -gRJ -hcH -pJd -cof -isQ -uFF -ykM -uTo -raf -rBS -eXs -ngo -nFk -woT -izT -hZr -wsh -kcn -eWb -nDk -rEg -thB -vNa -owH -lPG -iEA -lPG -iKB -jYj -vQP -sZQ -gEi -kJh -oMY -mSP -ewh -uID -fjs -fID -sPC -ngR -fJl -dGa -lkk -jmj -fvu -bSl -xbU -pDC -fAA -wNc -nKI -lZa -vtl -whB -tOs -eLd -bse -owo -lMF -cPQ -csO -oTU -xaw -lwy -sYG -vzW -xNi -kmO -phE -phE +dxi +eex +pvo +jBH +eBI +mud +tCq +xON +gmq +azu +deu +nVf +fiR +jvP +iSH +wmn +gZY +rVh +usd +kZp +bOf +lhn +fHZ +uVH +mVh +kFV +nqF +vdr +hEu +rsC +dAW +bsR +ocE +oFD +sJn +rTg +vsP +jdL +jrj +uXG +lft +dBz +cCU +dBz +jWS +hTg +fNg +hkQ +gst +vGI +apz +mXi +rLu +nYN +ryP +qZz +vhF +yaa +tpV +hpR +uOw +vTR +gXl +xZE +hcB +naF +ecP +ptC +jHq +xxc +sUT +hdP +mUm +bLy +iws +mOe +mOk +lgM +iPf +qAp +ybE +xUc +ixL +dnv +gtv +qWy +woK +woK uYQ eSV eSV @@ -270913,94 +271462,94 @@ eSV eSV eSV eSV -orw -kNa -nuC -nuC -jwe -dLj -dbX -ylH -gNH -xOk -dmb -mvf -bhU -jxW -jGe -oKK -vta -wHk -cAW -dzI -bMx -oZZ -erM -ykM -tOe -jyS -rBS -aGe -gxs -gxs -xAq -lmk -pDH -bpS -gft -eWb -nDk -rEg -gEi -iWw -ulB -bWR -mtS -roD -iHP -aSD -xGE -cTB -auG -fID -fID -fID -fID -krP -fID -fID -dLA -dLA -dLA -dLA -mwS -lmV -bqf -bSl -lNv -jFx -vkf -vDi -nKI -eMc -snV -qPK -vxy -wkt -scF -cqz -ukU -vsb -dKs -xem -dXY -bqN -oRY -mrh -xNi -xaw -cjw -phE +dxi +oKy +tCq +tCq +cLl +mud +tav +cFu +iDH +ohs +eus +sEs +bTq +deu +pNO +ezx +cEt +ujO +gYG +tOd +sju +iQU +kKn +uVH +khN +grR +nqF +svl +hsm +hsm +jQt +fNM +tSY +vxO +lVC +rTg +vsP +jdL +gst +dFW +sVT +jJa +sBZ +ecr +iEK +guh +dvo +sOs +qaF +qZz +qZz +qZz +qZz +wZo +qZz +qZz +xZE +xZE +xZE +xZE +ecy +lEE +xNh +xZE +grb +iib +xly +oau +jHq +qHD +vFN +oiX +jjD +irp +uyv +obO +nOI +dVj +wRv +lyR +puI +wiH +meI +bMm +gtv +ybE +oas +woK uYQ eSV eSV @@ -271170,94 +271719,94 @@ eSV eSV eSV eSV -orw -sbf -nuC -nuC -jwe -ndS -bxF -svG -ega -ghr -vAv -uah -oOC -wLs -wLs -rec -wLs -ykM -uNp -kwl -fUu -gIP -ejt -ykM -vfu -eox -rBS -xqa -aSA -aSA -aSA -ckz -hHK -wMn -bQk -eWb -nDk -cqk -thB -fZG -owH -lPG -wPd -lPG -iKB -jYj -vQP -vTN -wNb -eMo -eVC -xfq -kkx -yjr -vcI -wNq -wNq -wNq -pFY -dLA -dLA -osj -dLA -bSl -bSl -kGy -bSl -bSl -cpI -aAS -vpV -hjN -tye -spf -jIW -wav -sam -kcD -xNi -rEZ -fUo -jMa -wyz -bCP -xnD -nVV -lIV -rZa +dxi +gAG +tCq +tCq +cLl +yeu +wFv +wGN +yeY +eVK +xgw +rqx +jYP +deu +dmZ +ddm +dmZ +uVH +pup +tKx +acL +wpS +rly +uVH +oEJ +sNz +nqF +siM +tsf +tsf +tsf +gWb +qaO +wck +ddE +rTg +vsP +kaK +jrj +cXG +lft +dBz +djg +dBz +jWS +hTg +fNg +odf +edn +xHI +uWA +bFt +hPw +dWE +twp +rJN +rJN +rJN +gOI +xZE +xZE +tNF +xZE +xZE +jXA +ibR +jXA +jXA +nBM +aCb +iqH +kFm +klW +jIk +dPS +nBM +hel +eQW +gtv +bAq +aCa +rak +nTU +xpz +vkz +cBO +xJg +pjB uYQ eSV eSV @@ -271427,55 +271976,55 @@ eSV eSV eSV eSV -orw -mlC -nuC -nuC -fpL -oIG -jwe -wIv -gNH -rvk -mDk -pgp -obT -wLs -reO -rTu -qkt -ykM -ykM -ykM -ykM -vac -skj -ykM -ryI -eox -rBS -ksb -wMp -iqT -foo -cGs -wij -rBK -bbG -rBS -sFq -rEg -thB -sgc -eNh -lfC -imq -lfC -uJv -jYj -vQP -cqk -tqC +dxi +sUV +tCq +tCq +aEh +aFc +cLl +mex +iDH +bpX +qoz +lld +rZs +vkw +jFV +uxg +aDr +uVH +uVH +uVH +uVH +xAm +gZW +uVH +qKD +sNz +nqF +vKt +hMi +vxm +dkM +eoP +ruW +fWh +vIE +nqF +kpl +jdL +jrj +aJs +qaG +kBK +vnO +kBK +nir +hTg +fNg +ovn +agC icP icP icP @@ -271485,36 +272034,36 @@ icP uIl efg efg -sbR -wNq -wNq -wNq -qrf -wNq -wNq -wNq -pFY -ldg -oFV -mxF -gxw -lZa -lZa -spf -smO -wav -vOR -sdF -sks -eXN -nvz -iKY -ccF -xNi -ujo -ivg -obW -rZa +nvA +rJN +rJN +rJN +wxG +rJN +rJN +rJN +gOI +ukk +gVM +pdj +lpI +xxc +xxc +jIk +vsL +nBM +pRB +fro +vYj +nwW +fPR +sAQ +eat +gtv +jAJ +dVQ +grt +pjB uYQ eSV eSV @@ -271684,55 +272233,55 @@ eSV eSV eSV eSV -orw -mlC -nuC -bpx -xoi -kVN -qnP -kpw -gNH -alJ -lgt -dsZ -rNB -vqd -eXj -che -pRD -sGA -dDe -xpT -ykM -ogO -ykM -ykM -xBl -eox -rBS -uZu -jcU -uZn -nod -unD -xUZ -kYu -iwI -kKq -cSP -rZy -thB -poj -cWw -frj -frj -frj -lDf -poj -vQP -cqk -gEi +dxi +sUV +tCq +vwy +jKH +itu +mDn +sSd +iDH +fCJ +shh +xnE +bzP +bmq +emu +vXy +fDq +lCY +fiX +lar +uVH +cAB +uVH +uVH +eIn +sNz +nqF +eIj +lMD +ade +jXt +pCj +xaM +nRI +hbe +tjO +rzh +fYR +jrj +mlB +uan +hIS +hIS +hIS +rRV +mlB +fNg +ovn +gst glY qIo dyf @@ -271741,37 +272290,37 @@ mEq icP bZb aAP -aZM -aZM -aZM -aZM -aZM -aZM -aZM -aZM -wlM -pSr -nXl -cpI -pYH -fpa -lZa -lZa -spf -lZa -wav -pRQ -gTp -ffT -aGD -aGD -aGD -aGD -jza -aGD -aGD -aGD -nBO +aoE +aoE +aoE +aoE +aoE +aoE +aoE +aoE +cOf +yfn +obQ +nBM +vjP +tPD +xxc +xxc +jIk +xxc +nBM +dfv +vco +hkY +eby +eby +eby +eby +vLp +eby +eby +eby +aEW uYQ eSV eSV @@ -271941,55 +272490,55 @@ eSV eSV eSV eSV -qAU -odF -odF -odF -odF -odF -odF -odF -odF -odF -odF -odF -odF -wLs -saZ -lbt -evP -eNl -wLs -oEm -lDi -pwH -pwH -yfE -uJW -etN -htB -sBn -kKU -kKU -kKU -oFP -xzF -jEZ -jWu -rBS -tBf -pVi -kli -kZg -kZg -kZg -dTq -kZg -kZg -kZg -pMj -wQc -gEi +dxi +gmq +gmq +gmq +gmq +gmq +gmq +gmq +gmq +deu +deu +deu +deu +vkw +pQf +shr +czG +wOf +vkw +uLJ +gcb +gxe +gxe +fHU +fDY +wUj +wsv +cgk +lPi +lPi +lPi +afs +cAl +eLM +xoG +nqF +oRL +ktd +upa +eaw +eaw +eaw +xoN +eaw +eaw +eaw +iKu +uFB +gst glY aVS hab @@ -271998,37 +272547,37 @@ gAF rWj nhV eFk -aZM -gto -jyl -dMn -msr -ofg -nVq -aZM -aZM -pSr -sFf -cpI -pYH -lQk -lZa -lZa -jPo -jbE -daR -daR -daR -iqm -fPL -lQs -iKV -aVM -nrW -gWh -dVf -bbJ -xHH +aoE +yeV +wrq +dnC +kCp +oGh +kwI +aoE +aoE +yfn +leN +nBM +vjP +vsa +xxc +xxc +vnZ +gZC +wkW +aTi +aTi +jos +nTu +peU +sHi +nMi +tpS +akh +ivX +bab +xUt uYQ eSV eSV @@ -272198,55 +272747,55 @@ eSV eSV eSV eSV -qAU -odF -odF -jKq -qxJ -ptc -bXf -rwM -hPj -eZq -bRE -hKs -lUI -wLs -alm -eKO -bLt -dCS -wLs -qzq -wWl -pws -pws -pws -pws -pws -pws -pws -rBS -sPx -sdu -jXe -qFM -uYO -bkG -ivx -kHy -wiM -ele -rkV -jnA -rkV -rkV -jnA -jnA -eYR -ggs -xGx -keo +dST +sPz +sPz +eTI +roi +rkp +evT +qpX +idO +ekk +rHM +exP +hNL +vkw +yfO +deX +uMu +hmK +vkw +opI +ylV +vwP +vwP +vwP +vwP +vwP +vwP +vwP +vwP +vSv +qVu +snQ +bWF +vQS +uih +oxs +iZV +mDC +lTD +bCW +iVl +bCW +bCW +iVl +hgg +uPJ +uOm +pgr +muw ukN ldf uJI @@ -272255,37 +272804,37 @@ uKZ jXr tOG rhl -aZM -hkm -hAq -vWt -kig -lvM -mjH -rYs -aZM -pSr -ksS -cpI -dds -hNk -krn -dwg -hNk -nou -vzy -qEc -fll -mjQ -fPL -kph -pxl -qnM -pxl -pxl -uMF -hjP -hjP +aoE +eYO +trW +cpr +ocb +uTU +kUt +btg +aoE +yfn +kmr +nBM +whd +dmj +dMr +aPr +dmj +gPh +wkW +gjJ +gdj +nsj +nTu +hDC +wLq +iCy +wLq +wLq +fKe +cwg +cwg uYQ eSV eSV @@ -272454,56 +273003,56 @@ eSV eSV eSV eSV -qAU -qAU -odF -odF -alF -fPp -edu -bkI -bBj -rNt -qVU -vxK -rQx -xDH -qlk -kDY -fVN -iLr -dCS -wLs -xeR -bsk -pws -kgz -whW -gQW -oYV -gFw -lSb -bHe -jdl -aSA -jXe -uur -uYO -jDl -eWb -qzr -nKA -pfk -xTi -nKf -nKf -nKf -xas -nKf -bqk -bNf -prw -eFi +dST +dST +sPz +sPz +wJv +pRA +sVs +pGf +aKG +vds +gcv +bfS +rfx +czv +tiK +cHC +gbr +sBr +hmK +vkw +jOO +mjY +vwP +uLt +tha +cpq +cHw +eJK +axy +fSg +vjB +tsf +snQ +kzh +vQS +hGK +rTg +tJm +xyy +oHL +mXj +snv +snv +snv +ldj +foV +sxp +rnq +gsi +eAj glY oNK wSW @@ -272512,36 +273061,36 @@ lHb rWj iTt pHq -aZM -lAJ -feO -feO -bfb -jsS -hAq -lLM -aZM -pSr -dhs -cpI -gRY -hNk -hNk -hNk -hNk -hNk -vbn -sLc -cUB -aOs -fPL -bRt -mCf -bae -pxl -uZh -hjP -hjP +aoE +tiQ +wBl +wBl +ciH +pSL +trW +qGC +aoE +yfn +hgy +nBM +pmx +dmj +dmj +dmj +dmj +dmj +kFE +tIC +iRI +iyt +nTu +gSC +xHC +tCZ +wLq +lps +cwg +cwg pWB lEF eSV @@ -272711,56 +273260,56 @@ eSV eSV eSV eSV -qAU -odF -odF -ngC -sYp -say -fcN -say -sJQ -xCx -sfY -nqD -dTP -xvV -wLs -vEi -yjw -moU -ehO -wLs -xeR -vkd -pws -niq -wAc -pwl -uzs -uzs -gBf -bHe -nJr -oIv -jXe -fug -cJf -wIu -rBS -ktK -uox -rmQ -rmQ -ilW -ilW -ilW -rmQ -jIX -dqc -poj -poj -poj +dST +sPz +sPz +lHA +iYR +aol +ebG +aol +lhg +edk +qyo +wCp +rxU +mQG +vkw +nKN +bTV +dGU +fHT +vkw +jOO +mfr +vwP +ycF +cXf +cwx +rRA +rRA +xYr +fSg +xmj +nMC +snQ +gXn +urn +oGo +nqF +wae +iWM +oJt +oJt +tQt +tQt +tQt +oJt +fQV +eXP +fao +fao +fao mXT kAb gbA @@ -272769,35 +273318,35 @@ oTa mXT pCm uuj -aZM -krw -bHt -frK -bHt -ojE -pHW -ciz -aZM -lFt -lZJ -cpI -aOk -iGa -xjw -ava -hNk -xjw -vzy -cEC -eMj -xJw -kyf -uzy -pQN -wuL -nij -hjP -hjP +aoE +hqG +nQV +ioo +nQV +sCr +rTz +lPu +aoE +eGg +jBX +nBM +wlC +mvw +rWR +mLp +dmj +rWR +wkW +ykS +uYs +ueS +ttq +wlO +mce +fQt +pPw +cwg +cwg pWB lEF eSV @@ -272968,56 +273517,56 @@ eSV eSV eSV eSV -qAU -odF -ioc -rwF -hfk -phd -aNX -phd -cXO -rwF -kjn -vbM -hzM -oHK -wLs -wLs -wLs -oeA -wLs -wLs -xeR -xGu -pws -ixD -xmS -kTU -qhf -mzu -hYN -bHe -wNR -are -wQK -fug -fug -uYO -eWb -pgy -tqD -rmQ -lgs -jwJ -cuV -tsg -rmQ -eRj -fnc -upp -qLd -lJq +dST +sPz +lPX +igI +cIJ +iOC +xEs +iOC +gYW +igI +bIE +dyE +bio +fsE +ovm +ovm +ovm +jdX +ovm +ovm +jOO +ino +vwP +cRG +ewd +nIf +jXY +psZ +akN +fSg +fTt +psz +eck +gXn +gXn +vQS +rTg +fZW +roB +oJt +xaR +koT +szB +jLb +oJt +wcO +dlh +nFq +eZH +usa mXT fKj rMI @@ -273026,34 +273575,34 @@ xOG frB gMd yhc -aZM -ixg -mVy -mVy -mVy -mVy -sjg -aZM -aZM -hgM -pzN -vzy -fpx -pze -vyf -fpx -qes -qcE -fpx -qbA -xzw -qbA -xHH -xHH -njT -njT -njT -hjP +aoE +ijR +wGl +wGl +wGl +wGl +aTh +aoE +aoE +ieJ +xCs +wkW +tOE +pyR +mgA +tOE +vjn +tCu +tOE +bFg +hEF +bFg +xUt +xUt +aSN +aSN +aSN +cwg pWB lEF eSV @@ -273225,56 +273774,56 @@ eSV eSV eSV eSV -qAU -odF -pPJ -odF -jUr -jUr -syL -rZG -evN -odF -iVU -vbM -ltX -kgc -njW -xZW -aDp -rbw -eiy -njW -kbc -woW -pws -osf -eeU -clN -clN -clN -rPY -oPF -kyx -sWT -akG -aNZ -gvW -saw -eWb -pgy -ewJ -rmQ -xjR -dOm -nvg -tZl -rmQ -bPn -coY -spN -qLd -lJq +dST +sPz +eDS +sPz +sKV +sKV +arO +qOr +nrr +sPz +qNi +dyE +vqr +pjb +ovm +aYU +nGj +dZZ +eMh +ovm +fDg +kPt +vwP +vAw +pBk +aKb +aKb +aKb +dRL +gho +cFp +bda +daI +tBr +eAO +vXW +rTg +fZW +qOe +oJt +vnh +rex +bHC +hqZ +oJt +juA +toS +diq +eZH +usa mXT gpk rxJ @@ -273292,10 +273841,10 @@ dEf nBy amj efg -vLv -pZZ -gpT -tqF +hKZ +nha +bbl +whs cKu cKu sRg @@ -273482,56 +274031,56 @@ eSV eSV eSV eSV -qAU -odF -bGT -odF -qIE -xAF -iqA -xAF -clm -lkB -anM -hwK -hzM -tDI -bBb -gXO -pAH -mds -lga -njW -xeR -ehP -tSn -sEO -wca -eZy -uYe -nIJ -gdH -rBS -rBS -rBS -rBS -rBS -rBS -rSY -rBS -xya -xEK -lKJ -nns -ldH -apC -cmq -rmQ -xGE -dHV -poj -poj -poj +dST +sPz +krr +sPz +hIc +shy +qTh +shy +ueJ +sSN +iha +ydK +bio +wxr +udR +mDb +nLD +rYE +qVC +ovm +jOO +gPX +tyb +qmF +fHs +ntG +aIH +trs +mbU +dYY +dYY +dYY +dYY +dYY +nqF +vhi +nqF +lzH +jki +yeg +hOm +bwQ +iKr +iqL +oJt +bQf +vmT +fao +fao +fao mXT bwn sZb @@ -273549,10 +274098,10 @@ xCE vFH sKB muc -daw -axt -heF -tqF +rLx +xLT +cYM +whs cKu cKu uYQ @@ -273739,54 +274288,54 @@ eSV eSV eSV eSV -gUW -teQ -qLk -teQ -wER -elN -azw -rWY -ilF -weK -cXO -hfk -rjy -xTd -bBb -rSX -skX -epo -qqY -njW -xeR -ujz -ujz -ujz -ujz -ujz -ujz -ujz -ujz -ujz -cUI -ePb -yiY -sBM -wDF -mWC -oQh -mYi -jsQ -aio -tcU -pjF -jII -ceV -rmQ -xlQ -tZc -yhp +hbF +pDx +hKo +pDx +nPb +cVs +cXS +iGl +koM +ocF +gYW +cIJ +gdX +cgY +udR +gMG +xZT +uDE +xyj +ovm +jOO +dYY +dYY +dYY +dYY +dYY +dYY +dYY +dYY +dYY +ksv +wYY +ltx +qgY +ssY +fRw +xDj +sos +ioA +qJc +dai +eDT +cJX +kwS +oJt +lRN +tLf +pti pZf uBP mXT @@ -273808,8 +274357,8 @@ eRt eRt eRt eRt -oFg -tqF +pke +whs sRg lod jkB @@ -273996,54 +274545,54 @@ eSV eSV eSV eSV -fjR -jhB -rGB -jhB -pps -ilF -xUB -fnU -cJj -kDc -fMG -pvh -rsv -qIv -bBb -dCQ -epD -rwl -hMX -njW -xeR -ujz -dsc -rZB -xpx -tMS -pxW -uHU -jjp -bVm -uOh -vlu -gYd -sBM -eNG -bUk -oBe -dlT -qCZ -noX -aso -gKu -huF -rFq -rmQ -qgm -qIV -sYB +ePH +vKX +ngj +vKX +dsX +koM +urO +tXi +qdS +pYg +hNB +miB +dRG +xiG +udR +pbq +kdV +uuu +ihy +ovm +jOO +dYY +oOR +lzQ +xZO +tFR +jfY +kPg +cko +pvE +ouD +tWt +bAI +qgY +tPb +mOb +gun +nDx +iaR +rTq +sth +wuB +qaA +vfM +oJt +xzY +dOF +iiF kRQ kms mXT @@ -274065,8 +274614,8 @@ mMK xUx eEb eRt -heF -tqF +cYM +whs cKu cKu ayE @@ -274253,56 +274802,56 @@ eSV eSV eSV eSV -vrt -hXv -sPP -hXv -rWY -kgo -iqA -wER -ilF -weK -xTd -xXZ -bHy -cXO -bBb -dJP -skX -rMB -shR -njW -xeR -ujz -sDj -nuL -kHJ -kJM -pdA -xEC -bcc -lfu -emE -bcc -aHc -sBM -itf -eHU -brQ -qIL -udX -noX -qsT -pmO -dxt -nhx -rmQ -poj -prN -poj -poj -efb +eAB +gtz +iWk +gtz +iGl +hnm +qTh +nPb +koM +ocF +cgY +cbA +ojo +gYW +udR +pgv +xZT +btM +fFB +ovm +jOO +dYY +pUg +hxH +tOf +aab +svh +vwH +vby +oqI +hKz +vby +aFb +qgY +gaS +xDu +xSz +vOt +ovK +rTq +dWz +ipJ +diN +wzp +oJt +fao +sLV +fao +fao +jQY wxB rOZ sIl @@ -274322,8 +274871,8 @@ cyX vWv coO eRt -aqD -tqF +riR +whs cKu cKu jDD @@ -274510,56 +275059,56 @@ eSV eSV eSV eSV -qAU -odF -bGT -odF -rFM -sNc -azw -sNc -jsK -lkB -anM -rCb -hpB -lLS -bBb -bTm -tUM -gKx -lga -njW -cMU -ubC -tbA -sWn -bPg -pfE -uyz -xqq -gpU -kHC -rNA -iFG -mar -wHM -snX -snX -wHM -tun -kSJ -rmQ -fhw -xbQ -vFA -ncs -rmQ -uuX -icL -sZJ -rkk -gUH +dST +sPz +krr +sPz +cui +lgD +cXS +lgD +jxD +sSN +iha +gqX +bha +mbt +udR +paw +ofi +alB +qVC +ovm +ubG +cIN +xxi +pgj +nBi +vUE +mfD +izW +sET +fVF +rGF +pDo +jXo +tZm +gxI +gxI +tZm +wjT +qgE +oJt +orH +qNX +ftT +uHx +oJt +iXm +gQY +gRy +uOo +cEU wxB ksm eoX @@ -274579,8 +275128,8 @@ jye vWv lgQ eRt -heF -tqF +cYM +whs cKu cKu uYQ @@ -274767,56 +275316,56 @@ eSV eSV eSV eSV -qAU -odF -pPJ -odF -jUr -jUr -syL -rZG -evN -odF -xzb -vbM -hpB -sKS -njW -bTF -nXn -hCz -lFK -njW -drE -ujz -uxk -goK -hng -goK -nHA -lNx -bcc -bcc -wAF -nch -ecG -oRj -ecG -ecG -pad -bAG -dlg -rmQ -rmQ -rmQ -rmQ -kVB -rmQ -aQs -icL -pKi -faO -boT +dST +sPz +eDS +sPz +sKV +sKV +arO +qOr +nrr +sPz +xCw +dyE +bha +kBp +ovm +wSL +pHz +mNk +cDd +ovm +yak +dYY +jFU +wsq +plW +wsq +hER +rCf +vby +vby +eFM +pxi +dJn +kpH +dJn +dJn +kzK +bBQ +quF +oJt +oJt +oJt +oJt +jae +oJt +bkz +gQY +moe +dwB +sOh wxB xmu hHb @@ -274836,8 +275385,8 @@ qFN vWv uOW eRt -nqI -gKs +nHx +qgc cKu cKu ayE @@ -275024,56 +275573,56 @@ eSV eSV eSV eSV -qAU -odF -gRT -fPp -xXZ -cQv -ort -cQv -xTd -fPp -tvw -vbM -hpB -cIK -njW -njW -njW -hhj -njW -njW -led -ujz -nng -nng -nng -uoc -ujz -xfV -tKI -hOz -qeE -ghS -mIs -dGj -kcU -pwb -iIO -fRO -hrH -grY -ihC -pdH -ihC -ihC -ihC -ihC -uYI -gNy -cBA -rgu +dST +sPz +yev +pRA +cbA +qjQ +uxx +qjQ +cgY +pRA +ulz +dyE +bha +ddl +ovm +ovm +ovm +qqW +afY +afY +afY +dYY +gxI +gxI +gxI +usq +dYY +poF +dkg +gkC +noq +tks +dCM +aJa +cWg +dVi +iWA +bSR +weD +njJ +eaC +wiL +eaC +eaC +eaC +eaC +kcf +jfs +hNy +qjm wxB wxB wxB @@ -275093,8 +275642,8 @@ jye pfG tsl eRt -heF -tqF +cYM +whs cKu cKu ayE @@ -275281,56 +275830,56 @@ eSV eSV eSV eSV -qAU -odF -odF -mGA -tSe -mJq -ydB -mJq -jLd -aRr -xRo -wZP -cOC -plD -njW -jYf -bXK -gVL -bXk -eEX -wHO -caV -wHO -wHO -wHO -nia -iZt -rZb -fhz -jAe -xvU -bcc -rVD -aNk -bWK -nEG -mlS -aHz -lGz -sbH -sbH -sbH -sbH -sbH -sbH -sbH -sbH -dfO -cBA -wWr +dST +sPz +sPz +cJR +vcJ +cgu +qsd +cgu +wXb +jsu +pWa +uPg +aCD +kKl +ovm +anu +dIQ +hDp +afY +hoc +xRV +cFg +xRV +xRV +xRV +cIG +xab +cvl +yfk +nYp +jKt +vby +wbx +cMS +wDu +oTJ +qgY +dYS +xrL +xsl +xsl +xsl +xsl +xsl +xsl +xsl +xsl +hZg +hNy +oQq fws neW khv @@ -275350,8 +275899,8 @@ mji gcA vdg eRt -aqD -tqF +riR +whs cKu cKu uYQ @@ -275538,56 +276087,56 @@ eSV eSV eSV eSV -qAU -qAU -odF -odF -qOH -rwF -tKQ -ffn -giY -rNt -vPL -myt -dvK -uax -iII -oYd -tdc -lCw -bXk -uRJ -aAF -dBk -aQI -aQI -xvv -alS -iZt -rZb -pHg -cgX -aac -bcc -lRZ -xyd -nYF -tbA -sBU -ama -kSJ -sbH -iym -ivG -ckj -bjJ -nrO -viD -sbH -nAa -cBA -tYJ +dST +dST +sPz +sPz +sxZ +igI +xzd +jda +eoT +vds +gNN +iqb +oqU +lop +gOp +lKR +lKk +pOt +afY +fqw +tlo +ehs +ujB +ujB +lnd +bJx +xab +cvl +gKW +oHQ +hks +vby +kfE +sea +sHM +xxi +cyi +xBV +qgE +xsl +wrA +xuA +sRP +eAQ +cqj +lzP +xsl +uoD +hNy +mYx fws aed efH @@ -275607,8 +276156,8 @@ hfy vLP ckf eRt -heF -tqF +cYM +whs cKu cKu ayE @@ -275796,55 +276345,55 @@ eSV eSV eSV eSV -qAU -qAU -odF -gGH -wFd -rGf -oeh -oeh -oeh -oeh -pia -kOk -pxm -njW -gsj -oOP -vKw -bXk -uCd -udS -nPd -eez -phv -kZe -ohb -iZt -blu -blu -eZP -wep -bcc -hVX -iMo -vBu -uFC -mlS -hwU -cVG -ybU -cBr -pQj -jrs -pTR -puP -iJf -sbH -dfO -cBA -tYJ +dST +dST +sPz +iaF +gfB +umg +yeW +yeW +yeW +yeW +ttJ +ckq +okB +ovm +vMr +myF +vew +afY +qRL +deZ +dDE +sDh +ltF +yek +sny +xab +bIp +bIp +ddG +aoX +vby +ntL +boq +oxD +ehy +qgY +npN +bjl +vov +nuP +sjs +nDp +hKx +ruc +ybP +xsl +hZg +hNy +mYx fws vlC hIB @@ -275864,8 +276413,8 @@ eRt eRt eRt eRt -oFg -tqF +pke +whs cKu cKu ayE @@ -276054,53 +276603,53 @@ eSV eSV eSV eSV -qAU -odF -odF -odF -odF -tuK -tuK -oqm -tuK -odF -sRu -pzL -njW -njW -njW -njW -bXk -vzq -kly -brX -uoJ -oep -bGa -pNl -bXk -vGE -vGE -ujz -ujz -oBE -ujz -nng -nng -nng -ujz -kiR -bgl -trg -rfs -tvI -owi -xyD -mgq -oRa -pTR -dfO -cBA +dST +sPz +sPz +sPz +sPz +aWj +aWj +gNR +aWj +sPz +eDz +cvG +ejO +ejO +ejO +ejO +afY +epg +rCk +wkc +vzV +xIY +iIt +fDH +afY +ouI +ouI +dYY +dYY +nxk +dYY +gxI +gxI +gxI +dYY +rnj +qXF +tEy +rWP +bRy +mQq +iKq +pCI +oaL +hKx +hZg +hNy hCQ hCQ hCQ @@ -276117,12 +276666,12 @@ bTP bTP hKO kBk -nqI -heF -rXc -heF -heF -tqF +nHx +cYM +tbc +cYM +cYM +whs cKu cKu cDK @@ -276311,53 +276860,53 @@ eSV eSV eSV eSV -qAU -qAU -qAU -qAU -odF -tci -lpW -niN -hRm -odF -dPf -nOu -rEG -mku -fOM -vap -bXk -bTS -aFB -uQH -oEu -oFl -vpb -bZO -mYM -bJU -lhV -hrv -nkA -ubO -kvf -ubO -ubO -jfh -gmK -aSu -aEp -ybU -rjD -xRJ -guM -qCo -iGe -azb -pTR -nAa -cBA +dST +dST +dST +dST +sPz +gyN +dLV +lsG +aVz +sPz +kiG +pLa +ejO +fYm +pqi +oCq +afY +oDH +qGc +klA +ohD +qqI +ura +eVM +gRX +gBJ +jNM +wEi +qcY +gbF +vFq +gbF +gbF +twH +xJo +cTO +oDs +vov +hHC +nbO +pBT +hSc +wBp +qKs +hKx +kgG +npm hCQ cQZ djs @@ -276374,7 +276923,7 @@ eiK cWG vFd kBk -heF +cYM fTe fTe fTe @@ -276571,50 +277120,50 @@ eSV eSV eSV eSV -qAU -odF -qCj -mXH -niN -pUR -odF -mck -sPi -rEG -uck -nLA -ajg -bXk -bXk -ivt -mYM -mYM -mYM -tUU -bXk -mYM -rUy -lFL -lcN -fwj -fwj -wGF -fwj -dJl -kve -fYa -uqK -rvQ -sbH -onv -uyV -jJX -qCo -mgq -oRa -pTR -dcF -qPV +dST +sPz +kJO +mxt +lsG +lOm +sPz +tvG +grq +ejO +wUi +lqD +spP +afY +afY +ulI +gRX +gRX +gRX +uTl +afY +gRX +guI +aih +ozB +dhy +dhy +qTN +dhy +efu +nTo +nDh +thP +frD +xsl +wlD +vbH +kYP +hSc +pCI +oaL +hKx +hZg +hNy hCQ cQZ bya @@ -276631,7 +277180,7 @@ cCd nAJ xdA xvH -heF +cYM fTe koB eYC @@ -276828,50 +277377,50 @@ eSV eSV eSV eSV -qAU -odF -odF -odF -odF -odF -odF -odF -odF -rEG -dwu -dzF -hoQ -cEL -haV -rCy -ubO -nkA -pue -ueG -tEi -uuR -thH -ubO -lLd -djF -soC -ylS -jXq -dzP -wHu -gmK -yhs -atI -lXj -lXj -lXj -lXj -lXj -lXj -lXj -lXj -dcF -eKM +dST +sPz +sPz +sPz +sPz +sPz +sPz +sPz +sPz +ejO +xmB +tuz +luw +pzZ +bEW +vvB +gbF +qcY +hsD +cwC +bIq +xOU +evl +gbF +eRe +tmh +lym +rRy +mYB +exh +ilv +xJo +hcd +jct +hKx +hKx +hKx +hKx +hKx +hKx +hKx +hKx +hZg +gGF hCQ hCQ hCQ @@ -276888,7 +277437,7 @@ fqW oGm bvo kBk -ylk +slR fTe nus fKV @@ -277085,54 +277634,54 @@ eSV eSV eSV eSV -qAU -qAU -qAU -qAU -qAU -qAU -qAU -qAU -qAU -aWd -iLS -pVz -iLS -rEG -jPt -axu -exM -vzO -vWq -oue -xYV -jYV -oWU -uNK -xbP -vgE -lTA -moJ -wVs -kDK -tGB -tGB -wIr -qyh -lXj -uTE -oZd -jGl -mMh -rCc -uKS -lXj -dcF -ayj -pzN -hDJ -dzv -dxQ +dST +dST +dST +dST +dST +dST +dST +dST +dST +qgW +xTg +fBR +xTg +ejO +bgj +wHL +dWy +aXd +coP +xWm +pQQ +wgM +jMK +ibq +lvy +eVb +dNP +wzR +udz +drb +tuY +tuY +sqN +tgU +ohz +vvU +oLj +xEg +kjC +uUg +bZq +ohz +hZg +qol +rKb +trL +uJn +neg nZK lHx ssw @@ -277351,45 +277900,45 @@ eSV eSV eSV eSV -aWd -ruP -lJf -kmG -ixx -ixx -ixx -xzp -ixx -cFS -cFS -ixx -ixx -oRk -pHZ -ixx -vdj -wBi -ffj -ggf -kFn -sbc -eyX -wpq -wEd -lXj -fVJ -jAY -ntd -haq -vPB -sOp -lXj -xZv -vUG -pzN -pzN -pzN -gGz +qgW +pga +pkN +iXO +mfG +mfG +mfG +fSz +mfG +cEz +cEz +mfG +mfG +wpF +jli +mfG +sSi +qOm +opG +tgK +kie +neT +pBz +vjN +tCL +ohz +lFp +sJP +ssb +tNI +rwZ +dEK +ohz +eBM +eCg +rKb +rKb +rKb +oSH efg iwg oGi @@ -277608,45 +278157,45 @@ eSV eSV eSV eSV -aWd -bdg -oXV -bdg -ixx -bGu -rDa -dwe -rgr -rVg -aEi -cFS -xnW -tpF -iHq -pHZ -erG -xJV -uiH -vLg -vGN -sbc -jFC -xSw -hrH -tym -tVd -mkA -xjX -vqw -noB -pMd -lXj -dcF -mhf -eIk -mhf -mhf -mmH +qgW +czI +uhV +czI +mfG +kFa +aOg +sOC +vxa +rRR +lXg +cEz +kYm +wRd +coi +jli +wlt +wLd +hak +phr +kDX +neT +inC +aXa +weD +itF +gCw +jsU +jjP +nbS +oqF +ftU +ohz +hZg +gQY +upR +gQY +gQY +tqB efg emA oGi @@ -277865,45 +278414,45 @@ eSV eSV eSV eSV -aWd -aWd -aWd -aWd -wRk -rDO -dSd -dSd -wLk -nAk -vPK -dRK -xiD -lQV -iLn -ixx -ekg -tGB -sbc -sbc -tGB -tGB -utS -jFc -cSs -lXj -lXj -nms -lXj -lXj -lXj -lXj -lXj -dcF -kLY -pom -hrb -cPY -unV +qgW +qgW +qgW +qgW +nxT +kIg +sxS +sxS +pWH +sQe +tGY +mti +spx +nUC +gGS +mfG +rSR +hfB +wmk +wmk +hfB +tuY +jKA +wqD +gZs +yfK +yfK +bfi +yfK +yfK +yfK +yfK +yfK +hZg +dVs +mFY +tCz +gwn +rfg efg gos mUI @@ -278126,41 +278675,41 @@ eSV eSV eSV wWR -wRk -lUy -cpg -juC -juC -oqJ -rIR -cFS -imu -tYE -dNS -ixx -wWT +nxT +xuj +mAl +jkY +jkY +bNs +jNU +cEz +haS +giI +xxw +mfG +cqy cfm cfm cfm cfm -tGB -luf -vft -cVG -aAr -wSb -rPD -oyk -vLB -hfd -lqf -vLB -qNG -xPs -pom -lMu -cPY -dIF +tuY +aTN +qaM +bjl +rQT +cGN +oFH +lMT +yfK +iAA +qoX +yfK +qmG +lYr +mFY +jJe +gwn +cpP fTe vQi hrq @@ -278383,41 +278932,41 @@ eSV eSV eSV wWR -tru -pll -obR -lnW -icC -vIK -lPJ -ixx -ixx -aZB -ixx -ixx -pyp +enE +srf +uud +wfU +vkC +mgC +igv +mfG +mfG +nIB +mfG +mfG +eJE cfm cfm cfm cfm -vSO -oTK -qKU -udX -aAr -kSY -nvN -uzi -oEQ -lAL -lqf -vLB -hbA -sxc -pom -mhf -ozh -mmH +tfn +gBd +qmR +ovK +rQT +pNs +arI +agT +pgi +smt +qoX +yfK +dBM +mso +mFY +gQY +ydb +tqB fTe dwS roY @@ -278640,41 +279189,41 @@ eSV eSV eSV wWR -tru -dGr -cuk -rMd -bRT -hBJ -oaT -lCv -ohk -mhf -mzJ -mhf -pyp +enE +dDR +jnE +cKI +dZP +cYU +ozX +mfG +fAy +gQY +qvy +gQY +eJE cfm cfm cfm cfm -vSO -oTK -nrx -atI -vLB -ulL -jaA -sKd -sIx -xXR -whi -vLB -hbA -sxc -pom -wSB -mFC -mmH +tfn +gBd +qjW +jct +yfK +nYb +aLx +vNg +lKp +odw +dfg +yfK +dBM +mso +mFY +ilP +sgu +tqB fTe xoZ ufK @@ -278897,41 +279446,41 @@ eSV eSV eSV wWR -kmD -tWw -dRg -pxa -iVh -sLG -exS -lCv -ohk -mhf -mhf -fUt -ioR +vUM +aXt +nTp +fer +bpF +uWt +qor +mfG +fAy +gQY +gQY +ewc +pbb cfm cfm cfm cfm -tGB -jYY -wvb -pdM -aAr -qrW -vBE -gpy -oEQ -lqf -lqf -vLB -iZL -cNt -cNt -cNt -cNt -xCq +tuY +fnk +aRk +eLc +rQT +bNK +gnN +raI +pgi +qoX +qoX +yfK +sXD +hMP +hMP +hMP +hMP +ilh fTe rlZ tJU @@ -279154,41 +279703,41 @@ eSV eSV eSV eSV -wRk -kmD -kmD -kmD -wRk -wRk -wRk -gYL -pag -pDV -pag -pag -pag -pag -pag -pag -pag -pag -vKL -xQj -pYG -aAr -hif -vnM -ild -vLB -hkX -lqf -vLB -hbA -cNt -btx -jfk -imN -hyi +nxT +vUM +vUM +vUM +nxT +nxT +nxT +nxT +eXV +msb +eXV +eXV +eXV +eXV +eXV +eXV +eXV +eXV +upe +nyC +lmE +rQT +rwQ +ods +euX +yfK +nrI +qoX +yfK +uot +hMP +pel +cvd +pIV +ndk fTe peL hdV @@ -279418,34 +279967,34 @@ wWR krQ qfo qfo -gYL -eTY -xmY -cYa -pag -inO -bTI -hdr -bbu -pag -mfo -puY -bRC -puY -mfo -vLB -jQH -vLB -vLB -vLB -vLB -vLB -hbA -cNt -qJl -qSW -cNt -vmn +wyu +sIW +iIs +rVW +eXV +ohJ +mVg +jVY +kXk +ask +ask +veC +wtK +veC +ask +mlJ +cfr +mlJ +mlJ +mlJ +mlJ +mlJ +uot +hMP +lSh +dCA +hMP +kgi fTe baE oAB @@ -279675,34 +280224,34 @@ wWR eVT gVP gVP -gYL -pmu -nZD -jsR -pag -kUI -lOK -rcH -nKc -nDl -nQx -fbK -iRp -oRF -dOo -nCA -mNW -nPD -fQH -lGZ -rSP -nCA -tuj -cNt -gTw -dNe -cNt -vmn +wyu +ydv +aGR +tLY +eXV +ptf +bHc +ttj +xFe +ejw +liT +tZU +fUv +dHv +drA +mlJ +jjO +maa +iHC +lQM +afu +mlJ +tkf +hMP +nIv +noP +hMP +kgi fTe tej oDk @@ -279932,34 +280481,34 @@ wWR eVT qfo qfo -gYL -iKn -vKd -qfI -pag -pNU -toW -xjm -rSd -nDl -fGO -uzo -rDB -agw -wYv -nCA -sBW -ksG -eQc -dYC -mfi -nCA -hbA -cNt -asf -cNt -cNt -eOG +wyu +cjg +dzY +jtS +eXV +aBQ +xUj +brz +lvQ +ejw +vkf +dXu +eQX +cEb +iTL +mlJ +cAs +lvw +dfT +hnX +xDa +mlJ +uot +hMP +rrF +hMP +hMP +gaH fTe fTe xDm @@ -280189,35 +280738,35 @@ wWR eVT qfo qfo -gYL -gYL -tHd -pag -pag -dfE -vuk -thW -ikt -mDR -lYF -iTb -vAt -bOH -swF -chD -bks -oNB -sHo -nUo -vTI -nCA -sEj -hiH -wyS -fOe -vYK -wFa -uIZ +wyu +wyu +sEU +eXV +eXV +asZ +dAj +lco +jHW +hFX +qqQ +saG +mDv +rTT +aHi +ofj +mag +qtI +bbQ +dnc +cls +mlJ +eqj +vbT +rWA +vAi +kSp +ykC +pFL fTe xtB nXi @@ -280447,34 +280996,34 @@ eVT gVP gVP gVP -gYL -mek -huB -iOY -hfC -nbJ -rnF -hYY -pag -dfr -ffG -wiP -uzG -mzn -nCA -gxT -qyT -cQY -sbE -kUl -nCA -dcb -dcb -dcb -dcb -dcb -dcb -eNb +wyu +tjM +bZA +eLv +wvm +pBb +prs +lGv +ask +vHQ +uXE +ibn +bxd +rQt +mlJ +jnC +oGx +uMH +bgi +sTh +mlJ +uwY +uwY +uwY +uwY +uwY +uwY +fNz fTe gsR fFV @@ -280704,34 +281253,34 @@ eVT qfo qfo qfo -fqp -hgf -nZD -aBm -vuw -jOU -pBy -bNI -pag -uRI -mGv -jMH -nbz -afq -dcb -dcb -dcb -rfc -xMM -dcb -dcb -mAX -ahq -dcb -mAX -ahq -dcb -eNb +eUP +fyq +aGR +xpE +hTA +quQ +tGD +rVd +ask +ogo +nWQ +ibp +sgw +vZF +uwY +uwY +uwY +csR +nkl +uwY +uwY +kEv +bIG +uwY +kEv +bIG +uwY +fNz fTe meW mbR @@ -280961,34 +281510,34 @@ eVT qfo qfo qfo -fqp -nEP -bvB -tPg -lZS -scy -jvi -rmI -pag -mfo -mfo -mfo -mfo -mfo -dcb -bvh -dcb -mkU -xvm -lJJ -dcb -aLa -kwE -dcb -aLa -uoK -dcb -eiB +eUP +xEd +gUS +szV +abN +eED +xja +nsY +ask +ask +ask +ask +ask +ask +uwY +dju +uwY +khg +kaT +ldJ +uwY +pgn +rXT +uwY +pgn +uLp +uwY +kKh fTe fTe xsn @@ -281218,35 +281767,35 @@ eVT gVP gVP gVP -fqp -oPZ -ucP -ucP -xGU -gKe -wxa -bIn -nco -nco -nco -nco -pag -dcb -dcb -dcb -dcb -jKv -gMu -eHr -dcb -sWK -tOK -dcb -sWK -tOK -dcb -dZR -xAb +eUP +fvz +fmq +fmq +adu +fYO +dzy +asP +inV +inV +inV +inV +eXV +uwY +uwY +uwY +uwY +oAq +ffX +nVv +uwY +cAH +hCC +uwY +cAH +hCC +uwY +jbc +dqo fTe fTe fTe @@ -281256,8 +281805,8 @@ dSx dRk cQw fTe -vNX -pGn +bKj +jtn dpK eSV eSV @@ -281475,45 +282024,45 @@ eVT qfo qfo qfo -fqp -tDV -aZS -ovW -gfM -bpa -rZd -uff -dPr -dPr -dPr -mYp -pag -jTo -bby -dcb -dcb -jEg -pWd -dcb -dcb -hxs -nQE -dcb -nIk -qbG -dcb -dcb -lDZ -jFn -ixF -fzy +eUP +ich +dSC +lYE +bZI +pJo +pma +ept +uUV +uUV +uUV +qbI +eXV +aLW +dyU +uwY +uwY +vkx +ioC +uwY +uwY +lXf +xuc +uwY +hlw +ths +uwY +uwY +sSw +fJX +oHF +vqT fTe aXA lEj fTe jOm fTe -cRf +qCi wvA eSV eSV @@ -281732,45 +282281,45 @@ eVT qfo qfo qfo -gAZ -rMF -rMF -rMF -oAL -cAn -iBV -snB -bqy -bqy -bqy -tgE -pag -gST -oGl -oua -cPI -qpw -idx -igC -wtq -iKg -fGV -cEG -iKg -fGV -eUV -dcb -lDZ -jFn -mxC -pET +pCw +cMG +cMG +cMG +cTK +pMi +vPb +cmX +nDC +nDC +nDC +uNx +eXV +snw +iIy +rqC +nos +qDW +vcM +mTT +kno +mtp +xFR +neP +mtp +xFR +yjh +uwY +sSw +fJX +kBv +lIC fTe fTe fTe fTe fTe fTe -pGn +jtn dpK eSV eSV @@ -281989,44 +282538,44 @@ eVT gVP gVP gVP -gAZ -kHp -nZD -nZD -pjP -ibL -fJY -snB -xbS -xbS -xbS -tRm -pag -rbk -gEw -pXr -rzV -xbn -kJL -gQo -gQo -yaf -wYd -kDD -wYd -wYd -nfR -dcb -rNj -cBA -dti -cBA -bHF -itW -cMI -jFn -vNX -cRf +pCw +tAl +aGR +aGR +eNy +eyY +ceK +cmX +eYY +eYY +eYY +tNo +eXV +kgZ +kyl +fRT +ows +jMl +jra +mCi +mCi +hHW +nqN +oDT +nqN +nqN +fos +uwY +jKP +pEd +llu +pEd +imh +fjN +obe +fJX +njK +iom wvA eSV eSV @@ -282246,44 +282795,44 @@ eVT qfo qfo qfo -gAZ -hJl -hJl -hJl -eot -mIK -pag -hiM -weg -dPr -dPr -oni -pag -dcb -dcb -dcb -dcb -oIf -lnu -wYd -pPD -sPg -qaw -wpO -dUC -nvQ -pgx -dcb -uap -vRq -lbx -dti -bFk -sTF -hhy -jFn -vNX -pGn +pCw +pIT +pIT +pIT +ume +mxZ +eXV +gOm +olP +uUV +uUV +iVn +eXV +uwY +uwY +uwY +uwY +qJd +cgS +nqN +wLN +mnb +wrb +wJy +tPN +vXL +sEi +uwY +ght +bue +upK +llu +nSn +xnT +qHe +fJX +njK +mFN dpK eSV eSV @@ -282503,43 +283052,43 @@ krQ sRg qfo qfo -fqp -rMF -rMF -rMF -teL -gKe -jOT -dvA -tAJ -hvd -hvd -hvd -pag -sHG -qXs -qXs -yaV -xbn -rPr -wKY -wKY -rXR -wYd -oLI -wYd -wYd -hiT -dcb -lDZ -dti -jFn -efp -tRX -pmT -lcV -jFn -cRf +eUP +cMG +cMG +cMG +pWL +fYO +unw +dqw +lUs +uiJ +uiJ +uiJ +eXV +dnE +lQL +lQL +iZc +jMl +pOA +boy +boy +lTk +nqN +hmq +nqN +nqN +nsw +uwY +sSw +llu +fJX +eRy +tlN +hNn +xXl +fJX +iom wvA eSV eSV @@ -282760,43 +283309,43 @@ wWR krQ nSR wFx -gNx -baG -aWo -aWo -fHw -aBB -aBB -pbQ -cIO -xiz -xiz -xiz -pag -gST -oGl -fAn -nXf -bgF -qfQ -xkA -cSM -xkA -mve -wrg -xkA -mve -rsb -dcb -lDZ -eih -jFn -jFn -cBA -tyX -qRe -jFn -pGn +kdC +aaJ +nga +nga +vnP +jEN +jEN +vVY +gVz +niH +niH +niH +eXV +snw +iIy +hMe +ygB +qBa +lxz +rjR +xym +rjR +rGZ +dhQ +rjR +rGZ +itL +uwY +sSw +nfe +fJX +fJX +pEd +cTn +lgd +fJX +mFN dpK eSV eSV @@ -283015,44 +283564,44 @@ eSV eSV wWR wWR -epS +evZ wWR -gYL -mQT -hJl -hJl -aki -hbK -hni -fNb -dfJ -pmy -pmy -pmy -pag -rul -uPf -dcb -dcb -dcb -dcb -nsa -dcb -uok -hVH -dcb -dEW -azi -dcb -dcb -lDZ -shE -jFn -jFn -lVL -cSp -cSp -fVW +wyu +qaQ +pIT +pIT +wbU +fhn +tHH +kpA +uQB +aHK +aHK +aHK +eXV +dGO +vFf +uwY +uwY +uwY +uwY +nvF +uwY +bmK +dGa +uwY +qbj +cQI +uwY +uwY +sSw +mwh +fJX +fJX +tNX +bWv +bWv +peQ wvA eSV eSV @@ -283272,44 +283821,44 @@ eSV eSV eSV eSV -pFP -mvF -gYL -gYL -gYL -gYL -gYL -pag -lJL -pag -blB -qaT -ayR -rgd -pag -dcb -dcb -dcb -dcb -mOR -pgI -dHc -dcb -gqJ -tMl -dcb -gqJ -tMl -dcb -qkR -iSg -pJO -pJO -pJO -cUF -pJO -pJO -jpS +tDA +rmA +wyu +wyu +wyu +wyu +wyu +eXV +bVa +eXV +ggc +cFY +nNQ +nFT +eXV +uwY +uwY +uwY +uwY +wmg +pED +dMG +uwY +mEd +hql +uwY +mEd +hql +uwY +nNM +nfl +fJX +fJX +fJX +jip +fJX +fJX +nDd dpK eSV eSV @@ -283536,36 +284085,36 @@ eSV eSV eSV kKm -oeW -jCb -pag -pag -pag -pag -pag -pag -gOW -dZe -lkt -cFW -lEc -mLz -frX -dcb -aLa -hSN -dcb -aLa -pjh -dcb -sHQ -cAe -pJO -fJS -wKm -kWc -pJO -aSO +poS +aIa +eXV +eXV +eXV +eXV +eXV +eXV +dXw +ryK +sQi +gUf +rIU +cIx +fVu +uwY +pgn +wQT +uwY +pgn +usl +uwY +sSw +gHT +fJX +vHq +xnT +hNn +fJX +iom wvA eSV eSV @@ -283793,36 +284342,36 @@ eSV eSV eSV ehU -jxS -huc -pdF -mvq -raS -raS -raS -cFW -lkt -uzL -qcn -dcb -aaK -xdz -hph -dcb -wak -mkm -dcb -wak -mkm -dcb -lfU -kzP -pJO -lTa -wKm -faG -pJO -sVm +mGC +dZt +qBg +pDk +srI +srI +srI +gUf +sQi +pKF +aGN +uwY +pSi +hYP +uXH +uwY +oHl +aGL +uwY +oHl +aGL +uwY +mJP +rek +fJX +dGb +xnT +yeU +fJX +mFN dpK eSV eSV @@ -284050,35 +284599,35 @@ eSV eSV eSV www -fkc -ohi -joQ -pag -wNX -amY -raS -dcb -dcb -dcb -dcb -dcb -dcb -dcb -dcb -dcb -dcb -dcb -dcb -dcb -dcb -dcb -jdN -raS -peo -qQZ -kWc -qTC -tYw +qvN +htU +sWD +eXV +cOz +rSV +srI +uwY +uwY +uwY +uwY +uwY +uwY +uwY +uwY +uwY +uwY +uwY +uwY +uwY +uwY +uwY +sBw +jNB +inB +tDs +hNn +mYc +peQ wvA eSV eSV @@ -284308,34 +284857,34 @@ eSV eSV eSV kKm -oeW -pag -pag -rOb -amY -raS -raS -uVA -ikA -ikA -jJM -raS -raS -uiE -hAE -lSZ -oWG -xbZ -gxt -jsd -xbZ -mTG -uOZ -pJO -vcW -kWc -pJO -ooJ +rlk +kpN +kpN +xxC +rSV +srI +srI +mjf +hTO +hTO +rNr +srI +srI +oom +wZE +wec +nYY +sDE +fgb +jeB +wyY +hyo +aqE +fJX +puA +hNn +fJX +oEF dpK eSV eSV @@ -284565,33 +285114,33 @@ eSV eSV eSV ehU -jKc -twK -twK -twK -twK -wnZ -amY -sfM -gdD -gdD -gdD -gdD -amY -hUi -kWc -kWc -kWc -kWc -pJO -pJO -pJO -kVT -pJO -pJO -kuF -kWc -tYw +hTV +kpN +kpN +kpN +kpN +vRz +rSV +oYa +sHs +sHs +sHs +sHs +rSV +dCz +cdm +cdm +cdm +cdm +fjk +fjk +fjk +eej +fjk +fjk +xZR +hNn +peQ wvA eSV eSV @@ -284822,33 +285371,33 @@ eSV eSV eSV www -qaP -mtY -pJO -uzQ -twK -jJF -amY -amY -gdD -gdD -roT -amY -ssL -bRQ -kWc -gdD -gdD -gdD -pJO -oOB -pal -lEa -mzc -pJO -pJO -pJO -ooJ +bTv +ixJ +fjk +paK +kpN +ezg +rSV +rSV +sHs +sHs +mcN +rSV +eVJ +fEm +cdm +sHs +sHs +sHs +fjk +atd +bMK +tCd +sfa +fjk +fjk +fjk +oEF dpK eSV eSV @@ -285080,31 +285629,31 @@ eSV eSV eSV kKm -wro -pJO -gdD -twK -wwl -gdD -kDJ -amY -amY -amY -gdD -oGF -wOO -iZY -mWy -gdD -amY -pJO -tzD -gWP -amY -mum -amY -kDJ -tYw +dEP +fjk +sHs +kpN +lvh +sHs +rwq +rSV +rSV +rSV +sHs +wTw +cuO +xNU +bxI +sHs +rSV +fjk +rLJ +vtv +rSV +pMv +rSV +rwq +piA wvA eSV eSV @@ -285337,31 +285886,31 @@ eSV eSV eSV ehU -wYG -pJO -amY -amY -tXQ -eda -gdD -sfM -sfM -gdD -sfM -sfM -qNV -sEP -nFl -amY -amY -pJV -amY -amY -gdD -vNY -gdD -gdD -ooJ +sBe +fjk +rSV +rSV +aQm +pAV +sHs +oYa +oYa +sHs +oYa +oYa +wSF +vON +uDg +rSV +rSV +oDn +rSV +rSV +sHs +uiM +sHs +sHs +ulM dpK eSV eSV @@ -285594,30 +286143,30 @@ eSV eSV eSV www -qaP -pJO -kDJ -mtY -raS -dHJ -raS -raS -raS -bYM -raS -raS -pUE -pJO -vFY -bxP -xkQ -pJO -pJO -dxX -cjf -pJO -pJO -tYw +bTv +fjk +rwq +ixJ +srI +gCY +srI +srI +srI +dbh +srI +srI +oMt +fjk +lad +hGA +rjn +fjk +fjk +aeb +koq +fjk +fjk +piA wvA eSV eSV @@ -285852,29 +286401,29 @@ eSV eSV eSV kKm -riY -pJO -pJO -pJO -pJO -uHD -pJO -pJO -pJO -pJO -kWc -ggj -orv -cgw -tlB -oid -iOG -xYM -dqH -dqH -fXm -pJO -ooJ +tVt +iml +iml +iml +iml +jJJ +fjk +fjk +fjk +fjk +cdm +xuS +aOa +doU +jXE +bsd +jOh +vwJ +aSk +aSk +aIW +fjk +ulM dpK eSV eSV @@ -286109,28 +286658,28 @@ eSV eSV eSV ehU -wYG -pJO -aWN -aRF -gEL -cNa -xFv -xFv -xFv -cmz -xFv -cmt -mBR -kYU -dVU -vrd -enl -dqH -dqH -aEc -vDy -tYw +sBe +iml +bvK +ncH +lhP +lrX +uQC +uQC +uQC +msX +uQC +tVP +bHG +ldZ +oOz +okF +std +aSk +aSk +kIR +nqn +piA wvA eSV eSV @@ -286366,28 +286915,28 @@ eSV eSV eSV www -qaP -pJO -jvc -sSa -pJO -lyx -giK -lTa -kWc -pJO -kWc -raS -qPM -uYc -uec -sZf -dva -dCc -pJO -pJO -pJO -ooJ +bTv +iml +dVR +hZF +iml +ssr +qKF +pxO +cdm +fjk +cdm +oBu +lJr +wbs +ekP +fcK +aYO +eXB +fjk +fjk +fjk +ulM dpK eSV eSV @@ -286623,28 +287172,28 @@ eSV eSV eSV eSV -afd -pJO -qtl -cCy -lTO -iUY -pJO -nIN -waJ -pJO -pJO -pJO -pJO -pJO -pJO -pJO -enl -fkj -pJO -tVw -xDS -afd +giR +iml +cmx +knA +qoa +cIV +fjk +xcs +tOq +ojb +ojb +ojb +ojb +ojb +ojb +ojb +std +xVh +fjk +sYx +swN +giR eSV eSV eSV @@ -286880,28 +287429,28 @@ eSV eSV eSV eSV -afd -pJO -hHi -oAC -pJO -lyx -nTQ -uzQ -amY -pJO -giv -tNu -lGl -nNC -tWq -pJO -geQ -vIQ -aLz -pgA -jSN -enQ +giR +iml +xps +iTg +iml +ssr +dYW +paK +rSV +ojb +qLX +cFr +veP +dWf +uJT +ojb +hEh +eLe +pAr +akB +ntb +hDG eSV eSV eSV @@ -287134,41 +287683,41 @@ eSV eSV eSV eSV -afd -afd -afd -afd -pJO -pJO -kNb -pJO -cLq -pJO -hGc -amY -pJO -uWN -nyF -grU -xvq -eAs -pJO -dqH -kUF -pJO -tXL -lNH -afd -afd -afd -afd -afd -afd -afd -afd -afd -afd -afd +pTz +pTz +pTz +pTz +iml +iml +rHi +iml +avn +ojb +qcX +rSV +ojb +qnV +nwM +lwq +exE +xgc +ojb +aSk +hmf +fjk +ajV +aKl +pTz +pTz +pTz +pTz +pTz +pTz +pTz +pTz +pTz +pTz +pTz eSV eSV eSV @@ -287390,43 +287939,43 @@ eSV eSV eSV eSV -afd -afd -wJN -kWc -pJO -kWc -mXm -iiU -bDj -sul -pJO -pJO -pJO -pJO -fPC -feK -gdD -amY -aAU -pJO -wTK -pJO -pJO -pJO -pJO -pJO -vAb -dsf -pPW -nkY -isx -hfB -pJO -kWc -cYR -afd -afd +pTz +pTz +uSQ +qTI +ojb +qTI +wHx +rSO +kbf +qwo +ojb +ojb +ojb +ojb +axx +rVl +gwI +pwg +dqM +ojb +sQt +ojb +ojb +ojb +ojb +ojb +dSJ +uAA +fKy +jFR +nPj +mOc +ojb +qTI +cJC +pTz +pTz eSV eSV eSV @@ -287647,43 +288196,43 @@ eSV eSV eSV eSV -afd -xEh -hXl -kWc -pJO -fLG -ikA -raS -raS -ozJ -uRE -dOv -dOv -aps -atb -pua -cqD -ioZ -sUb -sUb -yem -wPJ -cHp -raS -bng -raS -ezo -oDW -vJx -oDW -urJ -dTj -pJO -wCQ -scU -mtY -afd +pTz +tVc +ndo +qTI +ojb +jYR +jSj +cTb +cTb +avW +qVp +rph +rph +eEt +gfP +qDP +lpw +uPG +kmv +kmv +pXR +ffQ +aeY +cTb +jZH +cTb +hid +xLU +sIr +xLU +sYi +yhu +ojb +hnP +bES +xeP +pTz eSV eSV eSV @@ -287904,43 +288453,43 @@ eSV eSV eSV eSV -aZR -xEh -vBK -fEG -kmQ -oUx -juD -juD -juD -sKo -wCQ -kWc -hfB -pJO -xOO -rno -dTN -bvy -idp -idp -aGC -wAy -tKm -bFh -ikA -raS -vNY -gdD -gdD -gdD -gdD -fUT -rRG -wCQ -iOF -mtY -kqw +jpp +tVc +nRz +hCN +gei +rLR +ivZ +ivZ +ivZ +sQa +hnP +qTI +mOc +ojb +huQ +aAl +sGd +bXN +rSt +rSt +iMi +xYg +lvo +kPv +jSj +cTb +eZC +gwI +gwI +gwI +gwI +nrf +oPO +hnP +kMM +xeP +qqv eSV eSV eSV @@ -288161,43 +288710,43 @@ eSV eSV eSV eSV -afd -xEh -dPg -wCQ -pJO -rAs -raS -ikA -ikA -nOn -kWc -fZD -npi -pJO -rOb -hDO -qzI -jPP -hZW -bEd -pJO -bbL -kRm -fOT -nge -qFq -tSO -sNe -sNe -sNe -gnB -kKP -pJO -dTN -iOF -mtY -afd +pTz +tVc +tZT +hnP +ojb +nMV +cTb +jSj +jSj +lso +qTI +eWZ +gYk +ojb +oLX +iKi +bre +oZW +nux +vCe +ojb +gKj +dHQ +qzR +dKr +fQq +vQV +vyo +vyo +vyo +nHP +quE +ojb +sGd +kMM +xeP +pTz eSV eSV eSV @@ -288418,43 +288967,43 @@ eSV eSV eSV eSV -afd -afd -cDN -jWN -pJO -bcb -giK -wCQ -bTr -oBn -kWc -jsO -wKp -pJO -pJO -pJO -pJO -pJO -pJO -pJO -pJO -pJO -pJO -gtN -wZY -wNW -cIs -wCQ -lsw -wCQ -liR -kWc -pJO -ogm -oqs -afd -afd +pTz +pTz +jaO +ixp +ojb +cqx +hpn +hnP +ebd +opX +qTI +sAG +vzi +ojb +ojb +ojb +ojb +ojb +ojb +ojb +ojb +ojb +ojb +bKl +toM +ibz +niR +hnP +idu +hnP +ebq +qTI +ojb +cmF +wuS +pTz +pTz eSV eSV eSV @@ -288676,41 +289225,41 @@ eSV eSV eSV eSV -afd -afd -afd -afd -afd -afd -afd -afd -afd -jDa -afd -afd -afd -afd -afd -pgU -afd -afd -afd -afd -afd -afd -afd -fVl -afd -afd -afd -afd -afd -afd -afd -afd -afd -afd -afd +pTz +pTz +pTz +pTz +pTz +pTz +pTz +pTz +pTz +tzt +pTz +pTz +pTz +pTz +pTz +hDb +pTz +pTz +pTz +pTz +pTz +pTz +pTz +cWz +pTz +pTz +pTz +pTz +pTz +pTz +pTz +pTz +pTz +pTz +pTz eSV eSV eSV @@ -313863,41 +314412,41 @@ eSV eSV eSV eSV -hCj -tge -tge -tge -tge -tge -tge -tge -tge -tge -tge -tge -tge -tge -tge -tge -tge -tge -tge -tge -tge -tge -tge -tge -tge -tge -tge -tge -tge -tge -tge -tge -tge -tge -lHO +iJX +dbd +dbd +dbd +dbd +dbd +dbd +dbd +dbd +dbd +dbd +dbd +dbd +dbd +dbd +dbd +dbd +dbd +dbd +dbd +dbd +dbd +dbd +dbd +dbd +dbd +dbd +dbd +dbd +dbd +dbd +dbd +dbd +dbd +hoE eSV eSV eSV @@ -314119,43 +314668,43 @@ eSV eSV eSV eSV -hCj -xpj -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -sxB -lHO +iJX +gFJ +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +tGt +hoE eSV eSV eSV @@ -314376,43 +314925,43 @@ eSV eSV eSV eSV -get -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -ycn +rVj +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +uYQ eSV eSV eSV @@ -314633,43 +315182,43 @@ eSV eSV eSV eSV -get -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -ycn +rVj +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +uYQ eSV eSV eSV @@ -314890,43 +315439,43 @@ eSV eSV eSV eSV -get -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -ycn +rVj +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +uYQ eSV eSV eSV @@ -315147,43 +315696,43 @@ eSV eSV eSV eSV -cws -uNz -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -nwA -hPY +sIA +ryE +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +pWB +lEF eSV eSV eSV @@ -315405,41 +315954,41 @@ eSV eSV eSV eSV -cws -qnF -qnF -uNz -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -nwA -qnF -qnF -qnF -qnF -qnF -qnF -qnF -qnF -qnF -hPY +sIA +hCm +hCm +ryE +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +pWB +hCm +hCm +hCm +hCm +hCm +hCm +hCm +hCm +hCm +lEF eSV eSV eSV @@ -315665,28 +316214,28 @@ eSV eSV eSV eSV -get -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -ycn +rVj +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +uYQ eSV eSV eSV @@ -315922,28 +316471,28 @@ eSV eSV eSV eSV -get -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -ycn +rVj +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +uYQ eSV eSV eSV @@ -316178,30 +316727,30 @@ eSV eSV eSV eSV -hCj -xpj -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -sxB -lHO +iJX +gFJ +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +tGt +hoE eSV eSV eSV @@ -316435,30 +316984,30 @@ eSV eSV eSV eSV -get -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -ycn +rVj +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +uYQ eSV eSV eSV @@ -316692,31 +317241,31 @@ eSV eSV eSV eSV -get -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -sxB -lHO +rVj +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +tGt +hoE eSV eSV eSV @@ -316948,32 +317497,32 @@ eSV eSV eSV eSV -hCj -xpj -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -ycn +iJX +gFJ +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +uYQ eSV eSV eSV @@ -317205,33 +317754,33 @@ eSV eSV eSV eSV -get -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -sxB -lHO +rVj +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +tGt +hoE eSV eSV eSV @@ -317462,33 +318011,33 @@ eSV eSV eSV eSV -get -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -ycn +rVj +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +uYQ eSV eSV eSV @@ -317718,35 +318267,35 @@ eSV eSV eSV eSV -hCj -xpj -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -sxB -lHO +iJX +gFJ +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +tGt +hoE eSV eSV eSV @@ -317975,42 +318524,42 @@ eSV eSV eSV eSV -get -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -sxB -tge -tge -tge -tge -tge -tge -lHO +rVj +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +tGt +dbd +dbd +dbd +dbd +dbd +dbd +hoE eSV eSV eSV @@ -318232,44 +318781,44 @@ eSV eSV eSV eSV -get -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -sxB -tge -lHO +rVj +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +tGt +dbd +hoE eSV eSV eSV @@ -318488,45 +319037,45 @@ eSV eSV eSV eSV -hCj -xpj -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ +iJX +gFJ +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu ebM -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -ycn +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +uYQ eSV eSV eSV @@ -318745,45 +319294,45 @@ eSV eSV eSV eSV -get -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -nwA -qnF -hPY +rVj +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +pWB +hCm +lEF eSV eSV eSV @@ -319002,43 +319551,43 @@ eSV eSV eSV eSV -get -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ +rVj +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu jRB -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -ycn +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +uYQ wWR eSV eSV @@ -319258,44 +319807,44 @@ eSV eSV eSV eSV -hCj -xpj -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ +iJX +gFJ +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu jRB -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu ebM -yjQ -ycn +cKu +uYQ xKG eSV eSV @@ -319515,44 +320064,44 @@ eSV eSV eSV eSV -get -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -ycn +rVj +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +uYQ eSV eSV eSV @@ -319772,43 +320321,43 @@ eSV eSV eSV eSV -get -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ +rVj +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu ebM -yjQ -yjQ +cKu +cKu ebM jRB -yjQ +cKu ebM -rqb -fQT -lDT -rqb +hVC +oJZ +iyb +hVC ebM -yjQ +cKu jRB ebM -yjQ -yjQ +cKu +cKu gHN eSV eSV @@ -320028,45 +320577,45 @@ eSV eSV eSV eSV -hCj -xpj -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -rfM -uru -hXa -rqb -yjQ -yjQ -yjQ -yjQ -nwA -qnF -hPY +iJX +gFJ +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +sIc +bWN +uHE +hVC +cKu +cKu +cKu +cKu +pWB +hCm +lEF eSV eSV eSV @@ -320285,43 +320834,43 @@ eSV eSV eSV eSV -get -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -rqb -sft -xjr -rfM -yjQ -yjQ -yjQ -yjQ -ycn +rVj +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +hVC +wQk +mRO +sIc +cKu +cKu +cKu +cKu +uYQ eSV eSV eSV @@ -320542,43 +321091,43 @@ eSV eSV eSV eSV -get -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ +rVj +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu jRB -yjQ -yjQ -rqb -vAa -wlw -rqb -yjQ -yjQ +cKu +cKu +hVC +gFS +byp +hVC +cKu +cKu jRB -yjQ -ycn +cKu +uYQ eSV eSV eSV @@ -320798,45 +321347,45 @@ eSV eSV eSV eSV -hCj -xpj -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -rqb -rfM -rfM -rqb -pZG -qax -rqb -yjQ -yjQ -yjQ -yjQ -sxB -lHO +iJX +gFJ +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +hVC +sIc +sIc +hVC +uXb +fXe +hVC +cKu +cKu +cKu +cKu +tGt +hoE eSV eSV eSV @@ -321055,45 +321604,45 @@ eSV eSV wWR wWR -get -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -unA -biW -fVn -ejH -xMW -hXH -rqb -yjQ -yjQ -yjQ -yjQ -yjQ -ycn +rVj +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +gHu +axa +mdM +ukD +jdO +bot +hVC +cKu +cKu +cKu +cKu +cKu +uYQ eSV eSV eSV @@ -321312,46 +321861,46 @@ wWR wWR wWR wWR -get -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -qnX -nTI -qez -nAv -xhf -cXX -rqb -yjQ -yjQ +rVj +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +sZh +cCR +obF +fmt +ydW +rDZ +hVC +cKu +cKu jRB -yjQ -yjQ -sxB -lHO +cKu +cKu +tGt +hoE eSV eSV eSV @@ -321568,47 +322117,47 @@ wWR wWR wWR wWR -hCj -xpj -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -rqb -rqb -rqb -rqb -dYI -mGW -rqb -rfM -rfM -rqb -yjQ -yjQ -yjQ -ycn +iJX +gFJ +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +hVC +hVC +hVC +hVC +iYU +neI +hVC +sIc +sIc +hVC +cKu +cKu +cKu +uYQ eSV eSV eSV @@ -321825,48 +322374,48 @@ wWR wWR wWR wWR -get -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ +rVj +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu jRB -yjQ -yjQ -rqb -eNQ -xql -uBj -iIa -beb -lWx -yjQ -yjQ -yjQ -yjQ -lHO +cKu +cKu +hVC +ooK +uzq +djB +akl +lhM +kfy +cKu +cKu +cKu +cKu +hoE eSV eSV eSV @@ -322082,48 +322631,48 @@ wWR wWR wWR wWR -get -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -rfM -cpz -nTA -kRB -kcT -wpd -wEC -yjQ -yjQ -yjQ -yjQ -ycn +rVj +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +sIc +geG +ffD +mZu +shA +uXp +ccS +cKu +cKu +cKu +cKu +uYQ eSV eSV eSV @@ -322338,50 +322887,50 @@ wWR wWR wWR wWR -hCj -xpj -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -rfM -udq -gPw -rqb -rqb -rqb -rqb -yjQ -yjQ -yjQ -yjQ -sxB -lHO +iJX +gFJ +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +sIc +lKy +rhZ +hVC +hVC +hVC +hVC +cKu +cKu +cKu +cKu +tGt +hoE eSV eSV eSV @@ -322596,49 +323145,49 @@ wWR wWR gFT gqF -uNz -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ +ryE +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu jRB -yjQ -yjQ -rqb -jxJ -oXh -rqb -yjQ -yjQ +cKu +cKu +hVC +cLZ +wea +hVC +cKu +cKu jRB -yjQ -yjQ -yjQ -yjQ -yjQ -ycn +cKu +cKu +cKu +cKu +cKu +uYQ eSV eSV eSV @@ -322853,50 +323402,50 @@ wWR wWR wWR wWR -get -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -woo -yjQ -yjQ -rqb -cNX -mei -rqb -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -sxB -lHO +rVj +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +dQL +cKu +cKu +hVC +aak +tYW +hVC +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +tGt +hoE eSV eSV eSV @@ -323108,52 +323657,52 @@ wWR wWR wWR wWR -hCj -tge -xpj -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ +iJX +dbd +gFJ +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu wJJ -yjQ -yjQ -sfH -mMr -psI -rqb -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -ycn +cKu +cKu +rwJ +uOC +fZg +hVC +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +uYQ eSV eSV eSV @@ -323365,53 +323914,53 @@ wWR wWR wWR wWR -get -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ +rVj +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu jRB -yjQ -yjQ -rfM -udq -oCu -rqb -yjQ -yjQ +cKu +cKu +sIc +lKy +jjV +hVC +cKu +cKu jRB -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -sxB -lHO +cKu +cKu +cKu +cKu +cKu +cKu +tGt +hoE eSV eSV eSV @@ -323622,53 +324171,53 @@ wWR wWR wWR wWR -get -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -get -yjQ -yjQ -rfM -iny -lfo -rqb -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -ycn +rVj +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +rVj +cKu +cKu +sIc +oro +rxr +hVC +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +uYQ eSV eSV eSV @@ -323878,56 +324427,56 @@ wWR wWR wWR wWR -hCj -xpj -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -woo -yjQ -yjQ -yjQ -yjQ +iJX +gFJ +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +dQL +cKu +cKu +cKu +cKu ebM -tge -xpj -yjQ -yjQ -rqb -dvp -aDx -rqb -rqb -rqb -rqb -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -sxB -tge -lHO +dbd +gFJ +cKu +cKu +hVC +tkB +sez +hVC +hVC +hVC +hVC +cKu +cKu +cKu +cKu +cKu +cKu +cKu +tGt +dbd +hoE eSV eSV eSV @@ -324135,56 +324684,56 @@ wWR wWR wWR wWR -get -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -woo -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -xch -xch -ecU -cFy -xch -xch -vkO -qAV -vkO -rqb -cHi -oxg -hvp -fSs -xKW -mWw -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -ycn +rVj +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +dQL +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +wEr +wEr +mHb +rFY +wEr +wEr +xrN +gaa +xrN +xrN +aUS +slB +rgk +vyb +nIz +wUJ +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +uYQ eSV eSV eSV @@ -324392,56 +324941,56 @@ wWR wWR wWR wWR -get -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -ujD -lOD -voE -mpr -jDk -jDk -lLo -lLo -gwO -lLo -jDk -xch -eXE -waR -bus -kfe -mVt -loV -shL -apR -mQf -vYP -ouZ -wGx -lLp -xKW -rqb -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -nwA -qnF -hPY +rVj +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +wvs +jNz +orY +hZl +azU +fhr +dJd +dJd +ojO +dJd +fhr +wEr +tFK +fjL +gCf +nGD +ict +rPz +bVi +vdw +bQm +rvX +qgF +rrS +jyW +nIz +hVC +cKu +cKu +cKu +cKu +cKu +cKu +cKu +pWB +hCm +lEF eSV eSV eSV @@ -324637,66 +325186,66 @@ wWR wWR wWR wWR -hCj -tge -tge -tge -tge -tge -tge -tge -tge -tge -tge -tge -xpj -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -woo -yjQ -yjQ -yjQ -yjQ -kCw -erA -uzP -pMW -cKM -pjQ -gbX -kAN -mjX -xJn -xWp -awn -xqd -kGt -fEl -lZV -mVt -lvr -mNI -auQ -dPO -faj -dWs -dWs -mdW -mdW -mdW -gpK -urx -gpK -mnU -dsH -uRO -yjQ -ycn +iJX +dbd +dbd +dbd +dbd +dbd +dbd +dbd +dbd +dbd +dbd +dbd +gFJ +cKu +cKu +cKu +cKu +cKu +cKu +cKu +dQL +cKu +cKu +cKu +cKu +wlQ +dwp +iLs +wcw +koz +fBO +rUB +cNk +dbp +sdN +oNI +nqd +wzr +hSz +cdU +qym +ict +xGd +hMf +pAo +bQm +rJC +xPX +xPX +qDU +qDU +qDU +lBQ +qXQ +lBQ +fZq +plg +anN +cKu +uYQ wWR eSV eSV @@ -324890,70 +325439,70 @@ wWR wWR wWR mQX -fNT -fNT -fNT -fNT -woo -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -qsJ -izF -dcC -cvH -nif -xqX -hCW -jva -cKM -tir -nFr -hjB -pSE -aMD -nIQ -awn -kGt -kGt -crK -uYP -pBM -gOS -sHb -lcC -dPO -wBN -tSH -pBp -puf -kIj -qXP -hTq -nVQ -fWC -qKJ -fig -dsH -yjQ -ycn +hDB +hDB +hDB +hDB +dQL +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +ykc +luD +cIc +xoK +xoK +hWq +wnw +uuq +koz +jcr +adm +ebA +cyM +yeb +iyT +nqd +hSz +hSz +lvV +ueQ +oBV +dwA +xCX +rBF +bQm +hFW +mqU +rzI +tnl +rht +vzQ +uhK +xUH +uyj +tXJ +eVH +plg +cKu +uYQ wWR eSV eSV @@ -325146,71 +325695,71 @@ wWR wWR wWR wWR -uoO -hCj -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -eFI -fOs -lpb -kMj -eMd -fkX -sps -eAh -cKM -nVj -iwe -bfq -tYO -eIt -nwz -awn -eRu -eWy -cmK -cVA -qCs -uxr -ixH -tSH -rcl -nsI -hSn -dAn -puf -dKP -lNR -kel -sdG -hZB -hZB -qrC -gpK -yjQ -ycn +gDh +iJX +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +ach +tKO +tMs +dbe +oqZ +wwD +uPT +iDq +koz +fVj +pro +kQp +rQb +wdE +kZJ +nqd +lZg +rii +nyK +fpI +gMq +yad +iPC +mqU +qXV +gKy +jAE +cVg +tnl +sCG +gYf +eEB +lcY +vyl +vyl +aoT +lBQ +cKu +uYQ wWR eSV eSV @@ -325402,72 +325951,72 @@ wWR wWR wWR wWR -uoO -yjQ +gDh +cKu sjy -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -tSr -uvF -maV -dvv -eMd -eMd -eMd -elm -cKM -awc -ath -rEq -eGy -qDg -ttg -awn -pxZ -evq -iQy -qTF -kFw -uxr -uKK -rxY -duK -xOp -fTv -kWI -ifS -tzb -wru -dKG -nGh -nPM -xWY -nVs -gpK -yjQ -ycn +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +fKY +wFQ +cug +xoU +oqZ +oqZ +oqZ +kBe +koz +cAc +oyq +dmq +jJU +oBl +jpg +nqd +gcs +iOf +bvI +dCJ +fJJ +yad +eSK +oYj +uTO +hAI +aaF +oFy +oiv +knm +iSD +oZA +ipz +jQf +pnM +ago +lBQ +cKu +uYQ wWR eSV eSV @@ -325658,73 +326207,73 @@ wWR wWR wWR wWR -yjQ -hCj -tge -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -woo -yjQ -yjQ -yjQ -yjQ -yjQ -cvH -aJn -maV -bLp -bPj -ttd -nmy -eGe -cKM -cKM -isf -isf -uDv -isf -isf -awn -mVt -mVt -mVt -mVt -mVt -bCr -omZ -sui -upv -juH -juH -jZl -puf -efo -ili -mNc -lhX -hZB -hZB -dCn -gpK -yjQ -ycn +cKu +iJX +dbd +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +dQL +cKu +cKu +cKu +cKu +cKu +xoK +lOJ +cug +gGy +sFu +cGW +oqZ +epV +koz +hFo +qdk +qdk +sfN +qdk +qdk +nqd +ict +ict +ict +ict +ict +kJT +qga +xBv +ajR +oav +oav +hMS +tnl +xjP +vVc +snC +dlw +vyl +vyl +iRy +lBQ +cKu +uYQ wWR eSV eSV @@ -325915,73 +326464,73 @@ wWR wWR wWR wWR -uoO +gDh sjy -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -lqC -lqC -lqC -yjQ -yjQ -cvH -bNH -nTV -cPP -uZO -xSQ -wFk -cYl -jfa -aOH -jIY -jIY -bjS -jIY -jIY -pDJ -aCo -eNV -ahd -rvU -hxi -nbK -eun -ejA -cNL -dUx -dUx -jyM -puf -onY -laM -rhE -tMX -fOz -kFC -nrj -mdW -yjQ -ycn +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +pHG +pHG +pHG +cKu +cKu +xoK +hnu +oGv +cAt +cKc +ozA +uqy +dht +eJp +keX +rpT +rpT +boQ +rpT +rpT +poD +rdL +wUO +ePu +pta +jIL +oHs +pOF +mUh +qNo +gMi +gMi +wVu +tnl +ckr +rSx +cRD +oVv +cfX +uqT +wtE +qDU +cKu +uYQ wWR eSV eSV @@ -326171,74 +326720,74 @@ wWR wWR wWR wWR -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -woo -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -lqC -iBI -lqC -glu -blk -cvH -qOD -hyP -tDb -exp -gTn -ipj -sKQ -jlJ -kik -kik -kik -vJC -kik -ttN -qCa -kiU -ttN -bGm -jCx -hxi -dcS -bEx -vTk -rEv -gnY -jte -hxw -puf -puf -puf -puf -puf -puf -rVf -mdW -oIT -yjQ -ycn +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +dQL +cKu +cKu +cKu +cKu +cKu +cKu +cKu +pHG +kbP +pHG +lyB +qsY +xoK +sxz +mYq +aqe +sLq +iTp +mty +bQO +hzl +tVW +tVW +tVW +oXx +tVW +sQL +ank +oMs +sQL +fzF +uMb +jIL +nwr +pLr +oCh +jwg +syh +pYv +qIj +tnl +tnl +tnl +tnl +tnl +tnl +nTq +qDU +jkx +cKu +uYQ wWR eSV eSV @@ -326428,74 +326977,74 @@ wWR wWR wWR wWR -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -lqC -vTe -bvf -bvf -lqC -lqC -lqC -lqC -pAK -lqC -osW -mJf -cvH -nmy -nmy -nmy -nmy -nmy -nmy -kSa -nJn -aLe -one -gQC -one -ipm -siK -tio -whn -gQP -gpV -ewg -fnS -qHi -yge -nTz -aro -gxq -gsN -pmq -wQH -flH -flH -nsH -avi -nFC -qtz -sAU -jrq -yjQ -ycn +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +pHG +oqe +ein +ein +pHG +pHG +pHG +pHG +nUQ +qsY +vdE +qeC +xoK +oqZ +oqZ +oqZ +oqZ +oqZ +oqZ +wov +gPF +rhv +lMX +hqU +lMX +jLu +swX +bma +cCz +nRR +pat +pMC +mGy +cZU +fVi +pKn +dAV +wtb +qMe +uBu +frc +hXh +hXh +tnl +fMV +xnh +jVM +gdG +lBQ +cKu +uYQ wWR eSV eSV @@ -326684,77 +327233,77 @@ wWR wWR wWR wWR -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -lqC -lqC -lqC -lqC -sKP -eEE -euS -ekE -rTR -jQM -eFN -qKg -jQM -xPA -aZg -leS -hog -uwz -pcG -yfe -hfl -jsk -nxX -pPp -wIq -aMt -nnv -aMt -siK -pYU -kXF -sSf -lJc -aRM -jqD -kuC -vGk -omZ -nTz -aro -xRp -fhk -mAm -wQH -flH -flH -nsH -trj -uDm -keK -rMY -jrq -yjQ -sxB -tge -lHO +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +pHG +pHG +pHG +pHG +qkb +bPJ +htS +mOj +hSx +djJ +udQ +ozq +xMt +ubA +rjp +hzJ +pbt +dkt +vvz +pIv +rqP +xMt +oOu +wzM +dsa +itH +mco +itH +swX +fEx +eLj +nlQ +uBH +gay +hyZ +ryY +pho +qga +pKn +dAV +rDz +paR +mPC +frc +hXh +hXh +tnl +iwK +vyl +gaW +kRT +lBQ +cKu +tGt +dbd +hoE eSV eSV eSV @@ -326940,78 +327489,78 @@ wWR wWR wWR wWR -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -lqC -tYl -ugQ -lqC -eUi -rse -qDl -mKW -aOY -jQM -qRv -vgQ -jQM -jQM -frb -frb -jsk -eyG -rfS -lwE -dDi -axP -kok -myz -sna -nnv -nnv -nnv -qJf -xfP -rGO -rGO -rGO -eQr -dAw -kuC -vGk -uWZ -pDD -lFx -onL -bVs -lFx -lap -qQO -rPs -nsH -pYc -uDm -iyf -oFr -jrq -yjQ -yjQ -yjQ -ycn +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +pHG +qLN +siv +pHG +jSy +gGk +wFH +cph +ugV +djJ +cav +mfe +djJ +djJ +eai +eai +eai +wKe +sgS +wiq +evg +xtD +tlV +hvv +jjc +mco +mco +mco +qWr +vls +quC +quC +quC +gSb +tZP +ryY +pho +uCO +qsp +oaC +lam +gQG +oaC +ckQ +fjG +fkI +tnl +xMk +vyl +cuN +ejj +lBQ +cKu +cKu +cKu +uYQ wWR eSV eSV @@ -327196,79 +327745,79 @@ wWR wWR wWR wWR -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -hOF -oXQ -piy -bPK -sax -vsi -hvI -kOs -rse -jQM -bZY -vgQ -cnq -sTT -frb -eaU -jsk -pnz -buF -eco -koR -jsk -wUn -vTq -wIq -aMt -nnv -aMt -siK -oLy -qPL -qPL -qPL -eNj -fAL -kuC -vGk -omZ -abG -pjq -jgB -nyn -pjq -mHu -jOp -sGB -iyz -ldy -iaf -alA -hvj -jrq -yjQ -nwA -qnF -hPY +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +eyc +jJr +cBI +iMX +xSO +ttm +uTL +tTM +gGk +djJ +eAX +mfe +eZd +eCo +eai +ocB +eai +dOL +vGa +iHj +oJr +xMt +uTs +aon +dsa +itH +mco +itH +swX +pza +mOn +mOn +mOn +nHX +syZ +ryY +pho +qga +ckN +bAj +xaC +ksP +bAj +cxO +gzA +ian +jbI +fSf +hsU +iwv +iRy +lBQ +cKu +pWB +hCm +lEF wWR eSV eSV @@ -327453,77 +328002,77 @@ wWR wWR wWR wWR -uoO -hCj -woo -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -lqC -aaT -evp -lqC -tfx -xbf -gGU -nUr -hvI -jQM -wiF -vgQ -gdz -sTT -frb -kCf -jsk -jsk -jsk -jsk -jsk -jsk -dhz -nxf -wIq -aMt -nnv -aMt -siK -jXB -sqF -wwZ -wwZ -ieG -dIt -kuC -vGk -omZ -gwb -geL -iga -hNu -jMF -pyB -eoq -btD -nsH -pdQ -rzB -ukC -vlk -jrq -yjQ -ycn +gDh +iJX +dQL +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +pHG +vge +dvk +pHG +vjY +uWP +eDs +dHm +uTL +djJ +jZB +mfe +woh +eCo +eai +bhc +eai +eai +eai +eai +eai +eai +eMI +gLX +dsa +itH +mco +itH +swX +qva +uTf +nbf +nbf +eoL +awT +ryY +pho +qga +vvj +eTZ +rgH +hgR +inP +irl +sPq +tLw +tnl +cxD +cVN +oOg +eTu +lBQ +cKu +uYQ wWR wWR wWR @@ -327710,77 +328259,77 @@ wWR wWR wWR wWR -uoO -get -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -lqC -lqC -lqC -lqC -ryt -sAu -khP -nUr -jQM -jQM -jQM -lpj -jQM -jQM -frb -iLa -frb -tmB -frb -eLE -rbc -wel -jXB -nxf -wIq -aMt -nnv -aMt -siK -fVG -pVI -dKi -hIi -oQL -qXk -kuC -aZx -lyX -sui -wby -gsm -gsm -wby -wby -tst -wby -nsH -qVh -nsH -eGx -mVE -mVE -yjQ -ycn +gDh +rVj +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +pHG +pHG +pHG +pHG +kCe +lyW +oUR +dHm +djJ +djJ +djJ +wxN +djJ +djJ +eai +vSb +eai +sDc +eai +gNp +ykl +gLG +qva +gLX +dsa +itH +mco +itH +swX +rpb +iKa +mdY +cIf +flT +lDI +ryY +jiQ +pTv +xBv +kuL +hYD +hYD +kuL +kuL +cca +kuL +tnl +vUK +tnl +rVe +qDU +qDU +cKu +uYQ wWR eSV eSV @@ -327967,77 +328516,77 @@ wWR wWR wWR wWR -uoO -get -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -war -war -war -war -war -bbI -rYP -rYP -rYP -rYP -rYP -fRl -jQM -ixc -uAI -vgQ -fIW -vGD -frb -dBf -oQi -xcv -mQa -uTN -qAs -lRk -waj -fMK -wIq -aMt -nnv -qvR -hxi -cPk -hZU -cPk -cPk -cPk -wyB -cPk -oFL -uQN -ejA -gsm -cqK -snN -xrk -nUg -bJg -vzp -nsH -kjN -qtz -bZz -iqa -jrq -yjQ -ycn +gDh +rVj +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +kYp +kYp +kYp +kYp +kYp +aQx +fLk +fLk +fLk +fLk +fLk +scQ +djJ +cgO +qTR +mfe +nZt +ofr +eai +jcH +afR +oGS +jNl +lok +lsm +sYc +kvi +rUu +dsa +itH +mco +eaj +pUc +pUc +ndb +pUc +pUc +pUc +eDG +pUc +eem +uqA +mUh +hYD +bfM +puh +lJd +byY +xxS +pbE +tnl +nDc +jVM +mea +azd +lBQ +cKu +uYQ wWR eSV eSV @@ -328224,77 +328773,77 @@ wWR wWR wWR wWR -uoO -cws -woo -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -war -dKK -aIS -jUB -iBm -bbI -pSI -qaX -eCJ -mSZ -rYP -nVW -rse -rse -rse -vgQ -xOv -nsR -frb -aPD -gUu -pnY -frb -frb -frb -frb -cmd -qTx -wIq -aMt -nnv -aMt -rac -wwd -hyv -iVv -xZK -bHp -cFB -gJl -vGk -omZ -nTz -gsm -jCI -qTq -nEp -nEp -vCQ -lXM -nsH -tuX -cgp -inA -xOD -hGd -yjQ -ycn +gDh +sIA +dQL +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +kYp +rnb +cxH +pAI +lGE +aQx +plz +nXj +aJx +jdp +fLk +hHF +gGk +gGk +gGk +mfe +xQw +bMX +eai +fft +eVp +vJP +eai +eai +eai +eai +xLR +isb +dsa +itH +mco +itH +mKk +dUD +vAN +vuQ +dkZ +hGY +xhH +sSD +pho +qga +pKn +hYD +uRk +mvY +hPz +hPz +jat +kLs +tnl +azr +pzD +tjy +xUH +cDb +cKu +uYQ wWR eSV eSV @@ -328481,77 +329030,77 @@ wWR wWR wWR wWR -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -war -lts -tyh -ryb -cFD -eTw -iqP -jEU -bIA -dEE -rYP -xVb -sCP -rse -vgQ -sCX -nsR -nsR -frb -rZT -jOc -tZM -bGz -pRI -boi -sjS -cmd -cwA -sna -nnv -nnv -nnv -rac -bYL -eqE -joV -oUA -vna -fjz -gJl -vGk -omZ -nTz -pQr -pgO -xjl -gqw -xjl -xQW -wjA -nsH -gcT -abL -yea -xbz -jrq -yjQ -ycn +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +kYp +wIi +sMj +oEy +cHN +vUu +tkR +qrI +enM +kAt +fLk +mFK +hBM +gGk +mfe +vKx +bMX +bMX +eai +cyz +omb +nWj +qwm +gZx +cLa +fMO +xLR +jkA +jjc +mco +mco +mco +mKk +fhN +cnJ +xoo +bNO +fpl +vpk +sSD +pho +qga +pKn +vIa +nQy +dEZ +slO +dEZ +xYH +keG +tnl +vol +bOw +kSG +fOn +lBQ +cKu +uYQ wWR eSV eSV @@ -328738,77 +329287,77 @@ wWR wWR wWR wWR -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -war -liW -pwP -giV -ceJ -eob -uwg -opu -jQo -mlK -rYP -vUt -fVe -cTa -ygy -jQM -jQM -jQM -frb -sCk -gUu -gUu -gUu -gUu -gUu -sjS -jbl -fWY -wIq -aMt -nnv -aMt -rac -hpL -jhV -tzA -qEB -tzA -scj -gJl -vGk -omZ -nTz -gsm -idA -xjl -xjl -xjl -vVE -lCh -nsH -hmt -hvj -hRR -xOD -jrq -yjQ -ycn +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +kYp +qka +mIh +mWn +mGS +okI +eWk +fBH +aqj +tUP +fLk +jxf +rfd +hLJ +cDa +rkE +rkE +rkE +eai +uuU +eVp +eVp +eVp +eVp +eVp +fMO +dEY +gTO +dsa +itH +mco +itH +mKk +xMo +xfr +tXx +qWM +tXx +gXd +sSD +pho +qga +pKn +hYD +jXJ +dEZ +dEZ +dEZ +xks +kof +tnl +qMX +iRy +snC +xUH +lBQ +cKu +uYQ wWR eSV eSV @@ -328995,77 +329544,77 @@ wWR wWR wWR wWR -uoO -hCj -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -woo -war -lzl -stk -equ -pFA -wnP -cHW -dJu -apy -mhR -rYP -bhF -pWx -apb -gNc -jQM -ltr -qmZ -frb -fZp -lZz -iOI -onb -iOI -pNy -frb -ahM -hZG -vww -itI -dOG -itI -rac -cEK -nfj -joV -lvK -joV -izA -gJl -vGk -vHg -kaC -gsm -aSC -phe -fOy -xLH -hMv -vBB -nsH -raa -wyf -gBQ -aNf -jrq -yjQ -ycn +gDh +iJX +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +dQL +kYp +gGR +qvI +yaZ +giN +xCj +dOB +eqy +dIH +sAn +fLk +mHX +mLh +pJG +pTo +rkE +pgQ +lSB +eai +rcx +vWP +rWg +hip +rWg +qPk +eai +jce +qZb +gIW +vyj +naj +vyj +mKk +iMl +nBN +xoo +uhd +xoo +hpp +sSD +pho +baf +dpT +hYD +oJX +vvA +eDB +myR +xsw +rSB +tnl +ixf +oRO +vZc +ePm +lBQ +cKu +uYQ wWR wWR eSV @@ -329252,79 +329801,79 @@ wWR wWR wWR wWR -uoO -cws -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -war -hdO -joe -qbV -rbm -omP -xsr -wnv -qhr -tdr -rYP -jQM -mQC -jQM -jQM -jQM -vMh -vQI -frb -frb -frb -frb -frb -frb -frb -frb -rBA -hxi -hxi -hxi -nOy -hxi -hxi -uKQ -joV -joV -oWN -joV -viE -cPk -jZA -jZA -nap -hnU -hnU -hnU -hnU -hnU -hnU -hnU -hnU -hnU -hnU -hnU -hnU -uZf -yjQ -ycn -ohM -tZV +gDh +sIA +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +kYp +bVv +oXr +rMo +uUD +jsp +odC +bpE +kxd +cJE +fLk +xZa +lmB +xZa +xZa +rkE +fsO +bci +eai +eai +eai +eai +eai +eai +eai +eai +kiA +rkE +rkE +rkE +fHu +rkE +pUc +lOo +xoo +xoo +bwM +xoo +mRN +pUc +xPX +xPX +fsl +kuL +kuL +kuL +kuL +kuL +kuL +kuL +tnl +tnl +tnl +tnl +tnl +qDU +cKu +uYQ +eoS +wAz eSV eSV eSV @@ -329509,79 +330058,79 @@ wWR wWR wWR wWR -yjQ -yjQ -woo -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -war -pZB -uSp -eIr -soR -bbI -xlp -sSG -qVz -nQW -rYP -bsf -pWx -ocO -cpD -jQM -bWh -xWb -ova -dBO -dBO -pcl -pcl -hFt -pLA -amf -sBy -cVC -rGn -fzi -mrR -whN -fKC -bTK -xrg -xrg -xrg -xrg -ydo -bGX -xlN -jHm -yjV -sfu -vsB -gew -vsB -vsB -rZv -jQj -ycG -xic -hnU -jvt -aQO -uZf -yjQ -ycn -jGo -osR +cKu +cKu +dQL +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +kYp +sKs +bDf +tUW +kwJ +aQx +ifj +aqC +dfS +dTZ +fLk +wsC +mhg +veW +hnF +rkE +tFe +eFR +pmf +nty +nty +aoC +aoC +ncc +vzo +eHY +fLc +pWc +mQc +jMt +qDM +huk +eqd +oaA +bMG +bMG +bMG +bMG +cTc +tYZ +vhv +jXQ +cPi +ofG +vsz +luQ +vsz +vsz +dcH +rma +aBa +hFS +dAC +fRe +tor +aHQ +cKu +uYQ +eWI +dJM wWR wWR wWR @@ -329766,93 +330315,93 @@ wWR wWR wWR wWR -uoO -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -war -xWK -avT -avT -jiI -bbI -rYP -shs -rYP -rYP -rYP -pbA -lzz -wLa -wLa -qGT -wLa -wLa -wLa -wLa -xBi -wLa -sGE -wLa -sGE -rdr -cyL -jQM -wEs -ptP -naK -cqe -cMw -nHc -rBk -lTQ -sro -bEp -xfj -cPk -fIV -pmk -iCP -qju -qju -qju -qju -qju -qju -uzf -cMa -gvL -nAA -hGb -iHJ -dsM -yjQ -sxB -tge -tge -tge -tge -tge -tge -tge -tge -tge -tge -tge -tge -tge -tge -tge -lHO +gDh +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +kYp +sqA +dXF +dXF +vuG +aQx +fLk +esu +fLk +fLk +fLk +tAc +lfa +ujV +ujV +sDw +gdb +gdb +gdb +gdb +bOt +gdb +hry +gdb +hry +sdm +sAI +rkE +hdU +pUe +bMn +aKP +bNz +nKo +rcB +lCz +nDQ +bms +dFT +pUc +mgE +gff +kgW +eAa +eAa +eAa +eAa +eAa +eAa +xvg +gZD +izo +hWe +juR +sDk +gvJ +cKu +tGt +dbd +dbd +dbd +dbd +dbd +dbd +dbd +dbd +dbd +dbd +dbd +dbd +dbd +dbd +dbd +hoE wWR wWR eSV @@ -330024,93 +330573,93 @@ wWR wWR wWR wWR -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -war -fop -ntD -dLD -nMP -bbI -uIE -kmB -uwa -rYP -jYH -lNm -xFQ -jQM -jQM -jQM -jQM -jQM -xPE -jQM -jQM -jQM -jQM -jQM -jQM -jQM -jQM -jQM -jQM -xPE -jQM -jQM -jQM -cPk -cPk -cPk -cPk -cPk -cPk -cPk -eoG -xcc -nTz -kdK -dph -wza -fwf -fwf -qju -oTd -cpa -kwK -hnU -oQP -peb -uZf -yjQ -yjQ -woo -yjQ -yjQ -yjQ -woo -yjQ -yjQ -yjQ -woo -yjQ -yjQ -yjQ -yjQ -woo -yjQ -sxB -lHO +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +kYp +xLf +opn +vsR +jCn +aQx +qAN +lml +jiU +fLk +riD +oaa +rtD +wPw +wPw +wPw +wPw +plx +bGL +plx +plx +rkE +rkE +rkE +rkE +rkE +rkE +rkE +oVZ +mxI +oVZ +oVZ +pUc +pUc +pUc +pUc +pUc +pUc +pUc +pUc +nFg +sYW +pKn +xjc +nyT +nLC +bfC +bfC +eAa +wPy +czg +jLJ +dAC +xdC +kOr +aHQ +cKu +cKu +dQL +cKu +cKu +cKu +dQL +cKu +cKu +cKu +dQL +cKu +cKu +cKu +cKu +dQL +cKu +tGt +hoE wWR wWR eSV @@ -330282,34 +330831,34 @@ wWR wWR wWR wWR -yjQ +cKu cZj -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -war -axf -qzz -wBk -iGk -oCJ -nRH -mZG -uIF -rYP -chM -rse -cUC -lcF -mxx -lUZ -veD +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +kYp +mPq +quG +rjH +iWS +fNj +pHY +fyE +pGg +fLk +gqA +wkl +ojt +wPw +qiX +tzQ +mMV plx wOw lEY @@ -330333,42 +330882,42 @@ phb phb phb oVZ -pSK -mQW -bWW -qvo -aXN -uTD -fwf -fwf -igx -igx -igx -igx -igx -buB -buB -tIY -jPZ -fCo -wBV -iJn -hVi -mjv -mjv -hBQ -qlm -eQF -hBQ -jbM -xTM -vzC -jbM -wha -shK -yjQ -sxB -lHO +wXx +ydN +mJM +fmH +xbr +qsr +bfC +bfC +pDK +vnN +vnN +vnN +vnN +vnN +szR +lwL +uTu +mxS +lwL +wQR +eVU +aWQ +aWQ +bOF +lsU +jEV +hbD +gXQ +hOR +sfv +gXQ +vUX +ana +cKu +tGt +hoE wWR eSV eSV @@ -330540,33 +331089,33 @@ wWR wWR wWR wWR -get -gPo -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -war -lzl -hkx -hkx -qdb -jRm -hJr -vRA -sFK -rYP -chM -rse -cUC -lcF -tIH -cEc -ere +rVj +tml +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +kYp +gGR +aBL +aBL +jaq +dpN +oiI +eqA +dtN +fLk +gqA +wkl +ojt +wPw +wph +ePP +oDf plx lrP muQ @@ -330590,42 +331139,42 @@ phb phb phb bOb -lxY -utw -vnc -bSF -bSF -bSF -bSF -bSF -igx -tLH -kus -edJ -sAi -oTz -frA -kNE -vXT -gBs -bdJ -pMn -nFd -ngg -tyR -vbt -hwo -ouk -mrv -wHy -clH -wHy -gBz -nMv -qIs -shK -yjQ -ycn +bzw +ake +aCe +eAa +eAa +eAa +eAa +eAa +pDK +fpb +qMC +nnH +wOR +iNt +ubz +lmW +lWf +dHF +szR +sTk +clg +grD +cvw +aRj +vbV +qrH +vxh +fLf +tnt +fLf +jOn +who +vkU +ana +cKu +uYQ wWR eSV eSV @@ -330797,33 +331346,33 @@ wWR wWR wWR wWR -qXg -gzK -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -war -lbW -tBg -jRV -mfh -bbI -dgb -aJU -voz -rYP -chM -rse -vWe -lcF -rAM -unI -mBO +tFE +jkB +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +kYp +gTJ +uHh +mhT +lWW +aQx +pCv +exe +wAL +fLk +gqA +wkl +eYn +wPw +shX +lCS +vOd plx gNI muQ @@ -330847,42 +331396,42 @@ phb phb phb oVZ -cEh -yjg -lMb -bSF -rEi -cDR -nem -rDb -igx -acX -aQh -daT -aZa -oTz -npn -hHP -dem -qCt -bdJ -njz -nPR -nGX -wWO -vbt -rUd -ycP -aHC -lsK -ccM -lsK -wDG -rgY -jvj -qIs -shK -ycn +ryl +jNS +uxm +tZu +wnF +wtN +dsm +dzE +vnN +ndA +iko +gww +rkm +iNt +sHg +lch +cvV +rWS +szR +cbw +oiP +dxT +ovB +aRj +wEu +oLw +yeP +xtz +suS +xtz +bwK +tiq +sTA +vkU +ana +uYQ wWR eSV eSV @@ -331058,29 +331607,29 @@ tFE jkB cKu cKu -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -war -ckC -sSk -oJN -xYS -bbI -rYP -idC -rYP -rYP -dMs -jQM -jQM -lcF -neA -ohn -bEa +cKu +cKu +cKu +cKu +cKu +cKu +kYp +xzP +tdC +dAD +krd +aQx +fLk +jrH +fLk +fLk +sqr +agj +agj +wPw +rbG +jSZ +sIP plx fhs muQ @@ -331104,42 +331653,42 @@ phb phb phb vcg -kHe -qXG -yfJ -jjT -dxn -hIP -bSF -bSF -igx -sxd -isJ -aIz -iAR -oTz -jfK -ulN -uYJ -tNL -bdJ -weT -aNe -nGX -swC -vbt -nVM -jQR -diQ -diQ -fXi -diQ -uHM -jQA -lCr -hLd -pUQ -ycn +mOz +bKr +wfT +khL +nNA +srQ +tZu +tZu +vnN +wyC +dhr +uds +tCj +iNt +crD +mVF +kvX +cOY +szR +wql +hWd +dxT +twf +aRj +wgy +tHe +nQb +nQb +tDZ +nQb +aKd +qLJ +vJq +jJc +ogP +uYQ wWR eSV eSV @@ -331315,29 +331864,29 @@ eNJ peF cKu cKu -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -war -mhQ -tiJ -ktY -tDM -bbI -rKp -fFo -ppo -aja -avD -jQM -jQM -lcF -lcF -kJv -lcF +cKu +cKu +cKu +cKu +cKu +cKu +kYp +fgS +kZj +flq +uTe +aQx +hGn +pSn +jPN +oEY +gqA +agj +agj +wPw +wPw +piz +wPw plx gdF muQ @@ -331361,42 +331910,42 @@ phb phb phb vcg -kHe -ixH -uwo -bSF -tWC -qvA -xXD -ijE -igx -osY -wNw -tTw -gDa -oTz -iAN -xJi -eZI -sNx -bdJ -oUt -hRp -vtj -ezv -pZh -pKT -sZw -mIz -oeN -uYF -oeN -tro -iQz -lII -fpd -qcz -ycn +mOz +iPC +sml +tZu +tkp +cqp +ldB +bzZ +vnN +kML +fQX +tqb +vEQ +iNt +msH +vJK +xEj +tJd +szR +sgz +kYG +nyU +mSm +fnJ +aap +qEm +aeL +flc +iQu +flc +geV +mjr +lOz +oxI +cpA +uYQ wWR eSV eSV @@ -331575,26 +332124,26 @@ cKu cZj cZj cZj -yjQ -yjQ -yjQ -war -bGL -glX -lve -jRA -bbI -pQD -ddx -opJ -gkM -iKS -jgv -lbU -xbe -mNi -gBj -cmZ +cKu +cKu +cKu +kYp +rqe +lnj +vkg +sFY +aQx +qxa +utG +ljK +mAg +oXd +agj +iBr +eVs +iDr +sOk +vMN plx qSP muQ @@ -331618,42 +332167,42 @@ phb phb phb vcg -kHe -ixH -xtl -ccv -ccv -ccv -ccv -ccv -igx -dYL -xlI -cJt -aTo -buB -asc -duB -iQt -sRm -bdJ -rbe -ulX -xUb -bZG -vbt -guw -jth -gIv -vfS -hZc -qxH -gIo -diC -lHv -ofl -hRe -ycn +mOz +iPC +uAO +qZa +qZa +qZa +qZa +qZa +vnN +kmm +txV +lkb +iza +vnN +ffl +tnj +pIb +tMK +szR +ogZ +iNl +ijx +lYC +aRj +qmh +xDc +rnO +dNR +scX +fsc +sCa +epv +fYU +reE +qlP +uYQ wWR eSV eSV @@ -331829,29 +332378,29 @@ wWR uMQ ryE cKu -yjQ -yjQ -yjQ -yjQ +cKu +cKu +cKu +cKu cZj -yjQ -war -dJa -eYc -fCj -xYS -bbI -tTJ -fDP -jJE -jJE -jJE -jgv -jgv -jgv -aJj -ebH -pdt +cKu +kYp +irn +gEU +gkJ +krd +aQx +hOD +jYF +agj +agj +agj +agj +agj +agj +hfL +kzB +qNl plx vtw muQ @@ -331875,42 +332424,42 @@ phb phb phb vcg -kHe -nEZ -bit -nSS -uqJ -hEz -utx -sVc -igx -xpA -aZF -qAJ -aEE -buB -pvQ -tXe -huW -hTf -bdJ -nqJ -nFd -nFd -hpV -vbt -khe -uxn -dQC -osE -que -nzt -iZA -rWm -frV -adU -pcy -ycn +mOz +ioj +kIW +aun +hJp +jpY +pcf +wef +vnN +gkb +byc +czb +sQh +vnN +iWZ +azE +ouc +pvW +szR +wnY +clg +clg +hpK +aRj +hCM +hAz +iIN +wso +gjA +cZq +chn +cuq +gBt +wwR +nbr +uYQ wWR eSV eSV @@ -332092,23 +332641,23 @@ hCm hCm hCm gqN -war -lbW -uwO -mpA -ceJ -bbI -iud -fDP -jJE -qTr -qTr -jgv -ruv -eCB -pcN -ykU -vfi +kYp +gTJ +aDN +bAD +mGS +aQx +sGU +jYF +agj +beP +beP +agj +uCC +pkD +tem +qGA +twM plx tBI eSz @@ -332132,42 +332681,42 @@ phb phb phb oVZ -hpd -fZJ -mNX -ccv -grn -fNz -aiz -ptA -igx -hDD -hDD -hDD -qYW -buB -vxo -fvO -fvO -jBl -bdJ -wQW -wrk -uyA -jdy -vbt -vbt -exJ -vbt -pyk -fOp -trD -oUw -vbt -sEb -vbt -hBQ -ycn +byn +wzI +ldT +rvd +xhY +yet +nfL +opB +vnN +ncp +ncp +ncp +wDe +vnN +lyK +iRZ +iRZ +qUt +szR +jKX +oip +kxU +ozg +aRj +hiO +lIp +hiO +dXa +kYq +aFp +gYK +hiO +wFn +hiO +hbD +uYQ wWR eSV eSV @@ -332349,23 +332898,23 @@ qfo qfo qfo rVj -war -xrH -xHj -tUH -uzr -bbI -bdI -fDP -jJE -hRg -eLO -jgv -jgv -jgv -epG -bIe -fJx +kYp +qJx +lzK +wor +jZO +aQx +dhn +jYF +agj +hsg +sJu +agj +agj +agj +khZ +tGz +pDm plx bEB iHv @@ -332389,42 +332938,42 @@ phb phb phb oVZ -nBL -jZA -pgf -ccv -ccv -ccv -hrw -vju -eEM -gUw -hPE -pNg -iLT -nEE -iLT -rye -cwi -qoe -bdJ -cTo -hhC -rBv -bwY -oJk -adD -kvw -ugx -nLT -nLT -ohq -nLT -sMl -nLT -wvR -nWK -ycn +uRR +qVK +teq +rvd +rvd +rvd +mYe +eQq +vpJ +trf +sdB +lMo +buH +sQF +buH +oFp +jPx +vFx +aRj +dGA +uNB +cAx +ksI +aRj +vQu +fUX +jVr +qTX +qTX +vBO +qTX +mTw +qTX +joA +xBh +uYQ wWR eSV eSV @@ -332606,23 +333155,23 @@ qfo qfo qfo rVj -war -ayA -wBU -fmB -yiJ -bbI -gCo -fDP -jJE -quq -quq -lhQ -jvS -jvS -jhQ -rqq -lrq +kYp +fLu +usH +ozS +fOA +aQx +jgb +jYF +agj +fzV +fzV +fJz +uFk +uFk +fPz +twB +qdZ plx loj wyn @@ -332646,43 +333195,43 @@ phb phb phb bOb -mZk -bJe -ucb -dtc -dtc -dtc -dtc -dtc -dtc -jif -pKl -eDu -qHn -hEd -ajk -sOO -uNi -mWv -bdJ -fsR -aCL -bhm -bhR -dGH -tEp -ehe -uEO -uEO -sAS -oJk -tCN -qGw -rIb -oXj -mlR -sxB -lHO +elq +ndt +tFw +iLL +iLL +iLL +iLL +iLL +wJp +efU +oZU +qGg +kQa +tok +iIj +poi +dbR +mgO +aRj +kzR +gfL +ong +swV +waO +iUC +uKB +sOl +sOl +nmM +cCN +cqb +prd +fbw +eUu +pwy +tGt +hoE eSV eSV eSV @@ -332863,23 +333412,23 @@ qfo qfo qfo rVj -exm -dfU -dfU -dfU -dfU -dfU -pQD -fDP -jJE -sOm -dEc -sZI -sZI -sZI -sZI -rIN -bej +jQk +jGE +jGE +jGE +jGE +jGE +qxa +jYF +agj +vhk +sjr +pRR +pRR +pRR +pRR +pai +cFq plx xav lHY @@ -332903,43 +333452,43 @@ phb phb phb bOb -qdj -nyY -dVW -fbv -cXh -xNH -bSX -hxM -dtc -lOC -pDI -uvj -iwc -ipo -cLU -jGa -jNe -mvv -bIC -pDP -ijC -ijC -bHI -oJk -gyH -uxb -xZq -hhp -pRM -yit -uOr -erJ -gQv -mUJ -xJN -woo -ycn +sBz +cyc +dGD +yds +qcN +rna +vUF +mki +wJp +jXb +tsM +hvw +vGO +srr +wdr +oSw +kxX +gYo +kQD +psh +tPk +tPk +kPh +aRj +iFv +lWt +ceu +pGq +ndF +rsa +uFJ +haF +pTC +bAf +rMe +dQL +uYQ eSV eSV eSV @@ -333120,23 +333669,23 @@ qfo qfo qfo rVj -bNX -jBY -gFr -bTa -qJQ -dfU -tKg -fDP -jJE -fYe -jgv -diu -eUv -eUv -eUv -sFZ -maC +dZK +mln +cZX +jBt +uXh +jGE +qJm +jYF +agj +kWF +agj +wSJ +iEV +iEV +iEV +nza +fDm plx dHa jFB @@ -333160,43 +333709,43 @@ phb phb phb bOb -qdj -nyY -tQE -hvS -aEV -xMS -uhP -mRZ -sNO -oPx -gFu -ksx -lRe -bri -btc -oHM -bco -aHT -bhe -baA -sPm -ulX -ipV -rta -pVD -jqB -cEH -rCw -wWJ -tOQ -apW -fdP -uyB -pxf -hvW -msI -ycn +sBz +cyc +iAQ +iqz +shM +sai +dHR +oCX +esv +tsc +bGp +pxw +lYW +pgw +qZU +ukx +brx +dGi +jeR +nVX +eRH +iNl +xIe +jXm +jll +sJe +mCu +wYh +qNE +ruf +mvD +gHC +gdJ +qTs +jHf +hxd +uYQ eSV eSV eSV @@ -333377,23 +333926,23 @@ qfo qfo qfo rVj -bNX -vSd -qrG -fGc -lFP -stW -ePL -bbV -jcP -lXS -jgv -jgv -kim -jXy -aJr -ygv -oca +dZK +vbQ +eGR +tsW +fpe +iVr +qHc +mhI +prK +mFp +agj +agj +vey +cvr +mSh +uBq +dwa plx jAX bPp @@ -333417,43 +333966,43 @@ bOb bOb oVZ oVZ -kPE -jSe -fmN -beO -bIm -rGP -sjb -eVQ -sNO -vvX -pVJ -hWt -cHy -tCX -wna -fIT -tCX -gGf -bdJ -bdJ -oEZ -xZI -cXn -uzp -krv -jqB -jdg -jJA -kzm -dFA -apw -aRX -xcj -eUh -bzH -xJN -ycn +wHg +oPt +vnT +ddd +typ +pof +iuj +idB +esv +kKK +qZQ +xnY +eok +wJp +qBd +wqO +wJp +eUr +aRj +aRj +tyr +xtS +uxB +wjx +tZI +sJe +vVz +hrm +lEp +tHl +pOZ +xwU +rdS +ipD +glt +rMe +uYQ eSV eSV eSV @@ -333634,83 +334183,83 @@ qfo qfo qfo rVj -bNX -obo -mnn -ltl -hxE -udA -xuf -dpO -cYz -cmP -cuI -jgv -jgv -jgv -jgv -jgv -tUL +dZK +wTc +lly +ijw +cyl +xRT +fmD +nMj +lvO +aOK +qty +agj +agj +agj +agj +agj +mgy plx plx jvH euR plx -uxF -wRZ -wRZ -qVs -ull -pvA +hvX +qtY +qtY +trK +pFz +pWv oVZ mCS muu oVZ oVZ -uxF -wRZ -wRZ -wRZ -xzu -rvb -rRl -wDy -rux -bVd -dtc -fkR -qIu -jMx -ool -sNO -sbk -ctl -mvv -ojy -pDK -bcH -hWG -bpe -tKj -mOP -sWQ -tkc -hRZ -uLc -aNd -ccO -ouU -qAS -aVY -ogd -gyE -lqI -vuT -ylm -nLm -akf -xJN -ycn +hvX +qtY +qtY +qtY +kip +hdT +nLb +gSW +oNT +fRg +iLL +jVe +pIi +oFB +ics +esv +oFk +ixo +gYo +kgs +kyN +goq +srA +hoU +rFV +rzX +acS +ybI +ylY +mFt +bUB +oVC +dna +vRS +vUk +tjX +dZL +wbh +jkS +sYX +jKD +dtM +rMe +uYQ eSV eSV eSV @@ -333891,83 +334440,83 @@ nGb nGb nGb bcN -exm -udA -isZ -udA -udA -udA -jJE -kvR -jJE -gtk -fWg -kXD -whS -dIx -jJE -lsF -tEM -jVR -cYq -mwc -pUi -jkM -dGg -bUi -rwx -rwx -rwx -vER -qey -jpa -qwY -agG -blT -aOc -aOc -aOc -aOc -aOc -aOc -dpM -uRG -ftg -fQg -jHe -fet -hQG -hQG -fut -dtc -uol -ctl -mvv -ilq -xkh -kDG -qhF -gmC -jeW -xnP -xnw -bUA -mcV -xQy -oJk -pwa -sAv -bJj -leK -rtf -hbY -koW -odc -vZA -nLm -eJc -dcZ -ycn +jQk +xRT +xHv +xRT +xRT +xRT +kKc +uSB +kKc +hlT +dUz +lSW +dEo +nPy +xZa +nxi +rmq +cvt +hIE +jtP +pKf +kwj +duY +jmD +iZO +iZO +iZO +tPu +eCm +xbs +eOv +imk +daq +fdJ +fdJ +fdJ +fdJ +fdJ +fdJ +lzr +mmB +bKA +iEb +hqS +uRY +fVp +fVp +ozW +wJp +aqt +ixo +gYo +klK +lnD +kPl +inb +irf +dmW +svo +wJp +cxf +mdl +maz +cCN +ofJ +vFs +nCm +vgH +sLS +pvH +sJE +aid +oqi +jKD +krX +xOw +uYQ eSV eSV eSV @@ -334148,83 +334697,83 @@ qfo qfo qfo rVj -gHL -dCL -xkV -inu -qPU -iMC -uyD -nLk -pnw -xpa -nrS -ued -bPN -bGv -dAY -rpc -lPD -vxv -yfP -nCv -jOM -eGn -qVD -vRi -faS -faS -bjy -rpR -faS -yiX -mYv -jOM -jOM -jOM -imV -jOM -faS -sef -nsr -nsr -nsr -gTv -hrP -xDB -pMp -ghU -pYP -aqO -bTE -jMM -lTB -dtB -tCX -odq -etr -aPl -rMn -gMI -qaY -eDD -nEI -dfH -fvR -pFa -jLO -suk -iFO -cfu -oAX -voF -fhb -hfn -ylm -nLm -jHw -xJN -ycn +aPs +ozN +fEA +twm +pXk +dvz +jkU +wqP +vZo +qcH +vfe +ugw +cmD +jNi +vzG +aMa +fev +upL +dIB +sNw +qvc +mxO +jkJ +gRv +wfV +wfV +dHh +rVn +wfV +psm +qZy +qvc +qvc +qvc +pfJ +qvc +wfV +unB +giT +giT +giT +iNH +tda +kCF +hPo +phH +wcg +wVO +sbJ +aBW +vVD +oSi +wJp +spu +vog +cJV +vtW +fOH +cwt +wVe +bai +lYW +ePf +qgp +pUW +oNy +uHk +xNy +ijD +lLO +aKt +hbG +sYX +jKD +uQy +rMe +uYQ eSV eSV eSV @@ -334405,83 +334954,83 @@ qfo qfo qfo rVj -urB -oli -ykq -hYS -jkG -lYA -cYn -fLg -wfm -hlt -uNq -jJE -gvC -eGZ -eGZ -gHl -gHl -gHl -gHl -rcO -rcO -rRl -tmg -qTT -koI -rBs -sVk -nkh -oLx -bNg -gwL -vzu -cQT -nkh -qTY -abI -oHu -qdj -quN -caW -caW -fpF -ggM -xDB -aYs -sba -hLp -xrr -btk -aJu -oHM -nsM -uvp -pfY -oEd -aPl -kDe -cVi -cVi -cVi -vYg -aDT -djj -uzp -lHL -mlU -qxi -tAd -eqt -dkm -apw -aRX -erX -uPm -qYU -xJN -ycn +nKm +agk +xIG +qRB +jyq +ulx +szv +toa +bMq +czV +lUF +xZa +gNZ +dmo +dmo +qkm +qkm +qkm +qkm +xLh +xLh +nLb +nDq +jVF +wnI +esB +moW +ctK +khR +eHd +aIO +uOs +tgm +ctK +tyc +ylj +meV +sBz +cxS +wGH +wGH +aiT +twe +kCF +mmD +qUZ +kYg +lrE +gil +ilk +ukx +qvY +hSo +pPa +wEn +cJV +eud +czE +czE +czE +uBU +aRc +hRt +ric +bQr +aba +fdh +nnk +cuT +pCS +pOZ +xwU +xDb +dNK +gmi +rMe +uYQ eSV eSV eSV @@ -334662,83 +335211,83 @@ qfo qfo qfo rVj -fJb -dnW -dDa -wgH -eaq -aYV -jrE -sbQ -wfm -tWA -uSK -tWA -hTs +pBZ +uJd +ilj +xIk +eHV +qPy +wWE +aFA +bMq +waP +sRT +waP +aDM eqD eqD eqD eqD eqD -gHl -pmS -lUo -rRl -aGW -vFl -mDa -juG -nKl -jYw -cqi -fDR -fuj -dNC -ezS -egW -nMt -sfV -abI -qdj -wRe -ndf -ndf -xKb -qrj -dtc -dtc -dtc -dtc -dtc -dtc -bQI -iqE -nxS -aSF -qRj -bnr -tOh -wSx -aCf -qWZ -kUQ -kfV -lOr -pVo -oJk -oJk -tWZ -jdg -uzv -mOA -qhu -rBZ -ndR -klt -gIO -vav -woi -ycn +qkm +ess +oCg +nLb +nMw +swq +nZM +xlc +kTA +tgH +ppd +bYI +xxg +hhV +kcX +nbY +dFd +gKT +ylj +sBz +xLy +qYP +qYP +vsv +gFv +iLL +iLL +iLL +iLL +iLL +wJp +pLX +aUu +pNY +yeC +iBC +vQy +fmp +dNm +dln +jwO +eZx +fUj +rtA +bqS +czE +cCN +tWB +vVz +rLi +cjU +dDs +hyG +oPb +guY +iJD +nzg +gln +uYQ eSV eSV eSV @@ -334919,83 +335468,83 @@ jsF qfo qfo rVj -urB -aTZ -xhJ -wgH -rZH -dnQ -ezO -xCd -wfm -grB -dQq -tWA -gOn +nKm +aaC +qLD +xIk +nin +cLf +fyf +lxV +bMq +rfl +xTV +waP +tTf eqD eqD eqD eqD eqD -gHl -ozV -viI -egr -qEI -gAs -lOa -jKM -pZT -lVi -eUU -iHf -eCu -iHf -cqi -egW -lOa -jKM -pZT -rvM -caW -caW -caW -fpF -viI -xCr -geM -wJo -wbq -fRE -xUv -lvl -ngr -jVh -xfX -ngm -tBG -bGY -qmg -cCB -jQD -wDL -oor -jAz -dHK -aQj -vQw -eaF -jdg -eGd -qrg -mgD -ene -xsO -vLA -sAR -xJN -woo -ycn +qkm +gyR +pdc +mQI +bGg +iTM +hFA +uMd +arR +atS +dCu +cah +fsZ +cah +ppd +nbY +hFA +uMd +arR +oSn +wGH +wGH +wGH +aiT +pdc +eUf +lJa +snd +wbW +jPx +iOa +uAq +ooE +uCu +ykx +oEG +cwr +rMJ +cGS +jgs +mwn +hFu +bDN +bmu +wBP +dlq +qim +oYo +vVz +uQl +lPB +hOh +xsQ +gPD +aUP +neh +rMe +dQL +uYQ eSV eSV eSV @@ -335176,83 +335725,83 @@ dJM qfo qfo rVj -mQv -jtx -tZs -wgH -nPo -vgN -ezO -kxr -wfm -dcM -mgn -tWA -mbY +pXI +mSF +fdS +xIk +fwN +tiA +fyf +tbG +bMq +qKu +ceW +waP +dEH eqD eqD eqD eqD eqD -gHl -ozV -caW -smo -xMA -liG -sPZ -wbS -aXy -jYw -iHf -jYw -tDq -iHf -jYw -icY -sPZ -eCu -tcD -mBI -caW -caW -caW -xaJ -ucx -gbp -gHl -wJo -dtI -wXU -tSb -tnm -lFo -oYR -okg -lHK -atw -bcm -lVn -bkA -auL -iWa -kuq -vqu -tUF -joD -yjo -auo -uEO -uEO -yfp -oJk -ifo -tFa -uwj -oXj -xJN -nwA -hPY +qkm +gyR +wGH +nMK +vYF +ldi +wZG +lul +mZE +tgH +cah +tgH +aOd +cah +tgH +jpy +wZG +fsZ +nFG +ifi +wGH +wGH +wGH +ryc +eZb +wli +qkm +snd +ebc +oqc +wyV +qkf +wYw +pir +eFs +fZC +tGp +fRk +jKB +dpQ +fuE +rHn +euu +fPV +xmQ +rNJ +uDW +vus +sOl +sOl +vws +cCN +jVw +vBx +ucU +eUu +rMe +pWB +lEF eSV eSV eSV @@ -335433,82 +335982,82 @@ xYC qfo qfo rVj -fJb -aTZ -xhJ -mUz -rZH -vgN -ezO -kHN -wfm -bfk -fSO -tWA -gOn +pBZ +aaC +qLD +ehX +nin +tiA +fyf +tmM +bMq +qcg +fzQ +waP +tTf eqD eqD eqD eqD eqD -gHl -ozV -qGk -sAV -jJG -uDh -svt -okQ -lSR -eUU -iHf -ezS -xtp -wbS -iHf -tcQ -svt -okQ -lSR -oJS -caW -caW -caW -hSM -vnQ -ttb -kgA -aBS -aDA -eix -nfi -kmV -qCe -rWV -iZN -rfI -lnA -xvK -nzo -xLF -lRo -eFH -bvU -taf -jZb -oJk -myc -lrv -kOP -fXW -rsY -jXO -vEP -muK -dql -sUz -woi -ycn +qkm +gyR +jDY +ozj +kNL +hyI +nqf +xCI +qZE +dCu +cah +kcX +vNs +lul +cah +rIe +nqf +xCI +qZE +lVY +wGH +wGH +wGH +lmL +azC +xlM +vGn +dDr +fJy +wqq +kNo +ihI +thL +csr +uQc +kyP +hyJ +dOQ +det +kLd +pBl +eEA +wrB +aIc +icI +czE +dBC +pwE +cCX +mbD +czO +bFC +bVT +sgN +wSI +gJM +gln +uYQ wWR eSV eSV @@ -335690,82 +336239,82 @@ dbd dbd dbd gFJ -urB -bzs -dDa -mUz -rZH -vgN -ezO -lpg -wfm -tWA -nRb -tWA -klM +nKm +tuO +ilj +ehX +nin +tiA +fyf +fXp +bMq +waP +nIu +waP +reL eqD eqD eqD eqD eqD -gHl -nhl -eAJ -rRl -amX -gAs -nMt -iiI -nKl -nOv -prU -eUU -jYw -eCu -ogs -loZ -nMt -iiI -nKl -qdj -eYk -gOC -gOC -qGR -qrj -tXk -tXk -tXk -tXk -tXk -tXk -aPy -srJ -nzK -vcv -ruJ -gbf -nyw -nzK -nzK -nzK -ipf -nzK -bpC -bpC -bpC -mXQ -bpC -bpC -oJk -dtP -oJk -oJk -oJk -oJk -oJk -nWK -ycn +qkm +ohP +uKG +nLb +oYt +iTM +dFd +tHN +kTA +eEa +bnA +dCu +tgH +fsZ +oMV +xzj +dFd +tHN +kTA +sBz +kdF +iHF +iHF +hEH +gFv +gtL +gtL +gtL +gtL +gtL +gtL +jod +uyN +mfA +oWz +pSf +vax +rfv +mfA +mfA +mfA +uJf +nOV +nOV +nOV +nOV +nlN +nOV +jOs +jOs +fgA +jOs +jOs +jOs +jOs +jOs +azp +uYQ wWR eSV eSV @@ -335947,82 +336496,82 @@ dQL cKu cKu cKu -urB -dtl -vks -jsZ -rZH -vgN -ezO -cal -wfm -twE -cjQ -jJE -gvC -eGZ -jze -jze -jze -jze -jze -jRG -jRG -rRl -hsc -fLm -lOa -jKM -pZT -rXz -ptt -gke -wfv -fzx -bsS -sWG -lOa -jKM -pZT -qdj -qVM -caW -caW -umQ -ggM -aVk -vot -gHa -ktz -yar -tXk -pbd -vEj -gCk -bqa -sEy -cTT -eQZ -nzK -tux -fXO -jkk -nzK -cqA -tGw -eMG -ykV -bmf -bpC -uhC -jGg -dgi -uER -ohG -iHG -xzW -rtp -ycn +nKm +isR +lwO +kAW +nin +tiA +fyf +iTS +bMq +cEx +pmo +dUo +eZW +dtd +qkm +qkm +qkm +qkm +qkm +nLb +nLb +nLb +vGe +tCP +hFA +uMd +arR +dqF +paJ +ljn +dvq +ogi +fFN +wzf +hFA +uMd +arR +sBz +mJc +wGH +wGH +gFz +twe +jLW +gQm +lff +eSZ +hay +gtL +vlz +edt +cOD +sMR +rDF +smE +lhU +mfA +aSy +lEK +kWh +nOV +cWD +wCn +tdW +kyE +mtx +jOs +ncP +mMu +iFp +uDJ +glJ +nen +ikQ +uAX +uYQ wWR eSV eSV @@ -336204,82 +336753,82 @@ cKu xLZ xLZ xLZ -gHL -wOE -oLQ -qLp -jvN -iyw -lIW -uTX -anl -ppI -gCH -srb -gpq -oZo -jRG -orp -okv -cnG -xEP -voA -idV -uCm -qEI -gAs -sPZ -ezS -tcD -rPc -pqL -mDa -okQ -vub -wtx -izn -sPZ -iHf -tcD -qdj -caW -qJq -sZW -nps -dWw -aVk -lUS -bjd -uJs -adh -oNw -uBy -bnu -sek -wbR -nmt -icZ -pXo -nzK -rNk -oEg -jjS -nzK -fbF -sbi -eMG -aIB -iOk -bpC -aaP -phf -xED -fdk -ffa -ffa -hQq -rtp -ycn +aPs +hMq +gDL +puJ +vkH +wbD +bVR +vPe +ggz +cmU +iOo +rNY +ltz +qxr +gbq +eNi +nlk +lTU +eEo +tXX +nbD +wfw +bGg +iTM +wZG +kcX +nFG +twr +rag +nZM +xCI +tod +upW +bdD +wZG +cah +nFG +sBz +wGH +esx +xlV +xMD +rWl +jLW +eCO +eEy +diH +hTR +jCa +ruO +oLC +mvj +ikW +iRg +nqO +jbC +mfA +yiZ +dPH +sQC +nOV +gQq +wCe +tdW +sJy +poP +jOs +bcT +bHK +wcC +iyA +oCS +oCS +lCF +uAX +uYQ wWR eSV eSV @@ -336459,84 +337008,84 @@ cKu cKu cKu xLZ -vgr -vgr -gHL -gHL -gHL -gHL -gHL -gHL -gHL -gHL -gHL -mfv -gxz -jJE -dIC -diY -jRG -azk -oEL -nnI -nnI -nnI -idV -qdj -xMA -qjU -svt -okQ -lSR -wlY -pqL -nMt -iiI -ekG -wtx -bqw -svt -okQ -lSR -mBI -caW -lDD -uGl -sqS -ggM -aVk -efF -cLW -cLW -lQC -tiW -tPa -ccV -iLm -tUX -wzC -wzC -tNE -jig -ols -nuJ -jsT -nzK -eMG -rGk -eMG -kWd -cPV -sTo -agd -xdd -xED -skF -jzT -mSU -rLO -aFD -ycn +aPs +aPs +aPs +aPs +aPs +aPs +aPs +aPs +aPs +aPs +aPs +lrG +qjo +dUo +oHJ +sBN +gbq +eMo +tUz +xDE +xDE +xDE +nbD +sBz +vYF +tWl +nqf +xCI +qZE +bqg +rag +dFd +tHN +uHi +upW +kLy +nqf +xCI +qZE +ifi +wGH +eju +aFX +xyl +twe +jLW +amu +ajf +ajf +anw +cXa +uWM +cFR +pGS +mNy +qcL +qcL +eTb +bhW +lNb +oAe +oCN +nOV +tdW +kju +tdW +ibY +fKi +jtz +fSa +hwS +wcC +ryM +bSp +qnj +rUz +rEY +uYQ wWR eSV eSV @@ -336716,84 +337265,84 @@ cKu cKu cKu xLZ -vgr -oec -oec -oec -oec -oec -oec -oec -oec -oec -oec -pcF -djp -jJE -wyQ -ppI -jRG -ekI -ulO -yee -ngX -qVo -gow -tMe -gVO -fLm -ndy -eKY -aoj -gVv -afg -fFK -jKM -wwa -sgs -qAD -ndy -eKY -cpp -qdj -caW -kLa -rmg -sqS -cSf -tXk -fHN -jeD -nFX -wZf -tXk -nFw -inU -nzK -eaE -boa -vos -vWj -dsl -sda -rdi -ocX -nzK -ycA -nTe -wpV -xdr -syO -bpC -jYW -den -sGJ -swZ -swZ -xvd -uOQ -rtp -ycn +kcC +wNN +wNN +wNN +wNN +wNN +wNN +wNN +wNN +wNN +wNN +uQe +hxn +dUo +smc +cmU +gbq +hbh +fua +xBq +mtf +eBS +hqp +ssd +mED +tCP +oHG +oXL +qYb +iVx +imH +nmC +uMd +vVS +vtS +jpr +oHG +oXL +vso +sBz +wGH +eEh +fDQ +xyl +rRQ +gtL +mLF +nXS +abX +kPY +gtL +xMl +ogc +mfA +imp +tnW +aNY +pKm +eed +ecC +nUG +cbz +nOV +cYN +yhF +hpl +mfZ +moK +jOs +njs +mmq +oEo +ycC +ycC +nDN +dDU +uAX +uYQ wWR eSV eSV @@ -336973,84 +337522,84 @@ cKu cKu cKu xLZ -vgr -oec -gjd -fdf -him -wjk -nRA -sSe -gTt -xzE -oec -eGZ -kZx -jJE -pSb -ppI -jRG -eUY -nnI -uyt -ldN -rIf -vmq -caW -hVR -daP -wMX -nTt -eDN -hbR -hYg -viS -jXT -wbL -fGN -aLH -eDN -sRB -iTP -nef -fsh -caW -caW -fcp -ggM -aVk -pik -kVk -aGt -pda -wxz -kEQ -ibd -iZM -ibb -kQZ -pvJ -jiM -dXV -mnG -uNu -dLT -nzK -ipr -cZs -gWf -tMb -fFl -bpC -hdv -owI -tzh -vFm -vFm -vlm -qZv -rtp -dAc +kcC +wNN +llU +lrn +sQk +fvH +uSC +lKv +fgw +wrx +wNN +dtd +vFj +dUo +vFC +cmU +gbq +mOo +xDE +vjb +wTv +dzz +bUX +wGH +uBh +llL +vmh +qcV +cWV +tIZ +kLJ +wsa +ifO +ylT +kPk +ift +cWV +bGO +qjy +wfX +lSw +wGH +wGH +ttT +twe +jLW +kTD +aTG +lgp +cCi +gZy +jWb +quD +kJq +gct +vRI +hez +aVu +eaR +wpB +kKY +vDq +nOV +cju +cGA +vOC +uHq +kqP +jOs +cIR +oyd +boP +dEz +dEz +iZB +yih +uAX +xCH wWR eSV eSV @@ -337230,84 +337779,84 @@ cKu cKu cKu xLZ -vgr -oec -hQc -aWW -xzm -iSM -iSM -sRE -bYb -eVg -oec -eGZ -pOE -gDd -uhn -aKK -jRG -aik -nnI -uyt -dqz -gkP -idV -uXP -lmF -bpR -gFZ -eOa -bPB -uPD -mjF -nRE -gbl -nRE -fYv -gof -gof -iQF -gqM -qdj -sWi -imA -imA -fcp -dWw -fON -otA -bXr -hhk -hhk -jjF -nhN -jNg -nzK -qbH -jPr -woq -nZL -nzK -sBA -bkq -eup -nzK -bpC -bpC -bpC -puZ -bpC -bpC -rkg -kDy -gBY -gYu -vlm -slg -jBw -dYe -ycn +kcC +wNN +eRN +cwX +lSU +wDl +wDl +jht +mtC +gOc +wNN +dtd +pSa +wVj +ftv +wgT +gbq +oXk +xDE +vjb +hhc +ntz +nbD +glv +gkf +flY +oOT +cyy +dfs +fUI +rVL +tZj +glH +tZj +nWb +vRF +vRF +kNA +tCC +sBz +nKR +wet +wet +ttT +rWl +hET +aYk +cmO +cDO +cDO +otp +iUw +lKu +mfA +kDM +rXr +dry +pzy +mfA +uoQ +dKZ +pXJ +nOV +nOV +nOV +nOV +ore +nOV +jOs +xqH +qNx +eWz +ssg +iZB +sqt +oLg +tFW +uYQ wWR eSV eSV @@ -337487,84 +338036,84 @@ cKu cKu cKu xLZ -vgr -oec -xNA -wFh -fjD -waE -fjD -xif -pQV -xRB -oec -eGZ -qkT -uWT -dOK -iBz -jRG -awj -kTy -hWZ -myb -rRl -rRl -rRl -qdj -gKV -vfa -elk -byl -iaW -mgP -nQr -nQr -nQr -sde -eDY -wyy -xHP -eUD -qdj -lkK -qBb -sEJ -eqQ -ggM -fON -hBC -tPn -cuz -vEZ -fuX -xib -hgY -nzK -oFc -kDS -dtm -iWd -boe -dtm -qKH -nkf -kRe -gmO -jqS -oBs -dib -nOF -aPw -qpH -mQi -bbw -uei -slg -jBw -dYe -yjQ -ycn +kcC +wNN +wYH +vwW +nOc +tmm +nOc +lPd +lID +acx +wNN +dtd +tia +dNN +vcE +qzx +gbq +lNc +vop +kLl +gQR +nLb +nLb +nLb +sBz +npq +bBU +jFy +mmS +cEI +xfp +tBc +tBc +tBc +tvL +pUD +sIM +woE +nyg +sBz +qmI +iMK +cuX +vDr +twe +hET +hTK +qlt +xLt +iyi +afy +bqH +jot +mfA +aQT +bgT +lwc +fNd +kJD +lwc +bwu +tkG +prO +dpg +asl +vqv +mwk +uev +rIW +rPb +mpK +naf +pZW +sqt +oLg +tFW +cKu +uYQ wWR eSV eSV @@ -337744,84 +338293,84 @@ cKu jkB cKu xLZ -vgr -oec -oec -poE -iZy -wat -rJy -roy -cAI -uhi -oec -eGZ -jmC -biP -jfG -qRa -jRG -jRG -wZg -jRG -jRG -rRl -tKZ -nMy -qdj -kEm -nMt -sfV -uhe -omn -mPr -gum -hwz -kjF -yjH -omn -mDa -juG -nKl -mBI -xDO -mWd -eFq -tpG -ggM -tXk -tXk -tXk -tXk -tXk -tXk -xnw -atu -nzK -oTW -oBo -hOI -lBU -nzK -qwl -lsz -unW -aQy -sNv -drs -oPk -nfr -euh -knR -iDL -iDL -eES -eES -eES -dYe -yjQ -nwA -hPY +kcC +wNN +wNN +jzR +pAQ +ogp +ibJ +noO +jAW +qyV +wNN +dtd +xpU +twt +dUo +eMt +gbq +gbq +cKO +gbq +gbq +nLb +czj +rnJ +sBz +kcM +dFd +gKT +hIz +oVn +sop +fFD +wTF +wtR +aoU +oVn +nZM +xlc +kTA +ifi +jHI +tZo +xTx +oiU +twe +gtL +gtL +gtL +gtL +gtL +gtL +fVY +jcc +mfA +oIR +lCB +ltb +jDG +mfA +trx +vLF +iJe +dCY +oVL +vTm +lcJ +fCL +mNC +bKO +azp +azp +jWg +jWg +jWg +tFW +cKu +pWB +lEF wWR eSV eSV @@ -338001,83 +338550,83 @@ rWq eio cKu xLZ -vgr -oec -oec -lsc -plO -oRs -faZ -jvG -gRl -oec -oec -pzN -pzN -kqq -pzN -npm -jIQ -jfG -kRg -nzP -nzP -rRl -wJz -nMy -qdj -gKV -fFK -jKM -cSJ -vEG -msQ -wNG -gLu -aRJ -jJY -qne -fFK -jKM -tdb -qCC -hcz -rSr -lmF -uek -jjH -sXH -uYU -guo -mgs -aEL -lEm -vBs -tAT -jYp -uIm -pay -bBO -tkq -pRi -eGm -qYR -hdR -knR -knR -qTS -qTS -qTS -knR -knR +kcC +wNN +wNN +tqk +fnA +nJU +pur +cXB +xyr +wNN +wNN +dtd +dtd +inT +dtd +jCr +skJ +dUo +kvI +nfV +nfV +nLb +bBz +rnJ +sBz +npq +nmC +uMd +mLI +pyz +jPq +qyw +qof +hPO +uaV +xLS +nmC +uMd +uUB +iqp +cjA +gnt +gkf +hKk +uch +hiJ +uiK +oyA +xiE +vKB +xcZ +qod +qwI +upn +fgr +kaD +jKJ +btI +qQj +vrE +gRg +fza +jLH +bKO +lDY +lDY +lDY +bKO +bKO cKu -yjQ -yjQ -yjQ -yjQ -yjQ -nwA -hPY +cKu +cKu +cKu +cKu +cKu +pWB +lEF wWR wWR eSV @@ -338258,64 +338807,64 @@ xLZ xLZ xLZ xLZ -vgr -oec -snz -uBc -oHk -xlZ -tdh -upA -aSW -oec -oec -ctm -uhN -oIi -pzN -wQs -npm -npm -kRg -oFZ -vgR -rRl -tKZ -pwD -dUb -bEP -rRl -pTV -pTV -omn -oGX -xYU -tOw -tOw -udc -omn -qyb -qyb -qyb -cLg -jbq -qyb -wDy -iDe -bkK -sXH -oYB -mke -mUQ -rWH -nhA -adz -hPm -eSv +kcC +wNN +iRm +cxa +tfm +hDQ +sia +jZk +brM +wNN +wNN +nAO +xkn +gPO +hUv +vvr +jCr +jCr +kvI +gQZ +xuy +nLb +czj +rYf +mPS +yaw +oVn +yav +yav +oVn +roa +kMr +bgE +bgE +cZk +oVn +qBZ +qBZ +qBZ +avR +mhG +qBZ +gSW +dBJ +pcz +hiJ +efy +mmt +jEa +uad +hhb +ujt +wAO +dBS cKu -laB +nCB nSf -nzI +fDN nSf gDh dQL @@ -338328,12 +338877,12 @@ cKu cKu dQL cKu -yjQ -yjQ -yjQ -woo -nwA -hPY +cKu +cKu +cKu +dQL +pWB +lEF wWR wWR eSV @@ -338506,75 +339055,75 @@ eSV eSV rVj gkW -nru -nru -nru -nru -nru -nru -nru -nru -nru -vgr -oec -qZu -hLj -eGu -jnV -xlZ -ffz -kPW -hNi -hSu -tGP -cqQ -wuT -pzN -nXe -npm -cYC -kRg -oFZ -cbc -rRl -rRl -rRl -rRl -fzO -rRl -jur -vkD -lwA -eLW -mAa -rJK -rJK -cDU -qne -hxJ -eDq -eDq -jZN -bst -qyb -kPE -pRw -uhI -dVv -aQa -nnu -mgs -bHf -eCj -eCj -xRl -eSv +qWk +qWk +qWk +qWk +qWk +qWk +qWk +qWk +qWk +kcC +wNN +djE +cmW +ifw +hNr +hDQ +jyL +jhc +sHc +fUQ +vFr +ffd +fzC +hUv +hIb +jCr +xeg +kvI +gQZ +iug +nLb +nLb +nLb +nLb +rxl +oVn +vMY +iIz +oht +lzk +tcc +ffP +ffP +vNe +xLS +uDl +hYv +hYv +oHh +gFa +qBZ +wHg +tBP +sBk +iro +wnJ +uXj +xiE +kHq +hpj +hpj +pIM +dBS cKu -nWK -gOo -tCi -vjR -sRg +xBh +pxB +uWw +aek +xBh hCm hCm hCm @@ -338585,11 +339134,11 @@ hCm hCm hCm hCm -qnF -qnF -qnF -qnF -hPY +hCm +hCm +hCm +hCm +lEF wWR wWR eSV @@ -338763,74 +339312,74 @@ eSV eSV rVj xLZ -nru -wgx -wgx -wgx -wgx -wgx -wgx -wgx -wgx -oec -oec -mIb -xIL -exB -oHk -oHk -cVd -ovP -oec -oec -qpQ -sns -vXm -pzN -tSs -gyT -iFu -kRg -wbo -oFZ -jfG -vAM -thN -gOy -wTo -jfG -eRh -xyM -rzL -oRV -iLk -xsH -lfp -axF -qne -gWT -eDq -eDq -vgM -kyJ -qyb -cIa -jVX -ggM -dVv -hIW -afr -ciE -pOJ -pfy -dQG -wBO -jYp +qWk +qGv +qGv +qGv +qGv +qGv +qGv +qGv +qGv +wNN +wNN +tdM +wok +rGm +tfm +tfm +aCQ +dJX +wNN +wNN +fak +pIW +tWL +hUv +ncJ +suY +clp +kvI +wlb +gQZ +nKW +cRv +mkH +rkT +lcp +oVn +ufE +key +hjg +azV +yfd +lei +gBh +yfR +xLS +qFc +hYv +hYv +izr +gjI +qBZ +vAZ +agp +twe +iro +dQZ +bZQ +aZe +qex +eHz +jok +qii +upn cKu -kjk -oLJ -pYf -jWr +xuY +mVH +kPL +uKc byV gVP dkx @@ -339020,74 +339569,74 @@ eSV eSV rVj xLZ -nru -wgx -vVj -tfl -wCL -cPs -skh -wgx -gNk -euk -oec -vde -uaJ -mEs -oHk -nYj -cVd -oVR -oec -oec -pzN -pzN -pbr -pzN -pud -jfG -jfG -qRa -jfG -jfG -jfG -vXm -jfG -heq -oDc -jfG -omn -omn -omn -omn -omn -omn -omn -omn -omn -tjH -lEy -vTV -nIZ -xNt -btP -xjE -uiT -ggM -tWn -nOt -wvr -tol -pOJ -kfo -kfo -xRl -eSv +qWk +qGv +tOi +wQG +lLC +tuf +xJD +qGv +rSA +grv +wNN +hrE +aOl +rcZ +tfm +dgz +aCQ +wiV +wNN +wNN +hUv +hUv +lyD +hUv +sLy +nKW +nKW +dkw +nKW +nKW +nKW +tWL +nKW +kZr +pZq +oVn +oVn +oVn +oVn +oVn +oVn +oVn +oVn +oVn +oVn +anc +dSr +kaA +udk +bme +oJI +nEe +aDP +twe +fok +ooz +uJS +jND +qex +koE +koE +pIM +dBS cKu -nWK -noa -ivB -iYl +xBh +rSo +tiC +uVz goM eVT rnl @@ -339277,74 +339826,74 @@ eSV eSV rVj xLZ -nru -wgx -evQ -aeC -mBV -vRr -uxN -tfI -tIk -sbC -oec -oec -slj -mOr -xNc -cev -teP -wpv -oec -oec -kjY -nHz -vXm -jfG -jfG -jfG -uhN -eVO -ebZ -rnV -uhN -hHJ -jfG -lAI -naL -osr -xyW -rIj -wiZ -wiZ -wiZ -krN -rLk -wiZ -paF -vBm -eDq -eDq -hVy -mtP -cLg -qdj -fDX -iqU -fsU -mzy -qVE -dUr -rCC -uHz -uHz -vWX -eSv +qWk +qGv +wfY +sqc +izC +grA +oOU +kmC +fLv +kGR +wNN +wNN +oIM +qEe +nBw +qtc +tPX +brK +wNN +wNN +hyq +vom +tWL +nKW +nKW +nKW +xkn +olm +cKl +xrW +xkn +vqN +nKW +lxO +sOy +wZx +tiY +gjg +fNY +fNY +fNY +fGk +nXr +fNY +qbe +seP +hYv +hYv +wZC +rWv +avR +sBz +dtU +ydF +hHM +kAa +vwi +nBz +tBN +gSB +gSB +pBw +dBS cKu -kjk -ugm -gor -bIJ +xuY +xyC +sAj +sUQ xgK eVT mgG @@ -339534,75 +340083,75 @@ eSV eSV rVj xLZ -nru -wgx -vVj -gAE -myx -kXc -lzM -wgx -sAd -wgC -woA -oec -oec -oec -fkT -fkT -jec -qit -oec -oec -uWm -wZT -umK -mhs -mhs -aYe -mhs -mhs -mhs -mhs -mhs -vCX -jfG -hgm -xmW -wiW -jfG -xJL +qWk +qGv +tOi +fUk +lHy +rRD +lUB +qGv +rAr +uRi +fgY +wNN +wNN +wNN +jkm +jkm +viM +aOt +wNN +wNN +gBO +boC +wwC +cek +cek +kFv +cek +cek +cek +cek +cek +ojS +nKW +fKg +pcd +ilL +sph +gwP bAO bAO bAO bAO -xuV -ozD -jfG -tqE -hIe -eDq -ted -vtE -qyb -fWV -caW -sDp -sXH -vXU -qVV -mgs -gCL -nXk -cRx -ihc -jYp +wRD +mTk +qBZ +sFy +bAb +hYv +khy +fHY +qBZ +aUF +wGH +cVv +hiJ +jHQ +wWN +xiE +cGG +sQX +vSE +qAG +upn cKu -nWK -lUl -yiU -poe -sRg +xBh +aqZ +nXb +dNa +xBh dkx wWR wWR @@ -339791,44 +340340,44 @@ eSV eSV rVj xLZ -nru -wgx -sKh -cGu -wgx -mye -epU -wgx -nVt -chN -oGY -cJW -tzw -jLX -sPv -xZS -lCM -ucw -oec -oec -lBx -pvB -xmW -pyr -xmW -txc -xmW -fyQ -ozD -rjX -hRc +qWk +qGv +tnk +jAf +qGv +vXJ +rjt +qGv +vmw +ntq +tHq +lqg +eyA +ngB +bVu +nhZ +sAq +oBb +wNN +wNN +mRS +hpG +ptB +vjz +ptB +eMF +ptB +mXk +oCi +nGN +rjl jnz jnz lJw -reP +dvn lJw lJw -sLu +dYZ bAO jEX aUy @@ -339842,21 +340391,21 @@ jmg jmg jmg xMK -wBd -lrL -sOA -sXH -sXH -sXH -mgs -mgs -mgs -jYp -jYp -sRg +cdq +ovl +lKH +aCj +aCj +aCj +isQ +isQ +isQ +jyb +upn +upn cKu cKu -laB +nCB tEl cKu uYQ @@ -340048,30 +340597,30 @@ eSV eSV rVj xLZ -vBn -rnK -xdD -lca -bLG -spU -gyU -rnK -qEN -bAr -gsq -bpu -vOp -sqx -xQv -wsu -rfb -mmg -oec -oec -tqF -tqF -tqF -tqF +miS +uyp +jIt +feU +cZY +rwD +kDq +uyp +wbT +qoK +nWM +lKl +jHR +ghb +cQl +iYB +fEZ +icW +wNN +wNN +nqk +nqk +nqk +nqk vRE jnz qmS @@ -340082,10 +340631,10 @@ jnz jnz kjr wkv -qxP +aAs iVS lJw -xJL +gwP bAO nxB lIh @@ -340099,21 +340648,21 @@ tXr xGM duG xMK -kKV -jdS -gDq -bhB -elI -hpo -iLd -nrV -jUH -tNP +oBD +vaV +hWB +lDo +nwX +fTH +lGy +oOn +vxJ +jyb cKu dQL cKu cKu -laB +nCB tEl cKu uYQ @@ -340305,30 +340854,30 @@ eSV eSV rVj xLZ -vBn -rnK -wOB -qVx -lvc -jaa -wnW -rnK -tCw -wcF -foZ -the -nwo -jLX -nJc -uTp -dZd -hcR -oec -oec -sRg +miS +uyp +oRf +mVe +djw +ntt +jZS +uyp +eyg +mgc +eJt +rOO +lBL +ngB +hap +xOj +aYr +dTK +wNN +wNN +nqk +cKu cKu cKu -sor vRE ylJ hse @@ -340342,7 +340891,7 @@ mmW rsH wPY lJw -xJL +gwP bAO dyX mvb @@ -340356,21 +340905,21 @@ dZr osd bpQ gFM -tqJ -gDA -mtP -bhB -xug -jCl -lSO -qXD -qXD -rdq +lkz +vZu +hkE +lDo +dxP +bOy +rzb +jpo +jpo +rUt cKu cKu cKu cKu -laB +nCB tEl cKu uYQ @@ -340562,27 +341111,27 @@ eSV eSV rVj xLZ -vBn -rnK -aKy -rnK -jmn -rnK -rDs -rnK -vnf -aNn -wED -jLX -iwX -iwX -iwX -iwX -yly -iwX -iwX -nix -sRg +miS +uyp +hLV +uyp +uqY +uyp +rSl +uyp +uVk +vpt +dZY +ngB +oKR +oKR +oKR +oKR +fpM +oKR +oKR +xut +nqk cKu cKu dQL @@ -340599,7 +341148,7 @@ rYy eZZ ydr lJw -ieQ +gIg bAO nlt oPh @@ -340613,21 +341162,21 @@ pHk bCA dOC ucN -tqJ -maA -pMm -jVH -tWQ -nkJ -nIa -jMv -hBa -rdq +oMa +wul +cvA +kyz +qHa +wVx +qOL +fsQ +lAw +rUt cKu dQL cKu cKu -laB +nCB uzW cKu uYQ @@ -340819,26 +341368,26 @@ eSV eSV rVj xLZ -vBn -rnK -iCd -rnK -rnK -rnK -iCd -rnK -oxu -xJq -asO -jLX -iwX -fWl -mAo -vup -xyF -bik -iwX -nix +miS +uyp +bgt +uyp +uyp +uyp +bgt +uyp +fgV +eZu +xNk +ngB +oKR +hgA +cSx +tAY +aky +iVt +oKR +xut xLZ cKu cKu @@ -340856,7 +341405,7 @@ hNH wLV ipM lJw -xJL +gwP bAO liy rfm @@ -340870,16 +341419,16 @@ ykf rRp eZO ucN -tqJ -gDA -mtP -bhB -xZV -rzA -acA -mpn -jXL -rdq +oMa +iIh +hkE +lDo +uZs +qaS +xFm +nRY +lTT +rUt cKu cKu cKu @@ -341076,26 +341625,26 @@ eSV eSV sIA gNr -vBn -rnK -rnK -rnK -vvG -rnK -rnK -rnK -iNU -gVf -plu -jLX -iwX -cTL -gpC -jRM -qps -hqT -iwX -nix +miS +uyp +uyp +uyp +kzt +uyp +uyp +uyp +wUl +cJa +mSl +ngB +oKR +mEk +naT +pqm +pTN +ihL +oKR +xut xLZ cKu cKu @@ -341113,7 +341662,7 @@ ify dGJ adT lJw -xJL +gwP bAO xYG uPu @@ -341127,16 +341676,16 @@ alH wzm kjt xMK -jzx -gDA -mtP -bhB -cKn -kgB -lBP -tJS -doO -tNP +dUu +iIh +hkE +lDo +vKA +hLr +uVF +hjI +hOO +jyb cKu dQL cKu @@ -341333,26 +341882,26 @@ eSV eSV eSV mKl -vBn -vBn -vBn -vBn -vBn -vBn -vBn -rnK -jLX -uvE -jLX -jLX -iwX -eFD -wAG -pQe -wMU -ibS -iwX -nix +miS +miS +miS +miS +miS +miS +miS +uyp +ngB +ixO +ngB +ngB +oKR +xtc +hCL +wZJ +pvs +jBf +oKR +xut xLZ cKu cKu @@ -341384,22 +341933,22 @@ jUk oRv oRv xMK -cUz -gDA -bxQ -wKb -wKb -wKb -wKb -wKb -uyC -xLN -xLN -lxW -jch -mlt -xLN -xLN +mrr +iIh +oGw +aCj +aCj +aCj +aCj +aCj +upy +pNG +pNG +myZ +qDO +gWL +pNG +pNG rIh cFU wWR @@ -341596,20 +342145,20 @@ xLZ xLZ xLZ xLZ -nru -nru -dFU -ngh -rZJ -jNw -iwX -tJD -jRM -alh -jRM -gfk -iwX -nix +mUn +mUn +bsu +nhk +tnJ +mUn +oKR +auD +pqm +tEm +pqm +qIf +oKR +xut xLZ cKu cKu @@ -341641,22 +342190,22 @@ kQP vmx uqe pnO -kKL -kgN -kjf -vLD -emd -vTl -udW -nCU -uyC -mwP -sUE -mBK -ajv -gpZ -wiE -pgZ +pPM +jDW +fXo +tdp +iTG +lNN +jiV +btu +upy +yez +faD +enw +fVE +bwO +lrt +pfc rWa vte wWR @@ -341855,18 +342404,18 @@ cKu cKu xLZ sRg -fUF -poq -jNw -nix -iwX -vgn -oaB -oaB -oaB -vgn -iwX -nix +wmT +eli +mUn +xut +oKR +vsg +vUc +vUc +vUc +vsg +oKR +xut xLZ cKu cKu @@ -341898,22 +342447,22 @@ hBZ pmK pmK jgd -tqJ -wbf -xwP -hKg -hKg -fpJ -fJF -roJ -eVv -yjZ -aBc -elp -lWI -mqc -mqc -sno +oMa +bPI +yer +qUJ +qUJ +foa +iyh +seX +vRW +aHd +uMz +cdc +ikO +qRQ +qRQ +wNe lng oKX bAn @@ -342115,15 +342664,15 @@ xLZ xLZ dQL xLZ -nix -iwX -iwX -iwX -iwX -iwX -iwX -iwX -nix +xut +oKR +oKR +oKR +oKR +oKR +oKR +oKR +xut xLZ dQL cKu @@ -342155,22 +342704,22 @@ kBn wJB wJB jgd -pqt -qpf -qpf -qpf -ubJ -iCj -gDq -mYI -uyC -nLJ -qpS -qIH -wdb -xIJ -mqc -sno +tFL +lUn +lUn +lUn +nTW +vgV +hWB +thz +upy +slZ +hga +itP +wpz +wJX +qRQ +wNe lng oKX bAn @@ -342372,15 +342921,15 @@ cKu cKu cKu xLZ -nix -nix -nix -nix -nix -nix -nix -nix -nix +xut +xut +xut +xut +xut +xut +xut +xut +xut xLZ cKu cKu @@ -342412,22 +342961,22 @@ oCm hCQ hCQ hCQ -hEI -ufX -iOE -mGn -gFO -lOx -mtP -oly -uyC -eYG -uqq -qIH -xTa -mqc -mqc -sno +tIA +bgK +rjZ +lkD +dug +gpA +hkE +vwq +upy +pCp +csH +itP +nRL +qRQ +qRQ +wNe lng vte wWR @@ -342665,26 +343214,26 @@ nIF ovT tLt dlu -qJW -fJM -gks -gWY -urQ -urQ -urQ -urQ -tqJ -lOx -mtP -rSi -uyC -fPl -rOx -kBE -mgI -pmb -aua -gxA +wAH +oob +gue +qQD +awq +awq +awq +awq +oMa +gpA +hkE +jLB +upy +nkQ +ley +rps +vXd +fHg +wsl +rBq rWa vte wWR @@ -342922,26 +343471,26 @@ nIF bvA iQG dlu -vxj -qzp -nvI -jfG -wod -gKp -qVg -tTL -mLC -sYP -nFJ -oyv -uyC -clE -aIp -twI -txj -bkB -nfQ -oxW +jrQ +hsX +odY +uty +vEe +fTS +ygd +mrN +saV +qaR +vTd +nNB +upy +xHn +uWi +hoZ +xVV +vob +pfq +gep enO jek wWR @@ -343179,26 +343728,26 @@ nIF iJv jEj dlu -bDO -nim -wBF -tqF -woM -odI -woM -wGq -meL -wJq -meL -wGq -xLN -xLN -bgQ -nNb -sEM -dCF -qNR -mEm +bUb +wwX +oGB +vVZ +ujH +jhO +ujH +hig +dyc +fax +dyc +hig +hig +hig +voq +ggn +bgu +wML +rks +myd uSr iGg wWR @@ -343436,26 +343985,26 @@ jiH jiH jiH jiH -hob -hob -hob -hob -yjQ -yjQ -yjQ -ycv -agS -xKk -sbO -xyQ -ehc -xLN -hnR -rFW -uuS -vZa -fzm -xLN +vVZ +vVZ +vVZ +vVZ +cKu +cKu +cKu +hig +iXw +wPe +uIp +rMf +lbC +hig +eiD +gXD +cac +gaN +hYr +pNG uSr iGg wWR @@ -343690,29 +344239,29 @@ xmT nMT eIM was -nwA -qnF -yjQ -yjQ -yjQ -yjQ +pWB +hCm +cKu +cKu +cKu +cKu ebM -qnF -uNz -yjQ -mJm -kMq -xJa -pPN -akr -ehc -xLN -xLN -mlr -gJH -mlt -xLN -xLN +hCm +ryE +cKu +bXy +pDQ +ddB +eyB +oPC +lbC +hig +pNG +rMy +iOd +gWL +pNG +pNG fEC xZr tOp @@ -343947,23 +344496,23 @@ xmT nMT qGa was -ycn -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -get -yjQ -mJm -eYh -ovZ -ycv -ycv -ycv -ycv +uYQ +cKu +cKu +cKu +cKu +cKu +cKu +cKu +rVj +cKu +bXy +meJ +ily +hig +hig +hig +hig cKu cKu cKu @@ -344204,31 +344753,31 @@ bhI bhI qgB was -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu jRB -yjQ -mJm -ilU -lwk -mJm -yjQ -yjQ +cKu +bXy +oxt +cQS +bXy +cKu +cKu jRB -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -ycn +cKu +cKu +cKu +cKu +cKu +cKu +cKu +uYQ qlr wWR wWR @@ -344461,31 +345010,31 @@ vLo vLo was was -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -ycv -eEL -qhU -mJm -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -ycn +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +hig +ehx +uhS +bXy +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +uYQ wWR wWR wWR @@ -344711,38 +345260,38 @@ vPd vPd vPd aSZ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -ycv -loM -gyr -mJm -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -nwA -hPY +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +hig +old +pwV +bXy +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +pWB +lEF wWR wWR wWR @@ -344968,37 +345517,37 @@ vPd vPd vPd aSZ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu jRB -yjQ -ycv -jrK -iCm -ycv -yjQ -yjQ +cKu +hig +mRA +fnb +hig +cKu +cKu jRB -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -ycn +cKu +cKu +cKu +cKu +cKu +cKu +uYQ wWR wWR wWR @@ -345225,37 +345774,37 @@ ctH ctH obI xAo -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -ycv -gxZ -mwZ -ycv -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -nwA -hPY +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +hig +umX +fOW +hig +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +pWB +lEF wWR wWR eSV @@ -345482,36 +346031,36 @@ bRs bRs bRs xAo -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -ycv -paE -cdG -jDj -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -ycn +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +hig +isA +gih +onl +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +uYQ wWR wWR eSV @@ -345739,36 +346288,36 @@ fXu xAo xAo xAo -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -mYS -yjQ -ycv -rZl -oBS -ycv -yjQ -yjQ +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +gVB +cKu +hig +wLF +dCh +hig +cKu +cKu nhR -yjQ -yjQ -yjQ -yjQ -yjQ -ycn +cKu +cKu +cKu +cKu +cKu +uYQ wWR wWR eSV @@ -345983,49 +346532,49 @@ wWR wWR wWR wWR -get -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -ycv -mJm -ycv -cIu -pGU -ycv -lzZ -ycv -ycv -yjQ -yjQ -yjQ -yjQ -yjQ -ycn +rVj +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +hig +bXy +hig +qot +dsV +hig +asF +hig +hig +cKu +cKu +cKu +cKu +cKu +uYQ wWR wWR eSV @@ -346240,49 +346789,49 @@ wWR wWR wWR wWR -get -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -baH -pEo -cZh -vOm -pGU -fLh -vXj -gRA -dTY -yjQ -yjQ -yjQ -nwA -qnF -hPY +rVj +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +uMf +lxa +dJp +pJn +dsV +hTL +bcA +sws +rAm +cKu +cKu +cKu +pWB +hCm +lEF wWR wWR eSV @@ -346497,47 +347046,47 @@ wWR wWR wWR wWR -get -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -raZ -mWz -leR -hsx -ejE -ior -kzV -dfI -bOO -yjQ -yjQ -yjQ -dAc +rVj +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +qxh +jKL +fCe +jkv +gZd +spB +ldA +omJ +fPv +cKu +cKu +cKu +xCH wWR wWR wWR @@ -346754,47 +347303,47 @@ wWR wWR wWR wWR -get -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -ycv -ycv -ycv -vOm -pGU -ycv -ycv -lzZ -ycv -yjQ -yjQ -nwA -hPY +rVj +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +hig +hig +hig +pJn +dsV +hig +hig +asF +hig +cKu +cKu +pWB +lEF eSV eSV eSV @@ -347011,46 +347560,46 @@ wWR wWR wWR wWR -get -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ +rVj +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu gVB -yjQ -cFI -nbW -saf -mJm -yjQ -yjQ +cKu +oQv +gtn +fkY +bXy +cKu +cKu nhR -yjQ -yjQ -ycn +cKu +cKu +uYQ eSV eSV eSV @@ -347268,46 +347817,46 @@ wWR wWR wWR wWR -get -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -ycv -yiW -iDp -ycv -yjQ -yjQ -yjQ -yjQ -nwA -hPY +rVj +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +hig +imj +wUs +hig +cKu +cKu +cKu +cKu +pWB +lEF eSV eSV eSV @@ -347525,45 +348074,45 @@ wWR wWR wWR wWR -get -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -mJm -pxp -xwK -ycv -yjQ -yjQ -yjQ -yjQ -ycn +rVj +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +bXy +hRP +cae +hig +cKu +cKu +cKu +cKu +uYQ eSV eSV eSV @@ -347782,45 +348331,45 @@ wWR wWR wWR wWR -get -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ +rVj +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu jRB -yjQ -ycv -eNc -pvX -mJm -yjQ -yjQ +cKu +hig +jmZ +rZt +bXy +cKu +cKu jRB -nwA -hPY +pWB +lEF eSV eSV eSV @@ -348039,43 +348588,43 @@ wWR wWR wWR wWR -get -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ +rVj +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu ebM -yjQ -yjQ +cKu +cKu ebM -yjQ -cws +cKu +sIA ebM -ycv -vTZ -ibc -ycv +hig +gKf +uve +hig ebM -yjQ -yjQ +cKu +cKu gHN eSV eSV @@ -348296,44 +348845,44 @@ wWR wWR wWR wWR -get -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -ycn -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -get -yjQ -yjQ -nwA -hPY +rVj +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +uYQ +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +rVj +cKu +cKu +pWB +lEF eSV eSV eSV @@ -348553,42 +349102,42 @@ wWR wWR wWR wWR -get -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -sxB +rVj +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +tGt nHZ -yjQ -yjQ -yjQ -yjQ -yjQ -lHO +cKu +cKu +cKu +cKu +cKu +hoE jRB -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ +cKu +cKu +cKu +cKu +cKu +cKu +cKu nhR eSV eSV @@ -348810,43 +349359,43 @@ eSV eSV wWR wWR -cws -qnF -qnF -qnF -uNz -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -nwA -hPY +sIA +hCm +hCm +hCm +ryE +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +pWB +lEF eSV eSV eSV @@ -349071,38 +349620,38 @@ eSV eSV eSV eSV -get -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ +rVj +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu ebM -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -ycn +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +uYQ eSV eSV npI @@ -349328,38 +349877,38 @@ eSV eSV eSV eSV -get -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -nwA -hPY +rVj +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +pWB +lEF eSV eSV eSV @@ -349585,37 +350134,37 @@ eSV eSV eSV eSV -cws -uNz -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -ycn +sIA +ryE +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +uYQ eSV eSV eSV @@ -349843,36 +350392,36 @@ eSV eSV eSV eSV -get -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -nwA -hPY +rVj +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +pWB +lEF eSV eSV eSV @@ -350100,35 +350649,35 @@ eSV eSV eSV eSV -get -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -ycn +rVj +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +uYQ eSV eSV eSV @@ -350357,35 +350906,35 @@ eSV eSV eSV eSV -cws -uNz -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -nwA -hPY +sIA +ryE +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +pWB +lEF eSV eSV eSV @@ -350615,33 +351164,33 @@ eSV eSV eSV eSV -get -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -ycn +rVj +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +uYQ eSV eSV eSV @@ -350872,33 +351421,33 @@ eSV eSV eSV eSV -get -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -nwA -hPY +rVj +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +pWB +lEF eSV eSV eSV @@ -351129,32 +351678,32 @@ eSV eSV eSV eSV -cws -uNz -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -ycn +sIA +ryE +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +uYQ eSV eSV eSV @@ -351387,31 +351936,31 @@ eSV eSV eSV eSV -get -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -nwA -hPY +rVj +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +pWB +lEF eSV eSV eSV @@ -351644,30 +352193,30 @@ eSV eSV eSV eSV -get -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -ycn +rVj +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +uYQ eSV eSV eSV @@ -351901,30 +352450,30 @@ eSV eSV eSV eSV -cws -uNz -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -nwA -hPY +sIA +ryE +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +pWB +lEF eSV eSV eSV @@ -352159,28 +352708,28 @@ eSV eSV eSV eSV -get -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -ycn +rVj +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +uYQ eSV eSV eSV @@ -352416,28 +352965,28 @@ eSV eSV eSV eSV -get -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -ycn +rVj +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +uYQ eSV eSV eSV @@ -352670,41 +353219,41 @@ eSV eSV eSV eSV -hCj -tge -tge -xpj -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -sxB -tge -tge -tge -tge -tge -tge -tge -tge -tge -lHO +iJX +dbd +dbd +gFJ +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +tGt +dbd +dbd +dbd +dbd +dbd +dbd +dbd +dbd +dbd +hoE eSV eSV eSV @@ -352926,43 +353475,43 @@ eSV eSV eSV eSV -hCj -xpj -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -sxB -lHO +iJX +gFJ +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +tGt +hoE eSV eSV eSV @@ -353183,43 +353732,43 @@ eSV eSV eSV eSV -get -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -ycn +rVj +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +uYQ eSV eSV eSV @@ -353440,43 +353989,43 @@ eSV eSV eSV eSV -get -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -ycn +rVj +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +uYQ eSV eSV eSV @@ -353697,43 +354246,43 @@ eSV eSV eSV eSV -get -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -ycn +rVj +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +uYQ eSV eSV eSV @@ -353954,43 +354503,43 @@ eSV eSV eSV eSV -cws -uNz -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -yjQ -nwA -hPY +sIA +ryE +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +cKu +pWB +lEF eSV eSV eSV @@ -354212,41 +354761,41 @@ eSV eSV eSV eSV -cws -qnF -qnF -qnF -qnF -qnF -qnF -qnF -qnF -qnF -qnF -qnF -qnF -qnF -qnF -qnF -qnF -qnF -qnF -qnF -qnF -qnF -qnF -qnF -qnF -qnF -qnF -qnF -qnF -qnF -qnF -qnF -qnF -qnF -hPY +sIA +hCm +hCm +hCm +hCm +hCm +hCm +hCm +hCm +hCm +hCm +hCm +hCm +hCm +hCm +hCm +hCm +hCm +hCm +hCm +hCm +hCm +hCm +hCm +hCm +hCm +hCm +hCm +hCm +hCm +hCm +hCm +hCm +hCm +lEF eSV eSV eSV @@ -412587,11 +413136,11 @@ eSV eSV eSV bru -tVi +vmK tlO oeQ eQO -pUo +fuM bru eSV eSV @@ -413355,7 +413904,7 @@ eSV eSV bru bru -gsX +lfT wZp qam slD @@ -413365,7 +413914,7 @@ eQO slD yjt lfy -sFp +xRM bru bru oQD @@ -417723,9 +418272,9 @@ rQG hoV tZn kqs -hmb +msj oEh -ovy +klO mIw mIw mIw @@ -419006,17 +419555,17 @@ rQG rQG mIw mIw -clA +mcU big wVz wVz wVz -nqA +xux wVz wVz wVz -nqA -mjk +xux +eBU mIw mIw mIw @@ -419262,7 +419811,7 @@ hoV rQG hoV mIw -sxf +ozR bRI iFD iFD @@ -419275,7 +419824,7 @@ iFD iFD kfP mIw -lJU +nvp dPG mIw rZg @@ -419773,8 +420322,8 @@ rQG hoV mIw mIw -jfy -jfy +uqi +uqi mIw jhx bRI @@ -420029,7 +420578,7 @@ eSV rQG hoV mIw -jAD +hJE bhj wnd faA @@ -420817,7 +421366,7 @@ bRI iFD jhR mVV -wPf +gxH oVN mIw wtS diff --git a/maps/templates/orbital/light-mecha.dmm b/maps/templates/orbital/light-mecha.dmm index 347d6a10e2e..0a2a3015d72 100644 --- a/maps/templates/orbital/light-mecha.dmm +++ b/maps/templates/orbital/light-mecha.dmm @@ -2,7 +2,7 @@ "a" = ( /mob/living/heavy_vehicle/premade/light, /turf/simulated/floor/reinforced/airless, -/area/security/armory) +/area/security) (1,1,1) = {" a